text stringlengths 1 22.8M |
|---|
```sourcepawn
### entry point code
.macro gdbasm_startup
# Align the stack pointer to an 8-byte boundary.
lhi %r0,-8
nr %r15,%r0
# Reserve space for the standard stack frame:
# back chain, and space for the callee to save its registers.
ahi %r15,-104
# Zero this frame's back chain pointer.
xc 0(4,%r15),0(%r15)
.endm
### Call a function.
.macro gdbasm_call subr
# Put the address of the constant in %r1, load the constant
# (SUBR's address), and jump to it.
bras %r1, .Lafterconst\@
.long \subr
.Lafterconst\@:
l %r1,0(%r1)
basr %r14,%r1
.endm
### Exit with a zero status.
.macro gdbasm_exit0
lhi %r2, 0
svc 1
.endm
### Standard subroutine prologue.
.macro gdbasm_enter
# Save all the callee-saves registers. What the heck.
stm %r6,%r15,24(%r15)
# Allocate the stack frame, and write the back chain pointer.
# Keep the original SP in %r11.
lr %r1,%r15
ahi %r15,-96
st %r1,0(%r15)
.endm
### Standard subroutine epilogue.
.macro gdbasm_leave
# Restore all our registers. This also pops the frame, and
# restores our return address.
lm %r6,%r15,120(%r15)
# Jump to the return address.
br %r14
.endm
### Several nops.
.macro gdbasm_several_nops
lr %r0, %r0
lr %r0, %r0
lr %r0, %r0
lr %r0, %r0
.endm
### Declare an `int' variable.
.macro gdbasm_datavar name value
.data
\name:
.long \value
.endm
``` |
```objective-c
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. path_to_url
#ifndef FXJS_JS_RESOURCES_H_
#define FXJS_JS_RESOURCES_H_
#include "core/fxcrt/widestring.h"
enum class JSMessage {
kAlert = 1,
kParamError,
kInvalidInputError,
kParamTooLongError,
kParseDateError,
kRangeBetweenError,
kRangeGreaterError,
kRangeLessError,
kNotSupportedError,
kBusyError,
kDuplicateEventError,
kSecondParamNotDateError,
kSecondParamInvalidDateError,
kGlobalNotFoundError,
kReadOnlyError,
kTypeError,
kValueError,
kPermissionError,
kBadObjectError,
kObjectTypeError,
kUnknownProperty,
kInvalidSetError,
#ifdef PDF_ENABLE_XFA
kTooManyOccurances,
kUnknownMethod,
#endif
};
WideString JSGetStringFromID(JSMessage msg);
WideString JSFormatErrorString(const char* class_name,
const char* property_name,
const WideString& details);
#endif // FXJS_JS_RESOURCES_H_
``` |
Keyun Lu Station () is a station on Line 5 of the Guangzhou Metro. It is located at the under the junction of Huangpu Avenue Middle () and Keyun Road () in the Tianhe District, near Tianhe Science and Technology Park (). It opened on 28December 2009.
References
Railway stations in China opened in 2009
Guangzhou Metro stations in Tianhe District |
```c
/*
* cblas_chemv.c
* The program is a C interface to chemv
*
* Keita Teranishi 5/18/98
*
*/
#include <stdio.h>
#include <stdlib.h>
#include "cblas.h"
#include "cblas_f77.h"
void API_SUFFIX(cblas_chemv)(const CBLAS_LAYOUT layout,
const CBLAS_UPLO Uplo, const CBLAS_INT N,
const void *alpha, const void *A, const CBLAS_INT lda,
const void *X, const CBLAS_INT incX, const void *beta,
void *Y, const CBLAS_INT incY)
{
char UL;
#ifdef F77_CHAR
F77_CHAR F77_UL;
#else
#define F77_UL &UL
#endif
#ifdef F77_INT
F77_INT F77_N=N, F77_lda=lda, F77_incX=incX, F77_incY=incY;
#else
#define F77_N N
#define F77_lda lda
#define F77_incX incx
#define F77_incY incY
#endif
CBLAS_INT n=0, i=0, incx=incX;
const float *xx= (float *)X, *alp= (float *)alpha, *bet = (float *)beta;
float ALPHA[2],BETA[2];
CBLAS_INT tincY, tincx;
float *x=(float *)X, *y=(float *)Y, *st=0, *tx;
extern int CBLAS_CallFromC;
extern int RowMajorStrg;
RowMajorStrg = 0;
CBLAS_CallFromC = 1;
if (layout == CblasColMajor)
{
if (Uplo == CblasUpper) UL = 'U';
else if (Uplo == CblasLower) UL = 'L';
else
{
API_SUFFIX(cblas_xerbla)(2, "cblas_chemv","Illegal Uplo setting, %d\n",Uplo );
CBLAS_CallFromC = 0;
RowMajorStrg = 0;
return;
}
#ifdef F77_CHAR
F77_UL = C2F_CHAR(&UL);
#endif
F77_chemv(F77_UL, &F77_N, alpha, A, &F77_lda, X, &F77_incX,
beta, Y, &F77_incY);
}
else if (layout == CblasRowMajor)
{
RowMajorStrg = 1;
ALPHA[0]= *alp;
ALPHA[1]= -alp[1];
BETA[0]= *bet;
BETA[1]= -bet[1];
if (N > 0)
{
n = N << 1;
x = malloc(n*sizeof(float));
tx = x;
if( incX > 0 ) {
i = incX << 1 ;
tincx = 2;
st= x+n;
} else {
i = incX *(-2);
tincx = -2;
st = x-2;
x +=(n-2);
}
do
{
*x = *xx;
x[1] = -xx[1];
x += tincx ;
xx += i;
}
while (x != st);
x=tx;
#ifdef F77_INT
F77_incX = 1;
#else
incx = 1;
#endif
if(incY > 0)
tincY = incY;
else
tincY = -incY;
y++;
i = tincY << 1;
n = i * N ;
st = y + n;
do {
*y = -(*y);
y += i;
} while(y != st);
y -= n;
} else
x = (float *) X;
if (Uplo == CblasUpper) UL = 'L';
else if (Uplo == CblasLower) UL = 'U';
else
{
API_SUFFIX(cblas_xerbla)(2, "cblas_chemv","Illegal Uplo setting, %d\n", Uplo);
CBLAS_CallFromC = 0;
RowMajorStrg = 0;
return;
}
#ifdef F77_CHAR
F77_UL = C2F_CHAR(&UL);
#endif
F77_chemv(F77_UL, &F77_N, ALPHA, A, &F77_lda, x, &F77_incX,
BETA, Y, &F77_incY);
}
else
{
API_SUFFIX(cblas_xerbla)(1, "cblas_chemv","Illegal layout setting, %d\n", layout);
CBLAS_CallFromC = 0;
RowMajorStrg = 0;
return;
}
if ( layout == CblasRowMajor )
{
RowMajorStrg = 1;
if ( X != x )
free(x);
if (N > 0)
{
do
{
*y = -(*y);
y += i;
}
while (y != st);
}
}
CBLAS_CallFromC = 0;
RowMajorStrg = 0;
return;
}
``` |
Lophophelma eupines is a moth of the family Geometridae first described by West in 1930. It is found in the Philippines.
References
Moths described in 1930
Pseudoterpnini |
Santa Anna Independent School District is a public school district based in Santa Anna, Texas.
The district has two campuses – Santa Anna Secondary (Grades 7–12) and Santa Anna Elementary (Grades PK–6).
Academic achievement
In 2009, the school district was rated "academically acceptable" by the Texas Education Agency.
Athletics
Santa Anna High School plays six-man football.
See also
List of school districts in Texas
References
External links
Santa Anna ISD
School districts in Coleman County, Texas |
Mitochondrial GTPase 1 is an enzyme that in humans is encoded by the MTG1 gene.
References
Further reading |
The 2008 Camping World Indy Grand Prix at the Glen was the tenth round of the 2008 IndyCar Series season and took place on July 6, 2008 at the Watkins Glen International road course in Watkins Glen, New York. The race was won by Ryan Hunter-Reay, who took the lead from Darren Manning on lap 52. The victory was Hunter-Reay's first in IndyCar competition, and the first for Rahal Letterman Racing since 2005.
Qualifying
All cars are split into two groups of thirteen, with the fastest six from each group going through to the "Top 12" session. In this session, the fastest six runners will progress to the "Firestone Fast Six". The fastest driver in this final session will claim pole, with the rest of the runners lining up in session order, regardless of qualifying times. (Fast Six from 1-6, Top 12 from 7-12 and Round 1 from 13-26) Drivers can use as many laps as they want in the timed sessions.
Race
References
IndyCar Series (Archived 2009-05-21)
Camping World Indy Grand Prix at the Glen
Camping World Indy Grand Prix at the Glen
Camping World Indy Grand Prix at the Glen
Watkins Glen Indy Grand Prix |
```ruby
require_relative '../../spec_helper'
require_relative '../../shared/rational/arithmetic_exception_in_coerce'
describe "Rational#-" do
it_behaves_like :rational_arithmetic_exception_in_coerce, :-
it "calls #coerce on the passed argument with self" do
rational = Rational(3, 4)
obj = mock("Object")
obj.should_receive(:coerce).with(rational).and_return([1, 2])
rational - obj
end
it "calls #- on the coerced Rational with the coerced Object" do
rational = Rational(3, 4)
coerced_rational = mock("Coerced Rational")
coerced_rational.should_receive(:-).and_return(:result)
coerced_obj = mock("Coerced Object")
obj = mock("Object")
obj.should_receive(:coerce).and_return([coerced_rational, coerced_obj])
(rational - obj).should == :result
end
end
describe "Rational#- passed a Rational" do
it "returns the result of subtracting other from self as a Rational" do
(Rational(3, 4) - Rational(0, 1)).should eql(Rational(3, 4))
(Rational(3, 4) - Rational(1, 4)).should eql(Rational(1, 2))
(Rational(3, 4) - Rational(2, 1)).should eql(Rational(-5, 4))
end
end
describe "Rational#- passed a Float" do
it "returns the result of subtracting other from self as a Float" do
(Rational(3, 4) - 0.2).should eql(0.55)
(Rational(3, 4) - 2.5).should eql(-1.75)
end
end
describe "Rational#- passed an Integer" do
it "returns the result of subtracting other from self as a Rational" do
(Rational(3, 4) - 1).should eql(Rational(-1, 4))
(Rational(3, 4) - 2).should eql(Rational(-5, 4))
end
end
``` |
```java
/*
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
package org.apache.rocketmq.tools.command.broker;
import java.io.UnsupportedEncodingException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import java.util.Map;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.Option;
import org.apache.commons.cli.Options;
import org.apache.rocketmq.client.exception.MQBrokerException;
import org.apache.rocketmq.remoting.RPCHook;
import org.apache.rocketmq.remoting.exception.RemotingConnectException;
import org.apache.rocketmq.remoting.exception.RemotingSendRequestException;
import org.apache.rocketmq.remoting.exception.RemotingTimeoutException;
import org.apache.rocketmq.tools.admin.DefaultMQAdminExt;
import org.apache.rocketmq.tools.admin.MQAdminExt;
import org.apache.rocketmq.tools.command.CommandUtil;
import org.apache.rocketmq.tools.command.SubCommand;
import org.apache.rocketmq.tools.command.SubCommandException;
public class GetColdDataFlowCtrInfoSubCommand implements SubCommand {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
@Override
public String commandName() {
return "getColdDataFlowCtrInfo";
}
@Override
public String commandDesc() {
return "Get cold data flow ctr info.";
}
@Override
public Options buildCommandlineOptions(final Options options) {
Option opt = new Option("b", "brokerAddr", true, "get from which broker");
opt.setRequired(false);
options.addOption(opt);
opt = new Option("c", "clusterName", true, "get from which cluster");
opt.setRequired(false);
options.addOption(opt);
return options;
}
@Override
public void execute(final CommandLine commandLine, final Options options, final RPCHook rpcHook)
throws SubCommandException {
DefaultMQAdminExt defaultMQAdminExt = new DefaultMQAdminExt(rpcHook);
defaultMQAdminExt.setInstanceName(Long.toString(System.currentTimeMillis()));
try {
if (commandLine.hasOption('b')) {
String brokerAddr = commandLine.getOptionValue('b').trim();
defaultMQAdminExt.start();
getAndPrint(defaultMQAdminExt, String.format("============%s============\n", brokerAddr), brokerAddr);
} else if (commandLine.hasOption('c')) {
String clusterName = commandLine.getOptionValue('c').trim();
defaultMQAdminExt.start();
Map<String, List<String>> masterAndSlaveMap = CommandUtil.fetchMasterAndSlaveDistinguish(defaultMQAdminExt, clusterName);
for (String masterAddr : masterAndSlaveMap.keySet()) {
getAndPrint(defaultMQAdminExt, String.format("============Master: %s============\n", masterAddr), masterAddr);
for (String slaveAddr : masterAndSlaveMap.get(masterAddr)) {
getAndPrint(defaultMQAdminExt, String.format("============My Master: %s=====Slave: %s============\n", masterAddr, slaveAddr), slaveAddr);
}
}
}
} catch (Exception e) {
throw new SubCommandException(this.getClass().getSimpleName() + " command failed", e);
} finally {
defaultMQAdminExt.shutdown();
}
}
protected void getAndPrint(final MQAdminExt defaultMQAdminExt, final String printPrefix, final String addr)
throws InterruptedException, RemotingConnectException,
UnsupportedEncodingException, RemotingTimeoutException,
MQBrokerException, RemotingSendRequestException {
System.out.print(" " + printPrefix);
String rstStr = defaultMQAdminExt.getColdDataFlowCtrInfo(addr);
if (rstStr == null) {
System.out.printf("Broker[%s] has no cold ctr table !\n", addr);
return;
}
JSONObject jsonObject = JSON.parseObject(rstStr);
Map<String, JSONObject> runtimeTable = (Map<String, JSONObject>)jsonObject.get("runtimeTable");
runtimeTable.entrySet().stream().forEach(i -> {
JSONObject value = i.getValue();
Date lastColdReadTimeMillsDate = new Date(Long.parseLong(String.valueOf(value.get("lastColdReadTimeMills"))));
value.put("lastColdReadTimeFormat", sdf.format(lastColdReadTimeMillsDate));
value.remove("lastColdReadTimeMills");
Date createTimeMillsDate = new Date(Long.parseLong(String.valueOf(value.get("createTimeMills"))));
value.put("createTimeFormat", sdf.format(createTimeMillsDate));
value.remove("createTimeMills");
});
String formatStr = JSON.toJSONString(jsonObject, true);
System.out.printf(formatStr);
System.out.printf("%n");
}
}
``` |
```javascript
/*! Select2 4.0.1 | path_to_url */
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lng nhp t hn "+t+" k t";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lng nhp nhiu hn "+t+' k t"';return n},loadingMore:function(){return"ang ly thm kt qu"},maximumSelected:function(e){var t="Ch c th chn c "+e.maximum+" la chn";return t},noResults:function(){return"Khng tm thy kt qu"},searching:function(){return"ang tm"}}}),{define:e.define,require:e.require}})();
``` |
I, Monarch is the third studio album by Florida death metal band Hate Eternal. It was released June 28, 2005, on Earache Records.
Track listing
Personnel
Hate Eternal
Erik Rutan - guitars, vocals
Derek Roddy - drums
Randy Piro - bass
Artwork
Paul Romano - art direction, artwork & design
References
2005 albums
Hate Eternal albums
Albums produced by Erik Rutan
Earache Records albums |
Northeast Iowa Community College (NICC) is a public community college with two main campuses in Iowa, one in Calmar and one in Peosta. The college serves the Iowa counties of Allamakee, Chickasaw, Clayton, Fayette, Howard, Winneshiek, Dubuque, and Delaware counties. It also includes sections of Bremer, Buchanan, Jones, Jackson, and Mitchell counties. NICC also has a satellite campus in downtown Dubuque.
Originally, the school was known as Northeast Iowa Technical Institute (NITI). The school became a community college in 1988 and was renamed. The school is authorized by the Iowa Board of Education to award the Associate in Arts, Associate in Science, and Associate in Applied Science degrees as well as the GED. It offers programs in a number of vocational fields, as well as transfer programs for students wishing to continue their education at four-year institutions. The school had worked with the University of Dubuque to provide a transfer option for students looking to transfer to four-year programs. The Peosta Campus houses the National Education Center for Agricultural Safety (NECAS), a nationally accredited agricultural training center.
As part of a three-day Midwestern bus tour, President Barack Obama traveled to the college with members of his cabinet to host the White House Rural Economic Forum on August 16, 2011. The college also hosted President Donald Trump for an economic roundtable in July 2018.
References
External links
Education in Winneshiek County, Iowa
Education in Dubuque County, Iowa
Community colleges in Iowa |
```jsx
import React from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import styled from 'styled-components';
import { getPlayerCounts } from '../../../../actions';
import Table from '../../../Table';
import Container from '../../../Container';
import playerCountsColumns from './playerCountsColumns';
const StyledContainer = styled.div`
display: flex;
flex-direction: row;
flex-wrap: wrap;
`;
const StyledTableContainer = styled.div`
flex-grow: 1;
overflow-x: auto;
box-sizing: border-box;
padding: 5px;
`;
const Counts = ({
counts, error, loading, strings,
}) => (
<StyledContainer>
{Object.keys(counts).map(key => (
<StyledTableContainer key={key}>
<Container title={strings[`heading_${key}`]} error={error} loading={loading}>
<Table columns={playerCountsColumns(strings)} data={counts[key].list} />
</Container>
</StyledTableContainer>
))}
</StyledContainer>
);
Counts.propTypes = {
counts: PropTypes.oneOfType([
PropTypes.shape({}),
PropTypes.array,
]),
error: PropTypes.string,
loading: PropTypes.bool,
strings: PropTypes.shape({}),
};
const getData = (props) => {
props.getPlayerCounts(props.playerId, props.location.search);
};
class RequestLayer extends React.Component {
static propTypes = {
playerId: PropTypes.string,
location: PropTypes.shape({
key: PropTypes.string,
}),
strings: PropTypes.shape({}),
}
componentDidMount() {
getData(this.props);
}
componentDidUpdate(prevProps) {
if (this.props.playerId !== prevProps.playerId || this.props.location.key !== prevProps.location.key) {
getData(this.props);
}
}
render() {
return (
<Counts {...this.props} />
);
}
}
const mapStateToProps = state => ({
counts: state.app.playerCounts.data,
error: state.app.playerCounts.error,
loading: state.app.playerCounts.loading,
strings: state.app.strings,
});
const mapDispatchToProps = dispatch => ({
getPlayerCounts: (playerId, options) => dispatch(getPlayerCounts(playerId, options)),
});
export default connect(mapStateToProps, mapDispatchToProps)(RequestLayer);
``` |
Grant Garland Teaff (; born November 12, 1933) is a former American football player and coach. He served as the head coach at McMurry University (1960–1965), Angelo State University (1969–1971), and Baylor University (1972–1992), compiling a career college football record of 170–151–8. In his 21 seasons as head coach of the Baylor Bears football team, Teaff's teams won two Southwest Conference titles and appeared in eight bowl games. His 128 wins are the most of any coach in the history of the program. Teaff was inducted into the College Football Hall of Fame as a coach in 2001.
Early career
Teaff played football at Snyder High School in Snyder, Texas. He continued playing at the college level for San Angelo Junior College (now Angelo State University) and then for McMurry University in Abilene, Texas. When McMurry head coach Wilford Moore was hired to coach for Lubbock High School in 1956, Teaff became his assistant. He then moved on to be an assistant at McMurry University from 1957 to 1959.
Teaff began his head coaching career at McMurry in 1960, serving there until 1965. Among his players were future Pittsburgh Steelers split end Dick Compton and future San Diego Chargers offensive lineman Ernie Park. After a stint as an assistant coach to J. T. King at Texas Tech, Teaff became the head coach at Angelo State University from 1969 to 1971.
Baylor
In 1972, Teaff was hired by Baylor University. Baylor originally hired Rudy Feldman from the University of New Mexico, but Feldman quit after one day, leaving the job to Teaff. The Baylor football team had been 7–43–1 in the five seasons preceding Teaff's arrival. Teaff quickly built Baylor into a competitive team and in 1974, Baylor won eight games and captured the Southwest Conference title for the first time since 1924. In the process they defeated the Texas Longhorns, 34–24, after rallying from a 24–7 halftime deficit. It was Baylor's first victory over Texas in 17 years. The 1974 season and the win over Texas are commonly referred to as the "Miracle on the Brazos," named after the Brazos River near the Baylor campus.
In 1978, Teaff led his team to another unforgettable win. His 2-8 Baylor Bears were set to play #9 ranked Texas. Many of the Bears were injured and they were expected to lose. To compensate for the loss of healthy players, Teaff introduced what is now known as the Wildcat formation. To motivate his team, Teaff told them a story of two fishing Eskimos. One was an excellent fisherman, reeling in one catch after another, while the other couldn't land a single fish. The frustrated Eskimo asked his companion for the secret to successful fishing. His friend replied by pulling a worm out of his mouth, saying "you've got to keep the worms warm!" With this story, the coach let his team know that winning may cause momentary discomfort, but if they were able to put that aside for 60 minutes, the end result would be worth it. Teaff told his team "this game is yours”, pulling a worm out of his mouth. The Bears went on to win the game 38-14, finishing the season 3-8.
Teaff remained Baylor’s head football coach until 1992, compiling a winning record and winning the Southwest Conference title for the last time in 1980. His teams won the 1979 Peach Bowl, the 1985 Liberty Bowl, the 1986 Bluebonnet Bowl, and the 1992 John Hancock Bowl, his final game as coach. His teams also earned invitations to the 1975 and 1981 Cotton Bowl Classic, the 1983 Astro-Bluebonnet Bowl, and the 1991 Copper Bowl. His Baylor teams were notable for success against the University of Texas, finishing with a 10–11 record against the Longhorns. By comparison, in the 15 seasons preceding Teaff's arrival and the 15 years following Teaff's departure, Baylor had a 1–29 record against Texas.
Later life and family
After retiring from coaching, Teaff became executive director of the American Football Coaches Association in February 1994, which is an organization headquartered in Waco, Texas. The AFCA represents coaches across the United States and is often consulted by the NCAA and the media regarding rule changes and developments that take place in college football.
Teaff and his wife have three daughters.
Head coaching record
References
External links
1933 births
Living people
American football linebackers
Angelo State Rams football coaches
Angelo State Rams football players
Baylor Bears athletic directors
Baylor Bears football coaches
McMurry War Hawks football coaches
McMurry War Hawks football players
Texas Tech Red Raiders football coaches
High school football coaches in Texas
College Football Hall of Fame inductees
People from Scurry County, Texas
Players of American football from Waco, Texas |
Rajpura is a village in Phillaur, a city in the district Jalandhar of Indian state of Punjab.
Geography
Rajpura lies on the Goraya-Masani Banga road which is almost 1 km from it. The nearest railway station to Rajpura is Goraya railway station at a distance of 8 km.
Post code
Rajpura Post office is Apra.
References
Official website of Punjab Govt. with Rajpura's details
Villages in Jalandhar district |
```java
package com.ctrip.xpipe.redis.console.checker.impl;
import com.ctrip.xpipe.api.command.CommandFuture;
import com.ctrip.xpipe.endpoint.HostPort;
import com.ctrip.xpipe.redis.checker.healthcheck.actions.interaction.HEALTH_STATE;
import com.ctrip.xpipe.redis.console.checker.CheckerManager;
import com.ctrip.xpipe.redis.console.checker.ConsoleCheckerApiService;
import com.ctrip.xpipe.redis.console.checker.ConsoleCheckerGroupService;
import com.ctrip.xpipe.redis.console.checker.command.InstanceHealthCheckGetGroupCommand;
import com.ctrip.xpipe.redis.console.checker.command.InstanceHealthStatusGetGroupCommand;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ExecutorService;
import static com.ctrip.xpipe.spring.AbstractSpringConfigContext.GLOBAL_EXECUTOR;
@Component
public class DefaultConsoleCheckerGroupService implements ConsoleCheckerGroupService {
@Autowired(required = false)
private CheckerManager checkerManager;
@Autowired
private ConsoleCheckerApiService checkerApiService;
@Resource(name = GLOBAL_EXECUTOR)
private ExecutorService executor;
@Override
public HostPort getCheckerLeader(long clusterDbId) {
return checkerManager.getClusterCheckerLeader(clusterDbId);
}
public List<HostPort> getAllChecker(long clusterDbId) {
return checkerManager.getClusterCheckerManager(clusterDbId);
}
@Override
public CommandFuture<Map<HostPort, String>> getAllHealthCheckInstance(long clusterDbId, String ip, int port) {
return new InstanceHealthCheckGetGroupCommand(checkerApiService, getAllChecker(clusterDbId), ip, port, executor).execute(executor);
}
@Override
public CommandFuture<Map<HostPort, HEALTH_STATE>> getAllHealthStates(long clusterDbId, String ip, int port) {
return new InstanceHealthStatusGetGroupCommand(checkerApiService, getAllChecker(clusterDbId), ip, port, executor).execute(executor);
}
}
``` |
The 1907–08 Indiana State Sycamores men's basketball team represented Indiana State University during the 1907–08 collegiate men's basketball season. The head coach was John Kimmell, in his ninth season coaching the Sycamores. The team played their home games at North Hall in Terre Haute, Indiana.
Schedule
|-
References
Indiana State Sycamores men's basketball seasons
Indiana State
Indiana State
Indiana State |
La historia de Bienvenido ("Bienvenido's Story") is a 1964 Spanish children's movie. It stars Marisol.
Synopsys
Famous young star Marisol comes to a children's hospital to entertain the children and tells them a story about the life of a little donkey named Bienvenido who was separated from his mother, left to look for her and went through many difficulties and hardships.
Songs
Bienvenido (music by Antonio Moya, lyrics by Sánchez Silva) sung by Marisol
Cast
Marisol
Boliche (Manuel Bermúdez)
Jesús Guzmán
Anabel Pintado
Mari Carmen
Augusto
Valentín Tornos
Miguel Armario
Antonio Braña
José María Labernié
Milagros Guijarro
References
External links
1960s Spanish-language films
1964 in Spain
1964 films
Spanish children's films
1960s Spanish films |
```yaml
_type: export
__export_format: 4
__export_date: 2022-02-24T01:02:16.537Z
__export_source: insomnia.desktop.app:v2022.1.0-beta.0
resources:
- _id: req_8f029a22e56341748fa92ad14851a7be
parentId: fld_9fd59e794fe5455692a3c33af67f7668
modified: 1715935264320
created: 1715935207910
url: "path_to_url"
name: Request with Inherited Auth
description: ""
method: GET
body: {}
preRequestScript: ""
parameters: []
headers:
- name: User-Agent
value: insomnia/9.2.0
authentication: {}
metaSortKey: -1715935264244
isPrivate: false
pathParameters: []
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_9fd59e794fe5455692a3c33af67f7668
parentId: fld_e45987966c224b63b68b09b34687209c
modified: 1715935256495
created: 1715935256495
name: Inherit Auth Folder
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1715935256495
preRequestScript: ""
afterResponseScript: ""
authentication: {}
_type: request_group
- _id: fld_e45987966c224b63b68b09b34687209c
parentId: wrk_392055e2aa29457b9d2904396cd7631f
modified: 1715935142556
created: 1715935030239
name: Folder Level Auth Code
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1715935030239
preRequestScript: ""
afterResponseScript: ""
authentication:
accessTokenUrl: "path_to_url"
authorizationUrl: "path_to_url"
clientId: "authorization_code"
clientSecret: "secret"
disabled: false
grantType: authorization_code
redirectUrl: "path_to_url"
responseType: id_token
scope: openid offline_access
state: ""
type: oauth2
usePkce: false
credentialsInBody: "false"
tokenPrefix: ""
_type: request_group
- _id: req_54f2824040c847ebaf3ed6d080111b4e
parentId: fld_0e50ba4426bb4540ade91e0525ea1f29
modified: 1645664215605
created: 1645544268127
url: "path_to_url"
name: No PKCE
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication:
accessTokenUrl: "path_to_url"
authorizationUrl: "path_to_url"
clientId: "authorization_code"
clientSecret: "secret"
disabled: false
grantType: authorization_code
redirectUrl: "path_to_url"
responseType: id_token
scope: openid offline_access
state: ""
type: oauth2
usePkce: false
credentialsInBody: "false"
tokenPrefix: ""
metaSortKey: -1000000237.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_0e50ba4426bb4540ade91e0525ea1f29
parentId: wrk_392055e2aa29457b9d2904396cd7631f
modified: 1645545086145
created: 1645545086145
name: Authorization Code
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1645545086145
_type: request_group
- _id: wrk_392055e2aa29457b9d2904396cd7631f
parentId: null
modified: 1645220798234
created: 1645220798234
name: OAuth Testing
description: ""
scope: collection
_type: workspace
- _id: req_b728f4cbb8694a0d96ecf4753f621964
parentId: fld_0e50ba4426bb4540ade91e0525ea1f29
modified: 1645664217727
created: 1645220819802
url: "path_to_url"
name: PKCE SHA256
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication:
accessTokenUrl: "path_to_url"
authorizationUrl: "path_to_url"
clientId: "authorization_code_pkce"
clientSecret: "secret"
disabled: false
grantType: authorization_code
redirectUrl: "path_to_url"
responseType: id_token
scope: openid offline_access
state: ""
type: oauth2
usePkce: true
metaSortKey: -1000000187.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_fe74f7e6d028450ca347e3c07cf79c75
parentId: fld_0e50ba4426bb4540ade91e0525ea1f29
modified: 1645664218264
created: 1645543526615
url: "path_to_url"
name: PKCE Plain
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication:
accessTokenUrl: "path_to_url"
authorizationUrl: "path_to_url"
clientId: "authorization_code_pkce"
clientSecret: "secret"
disabled: false
grantType: authorization_code
redirectUrl: "path_to_url"
responseType: id_token
scope: openid offline_access
state: ""
type: oauth2
usePkce: true
pkceMethod: plain
credentialsInBody: "false"
metaSortKey: -1000000137.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_a6563c5d82e644bda38083717cf0c2c5
parentId: fld_d34790add1584643b6688c3add5bbe85
modified: 1645664218947
created: 1645545802379
url: "path_to_url"
name: ID Token
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication:
accessTokenUrl: "path_to_url"
authorizationUrl: "path_to_url"
clientId: "implicit"
clientSecret: "secret"
disabled: false
grantType: implicit
redirectUrl: "path_to_url"
responseType: id_token
scope: openid
state: ""
type: oauth2
usePkce: false
credentialsInBody: "false"
tokenPrefix: ""
metaSortKey: -1000000237.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_d34790add1584643b6688c3add5bbe85
parentId: wrk_392055e2aa29457b9d2904396cd7631f
modified: 1645545802354
created: 1645545802354
name: Implicit
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1644942229994
_type: request_group
- _id: req_1ba50492c71445e398f63a7f00aee9fd
parentId: fld_d34790add1584643b6688c3add5bbe85
modified: 1645664219446
created: 1645567186775
url: "path_to_url"
name: ID and Access Token
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication:
accessTokenUrl: "path_to_url"
authorizationUrl: "path_to_url"
clientId: "implicit"
clientSecret: "secret"
disabled: false
grantType: implicit
redirectUrl: "path_to_url"
responseType: id_token token
scope: openid
state: ""
type: oauth2
usePkce: false
credentialsInBody: "false"
tokenPrefix: ""
metaSortKey: -1000000212.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_2b14ff638149403bb1f5ea77a4e9427f
parentId: wrk_392055e2aa29457b9d2904396cd7631f
modified: 1645664219861
created: 1645637343873
url: "path_to_url"
name: Client Credentials
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication:
accessTokenUrl: "path_to_url"
authorizationUrl: "path_to_url"
clientId: "client_credentials"
clientSecret: "secret"
disabled: false
grantType: client_credentials
redirectUrl: "path_to_url"
responseType: id_token
scope: openid
state: ""
type: oauth2
usePkce: false
credentialsInBody: "false"
tokenPrefix: ""
username: foo
password: bar
metaSortKey: -1644716158937.375
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_cf8a55d9b4144632a5528a5147a24540
parentId: wrk_392055e2aa29457b9d2904396cd7631f
modified: 1645664220407
created: 1645636233910
url: "path_to_url"
name: Resource Owner Password Credentials
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication:
accessTokenUrl: "path_to_url"
authorizationUrl: "path_to_url"
clientId: "resource_owner"
clientSecret: "secret"
disabled: false
grantType: password
redirectUrl: "path_to_url"
responseType: id_token
scope: openid
state: ""
type: oauth2
usePkce: false
credentialsInBody: "false"
tokenPrefix: ""
username: foo
password: bar
metaSortKey: -1644603123409.0625
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: env_aaaa7f21b1f145528b6b5f4518afc3f7
parentId: wrk_392055e2aa29457b9d2904396cd7631f
modified: 1645661876119
created: 1645220798237
name: Base Environment
data: {}
dataPropertyOrder: null
color: null
isPrivate: false
metaSortKey: 1639556944617
_type: environment
- _id: jar_b77a8c522418461e85eed9e37c9a6232
parentId: wrk_392055e2aa29457b9d2904396cd7631f
modified: 1645220798245
created: 1645220798245
name: Default Jar
cookies: []
_type: cookie_jar
- _id: spc_e72f1a13dbe9464c993b2f9c0fa0782d
parentId: wrk_392055e2aa29457b9d2904396cd7631f
modified: 1645220798327
created: 1645220798253
fileName: OAuth Testing
contents: ""
contentType: yaml
_type: api_spec
``` |
```java
/*
* Neo4j Sweden AB [path_to_url
*
* This file is part of Neo4j.
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
package apoc.export.csv;
import com.fasterxml.jackson.databind.MappingIterator;
import com.fasterxml.jackson.dataformat.csv.CsvMapper;
import com.fasterxml.jackson.dataformat.csv.CsvParser;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.List;
public class CsvTestUtil {
public static final CsvMapper CSV_MAPPER;
static {
CSV_MAPPER = new CsvMapper();
CSV_MAPPER.enable(CsvParser.Feature.WRAP_AS_ARRAY);
}
public static void saveCsvFile(String fileName, String content) throws IOException {
Files.write(Paths.get("src/test/resources/csv-inputs/" + fileName + ".csv"), content.getBytes());
}
public static List<String[]> toCollection(String csv) {
try {
MappingIterator<String[]> it = CSV_MAPPER
.readerFor(String[].class)
// .with(CsvSchema.emptySchema().withHeader())
.<String[]>readValues(csv.getBytes());
return it.readAll();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
``` |
Michael Gottlieb may refer to:
Michael T. Gottlieb (1900–1980), American bridge player
Michael Gottlieb (director) (1945–2014), American film director, screenwriter and video game producer
Michael S. Gottlieb (born 1947), American physician and immunologist
Michael Gottlieb (politician) (born 1968), American politician and member of the Florida House of Representatives
See also
Michael Gottlieb Agnethler (1719–1752), German botanist and numismatist
Michael Gottlieb Bindesbøll (1800–1856), Danish architect
Michael Gottlieb Birckner (1756–1798), Danish priest and philosopher |
In enzymology, an anthranilate—CoA ligase () is an enzyme that catalyzes the chemical reaction
ATP + anthranilate + CoA AMP + diphosphate + anthranilyl-CoA
The 3 substrates of this enzyme are ATP, anthranilate, and CoA, whereas its 3 products are AMP, diphosphate, and anthranilyl-CoA.
This enzyme belongs to the family of ligases, specifically those forming carbon-sulfur bonds as acid-thiol ligases. The systematic name of this enzyme class is anthranilate:CoA ligase (AMP-forming). Other names in common use include anthraniloyl coenzyme A synthetase, 2-aminobenzoate-CoA ligase, 2-aminobenzoate-coenzyme A ligase, and 2-aminobenzoate coenzyme A ligase. This enzyme participates in 3 metabolic pathways: carbazole degradation, benzoate degradation via coa ligation, and acridone alkaloid biosynthesis.
References
EC 6.2.1
Enzymes of unknown structure
Anthranilates |
The Pacific Northwest Booksellers Association Award, also known as the Pacific Northwest Book Award (PNBA), is an annual award presented by the Pacific Northwest Booksellers Association to recognize "excellence in writing" from the American Pacific Northwest. First awarded in 1964, the awards require that the author and/or illustrator reside within the five-state PNBA region (Washington, Oregon, Alaska, Montana, and Idaho) and that the book be published within the current calendar year. Past recipients include Chuck Palahniuk, Dana Simpson, Kim Barnes, Erik Larson, E.J. Koh, Karl Marlantes, Timothy Egan, Kathleen Flenniken, Donna Barba Higuera, Jonathan Raban and Lidia Yuknavitch.
References
External links
Awards established in 1965
American fiction awards
American non-fiction literary awards |
Dubrovka () is an urban locality (an urban-type settlement) in Vsevolozhsky District of Leningrad Oblast, Russia, located on the right bank of the Neva River northeast of Saint Petersburg. Municipally it is incorporated as Dubrovskoye Urban Settlement, one of the eight urban settlements in the district. Population:
History
The village of Dubrovo is known since 1500. By the 19th centuries, there were two villages, Vyborgskaya Dubrovka and Moskovskaya Dubrovka. In the end of the 19th century, it was a part of Shlisselburgsky Uyezd of Saint Petersburg Governorate (since 1914, Petrograd Governorate). On February 14, 1923 Shlisselburgsky Uyezd was merged into Petrogradsky Uyezd. In January 1924 the uyezd and the governorate were renamed Leningradsky. On May 26, 1927 Moskovskaya Dubrovka was granted urban-type settlement status and renamed Dubrovka.
On August 1, 1927, the uyezds were abolished and Leninsky District, with the administrative center in the settlement of Vsevolozhskoye, was established. The governorates were also abolished, and the district was a part of Leningrad Okrug of Leningrad Oblast. On July 23, 1930, the okrugs were abolished as well, and the districts were directly subordinated to the oblast. On August 19, 1930 Leninsky District was abolished and merged into newly established Leningradsky Prigorodny District with the administrative center in the city of Leningrad. On August 19, 1936 Leningradsky Prigorodny District was abolished, and the settlement was transferred into newly established Vsevolozhsky District, with the administrative center in the suburban settlement of Vsevolozhskoye. Dubrovka was destroyed by the German army in World War II. In 2009 in Dubrovka was built a church.
Economy
Industry
Dubrovka has a number of industrial enterprises, in particular, of chemical and construction industries.
Transportation
Dubrovka has the terminal station (Nevskaya Dubrovka station) on the railway from Saint Petersburg via Vsevolozhsk. Another station, 37 km, is located within the limits of the settlement as well. There is suburban service to the Finland Station in Saint Petersburg.
The settlement has a road access to the M18 highway which connects Saint Petersburg and Murmansk via Petrozavodsk.
The Neva river is navigable.
Culture and recreation
The district six objects classified as cultural and historical heritage of local significance. They commemorate the events of the Siege of Leningrad, when the front line was running on the Neva River, and Dubrovka was on the Soviet Army defense line. Soviet troops twice held the Nevsky Pyatachok, a tiny area on the left bank of the Neva opposite to Dubrovka, for an extended time in hope to develop a massive offensive.
The museum of the Nevsky Pyatachok is located in Dubrovka.
References
Notes
Sources
Urban-type settlements in Leningrad Oblast
Vsevolozhsky District
Shlisselburgsky Uyezd |
The 2001 USC Trojans football team represented the University of Southern California in the 2001 NCAA Division I-A football season. It was Pete Carroll's first year as head coach. The Kansas State Wildcats's victory on September 8 marked the last time a non-Pac-10 team defeated the Trojans in the Coliseum until November 27, 2010, when the Notre Dame Fighting Irish defeated the Trojans, 20–16.
Schedule
The Trojans finished the regular season with a 6–5 record.
Game summaries
San Jose State
Kansas State
Oregon
Stanford
Washington
Arizona State
Notre Dame
Arizona
Oregon State
California
UCLA
Las Vegas Bowl
Roster
Team players in the NFL
Marcell Allmond
Kevin Arbet
Chris Cash
Matt Cassel
Shaun Cody
Keary Colbert
Kori Dickerson
Justin Fargas
Lonnie Ford
Matt Grootegoed
Gregg Guenther
Alex Holmes
Norm Katnik
Kareem Kelly
David Kirtman
Jason Leach
Matt Leinart
Malaefou MacKenzie
Grant Mattos
Sultan McCullough
Ryan Nielsen
Carson Palmer
Mike Patterson
Troy Polamalu
Kris Richard
Bernard Riley
Jacob Rogers
Antuan Simmons
Kenechi Udeze
Lenny Vandermade
John Walker
Lee Webb
References
USC
USC Trojans football seasons
USC Trojans football |
Asmau Ahmed is a Nigerian-American entrepreneur, technology advocate, and beauty expert. Ahmed is an advocate for women in technology and entrepreneurship.
Early life and education
She was born in 1983 in Kaduna, Nigeria and spent her early childhood in West Africa and London. Ahmed earned a Bachelor of Science degree in Computer Engineering from the Rochester Institute of Technology in New York, USA, and a Master of Science degree in Computer Science from the Courant Institute of Mathematical Sciences at New York University. She also holds an MBA from Columbia Business School and a BS with Honors in Chemical Engineering from the University of Virginia.
Career
In 2014, Ahmed founded Plum Perfect, which is based a beauty technology company in New York City. The company's flagship product is a mobile app that uses facial recognition technology to analyze a user's skin tone and recommend the best makeup products. Ahmed also developed an education app called beauTV and Girl Seeks Sample program to help users get personalized makeup recommendations while watch makeup tutorials. Ahmed has licensed Plum Perfect's technology to IMAN Cosmetics. Plum Perfect has won numerous awards and has been featured in major media outlets such as Forbes, InStyle, and Essence.
Ahmed is an advocate for women in technology and entrepreneurship. She has spoken at various conferences and events, including the United Nations General Assembly, and has been recognized for her work with awards such as the Women in IT International's 2016 Global Leadership Award. She has also been recognized as a “Top Woman in Digital" by Cynopsis Media and “Black Business and Tech Professionals Changing the Game” by Huffington Post. Ahmed was recognized as one of “26 Women Of Color Diversifying Entrepreneurship In Silicon Valley, Media, And Beyond” by Vanity Fair for raising $1 million or more in outside capital as a woman entrepreneur.
References
1983 births
Living people
University of Virginia alumni
Columbia Business School alumni
Rochester Institute of Technology alumni
New York University alumni
American technology company founders
American women company founders
21st-century African-American women |
Motivation and Emotion is a bimonthly peer-reviewed scientific journal covering psychology, with a specific focus on the study of motivation and emotion in humans and other animals. It was established in 1977 and is published by Springer Science+Business Media on behalf of the journal's official sponsor, the Society for the Science of Motivation. The founding editor-in-chief was Mortimer H. Appley, who served in this capacity from the journal's founding in 1977 until twelve years later, when he was replaced by Alice M. Isen. The journal's third editor-in-chief was Richard M. Ryan, who was succeeded by Johnmarshall Reeve (Korea University) in 2011. The current editor-in-chief is Michael Richter (Liverpool John Moores University). According to the Journal Citation Reports, the journal has a 2021 impact factor of 4.135.
References
External links
Bimonthly journals
English-language journals
Psychology journals
Academic journals established in 1977
Springer Science+Business Media academic journals |
```xml
export { default as InteractWithContractsFlow } from './InteractWithContractsFlow';
``` |
TAT is an English rock/punk band hailing from London.
History
Early years (2003–2005)
The band, originally a quartet, was founded in 2003 by Tatiana DeMaria. In 2004 they released their debut single, 'Peace Sex & Tea' which charted in the UK's top 50, followed by their 'Pessimist' EP, a live recording of part of their set from Reading Festival 2004, which entered the BBC's Official Rock Chart at number 18. Both Single/EP were released independently through EX Records in conjunction with the Extreme Sports Channel. As the band started making ripples, they earned a support slot with The Offspring and HorrorPops in Paris, where they were exposed to 13,000 people.
Throughout 2005, TAT experienced several lineup changes which eventually saw the band become a trio, with the inclusion of bassist Nick Kent and drummer Jake Reed. After more UK touring, they flew to Poland to join Coalition For Kids, a two-week stadium tour to raise money for terminally ill children.
CCS & USA debut (2006–2008)
2006 saw the release of their next single, "Champagne Cocaine & Strawberries", which they released and distributed themselves. During this period, Jake Reed briefly left the band and was replaced by former drummer Robin Guy until his return. For this reason, Robin can be seen in the promotional video for 'Champagne Cocaine & Strawberries'. It was later this year that the band embarked on the Vans Warped Tour for the first time, playing the second month of the travelling festival on the ShiraGirl stage.
In 2007, TAT toured the UK and Europe with such notable punk acts as NOFX and The Bouncing Souls (whom they met on Warped Tour '06) as well as Me First And The Gimme Gimmes, The Draft and The Loved Ones. In October, they spent three weeks in Atlanta, GA where they recorded the bulk of their debut album.
TAT released their album preview EP entitled This Is...TAT in 2008. They completed the Vans Warped Tour and embarked on several other North American/Canadian tours with Alice Cooper, Lagwagon and MxPx.
Soho Lights (2008–2010)
Soho Lights, the band's debut album, was released on 28 October 2008 through their own label, Red Wagon Records, with nationwide distribution across the USA via Sony's RED Distribution. However, the album was not initially released in the UK, which caused frustration for both the band and their home fans. The album later found a digital UK release through iTunes, but never in a physical format.
After a short break over the festive period and playing a one off homecoming show in London, The band returned to the US in February for a Californian tour with Pennywise and Authority Zero. Nick Kent was unable to attend the tour due to a wrist operation and was temporarily replaced by Nick Stagnaro of Good Guys In Black for all shows. In March and April, TAT embarked on their first solo American tour, and in the Summer they played the entire 2009 Warped Tour, performing on the Hurley stage. The band then toured with Alice Cooper that same summer for three weeks.
A fall tour with Social Distortion was scheduled and promoted; however, TAT later announced that due to unforeseen circumstances they would be unable to perform. In September, the band started writing material for their second full-length album. DeMaria also lent her vocals to Reel Big Fish's 2009 album of covers, Fame, Fortune, and Fornication, where she sang a duet with Aaron Barrett on Talk Dirty to Me.
Second album and future (2011–present)
In 2011, TAT announced that they were back in the studio recording their second up album and appeared on Warped Tour 2011 bringing some of their new material to the live set along with a handful of LA, NY and UK shows. During this time DeMaria wrote and produced several songs for the soundtrack of Blue Crush 2, the direct-to-DVD sequel of 2002's Blue Crush, which TAT performed along with a cover of the Allman Brothers' "Soulshine". In December 2011, the band self-released the EP Somewhere Between Heaven and Hell.
In 2015, TAT released a new song titled "Anxiety" and embarked on the 2015 Vans Warped Tour through the US and Canada for two months.
Discography
Studio albums
Soho Lights (2008, Red Wagon Records)
EPs
Pessimist – Live from Another Wasted Summer (2004, Ex Records)
Peace Sex & Tea (2004, Ex Records)
4 Track EP (2006, self-released)
This Is...TAT (2008, self-released)
TAT-Acoustic EP (2010, Acoustic versions of four songs from Soho Lights)
Somewhere Between Heaven and Hell (2011, self-released)
Peace Sex & Tea
Peace Sex & Tea was the debut release for UK-based band TAT.
Track listing
"Peace Sex & Tea" – 4:00
"Bloodstain" – 2:49
"Live For Rock" – 2:34
Personnel
Tatiana DeMaria – vocals, guitar
Tim Vanderkuill (as Tim Vanderkill) – guitar
Damon Wilson (as Damonski) – drums
James Bailes (as Spreader) - bass
All tracks written by Tatiana DeMaria except "Bloodstain" written by DeMaria and Tim Vanderkill
Singles
"Champagne Cocaine & Strawberries" (2006, self-released)
"I Don't Want To (Love You)" (2009, Red Wagon Records)
References
External links
TAT official website
An Interview With TAT on Shattered Glass Media
TAT interview with PlayBackPress.com
Musical groups established in 2003
English punk rock groups |
Charles Exshaw (1715?-1771) was an Irish painter, art dealer, and engraver.
Early life and family
Exshaw was born in Tymon, County Dublin around 1715. His parents were merchant John (died 1746) and his wife Thomasina (née Barry). Exshaw had a sister, Mary, and 3 brothers, his twin, James, Edward, who was an editor and publisher of the Dublin Newsletter, and John, who established Exshaw's Gentleman's Magazine.
Career
Exshaw trained under Dublin based architect and painter, Francis Bindon. Bindon may have encouraged Exshaw to travel and study abroad. He may have won a medal for drawing while in Paris, possibly from the Académie Royale. In 1755, Exshaw returned to Dublin, holding a sale of the sculpture, drawings, and paintings he had collected in Europe on Dame Street in the rooms of Francesco Geminiani. In 1757 he travelled to Paris again as a pupil of Carle Vanloo, and he executed four engravings of that painter's children in a combined method of etching and mezzotint engraving. He then travelled to Rome in 1759, etching the model of Italian painter Carol Maratta from life.
He went on to visit Amsterdam, where he especially studied the works of Rembrandt, and executed two etchings from his pictures, "Potiphar's Wife making Accusation against Joseph" and "Christ with his Disciples at Sea in a Storm", the latter plate being dated 1760. He also executed some etchings and mezzotint engravings of heads of boors and peasants after various Dutch masters, and a mezzotint engraving of 'A Girl with a Basket of Cherries, and Two Boys,' after Rubens.
Returning to Dublin in 1762, he held 2 more sales on 10 February 1762 and in May 1764. He subsequently settled in London in 1762, and unsuccessfully attempted to establish a drawing-school, after the example of the Caracci, in Maiden Lane, Covent Garden. Exshaw was one of the early competitors for the Society of Arts' premium for an historical painting, with a picture of ‘The Black Prince entertaining the captive French Monarch after the Battle of Cressy.’
Death
He died early in 1771, probably in London, and in April of that year his collection of studies and pictures was sold by auction. In 1781, two pictures and drawing of his were exhibited at the Society of British Artists, including a view of Salisbury.
References
Attribution
Year of birth missing
1771 deaths
18th-century Irish painters
Irish male painters
Artists from Dublin (city)
Irish engravers
18th-century engravers
Irish emigrants to Kingdom of Great Britain |
Frank M. Goodykoontz (16 April 1842 – 24 November 1898) was an American politician.
Goodykoontz was born in Anderson, Indiana on 16 April 1842. He and his parents moved to Waukon, Iowa, in 1856. He began practicing law aged 21, successively in Le Roy, Minnesota, Postville, Lime Springs, and Mason City, Iowa. Goodykoontz was elected to the Iowa Senate from Cerro Gordo County and assumed office as a Republican in January 1880, representing District 47 until his resignation in took effect in January 1882. Goodykoontz left Iowa for Chamberlain, South Dakota, where he continued the practice of law, and later settled in Mitchell. He was considered a potential Populist candidate for the 1897 United States Senate elections in South Dakota, which saw the reelection of incumbent James H. Kyle. Goodykoontz died in Mitchell on 24 November 1898.
References
1842 births
1898 deaths
19th-century American lawyers
Iowa lawyers
Minnesota lawyers
People from Mason City, Iowa
Republican Party Iowa state senators
South Dakota Populists
South Dakota lawyers
People from Chamberlain, South Dakota
People from Mitchell, South Dakota
People from Waukon, Iowa
People from Anderson, Indiana |
```groff
.\" $OpenBSD: time.1,v 1.22 2022/12/22 19:53:23 kn Exp $
.\" $NetBSD: time.1,v 1.5 1994/12/08 09:36:57 jtc Exp $
.\"
.\" The Regents of the University of California. All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" @(#)time.1 8.1 (Berkeley) 6/6/93
.\"
.Dd $Mdocdate: December 22 2022 $
.Dt TIME 1
.Os
.Sh NAME
.Nm time
.Nd time command execution
.Sh SYNOPSIS
.Nm time
.Op Fl lp
.Ar utility
.Op Ar argument ...
.Sh DESCRIPTION
.Nm
executes and times
.Ar utility .
After the
.Ar utility
finishes,
.Nm
writes the total time elapsed,
the time consumed by system overhead,
and the time used to execute
.Ar utility
to the standard error stream.
Times are reported in seconds.
.Pp
The options are as follows:
.Bl -tag -width Ds
.It Fl l
The contents of the
.Em rusage
structure are printed.
.It Fl p
The output is formatted as specified by
.St -p1003.2-92 .
.El
.Sh FILES
.Bl -tag -width /usr/include/sys/resource.h -compact
.It Pa /usr/include/sys/resource.h
.El
.Sh EXIT STATUS
The
.Nm
utility exits with one of the following values:
.Pp
.Bl -tag -width indent -compact
.It 1\-125
An error occurred in the
.Nm
utility.
.It 126
The
.Ar utility
was found but could not be invoked.
.It 127
The
.Ar utility
could not be found.
.El
.Pp
Otherwise, the exit status of
.Nm
shall be that of
.Ar utility .
.Sh SEE ALSO
.Xr csh 1 ,
.Xr ksh 1 ,
.Xr getrusage 2
.Sh STANDARDS
The
.Nm
utility is compliant with the
.St -p1003.1-2008
specification.
.Pp
The flag
.Op Fl l
is an extension to that specification.
.Pp
.Nm
also exists as a built-in to
.Xr csh 1
and
.Xr ksh 1 ,
though with a different syntax.
.Sh HISTORY
A
.Nm
command appeared in
.At v3 .
``` |
```objective-c
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_COMPILER_PROCESSED_FEEDBACK_H_
#define V8_COMPILER_PROCESSED_FEEDBACK_H_
#include "src/compiler/heap-refs.h"
namespace v8 {
namespace internal {
namespace compiler {
class BinaryOperationFeedback;
class CallFeedback;
class CompareOperationFeedback;
class ElementAccessFeedback;
class ForInFeedback;
class GlobalAccessFeedback;
class InstanceOfFeedback;
class LiteralFeedback;
class NamedAccessFeedback;
class RegExpLiteralFeedback;
class TemplateObjectFeedback;
class ProcessedFeedback : public ZoneObject {
public:
enum Kind {
kInsufficient,
kBinaryOperation,
kCall,
kCompareOperation,
kElementAccess,
kForIn,
kGlobalAccess,
kInstanceOf,
kLiteral,
kNamedAccess,
kRegExpLiteral,
kTemplateObject,
};
Kind kind() const { return kind_; }
FeedbackSlotKind slot_kind() const { return slot_kind_; }
bool IsInsufficient() const { return kind() == kInsufficient; }
BinaryOperationFeedback const& AsBinaryOperation() const;
CallFeedback const& AsCall() const;
CompareOperationFeedback const& AsCompareOperation() const;
ElementAccessFeedback const& AsElementAccess() const;
ForInFeedback const& AsForIn() const;
GlobalAccessFeedback const& AsGlobalAccess() const;
InstanceOfFeedback const& AsInstanceOf() const;
NamedAccessFeedback const& AsNamedAccess() const;
LiteralFeedback const& AsLiteral() const;
RegExpLiteralFeedback const& AsRegExpLiteral() const;
TemplateObjectFeedback const& AsTemplateObject() const;
protected:
ProcessedFeedback(Kind kind, FeedbackSlotKind slot_kind);
private:
Kind const kind_;
FeedbackSlotKind const slot_kind_;
};
class InsufficientFeedback final : public ProcessedFeedback {
public:
explicit InsufficientFeedback(FeedbackSlotKind slot_kind);
};
class GlobalAccessFeedback : public ProcessedFeedback {
public:
GlobalAccessFeedback(PropertyCellRef cell, FeedbackSlotKind slot_kind);
GlobalAccessFeedback(ContextRef script_context, int slot_index,
bool immutable, FeedbackSlotKind slot_kind);
explicit GlobalAccessFeedback(FeedbackSlotKind slot_kind); // Megamorphic
bool IsMegamorphic() const;
bool IsPropertyCell() const;
PropertyCellRef property_cell() const;
bool IsScriptContextSlot() const;
ContextRef script_context() const;
int slot_index() const;
bool immutable() const;
base::Optional<ObjectRef> GetConstantHint() const;
private:
base::Optional<ObjectRef> const cell_or_context_;
int const index_and_immutable_;
};
class KeyedAccessMode {
public:
static KeyedAccessMode FromNexus(FeedbackNexus const& nexus);
AccessMode access_mode() const;
bool IsLoad() const;
bool IsStore() const;
KeyedAccessLoadMode load_mode() const;
KeyedAccessStoreMode store_mode() const;
private:
AccessMode const access_mode_;
union LoadStoreMode {
LoadStoreMode(KeyedAccessLoadMode load_mode);
LoadStoreMode(KeyedAccessStoreMode store_mode);
KeyedAccessLoadMode load_mode;
KeyedAccessStoreMode store_mode;
} const load_store_mode_;
KeyedAccessMode(AccessMode access_mode, KeyedAccessLoadMode load_mode);
KeyedAccessMode(AccessMode access_mode, KeyedAccessStoreMode store_mode);
};
class ElementAccessFeedback : public ProcessedFeedback {
public:
ElementAccessFeedback(Zone* zone, KeyedAccessMode const& keyed_mode,
FeedbackSlotKind slot_kind);
KeyedAccessMode keyed_mode() const;
// A transition group is a target and a possibly empty set of sources that can
// transition to the target. It is represented as a non-empty vector with the
// target at index 0.
using TransitionGroup = ZoneVector<Handle<Map>>;
ZoneVector<TransitionGroup> const& transition_groups() const;
bool HasOnlyStringMaps(JSHeapBroker* broker) const;
void AddGroup(TransitionGroup&& group);
// Refine {this} by trying to restrict it to the maps in {inferred_maps}. A
// transition group's target is kept iff it is in {inferred_maps} or if more
// than one of its sources is in {inferred_maps}. Here's an (unrealistic)
// example showing all the possible situations:
//
// inferred_maps = [a0, a2, c1, c2, d1, e0, e1]
//
// Groups before: Groups after:
// [a0, a1, a2] [a0, a2]
// [b0]
// [c0, c1, c2, c3] [c0, c1, c2]
// [d0, d1] [d1]
// [e0, e1] [e0, e1]
//
ElementAccessFeedback const& Refine(
ZoneVector<Handle<Map>> const& inferred_maps, Zone* zone) const;
private:
KeyedAccessMode const keyed_mode_;
ZoneVector<TransitionGroup> transition_groups_;
};
class NamedAccessFeedback : public ProcessedFeedback {
public:
NamedAccessFeedback(NameRef const& name, ZoneVector<Handle<Map>> const& maps,
FeedbackSlotKind slot_kind);
NameRef const& name() const { return name_; }
ZoneVector<Handle<Map>> const& maps() const { return maps_; }
private:
NameRef const name_;
ZoneVector<Handle<Map>> const maps_;
};
class CallFeedback : public ProcessedFeedback {
public:
CallFeedback(base::Optional<HeapObjectRef> target, float frequency,
SpeculationMode mode, FeedbackSlotKind slot_kind)
: ProcessedFeedback(kCall, slot_kind),
target_(target),
frequency_(frequency),
mode_(mode) {}
base::Optional<HeapObjectRef> target() const { return target_; }
float frequency() const { return frequency_; }
SpeculationMode speculation_mode() const { return mode_; }
private:
base::Optional<HeapObjectRef> const target_;
float const frequency_;
SpeculationMode const mode_;
};
template <class T, ProcessedFeedback::Kind K>
class SingleValueFeedback : public ProcessedFeedback {
public:
explicit SingleValueFeedback(T value, FeedbackSlotKind slot_kind)
: ProcessedFeedback(K, slot_kind), value_(value) {
DCHECK(
(K == kBinaryOperation && slot_kind == FeedbackSlotKind::kBinaryOp) ||
(K == kCompareOperation && slot_kind == FeedbackSlotKind::kCompareOp) ||
(K == kForIn && slot_kind == FeedbackSlotKind::kForIn) ||
(K == kInstanceOf && slot_kind == FeedbackSlotKind::kInstanceOf) ||
((K == kLiteral || K == kRegExpLiteral || K == kTemplateObject) &&
slot_kind == FeedbackSlotKind::kLiteral));
}
T value() const { return value_; }
private:
T const value_;
};
class InstanceOfFeedback
: public SingleValueFeedback<base::Optional<JSObjectRef>,
ProcessedFeedback::kInstanceOf> {
using SingleValueFeedback::SingleValueFeedback;
};
class LiteralFeedback
: public SingleValueFeedback<AllocationSiteRef,
ProcessedFeedback::kLiteral> {
using SingleValueFeedback::SingleValueFeedback;
};
class RegExpLiteralFeedback
: public SingleValueFeedback<JSRegExpRef,
ProcessedFeedback::kRegExpLiteral> {
using SingleValueFeedback::SingleValueFeedback;
};
class TemplateObjectFeedback
: public SingleValueFeedback<JSArrayRef,
ProcessedFeedback::kTemplateObject> {
using SingleValueFeedback::SingleValueFeedback;
};
class BinaryOperationFeedback
: public SingleValueFeedback<BinaryOperationHint,
ProcessedFeedback::kBinaryOperation> {
using SingleValueFeedback::SingleValueFeedback;
};
class CompareOperationFeedback
: public SingleValueFeedback<CompareOperationHint,
ProcessedFeedback::kCompareOperation> {
using SingleValueFeedback::SingleValueFeedback;
};
class ForInFeedback
: public SingleValueFeedback<ForInHint, ProcessedFeedback::kForIn> {
using SingleValueFeedback::SingleValueFeedback;
};
} // namespace compiler
} // namespace internal
} // namespace v8
#endif // V8_COMPILER_PROCESSED_FEEDBACK_H_
``` |
John Engle Miller III (born 1949) is an American marine biologist and retired bishop of the Anglican Church in North America. He is a former Episcopal priest who played an active role in the Anglican realignment in the United States. Consecrated in 2008 to serve as a bishop in the Anglican Mission in the Americas, Miller later served as assisting bishop in the Gulf Atlantic Diocese and provided interim support during episcopal vacancies and leaves of absence in the Anglican Diocese of the Great Lakes and the Anglican Diocese of the Upper Midwest.
Early life, education, and marine biology career
Miller is a native of Easton, Pennsylvania. He received his B.A. in zoology from the University of South Florida, where he also did graduate studies in marine biology. Miller worked as a marine biologist at the Smithsonian Institution in Washington and the Harbor Branch Oceanographic Institute in Fort Pierce, Florida, for eighteen years. His research was conducted from Bermuda to Antarctica and throughout the Caribbean Sea. He is married to Joyce and they have three adult children.
In 1990, Miller enrolled in Trinity School for Ministry. While there, he and his wife Joyce were spiritually influenced by the discipleship ministry of Thad and Erilynne Barnum in Aliquippa. Miller graduated in 1993 with an M.Div. and was ordained in the Episcopal Diocese of Central Florida.
Ordained ministry
Miller served as assistant rector and school chaplain at Holy Trinity Episcopal Church in Melbourne, Florida, in 1994, and as priest in charge from 1994 to 1996. From 1996 to 2004, he was rector of St. John's Episcopal Church in Melbourne. In 2004, he left the Episcopal Church and joined the Anglican Mission in the Americas, planting Prince of Peace Anglican Church in Melbourne. By 2008, Prince of Peace Anglican had grown to 400 members.
In 2007, the Rwandan bishops elected Miller to serve as a missionary bishop in the AMIA. He was consecrated in January 2008 by Emmanuel Kolini alongside Terrell Glenn and Philip Jones. Miller oversaw a network of more than 30 AMIA congregations in Florida, Georgia, and Alabama while remaining rector of Prince of Peace, as was customary for AMIA bishops.
In 2010, AMIA—which had been a founding member of the ACNA the year before—left full membership, changing its status in ACNA to "ministry partner." By the next year, the relationship between AMIA chairman Murphy and the Anglican Church of Rwanda's house of bishops, led by Kolini's successor Onesphore Rwaje, had broken down over questions of financial transparency and collegiality. Except for Glenn and Barnum, the AMIA bishops removed AMIA from Rwandan jurisdiction and restructured it as a "missionary society." In the fallout from AMIA's break with ACNA and Rwanda, some AMIA bishops—including Miller—transitioned directly into the ACNA.
Miller accepted a call in 2012 as rector of Christ Church in Vero Beach, a four-year-old congregation in the recently formed Gulf Atlantic Diocese, where Miller was appointed assisting bishop. Miller was restored to membership in the ACNA College of Bishops in 2013. In 2017, Miller presided over the dedication of a new 27,000-square-foot facility for Christ Church, and in 2019, he retired as rector of Christ Church.
Later life
In retirement, Miller took on interim roles across the ACNA. From 2019 to 2020, he was interim bishop of the Diocese of the Great Lakes during the episcopal vacancy between Ronald Jackson and Mark Engel. From 2021 to 2022, after allegations of mishandling of abuse reports, Miller was acting bishop in the Diocese of the Upper Midwest, appointed by ACNA Primate Foley Beach and with delegated authority from the UMD's Bishop's Council during Stewart Ruch's leave of absence.
Miller also serves as a "soul care" counselor for clergy in partnership with Thad Barnum.
Bibliography
References
Living people
Bishops of the Anglican Church in North America
1949 births
American marine biologists
Anglican realignment people |
```python
# your_sha256_hash___________
#
# Pyomo: Python Optimization Modeling Objects
# National Technology and Engineering Solutions of Sandia, LLC
# Under the terms of Contract DE-NA0003525 with National Technology and
# Engineering Solutions of Sandia, LLC, the U.S. Government retains certain
# rights in this software.
# your_sha256_hash___________
# === Required imports ===
import pyomo.environ as pyo
from pyomo.dae import ContinuousSet, DerivativeVar, Simulator
from pyomo.contrib.parmest.experiment import Experiment
import itertools
# ========================
def expand_model_components(m, base_components, index_sets):
"""
Takes model components and index sets and returns the
model component labels.
Arguments
---------
m: Pyomo model
base_components: list of variables from model 'm'
index_sets: list, same length as base_components, where each
element is a list of index sets, or None
"""
for val, indexes in itertools.zip_longest(base_components, index_sets):
# If the variable has no index,
# add just the model component
if not val.is_indexed():
yield val
# If the component is indexed but no
# index supplied, add all indices
elif indexes is None:
yield from val.values()
else:
for j in itertools.product(*indexes):
yield val[j]
class BadExperiment(object):
def __init__(self):
self.model = None
class ReactorExperiment(Experiment):
def __init__(self, data, nfe, ncp):
self.data = data
self.nfe = nfe
self.ncp = ncp
self.model = None
def get_labeled_model(self, flag=0):
if self.model is None:
self.create_model()
self.finalize_model()
self.label_experiment(flag=flag)
return self.model
def create_model(self):
"""
This is an example user model provided to DoE library.
It is a dynamic problem solved by Pyomo.DAE.
Return
------
m: a Pyomo.DAE model
"""
m = self.model = pyo.ConcreteModel()
# Model parameters
m.R = pyo.Param(mutable=False, initialize=8.314)
# Define model variables
########################
# time
m.t = ContinuousSet(bounds=[0, 1])
# Concentrations
m.CA = pyo.Var(m.t, within=pyo.NonNegativeReals)
m.CB = pyo.Var(m.t, within=pyo.NonNegativeReals)
m.CC = pyo.Var(m.t, within=pyo.NonNegativeReals)
# Temperature
m.T = pyo.Var(m.t, within=pyo.NonNegativeReals)
# Arrhenius rate law equations
m.A1 = pyo.Var(within=pyo.NonNegativeReals)
m.E1 = pyo.Var(within=pyo.NonNegativeReals)
m.A2 = pyo.Var(within=pyo.NonNegativeReals)
m.E2 = pyo.Var(within=pyo.NonNegativeReals)
# Differential variables (Conc.)
m.dCAdt = DerivativeVar(m.CA, wrt=m.t)
m.dCBdt = DerivativeVar(m.CB, wrt=m.t)
########################
# End variable def.
# Equation def'n
########################
# Expression for rate constants
@m.Expression(m.t)
def k1(m, t):
return m.A1 * pyo.exp(-m.E1 * 1000 / (m.R * m.T[t]))
@m.Expression(m.t)
def k2(m, t):
return m.A2 * pyo.exp(-m.E2 * 1000 / (m.R * m.T[t]))
# Concentration odes
@m.Constraint(m.t)
def CA_rxn_ode(m, t):
return m.dCAdt[t] == -m.k1[t] * m.CA[t]
@m.Constraint(m.t)
def CB_rxn_ode(m, t):
return m.dCBdt[t] == m.k1[t] * m.CA[t] - m.k2[t] * m.CB[t]
# algebraic balance for concentration of C
# Valid because the reaction system (A --> B --> C) is equimolar
@m.Constraint(m.t)
def CC_balance(m, t):
return m.CA[0] == m.CA[t] + m.CB[t] + m.CC[t]
########################
# End equation def'n
def finalize_model(self):
"""
Example finalize model function. There are two main tasks
here:
1. Extracting useful information for the model to align
with the experiment. (Here: CA0, t_final, t_control)
2. Discretizing the model subject to this information.
Arguments
---------
m: Pyomo model
data: object containing vital experimental information
nfe: number of finite elements
ncp: number of collocation points for the finite elements
"""
m = self.model
# Unpacking data before simulation
control_points = self.data["control_points"]
m.CA[0].value = self.data["CA0"]
m.CB[0].fix(self.data["CB0"])
m.t.update(self.data["t_range"])
m.t.update(control_points)
m.A1.fix(self.data["A1"])
m.A2.fix(self.data["A2"])
m.E1.fix(self.data["E1"])
m.E2.fix(self.data["E2"])
m.CA[0].setlb(self.data["CA_bounds"][0])
m.CA[0].setub(self.data["CA_bounds"][1])
m.t_control = control_points
# Discretizing the model
discr = pyo.TransformationFactory("dae.collocation")
discr.apply_to(m, nfe=self.nfe, ncp=self.ncp, wrt=m.t)
# Initializing Temperature in the model
cv = None
for t in m.t:
if t in control_points:
cv = control_points[t]
m.T[t].setlb(self.data["T_bounds"][0])
m.T[t].setub(self.data["T_bounds"][1])
m.T[t] = cv
@m.Constraint(m.t - control_points)
def T_control(m, t):
"""
Piecewise constant Temperature between control points
"""
neighbour_t = max(tc for tc in control_points if tc < t)
return m.T[t] == m.T[neighbour_t]
# sim.initialize_model()
def label_experiment_impl(self, index_sets_meas, flag=0):
"""
Example for annotating (labeling) the model with a
full experiment.
Arguments
---------
"""
m = self.model
base_comp_meas = [m.CA, m.CB, m.CC]
if flag != 1:
# Grab measurement labels
m.experiment_outputs = pyo.Suffix(direction=pyo.Suffix.LOCAL)
m.experiment_outputs.update(
(k, None)
for k in expand_model_components(m, base_comp_meas, index_sets_meas)
)
if flag != 2:
# Adding no error for measurements currently
m.measurement_error = pyo.Suffix(direction=pyo.Suffix.LOCAL)
if flag == 5:
m.measurement_error.update((m.CA[0], 1e-2) for k in range(1))
else:
m.measurement_error.update(
(k, 1e-2)
for k in expand_model_components(m, base_comp_meas, index_sets_meas)
)
if flag != 3:
# Grab design variables
base_comp_des = [m.CA, m.T]
index_sets_des = [[[m.t.first()]], [m.t_control]]
m.experiment_inputs = pyo.Suffix(direction=pyo.Suffix.LOCAL)
m.experiment_inputs.update(
(k, None)
for k in expand_model_components(m, base_comp_des, index_sets_des)
)
if flag != 4:
m.unknown_parameters = pyo.Suffix(direction=pyo.Suffix.LOCAL)
m.unknown_parameters.update(
(k, pyo.value(k)) for k in [m.A1, m.A2, m.E1, m.E2]
)
class FullReactorExperiment(ReactorExperiment):
def label_experiment(self, flag=0):
m = self.model
return self.label_experiment_impl(
[[m.t_control], [m.t_control], [m.t_control]], flag=flag
)
class FullReactorExperimentBad(ReactorExperiment):
def label_experiment(self, flag=0):
m = self.model
self.label_experiment_impl(
[[m.t_control], [m.t_control], [m.t_control]], flag=flag
)
m.bad_con_1 = pyo.Constraint(expr=m.CA[0] >= 1.0)
m.bad_con_2 = pyo.Constraint(expr=m.CA[0] <= 0.0)
return m
``` |
Walter Arthur "Hoot" Evers (February 8, 1921 – January 25, 1991) was an American baseball outfielder, scout, coach, and executive.
Evers played professional baseball from 1941 to 1942 and 1946 to 1956, including 12 seasons in Major League Baseball with the Detroit Tigers (1941, 1946–1952, 1954), Boston Red Sox (1952–1954), New York Giants (1954), Baltimore Orioles (1954, 1956), and Cleveland Indians (1955–1956).
Evers missed the 1943, 1944, and 1945 seasons due to military service during World War II. He was selected to the American League All-Star team in 1948 and 1950. During the 1950 season, he compiled a .323 batting average with 67 extra-base hits and led the American League with 11 triples. Multiple broken bones, beanings, and other injuries slowed his production after the 1950 season.
After his playing career ended, Evers worked for the Cleveland Indians as a scout, coach, and farm system executive from 1957 to 1970. He then served as the Detroit Tigers' director of player development from 1970 to 1978.
Early years
Evers was born in 1921 in St. Louis, and grew up in nearby Collinsville, Illinois. He was such a fan of Hoot Gibson's cowboy movies as a child that his friends gave him the nickname "Hoot". He attended Collinsville Township High School where he competed in football, basketball, tennis, and track. He was a star basketball player, punted and played back for the football team, and won the Illinois interscholastic championship with a javelin throw of 179 feet, 8 inches.
He then attended the University of Illinois where he competed in basketball, track, and baseball. As a sophomore, he compiled a .353 batting average and led the Big Ten Conference in total bases, runs scored, triples, home runs, and RBIs.
In January 1941, Evers was declared academically ineligible to continue playing for Illinois' basketball team. The week after he lost his eligibility, he signed to play baseball for the Detroit Tigers.
Professional baseball
Minor leagues and military service
After signing with the Tigers in February 1941, Evers spent the most of the 1941 season playing for Winston-Salem and Beaumont in the team's minor league system. He was called up to the Tigers late in the season and made his major league debut on September 16, 1941. He returned to Beaumont in 1942, compiling a .322 batting average and 46 extra-base hits in 152 games. He also led the Texas League's outfielders with 11 double plays from the outfield.
In the fall of 1942, Evers joined the Army and was assigned to the Waco Army Air Field (WAAF) in Waco, Texas. He played baseball with the WAAF baseball team during the war.
Detroit Tigers
The injuries mount (1946–47)
Evers returned to the Tigers in the spring of 1946. He was leading the team in spring training games with a .400 batting average but suffered a broken thumb and ankle sliding into second base at the end of March. He returned to the Tigers in May. Then, on June 3, he collided with second baseman Eddie Mayo while attempting to field a pop fly; he suffered a broken jaw, was knocked unconscious and had to be carried from the field on a stretcher. He returned three weeks later and ended up with a .266 batting average in 81 games, 75 of them as the Tigers' starting center fielder.
In 1947, Evers played his first full season in the big leagues at age 26. He appeared in 126 games, 118 as the starting center fielder, and compiled a .296 batting average and .366 on-base percentage with 39 extra-base hits and 67 RBIs. Evers was hit above his left ear by a pitch on June 29. He was again knocked unconscious, carried from the field on a stretcher, and hospitalized.
Evers was tutored in Detroit by fellow outfielder Doc Cramer. Cramer said of Evers: "Hoot, and I mean this, was the most promising-looking young ballplayer I have ever seen come to the big leagues. He had all the fundamentals — the build, a good head, speed, and an arm, with good eyes at the plate. . . . The only thing I had to teach him was how to play the hitters, and he had all that the first time around the league. Taking care of him was the softest job I ever had."
Peak seasons (1948–50)
He had a breakout season in 1948, appearing in 137 games as the Tigers' starting center fielder. He was named to the American League All-Star team, played the entire game in center field, and hit a home run off Ralph Branca in the second inning to give the American League ahead, 1–0. For the entire 1948 season, he ranked among the American League's leading hitters with a .311 batting average (eighth), 33 doubles (ninth), and 103 RBIs (ninth). He also demonstrated good range in the outfield with a 392 putouts, third most by an American League outfielder. His .969 fielding percentage ranked fifth among the league's center fielders.
Evers followed up with another strong season in 1949. He appeared in 132 games, 80 in left field and 43 in center field. He compiled a .303 batting average and .403 on-base percentage with 34 extra-base hits and 72 RBIs.
Evers' best season was 1950 when he started 138 games in left field and led the American League in triples (11) and was among the league leaders with a .551 slugging percentage (third), 34 doubles (fourth), 67 extra-base hits (sixth), .323 batting average (seventh), 109 RBIs (ninth), 259 total bases (ninth), and .408 on-base percentage (10th). Evers hit for the cycle on September 7, 1950, in a 13–13 tie against the Cleveland Indians. As of May 2014, he remains the only major league player to hit for the cycle with another triple in the same game.
Evers was also a solid fielder, leading all American League outfielders in fielding percentage (.997) in 1950 with one error in over 325 chances. With strong performances in the field and at the bat, Evers finished 11th in the 1950 American League Most Valuable Player voting.
When Evers came to the plate in Detroit, Tigers fans greeted him with "a long drawn-out 'H–o–o–o–o–t.' It rolled down out of the grandstand and floated in from the bleachers in a bewildering wail that made newcomers to the park turn to one another in amazement."
Declining production (1951–52)
In 1951, Evers split his playing time between left field (66 games) and center field (43 games). His batting average dropped nearly 100 points from .323 to .224, and his RBI production dropped from 103 to 46.
In 1952, injuries returned to trouble Evers. On April 11, he was hit by a pitch, resulting in a fracture of his right thumb. After recuperating from the thumb injury, Evers returned to the Tigers' lineup for only one game in 1952. On June 3, 1952, he was part of a blockbuster trade that sent four Tigers (Evers, George Kell, Johnny Lipon, Dizzy Trout) to the Boston Red Sox in exchange for Walt Dropo, Fred Hatfield, Don Lenhardt, Johnny Pesky, and Bill Wight.
Boston Red Sox
Evers' offensive production never reached the levels of his peak years in Detroit. With Ted Williams serving in the military, Evers became the Red Sox starting left fielder in 1952, hitting .262 with 59 RBIs. A broken finger in 1952 reportedly hampered Evers' grip, and he never regained his stroke.
In 1953, Evers appeared in 99 games for Boston, 78 in left field and 16 in center field. His batting average fell to .240, and he had only 31 RBIs.
1954–1956
Evers continued to play in the major leagues from 1954 to 1956, but never regained his prior form. He was traded or sold five times in three years.
Evers began the 1954 season with the Red Sox but appeared in only six games before being sold to the New York Giants on May 18 for an estimated $25,000. He appeared in only 11 games for the Giants as a pinch hitter, and compiled a .091 batting average with a home run as his only hit in 11 at bats.
In July 1954, the Giants sold Evers to the Detroit Tigers. He appeared in 30 games for the 1954 Tigers, 13 as a starting outfielder. His batting average was .183 with the Tigers.
In January 1955, the Tigers sold Evers to the Baltimore Orioles for a price in excess of $10,000. Evers appeared in 50 games for the 1955 Orioles, 32 in right field, 21 in left field, and five in center field. He hit .238 in 185 at bats with six home runs and 30 RBIs.
On July 14, 1955, the Orioles traded Evers to the Cleveland Indians in exchange for pitcher Bill Wight. He appeared in 39 games for the Indians in 1955, compiling a .288 batting average in 66 at bats.
In 1956, Evers appeared in only three games for the Indians. On May 13, 1956, the Indians traded him back to Orioles for outfielder Dave Pope. He appeared in 48 games, 30 as the Orioles' starting right fielder, and compiled a .241 batting average. He appeared in his last major league game on September 30, 1956.
In 12 major league seasons, Evers appeared in 1,142 games and compiled a .278 batting average with 98 home runs, 555 runs, 565 RBIs, and 1,055 hits. He compiled a .983 fielding percentage at all three outfield positions.
Later years
After his playing career ended, he worked in the Cleveland Indians' front office and later as a coach on Alvin Dark's staff.
In July 1970, he was hired by the Detroit Tigers as the director of player development. He held that position until 1978, when he became a scout for the Tigers in Houston.
Jim Leyland, who was a manager in the Tigers' farm system in the 1970s, recalled: "Hoot Evers was probably the number-one motivational guy for me. . . . If I had to look back and pick one person that really motivated me and really let me know what it's about, it would be Hoot Evers." Tommy John recalled Evers giving him advice when John joined the Indians organization. "I learned a lot from Hoot and still talk to him often," John wrote in 1991. "I'll never forget how helpful he was."
In 1991, Evers died at age 69 at St. Luke's Hospital in Houston. He had recently suffered a heart attack.
See also
List of Major League Baseball annual triples leaders
List of Major League Baseball players to hit for the cycle
References
External links
Hoot Evers at SABR (Baseball BioProject)
1921 births
1991 deaths
American League All-Stars
American men's basketball players
Baltimore Orioles players
Baseball players from St. Louis
Basketball players from St. Louis
Beaumont Exporters players
Boston Red Sox players
Cleveland Indians coaches
Cleveland Indians executives
Cleveland Indians players
Cleveland Indians scouts
Detroit Tigers executives
Detroit Tigers players
Detroit Tigers scouts
Illinois Fighting Illini baseball players
Illinois Fighting Illini men's basketball players
Major League Baseball center fielders
Major League Baseball farm directors
Major League Baseball left fielders
Major League Baseball outfielders
New York Giants (NL) players
Winston-Salem Twins players |
Houser Peak () is a peak, high, between Tofani Glacier and Franca Glacier at the head of Solberg Inlet, Bowman Coast, Antarctica. The peak was photographed from the air by the United States Antarctic Service, 1940, the U.S. Navy, 1966, and was surveyed by the Falkland Islands Dependencies Survey, 1946–48. It was named by the Advisory Committee on Antarctic Names in 1977 for Elaine Houser, an administrative officer with Holmes and Narver, Inc., which from the 1968–69 season through 1979–80, provided engineering, construction, and general support services to United States Antarctic Research Program stations in Antarctica.
References
Mountains of Graham Land
Bowman Coast |
The Hammers may refer to:
West Ham United F.C., a professional English football club
PFC Minyor Pernik, a professional Bulgarian football club
Forge FC, a professional Canadian soccer club
69 Squadron IAF, an Israeli Air Force squadron |
This is a list of players promoted from Academies to the Senior squads of Aviva Premiership teams leading up to the 2014–15 season.
Bath
Will Spencer
Gloucester
Elliott Stooke
Billy Burns
Ross Moriarty
Harlequins
Jack Clifford
George Merrick
Sam Stuart
Harry Sloan
Sam Twomey
London Wasps
Will Rowlands
Northampton Saints
Alex Day'
Tom Stephenson
See also
List of 2014–15 Premiership Rugby transfers
List of 2014-15 RFU Championship transfers
List of 2014–15 Pro12 transfers
List of 2014–15 Top 14 transfers
References
Academy
British rugby union lists |
```smalltalk
using System.Collections.Generic;
namespace Advanced.Algorithms.Geometry;
/// <summary>
/// Convex hull using jarvis's algorithm.
/// </summary>
public class ConvexHull
{
public static List<int[]> Find(List<int[]> points)
{
var currentPointIndex = FindLeftMostPoint(points);
var startingPointIndex = currentPointIndex;
var result = new List<int[]>();
do
{
result.Add(points[currentPointIndex]);
//pick a random point as next Point
var nextPointIndex = (currentPointIndex + 1) % points.Count;
for (var i = 0; i < points.Count; i++)
{
if (i == nextPointIndex) continue;
var orientation = GetOrientation(points[currentPointIndex],
points[i], points[nextPointIndex]);
if (orientation == Orientation.ClockWise) nextPointIndex = i;
}
currentPointIndex = nextPointIndex;
} while (currentPointIndex != startingPointIndex);
return result;
}
/// <summary>
/// Compute the orientation of the lines formed by points p, q and r
/// </summary>
private static Orientation GetOrientation(int[] p, int[] q, int[] r)
{
int x1 = p[0], y1 = p[1];
int x2 = q[0], y2 = q[1];
int x3 = r[0], y3 = r[1];
//using slope formula => (y2-y1)/(x2-x1) = (y3-y2)/(x3-x2) (if colinear)
// derives to (y2-y1)(x3-x2)-(y3-y2)(x2-x1) == 0
var result = (y2 - y1) * (x3 - x2) - (y3 - y2) * (x2 - x1);
//sign will give the direction
if (result < 0) return Orientation.ClockWise;
return result > 0 ? Orientation.AntiClockWise : Orientation.Colinear;
}
private static int FindLeftMostPoint(List<int[]> points)
{
var left = 0;
for (var i = 1; i < points.Count; i++)
if (points[i][0] < points[left][0])
left = i;
return left;
}
private enum Orientation
{
ClockWise = 0,
AntiClockWise = 1,
Colinear = 2
}
}
``` |
CRC Advisors (CRC) (formerly known as Creative Response Concepts Public Relations) is an American public relations firm.
In 2018, Politico wrote that CRC was best known for its work with the Swift Vets and POWs for Truth in the 2004 presidential election. Politico said the company "has long been the go-to communications firm for conservative organizations in Washington and across the country." CRC has lobbied against climate change mitigation policies.
Clients of the company have included the Federalist Society, the Concord Fund and Chevron Corporation.
History
CRC was founded in 1989 by Leif E. Noren, a former executive director of the National Conservative Political Action Committee. Its longtime president was Greg Mueller, who in 2020 founded an affiliated firm CRC Advisors with Leonard Leo. By 2022, that organization was compensated $18 million by The 85 Fund and the Concord Fund, which fund Leo's network. Mueller was the communications director for the unsuccessful presidential campaigns of Pat Buchanan in 1992 and 1996.
In 1994, CRC was hired by Newt Gingrich's Contract with America effort.
CRC was hired by the Discovery Institute during the Kitzmiller v. Dover Area School District trial over teaching intelligent design in public schools.
In 2006, they were retained to help promote the 2006 film World Trade Center directed by Oliver Stone.
The company was hired to promote The Case Against Barack Obama, a 2008 book written by David Freddoso and published by Regnery Publishing.
CRC advocated on behalf of Supreme Court justice nominee Neil Gorsuch. In 2018, CRC was involved in pushing unsubstantiated allegations made by activist Edward Whelan that the sexual assault accuser of Supreme Court justice nominee Brett Kavanaugh had confused Kavanaugh with someone who allegedly looked like Kavanaugh.
In 2018, CRC's clients included the Federalist Society and the Judicial Crisis Network. In 2019, CRC helped promote conservative pundit Stephen Moore's nomination to serve on the Federal Reserve Board. The firm is closely associated with the conservative activist Leonard Leo.
In 2021, CRC represented the Media Research Center.
See also
John Kerry military service controversy
References
External links
Boehlert, Eric (September 10, 2004). Swift Boat flacks attack CBS. Salon.com
Public relations companies of the United States |
```xml
import { Injectable, Provider } from '@angular/core';
import { LogTargetBase, LogEvent, LogLevel, LogTargetOptions, LogTarget } from './log.target';
import { ConsoleService } from '../console.service';
@Injectable()
export class ConsoleTarget extends LogTargetBase {
constructor(private console: ConsoleService, options: LogTargetOptions) {
super(options);
}
writeToLog(event: LogEvent) {
switch (event.level) {
case LogLevel.Debug:
this.console.log(event.message);
break;
case LogLevel.Info:
this.console.info(event.message);
break;
case LogLevel.Warning:
this.console.warn(event.message);
break;
case LogLevel.Error:
this.console.error(event.message);
break;
}
return Promise.resolve();
}
}
export function createConsoleTarget(level: LogLevel, consoleService: ConsoleService) {
return new ConsoleTarget(consoleService, { minLogLevel: level });
}
export function provideConsoleTarget(logLevel: LogLevel): Provider {
return {
provide: LogTarget, deps: [ConsoleService],
multi: true,
useFactory: (c: ConsoleService) => new ConsoleTarget(c, { minLogLevel: logLevel })
};
}
``` |
```c++
#include "envoy/registry/registry.h"
#include "source/extensions/tracers/opentelemetry/samplers/always_on/config.h"
#include "test/mocks/server/tracer_factory_context.h"
#include "test/test_common/utility.h"
#include "gtest/gtest.h"
namespace Envoy {
namespace Extensions {
namespace Tracers {
namespace OpenTelemetry {
// Test create sampler via factory
TEST(AlwaysOnSamplerFactoryTest, Test) {
auto* factory = Registry::FactoryRegistry<SamplerFactory>::getFactory(
"envoy.tracers.opentelemetry.samplers.always_on");
ASSERT_NE(factory, nullptr);
EXPECT_STREQ(factory->name().c_str(), "envoy.tracers.opentelemetry.samplers.always_on");
EXPECT_NE(factory->createEmptyConfigProto(), nullptr);
envoy::config::core::v3::TypedExtensionConfig typed_config;
const std::string yaml = R"EOF(
name: envoy.tracers.opentelemetry.samplers.always_on
typed_config:
"@type": type.googleapis.com/envoy.extensions.tracers.opentelemetry.samplers.v3.AlwaysOnSamplerConfig
)EOF";
TestUtility::loadFromYaml(yaml, typed_config);
NiceMock<Server::Configuration::MockTracerFactoryContext> context;
EXPECT_NE(factory->createSampler(typed_config.typed_config(), context), nullptr);
EXPECT_STREQ(factory->name().c_str(), "envoy.tracers.opentelemetry.samplers.always_on");
}
} // namespace OpenTelemetry
} // namespace Tracers
} // namespace Extensions
} // namespace Envoy
``` |
Twila Cassadore is an Arizona-based forager, food educator, advocate for indigenous food sovereignty, and member of the San Carlos Apache Tribe who teaches indigenous food traditions throughout the Western Apache tribes. Through her work, Cassadore promotes the importance of foods consumed by Apaches prior to the forcible relocation of Native Americans to reservations and subsequent reliance on government rations. She interviews tribal elders, takes foraging trips into the wilderness, and delivers public presentations to share her research.
Career
Cassadore has been a food educator for the past 25 years, launching a project called the Western Apache Diet Project to interview tribal elders and popularize traditional foods such as acorn and grass seeds. She interviewed over 100 tribal elders, ultimately helping to identify more than 200 traditional Apache edible plants and nearly as many traditional Apache recipes for a database funded with a 2013 grant of $37,500 by the First Nations’ Native Agriculture and Food Systems Initiative.
Limited access to foods with high nutritional content and sedentary lifestyles are linked to health problems in the Western Apache population, including high levels of obesity, diabetes, high blood pressure, and heart disease; substance abuse, domestic violence, and suicide are also prevalent. Cassadore has spoken about struggling with addiction and mental health crises in her own life, including suicide attempts, prior to beginning her career as a food educator. She notes that many of the tribal youth she works with have similarly experienced trauma, saying, "I was sexually assaulted before I even attended kindergarten. This is something we never will talk about. Many on the rez have gone through this.” Cassadore has stated that foraging helped her heal. In a seminar on the Western Apache Diet Project, she said, "I have been drug-free since 2002. And reconnecting with myself and my identity was done through harvesting. And harvesting some of these food in the locations that were my ancestors are from, the clan maps of where some of these places we’ve gone to and reconnecting with who I am and it rooted me back to where I came from. It gave me a sense of purpose."
One component of Cassadore's foraging includes leading hunts for the gloscho (desert woodrat), hunts that were in the past led only by men. The San Carlos Apache Culture Center Museum, the Natural Resources Apache Foods Program, and the Apache Tradition and Culture group sponsored a hunt in March 2020 open to the public.
She has appeared with television host Padma Lakshmi on the series Taste the Nation. She is also featured in Gather, a documentary film on indigenous food sovereignty.
References
Native American activists
Native American people from Arizona
Apache people
Year of birth missing (living people)
Living people
21st-century Native American women
21st-century Native Americans
Activists from Arizona |
```sqlpl
update ACT_GE_PROPERTY set VALUE_ = '6.1.1.0' where NAME_ = 'schema.version';
alter table ACT_RU_JOB add CREATE_TIME_ TIMESTAMP(6);
alter table ACT_RU_TIMER_JOB add CREATE_TIME_ TIMESTAMP(6);
alter table ACT_RU_SUSPENDED_JOB add CREATE_TIME_ TIMESTAMP(6);
alter table ACT_RU_DEADLETTER_JOB add CREATE_TIME_ TIMESTAMP(6);
update ACT_RU_JOB set CREATE_TIME_=CURRENT_TIMESTAMP;
update ACT_RU_TIMER_JOB set CREATE_TIME_=CURRENT_TIMESTAMP;
update ACT_RU_SUSPENDED_JOB set CREATE_TIME_=CURRENT_TIMESTAMP;
update ACT_RU_DEADLETTER_JOB set CREATE_TIME_=CURRENT_TIMESTAMP;
update ACT_ID_PROPERTY set VALUE_ = '6.1.1.0' where NAME_ = 'schema.version';
UPDATE ACT_DMN_DATABASECHANGELOGLOCK SET LOCKED = 1, LOCKEDBY = '192.168.1.5 (192.168.1.5)', LOCKGRANTED = to_timestamp('2019-03-14 18:06:01.509', 'YYYY-MM-DD HH24:MI:SS.FF') WHERE ID = 1 AND LOCKED = 0;
CREATE TABLE ACT_DMN_HI_DECISION_EXECUTION (ID_ VARCHAR2(255) NOT NULL, DECISION_DEFINITION_ID_ VARCHAR2(255), DEPLOYMENT_ID_ VARCHAR2(255), START_TIME_ TIMESTAMP, END_TIME_ TIMESTAMP, INSTANCE_ID_ VARCHAR2(255), EXECUTION_ID_ VARCHAR2(255), ACTIVITY_ID_ VARCHAR2(255), FAILED_ NUMBER(1) DEFAULT 0, TENANT_ID_ VARCHAR2(255), EXECUTION_JSON_ CLOB, CONSTRAINT PK_ACT_DMN_HI_DECISION_EXECUTI PRIMARY KEY (ID_));
INSERT INTO ACT_DMN_DATABASECHANGELOG (ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, MD5SUM, DESCRIPTION, COMMENTS, EXECTYPE, CONTEXTS, LABELS, LIQUIBASE, DEPLOYMENT_ID) VALUES ('2', 'flowable', 'org/flowable/dmn/db/liquibase/flowable-dmn-db-changelog.xml', SYSTIMESTAMP, 2, '7:15a6bda1fce898a58e04fe6ac2d89f54', 'createTable tableName=ACT_DMN_HI_DECISION_EXECUTION', '', 'EXECUTED', NULL, NULL, '3.5.3', '2586762098');
UPDATE ACT_DMN_DATABASECHANGELOGLOCK SET LOCKED = 0, LOCKEDBY = NULL, LOCKGRANTED = NULL WHERE ID = 1;
UPDATE ACT_FO_DATABASECHANGELOGLOCK SET LOCKED = 1, LOCKEDBY = '192.168.1.5 (192.168.1.5)', LOCKGRANTED = to_timestamp('2019-03-14 18:06:02.610', 'YYYY-MM-DD HH24:MI:SS.FF') WHERE ID = 1 AND LOCKED = 0;
UPDATE ACT_FO_DATABASECHANGELOGLOCK SET LOCKED = 0, LOCKEDBY = NULL, LOCKGRANTED = NULL WHERE ID = 1;
UPDATE ACT_CO_DATABASECHANGELOGLOCK SET LOCKED = 1, LOCKEDBY = '192.168.1.5 (192.168.1.5)', LOCKGRANTED = to_timestamp('2019-03-14 18:06:03.207', 'YYYY-MM-DD HH24:MI:SS.FF') WHERE ID = 1 AND LOCKED = 0;
UPDATE ACT_CO_DATABASECHANGELOGLOCK SET LOCKED = 0, LOCKEDBY = NULL, LOCKGRANTED = NULL WHERE ID = 1;
``` |
```css
/* including package ext-theme-base */
/**
* Creates a background gradient.
*
* Example usage:
* .foo {
* @include background-gradient(#808080, matte, left);
* }
*
* @param {Color} $bg-color The background color of the gradient
* @param {String/List} [$type=$base-gradient] The type of gradient to be used. Can either
* be a String which is a predefined gradient name, or it can can be a list of color stops.
* If null is passed, this mixin will still set the `background-color` to $bg-color.
* The available predefined gradient names are:
*
* * bevel
* * glossy
* * recessed
* * matte
* * matte-reverse
* * panel-header
* * tabbar
* * tab
* * tab-active
* * tab-over
* * tab-disabled
* * grid-header
* * grid-header-over
* * grid-row-over
* * grid-cell-special
* * glossy-button
* * glossy-button-over
* * glossy-button-pressed
*
* Each of these gradient names corresponds to a function named linear-gradient[name].
* Themes can override these functions to customize the color stops that they return.
* For example, to override the glossy-button gradient function add a function named
* "linear-gradient-glossy-button" to a file named "sass/etc/mixins/background-gradient.scss"
* in your theme. The function should return the result of calling the Compass linear-gradient
* function with the desired direction and color-stop information for the gradient. For example:
*
* @function linear-gradient-glossy-button($direction, $bg-color) {
* @return linear-gradient($direction, color_stops(
* mix(#fff, $bg-color, 10%),
* $bg-color 50%,
* mix(#000, $bg-color, 5%) 51%,
* $bg-color
* ));
* }
*
* @param {String} [$direction=top] The direction of the gradient. Can either be
* `top` or `left`.
*
* @member Global_CSS
*/
/*
* Method which inserts a full background-image property for a theme image.
* It checks if the file exists and if it doesn't, it'll throw an error.
* By default it will not include the background-image property if it is not found,
* but this can be changed by changing the default value of $include-missing-images to
* be true.
*/
/**
* Includes a google webfont for use in your theme.
* @param {string} $font-name The name of the font. If the font name contains spaces
* use "+" instead of space.
* @param {string} [$font-weights=400] Comma-separated list of font weights to include.
*
* Example usage:
*
* @include google-webfont(
* $font-name: Exo,
* $font-weights: 200 300 400
* );
*
* Outputs:
*
* @import url(path_to_url
*
* @member Global_CSS
*/
/**
* adds a css outline to an element with compatibility for IE8/outline-offset
* NOTE: the element receiving the outline must be positioned (either relative or absolute)
* in order for the outline to work in IE8
*
* @param {number} [$width=1px]
* The width of the outline
*
* @param {string} [$style=solid]
* The style of the outline
*
* @param {color} [$color=#000]
* The color of the outline
*
* @param {number} [$offset=0]
* The offset of the outline
*
* @param {number/list} [$border-width=0]
* The border-width of the element receiving the outline.
* Required in order for outline-offset to work in IE8
*/
/* including package ext-theme-neutral */
/* including package ext-theme-classic */
/* including package ext-theme-classic-sandbox */
/* including package ext-theme-classic-sandbox */
/** @class Global_CSS */
/* including package ext-theme-classic */
/** @class Global_CSS */
/** @class Ext.LoadMask */
/** @class Ext.ProgressBar */
/** @class Ext.panel.Tool */
/** @class Ext.toolbar.Toolbar */
/** @class Ext.panel.Panel */
/** @class Ext.form.Labelable */
/** @class Ext.form.field.Base */
/** @class Ext.form.field.Display */
/** @class Ext.grid.header.Container */
/** @class Ext.grid.column.Column */
/** @class Ext.layout.container.Border */
/** @class Ext.button.Button */
/** @class Ext.tab.Tab */
/** @class Ext.tab.Bar */
/** @class Ext.window.Window */
/** @class Ext.tip.Tip */
/** @class Ext.container.ButtonGroup */
/** @class Ext.window.MessageBox */
/** @class Ext.view.BoundList */
/** @class Ext.picker.Date */
/** @class Ext.picker.Color */
/** @class Ext.form.field.HtmlEditor */
/** @class Ext.form.field.Trigger */
/**
* @var {boolean}
* True to include the "grid-cell" form field UIs for grid fields and input fields in {@link Ext.grid.column.Widget WidgetColumns}.
*
* This defaults to `true`. It is required if either grid fields are being used,
* or if a {@link Ext.grid.column.Widget WidgetColumn} is being used to house an input field.
* @member Ext.view.Table
*/
/** @class Ext.grid.feature.Grouping */
/** @class Ext.menu.Menu */
/**
* @var {boolean}
* True to include the "grid-cell" form field UIs for grid fields and input fields in {@link Ext.grid.column.Widget WidgetColumns}.
*
* This defaults to `true`. It is required if either grid fields are being used,
* or if a {@link Ext.grid.column.Widget WidgetColumn} is being used to house an input field.
* @member Ext.view.Table
*/
/** @class Ext.grid.plugin.RowEditing */
/** @class Ext.grid.plugin.RowExpander */
/** @class Ext.grid.property.Grid */
/** @class Ext.layout.container.Accordion */
/** @class Ext.resizer.Resizer */
/** @class Ext.slider.Multi */
/* including package ext-theme-neutral */
/**
* @class Ext.Component
*/
/**
* @var {color}
* The background color of scroll indicators when touch scrolling is enabled
*/
/**
* @var {number}
* The opacity of scroll indicators when touch scrolling is enabled
*/
/**
* @var {number}
* The border-radius of scroll indicators when touch scrolling is enabled
*/
/**
* @var {color}
* The background color of scroll indicators when touch scrolling is enabled
*/
/**
* @var {number}
* The space between scroll indicators and the edge of their container
*/
/**
* @class Global_CSS
*/
/**
* @var {color} $color
* The default text color to be used throughout the theme.
*/
/**
* @var {string} $font-family
* The default font-family to be used throughout the theme.
*/
/**
* @var {number} $font-size
* The default font-size to be used throughout the theme.
*/
/**
* @var {string/number}
* The default font-weight to be used throughout the theme.
*/
/**
* @var {string/number}
* The default font-weight for bold font to be used throughout the theme.
*/
/**
* @var {string/number} $line-height
* The default line-height to be used throughout the theme.
*/
/**
* @var {string} $base-gradient
* The base gradient to be used throughout the theme.
*/
/**
* @var {color} $base-color
* The base color to be used throughout the theme.
*/
/**
* @var {color} $neutral-color
* The neutral color to be used throughout the theme.
*/
/**
* @var {color} $body-background-color
* Background color to apply to the body element. If set to transparent or 'none' no
* background-color style will be set on the body element.
*/
/**
* @class Ext.FocusManager
*/
/**
* @var {color}
* The border-color of the focusFrame. See {@link #method-enable}.
*/
/**
* @var {color}
* The border-style of the focusFrame. See {@link #method-enable}.
*/
/**
* @var {color}
* The border-width of the focusFrame. See {@link #method-enable}.
*/
/**
* @class Ext.LoadMask
*/
/**
* @var {number}
* Opacity of the LoadMask
*/
/**
* @var {color}
* The background-color of the LoadMask
*/
/**
* @var {string}
* The type of cursor to dislay when the cursor is over the LoadMask
*/
/**
* @var {string}
* The border-style of the LoadMask focus border
*/
/**
* @var {string}
* The border-color of the LoadMask focus border
*/
/**
* @var {string}
* The border-width of the LoadMask focus border
*/
/**
* @var {number/list}
* The padding to apply to the LoadMask's message element
*/
/**
* @var {string}
* The border-style of the LoadMask's message element
*/
/**
* @var {color}
* The border-color of the LoadMask's message element
*/
/**
* @var {number}
* The border-width of the LoadMask's message element
*/
/**
* @var {color}
* The background-color of the LoadMask's message element
*/
/**
* @var {string/list}
* The background-gradient of the LoadMask's message element. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {number/list}
* The padding of the message inner element
*/
/**
* @var {string}
* The icon to display in the message inner element
*/
/**
* @var {list}
* The background-position of the icon
*/
/**
* @var {string}
* The border-style of the message inner element
*/
/**
* @var {color}
* The border-color of the message inner element
*/
/**
* @var {number}
* The border-width of the message inner element
*/
/**
* @var {color}
* The background-color of the message inner element
*/
/**
* @var {color}
* The text color of the message inner element
*/
/**
* @var {number}
* The font-size of the message inner element
*/
/**
* @var {string}
* The font-weight of the message inner element
*/
/**
* @var {string}
* The font-family of the message inner element
*/
/**
* @var {number/list}
* The padding of the message element
*/
/**
* @var {number}
* The border-radius of the message element
*/
/**
* @class Ext.ProgressBar
*/
/**
* @var {number}
* The height of the ProgressBar
*/
/**
* @var {color}
* The border-color of the ProgressBar
*/
/**
* @var {number}
* The border-width of the ProgressBar
*/
/**
* @var {number}
* The border-radius of the ProgressBar
*/
/**
* @var {color}
* The background-color of the ProgressBar
*/
/**
* @var {color}
* The background-color of the ProgressBar's moving element
*/
/**
* @var {string/list}
* The background-gradient of the ProgressBar's moving element. Can be either the name of
* a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {color}
* The color of the ProgressBar's text when in front of the ProgressBar's moving element
*/
/**
* @var {color}
* The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it
*/
/**
* @var {string}
* The text-align of the ProgressBar's text
*/
/**
* @var {number}
* The font-size of the ProgressBar's text
*/
/**
* @var {string}
* The font-weight of the ProgressBar's text
*/
/**
* @var {string}
* The font-family of the ProgressBar's text
*/
/**
* @var {boolean}
* True to include the "default" ProgressBar UI
*/
/**
* @class Ext.panel.Tool
*/
/**
* @var {number}
* The size of Tools
*/
/**
* @var {boolean}
* True to change the background-position of the Tool on hover. Allows for a separate
* hover state icon in the sprite.
*/
/**
* @var {string}
* The cursor to display when the mouse cursor is over a Tool
*/
/**
* @var {number}
* The opacity of Tools
*/
/**
* @var {number}
* The opacity of hovered Tools
*/
/**
* @var {number}
* The opacity of pressed Tools
*/
/**
* @var {string}
* The sprite to use as the background-image for Tools
*/
/** @class Ext.panel.Header */
/**
* @class Ext.resizer.Splitter
*/
/**
* @var {number}
* The size of the Splitter
*/
/**
* @var {color}
* The background-color of the active Splitter (the Splitter currently being dragged)
*/
/**
* @var {number}
* The opacity of the active Splitter (the Splitter currently being dragged)
*/
/**
* @var {number}
* The opacity of the collapse tool on the active Splitter (the Splitter currently being dragged)
*/
/**
* @var {color}
* The color of the outline around the splitter when it is focused
*/
/**
* @var {string}
* The outline-style of the splitter when it is focused
*/
/**
* @var {number}
* The outline-width of the splitter when it is focused
*/
/**
* @var {number}
* The outline-offset of the splitter when it is focused
*/
/**
* @var {string}
* The the type of cursor to display when the cursor is over the collapse tool
*/
/**
* @var {number}
* The size of the collapse tool. This becomes the width of the collapse tool for
* horizontal splitters, and the height for vertical splitters.
*/
/**
* @var {number}
* The opacity of the collapse tool.
*/
/**
* @class Ext.toolbar.Toolbar
*/
/**
* @var {number}
* The default font-size of Toolbar text
*/
/**
* @var {color}
* The background-color of the Toolbar
*/
/**
* @var {string/list}
* The background-gradient of the Toolbar. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {number}
* The horizontal spacing of Toolbar items
*/
/**
* @var {number}
* The vertical spacing of Toolbar items
*/
/**
* @var {number}
* The horizontal spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items
*/
/**
* @var {number}
* The vertical spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items
*/
/**
* @var {color}
* The background-color of {@link Ext.panel.Panel#fbar footer} Toolbars
*/
/**
* @var {number}
* The border-width of {@link Ext.panel.Panel#fbar footer} Toolbars
*/
/**
* @var {color}
* The border-color of Toolbars
*/
/**
* @var {number}
* The border-width of Toolbars
*/
/**
* @var {string}
* The border-style of Toolbars
*/
/**
* @var {number}
* The width of Toolbar {@link Ext.toolbar.Spacer Spacers}
*/
/**
* @var {color}
* The main border-color of Toolbar {@link Ext.toolbar.Separator Separators}
*/
/**
* @var {color}
* The highlight border-color of Toolbar {@link Ext.toolbar.Separator Separators}
*/
/**
* @var {number/list}
* The margin of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
*/
/**
* @var {number}
* The height of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
*/
/**
* @var {string}
* The border-style of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
*/
/**
* @var {number}
* The border-width of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
*/
/**
* @var {number/list}
* The margin of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
*/
/**
* @var {string}
* The border-style of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
*/
/**
* @var {number}
* The border-width of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
*/
/**
* @var {string}
* The default font-family of Toolbar text
*/
/**
* @var {number}
* The default font-size of Toolbar text
*/
/**
* @var {number}
* The default font-size of Toolbar text
*/
/**
* @var {color}
* The text-color of Toolbar text
*/
/**
* @var {number}
* The line-height of Toolbar text
*/
/**
* @var {number/list}
* The padding of Toolbar text
*/
/**
* @var {number}
* The width of Toolbar scrollers
*/
/**
* @var {number}
* The height of Toolbar scrollers
*/
/**
* @var {number}
* The width of scrollers on vertically aligned toolbars
*/
/**
* @var {number}
* The height of scrollers on vertically aligned toolbars
*/
/**
* @var {color}
* The border-color of Toolbar scroller buttons
*/
/**
* @var {number}
* The border-width of Toolbar scroller buttons
*/
/**
* @var {color}
* The border-color of scroller buttons on vertically aligned toolbars
*/
/**
* @var {number}
* The border-width of scroller buttons on vertically aligned toolbars
*/
/**
* @var {number/list}
* The margin of "top" Toolbar scroller buttons
*/
/**
* @var {number/list}
* The margin of "right" Toolbar scroller buttons
*/
/**
* @var {number/list}
* The margin of "bottom" Toolbar scroller buttons
*/
/**
* @var {number/list}
* The margin of "left" Toolbar scroller buttons
*/
/**
* @var {string}
* The cursor of Toolbar scroller buttons
*/
/**
* @var {string}
* The cursor of disabled Toolbar scroller buttons
*/
/**
* @var {number}
* The opacity of Toolbar scroller buttons. Only applicable when
* {@link #$toolbar-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of hovered Toolbar scroller buttons. Only applicable when
* {@link #$toolbar-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of pressed Toolbar scroller buttons. Only applicable when
* {@link #$toolbar-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of disabled Toolbar scroller buttons.
*/
/**
* @var {boolean}
* `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
* hover state by changing their background-position, When `false` scroller buttons are
* given their hover state by applying opacity.
*/
/**
* @var {string}
* The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar
*/
/**
* @var {boolean}
* True to include the "default" toolbar UI
*/
/**
* @var {boolean}
* True to include the "footer" toolbar UI
*/
/**
* @class Ext.panel.Panel
*/
/**
* @var {number}
* The default border-width of Panels
*/
/**
* @var {color}
* The base color of Panels
*/
/**
* @var {color}
* The default border-color of Panels
*/
/**
* @var {number}
* The maximum width a Panel's border can be before resizer handles are embedded
* into the borders using negative absolute positions.
*
* This defaults to 2, so that in the classic theme which uses 1 pixel borders,
* resize handles are in the content area within the border as they always have
* been.
*
* In the Neptune theme, the handles are embedded into the 5 pixel wide borders
* of any framed panel.
*/
/**
* @var {string}
* The default border-style of Panels
*/
/**
* @var {color}
* The default body background-color of Panels
*/
/**
* @var {color}
* The default color of text inside a Panel's body
*/
/**
* @var {color}
* The default border-color of the Panel body
*/
/**
* @var {number}
* The default border-width of the Panel body
*/
/**
* @var {number}
* The default font-size of the Panel body
*/
/**
* @var {string}
* The default font-weight of the Panel body
*/
/**
* @var {string}
* The default font-family of the Panel body
*/
/**
* @var {number}
* The space between the Panel {@link Ext.panel.Tool Tools}
*/
/**
* @var {string}
* The background sprite to use for Panel {@link Ext.panel.Tool Tools}
*/
/**
* @var {number}
* The border-width of Panel Headers
*/
/**
* @var {string}
* The border-style of Panel Headers
*/
/**
* @var {number/list}
* The padding of Panel Headers
*/
/**
* @var {number}
* The font-size of Panel Headers
*/
/**
* @var {number}
* The line-height of Panel Headers
*/
/**
* @var {string}
* The font-weight of Panel Headers
*/
/**
* @var {string}
* The font-family of Panel Headers
*/
/**
* @var {string}
* The text-transform of Panel Headers
*/
/**
* @var {number/list}
* The padding of the Panel Header's text element
*/
/**
* @var {number/list}
* The margin of the Panel Header's text element
*/
/**
* @var {string/list}
* The background-gradient of the Panel Header. Can be either the name of a predefined
* gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {color}
* The border-color of the Panel Header
*/
/**
* @var {color}
* The inner border-color of the Panel Header
*/
/**
* @var {number}
* The inner border-width of the Panel Header
*/
/**
* @var {color}
* The text color of the Panel Header
*/
/**
* @var {color}
* The background-color of the Panel Header
*/
/**
* @var {number}
* The width of the Panel Header icon
*/
/**
* @var {number}
* The height of the Panel Header icon
*/
/**
* @var {number}
* The space between the Panel Header icon and text
*/
/**
* @var {list}
* The background-position of the Panel Header icon
*/
/**
* @var {color}
* The color of the Panel Header glyph icon
*/
/**
* @var {number}
* The opacity of the Panel Header glyph icon
*/
/**
* @var {boolean}
* True to adjust the padding of borderless panel headers so that their height is the same
* as the height of bordered panels. This is helpful when borderless and bordered panels
* are used side-by-side, as it maintains a consistent vertical alignment.
*/
/**
* @var {color}
* The base color of the framed Panels
*/
/**
* @var {number}
* The border-radius of framed Panels
*/
/**
* @var {number}
* The border-width of framed Panels
*/
/**
* @var {string}
* The border-style of framed Panels
*/
/**
* @var {number}
* The padding of framed Panels
*/
/**
* @var {color}
* The background-color of framed Panels
*/
/**
* @var {color}
* The border-color of framed Panels
*/
/**
* @var {number}
* The border-width of the body element of framed Panels
*/
/**
* @var {number}
* The border-width of framed Panel Headers
*/
/**
* @var {color}
* The inner border-color of framed Panel Headers
*/
/**
* @var {number}
* The inner border-width of framed Panel Headers
*/
/**
* @var {number/list}
* The padding of framed Panel Headers
*/
/**
* @var {number}
* The opacity of ghost Panels while dragging
*/
/**
* @var {string}
* The direction to strech the background-gradient of top docked Headers when slicing images
* for IE using Sencha Cmd
*/
/**
* @var {string}
* The direction to strech the background-gradient of bottom docked Headers when slicing images
* for IE using Sencha Cmd
*/
/**
* @var {string}
* The direction to strech the background-gradient of right docked Headers when slicing images
* for IE using Sencha Cmd
*/
/**
* @var {string}
* The direction to strech the background-gradient of left docked Headers when slicing images
* for IE using Sencha Cmd
*/
/**
* @var {boolean}
* True to include neptune style border management rules.
*/
/**
* @var {color}
* The color to apply to the border that wraps the body and docked items in a framed
* panel. The presence of the wrap border in a framed panel is controlled by the
* {@link #border} config. Only applicable when `$panel-include-border-management-rules` is
* `true`.
*/
/**
* @var {number}
* The width to apply to the border that wraps the body and docked items in a framed
* panel. The presence of the wrap border in a framed panel is controlled by the
* {@link #border} config. Only applicable when `$panel-include-border-management-rules` is
* `true`.
*/
/**
* @var {boolean}
* True to include the "default" panel UI
*/
/**
* @var {boolean}
* True to include the "default-framed" panel UI
*/
/**
* @var {boolean}
* True to ignore the frame padding. By default, the frame mixin adds extra padding when
* border radius is larger than border width. This is intended to prevent the content
* from colliding with the rounded corners of the frame. Set this to true to prevent
* the panel frame from adding this extra padding.
*/
/**
* @class Ext.form.field.Base
*/
/**
* @var {number} $form-field-height
* Height for form fields.
*/
/**
* @var {number} $form-toolbar-field-height
* Height for form fields in toolbar.
*/
/**
* @var {number} $form-field-padding
* Padding around form fields.
*/
/**
* @var {number} $form-field-font-size
* Font size for form fields.
*/
/**
* @var {string} $form-field-font-family
* Font family for form fields.
*/
/**
* @var {string} $form-field-font-weight
* Font weight for form fields.
*/
/**
* @var {number} $form-toolbar-field-font-size
* Font size for toolbar form fields.
*/
/**
* @var {string} $form-toolbar-field-font-family
* Font family for toolbar form fields.
*/
/**
* @var {string} $form-toolbar-field-font-weight
* Font weight for toolbar form fields.
*/
/**
* @var {color} $form-field-color
* Text color for form fields.
*/
/**
* @var {color} $form-field-empty-color
* Text color for empty form fields.
*/
/**
* @var {color} $form-field-border-color
* Border color for form fields.
*/
/**
* @var {number} $form-field-border-width
* Border width for form fields.
*/
/**
* @var {string} $form-field-border-style
* Border style for form fields.
*/
/**
* @var {color} $form-field-focus-border-color
* Border color for focused form fields.
*
* In the default Neptune color scheme this is the same as $base-highlight-color
* but it does not change automatically when one changes the $base-color. This is because
* checkboxes and radio buttons have this focus color hard coded into their background
* images. If this color is changed, you should also modify checkbox and radio button
* background images to match
*/
/**
* @var {color} $form-field-invalid-border-color
* Border color for invalid form fields.
*/
/**
* @var {color} $form-field-background-color
* Background color for form fields.
*/
/**
* @var {string} $form-field-background-image
* Background image for form fields.
*/
/**
* @var {color} $form-field-invalid-background-color
* Background color for invalid form fields.
*/
/**
* @var {string} $form-field-invalid-background-image
* Background image for invalid form fields.
*/
/**
* @var {string} $form-field-invalid-background-repeat
* Background repeat for invalid form fields.
*/
/**
* @var {string/list} $form-field-invalid-background-position
* Background position for invalid form fields.
*/
/**
* @var {boolean}
* True to include the "default" field UI
*/
/**
* @var {boolean}
* True to include the "toolbar" field UI
*/
/**
* @class Ext.form.Labelable
*/
/**
* @var {color}
* The text color of form field labels
*/
/**
* @var {string}
* The font-weight of form field labels
*/
/**
* @var {number}
* The font-size of form field labels
*/
/**
* @var {string}
* The font-family of form field labels
*/
/**
* @var {number}
* The line-height of form field labels
*/
/**
* @var {number}
* Horizontal space between the label and the field body when the label is left-aligned.
*/
/**
* @var {number}
* Vertical space between the label and the field body when the label is top-aligned.
*/
/**
* @var {string}
* The background image for error icons
*/
/**
* @var {number}
* Width for form error icons.
*/
/**
* @var {number}
* Height for form error icons.
*/
/**
* @var {number/list}
* Margin for error icons that are aligned to the side of the field
*/
/**
* @var {number}
* The space between the icon and the message for errors that display under the field
*/
/**
* @var {number/list}
* The padding on errors that display under the form field
*/
/**
* @var {color}
* The text color of form error messages
*/
/**
* @var {string}
* The font-weight of form error messages
*/
/**
* @var {number}
* The font-size of form error messages
*/
/**
* @var {string}
* The font-family of form error messages
*/
/**
* @var {number}
* The line-height of form error messages
*/
/**
* @var {number}
* The bottom margin to apply to form items when in auto, anchor, vbox, or table layout.
* This value is also used as the default border-spacing in a form-layout.
*/
/**
* @var {number}
* Opacity of disabled form fields
*/
/**
* @var {color}
* The text color of toolbar form field labels
*/
/**
* @var {string}
* The font-weight of toolbar form field labels
*/
/**
* @var {number}
* The font-size of toolbar form field labels
*/
/**
* @var {string}
* The font-family of toolbar form field labels
*/
/**
* @var {number}
* The line-height of toolbar form field labels
*/
/**
* @var {number}
* Horizontal space between the toolbar field's label and the field body when the label is left-aligned.
*/
/**
* @var {number}
* Vertical space between the toolbar field's label and the field body when the label is top-aligned.
*/
/**
* @var {string}
* The background image for toolbar field error icons
*/
/**
* @var {number}
* Width for toolbar field error icons.
*/
/**
* @var {number}
* Height for toolbar field error icons.
*/
/**
* @var {number/list}
* Margin for toolbar field error icons that are aligned to the side of the field
*/
/**
* @var {number}
* The space between the icon and the message for errors that display under a toolbar field
*/
/**
* @var {number/list}
* The padding on errors that display under the toolbar form field
*/
/**
* @var {color}
* The text color of toolbar form error messages
*/
/**
* @var {string}
* The font-weight of toolbar form field error messages
*/
/**
* @var {number}
* The font-size of toolbar form field error messages
*/
/**
* @var {string}
* The font-family of toolbar form field error messages
*/
/**
* @var {number}
* The line-height of toolbar form field error messages
*/
/**
* @var {number}
* Opacity of disabled toolbar form fields
*/
/**
* @var {boolean}
* True to include the "default" label UI
*/
/**
* @var {boolean}
* True to include the "default" label UI
*/
/**
* @class Ext.form.field.Text
*/
/**
* @var {number}
* The height of text fields
*/
/**
* @var {number}
* Font size for text fields.
*/
/**
* @var {string}
* Font family for text fields.
*/
/**
* @var {string}
* Font weight for text fields.
*/
/**
* @var {color}
* The color of the text field's input element
*/
/**
* @var {color}
* The background color of the text field's input element
*/
/**
* @var {number/list}
* The border width of text fields
*/
/**
* @var {string/list}
* The border style of text fields
*/
/**
* @var {color/list}
* The border color of text fields
*/
/**
* @var {color/list}
* The border color of the focused text field
*/
/**
* @var {color}
* Border color for invalid text fields.
*/
/**
* @var {number/list}
* Border radius for text fields
*/
/**
* @var {string}
* The background image of the text field's input element
*/
/**
* @var {number/list}
* The padding of the text field's input element
*/
/**
* @var {color}
* Text color for empty text fields.
*/
/**
* @var {number}
* The default width of the text field's body element (the element that contains the input
* element and triggers) when the field is not sized explicitly using the {@link #width}
* config, or sized by it's containing layout.
*/
/**
* @var {color}
* Background color of the text field's input element when the field value is invalid.
*/
/**
* @var {string}
* Background image of the text field's input element when the field value is invalid.
*/
/**
* @var {string}
* Background repeat of the text field's input element when the field value is invalid.
*/
/**
* @var {string/list}
* Background position of the text field's input element when the field value is invalid.
*/
/**
* @var {boolean}
* `true` to use classic-theme styled border for text fields.
*/
/**
* @var {number} $form-textarea-line-height
* The line-height to use for the TextArea's text
*/
/**
* @var {number} $form-textarea-body-height
* The default width of the TextArea's body element (the element that contains the textarea
* html element when the field is not sized explicitly using the {@link #width}config, or
* sized by it's containing layout.
*/
/**
* @var {color}
* Text color for file fields
*/
/**
* @var {number}
* The width of the text field's trigger element
*/
/**
* @var {number/list}
* The width of the text field's trigger's border
*/
/**
* @var {color/list}
* The color of the text field's trigger's border
*/
/**
* @var {string/list}
* The style of the text field's trigger's border
*/
/**
* @var {color}
* The color of the text field's trigger's border when hovered
*/
/**
* @var {color}
* The color of the text field's trigger's border when the field is focused
*/
/**
* @var {color}
* The color of the text field's trigger's border when the field is focused and the trigger is hovered
*/
/**
* @var {string}
* The default background image for text field triggers
*/
/**
* @var {color}
* The background color of the text field's trigger element
*/
/**
* @var {number}
* The height of toolbar text fields
*/
/**
* @var {number}
* Font size for toolbar text fields.
*/
/**
* @var {string}
* Font family for toolbar text fields.
*/
/**
* @var {string}
* Font weight for toolbar text fields.
*/
/**
* @var {color}
* The color of the toolbar text field's input element
*/
/**
* @var {color}
* The background color of the toolbar text field's input element
*/
/**
* @var {number/list}
* The border width of toolbar text fields
*/
/**
* @var {string/list}
* The border style of toolbar text fields
*/
/**
* @var {color/list}
* The border color of toolbar text fields
*/
/**
* @var {color/list}
* The border color of the focused toolbar text field
*/
/**
* @var {color} $form-field-invalid-border-color
* Border color for invalid toolbar text fields.
*/
/**
* @var {number/list}
* Border radius for toolbar text fields
*/
/**
* @var {string}
* The background image of the toolbar text field's input element
*/
/**
* @var {number/list}
* The padding of the toolbar text field's input element
*/
/**
* @var {color}
* Text color for empty toolbar text fields.
*/
/**
* @var {number}
* The default width of the toolbar text field's body element (the element that contains the input
* element and triggers) when the field is not sized explicitly using the {@link #width}
* config, or sized by it's containing layout.
*/
/**
* @var {color}
* Background color of the toolbar text field's input element when the field value is invalid.
*/
/**
* @var {string}
* Background image of the toolbar text field's input element when the field value is invalid.
*/
/**
* @var {string}
* Background repeat of the toolbar text field's input element when the field value is invalid.
*/
/**
* @var {string/list}
* Background position of the toolbar text field's input element when the field value is invalid.
*/
/**
* @var {boolean}
* `true` to use classic-theme styled border for toolbar text fields.
*/
/**
* @var {number/string}
* The line-height to use for the toolbar TextArea's text
*/
/**
* @var {number}
* The default width of the toolbar TextArea's body element (the element that contains the
* textarea html element when the field is not sized explicitly using the {@link #width}
* config, or sized by it's containing layout.
*/
/**
* @var {color}
* Text color for toolbar file fields
*/
/**
* @var {number}
* The width of the toolbar text field's trigger element
*/
/**
* @var {number/list}
* The width of the toolbar text field's trigger's border
*/
/**
* @var {color/list}
* The color of the toolbar text field's trigger's border
*/
/**
* @var {string/list}
* The style of the toolbar text field's trigger's border
*/
/**
* @var {color}
* The color of the toolbar text field's trigger's border when hovered
*/
/**
* @var {color}
* The color of the toolbar text field's trigger's border when the field is focused
*/
/**
* @var {color}
* The color of the toolbar text field's trigger's border when the field is focused and the trigger is hovered
*/
/**
* @var {string}
* The default background image for toolbar text field triggers
*/
/**
* @var {color}
* The background color of the toolbar text field's trigger element
*/
/**
* @var {boolean}
* True to include the "default" text field UI
*/
/**
* @var {boolean}
* True to include the "toolbar" text field UI
*/
/**
* @class Ext.form.field.Spinner
*/
/**
* @var {boolean}
* True to use vertically oriented triggers. False to use horizontally oriented triggers.
* Themes that set this property to true must also override the
* {@link Ext.form.trigger.Spinner#vertical} config to match. Defaults to true. When
* 'vertical' orientation is used, the background image for both triggers is
* 'form/spinner'. When 'horizontal' is used, the triggers use separate background
* images - 'form/spinner-up', and 'form/spinner-down'.
*/
/**
* @var {string}
* Background image for vertically oriented spinner triggers
*/
/**
* @var {string}
* Background image for the "up" trigger when trigger buttons are horizontally aligned
*/
/**
* @var {string}
* Background image for the "down" trigger when trigger buttons are horizontally aligned
*/
/**
* @var {boolean}
* `true` to use vertically oriented triggers for fields with the 'toolbar' UI.
*/
/**
* @var {string}
* Background image for vertically oriented toolbar spinner triggers
*/
/**
* @var {string}
* Background image for the "up" toolbar trigger when trigger buttons are horizontally aligned
*/
/**
* @var {string}
* Background image for the "down" toolbar trigger when trigger buttons are horizontally aligned
*/
/**
* @var {boolean}
* True to include the "default" spinner UI
*/
/**
* @var {boolean}
* True to include the "toolbar" spinner UI
*/
/**
* @class Ext.form.field.Checkbox
*/
/**
* @var {number}
* The size of the checkbox
*/
/**
* @var {string}
* The background-image of the checkbox
*/
/**
* @var {string}
* The background-image of the radio button
*/
/**
* @var {color}
* The color of the checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-weight of the checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-size of the checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-family of the checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The line-height of the checkbox's {@link #boxLabel}
*/
/**
* @var {number}
* The space between the {@link #boxLabel} and the checkbox.
*/
/**
* @var {number}
* The size of the toolbar checkbox
*/
/**
* @var {string}
* The background-image of the toolbar checkbox
*/
/**
* @var {string}
* The background-image of the toolbar radio button
*/
/**
* @var {color}
* The color of the toolbar checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-weight of the toolbar checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-size of the toolbar checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-family of the toolbar checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The line-height of the toolbar checkbox's {@link #boxLabel}
*/
/**
* @var {number}
* The space between the {@link #boxLabel} and the toolbar checkbox.
*/
/**
* @var {boolean}
* True to include the "default" checkbox UI
*/
/**
* @var {boolean}
* True to include the "toolbar" checkbox UI
*/
/**
* @class Ext.form.field.Display
*/
/**
* @var {color}
* The text color of display fields
*/
/**
* @var {number}
* The font-size of display fields
*/
/**
* @var {string}
* The font-family of display fields
*/
/**
* @var {string}
* The font-weight of display fields
*/
/**
* @var {number}
* The line-height of display fields
*/
/**
* @var {color}
* The text color of toolbar display fields
*/
/**
* @var {number}
* The font-size of toolbar display fields
*/
/**
* @var {string}
* The font-family of toolbar display fields
*/
/**
* @var {string}
* The font-weight of toolbar display fields
*/
/**
* @var {number}
* The line-height of toolbar display fields
*/
/**
* @var {boolean}
* True to include the "default" display field UI
*/
/**
* @var {boolean}
* True to include the "toolbar" display field UI
*/
/**
* @class Ext.view.Table
*/
/**
* @var {color}
* The color of the text in the grid cells
*/
/**
* @var {number}
* The font size of the text in the grid cells
*/
/**
* @var {number}
* The line-height of the text inside the grid cells.
*/
/**
* @var {string}
* The font-weight of the text in the grid cells
*/
/**
* @var {string}
* The font-family of the text in the grid cells
*/
/**
* @var {color}
* The background-color of the grid cells
*/
/**
* @var {color}
* The border-color of row/column borders. Can be specified as a single color, or as a list
* of colors containing the row border color followed by the column border color.
*/
/**
* @var {string}
* The border-style of the row/column borders.
*/
/**
* @var {number}
* The border-width of the row and column borders.
*/
/**
* @var {color}
* The background-color of "special" cells. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
*/
/**
* @var {string}
* The background-gradient to use for "special" cells. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
*/
/**
* @var {number}
* The border-width of "special" cells. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
* Only applies to the vertical border, since the row border width is determined by
* {#$grid-row-cell-border-width}.
*/
/**
* @var {color}
* The border-color of "special" cells. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
* Only applies to the vertical border, since the row border color is determined by
* {#$grid-row-cell-border-color}.
*/
/**
* @var {string}
* The border-style of "special" cells. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
* Only applies to the vertical border, since the row border style is determined by
* {#$grid-row-cell-border-style}.
*/
/**
* @var {color}
* The border-color of "special" cells when the row is selected using a {@link
* Ext.selection.RowModel Row Selection Model}. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
* Only applies to the vertical border, since the selected row border color is determined by
* {#$grid-row-cell-selected-border-color}.
*/
/**
* @var {color}
* The background-color of "special" cells when the row is hovered. Special cells are
* created by {@link Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel
* Checkbox Selection Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
*/
/**
* @var {color}
* The background-color color of odd-numbered rows when the table view is configured with
* `{@link Ext.view.Table#stripeRows stripeRows}: true`.
*/
/**
* @var {string}
* The border-style of the hovered row
*/
/**
* @var {color}
* The text color of the hovered row
*/
/**
* @var {color}
* The background-color of the hovered row
*/
/**
* @var {color}
* The border-color of the hovered row
*/
/**
* @var {string}
* The border-style of the selected row
*/
/**
* @var {color}
* The text color of the selected row
*/
/**
* @var {color}
* The background-color of the selected row
*/
/**
* @var {color}
* The border-color of the selected row
*/
/**
* @var {number}
* The border-width of the focused cell
*/
/**
* @var {color}
* The border-color of the focused cell
*/
/**
* @var {string}
* The border-style of the focused cell
*/
/**
* @var {number}
* The spacing between grid cell border and inner focus border
*/
/**
* @var {color}
* The text color of the focused cell
*/
/**
* @var {color}
* The background-color of the focused cell
*/
/**
* @var {boolean}
* True to show the focus border when a row is focused even if the grid has no
* {@link Ext.panel.Table#rowLines rowLines}.
*/
/**
* @var {color}
* The text color of a selected cell when using a {@link Ext.selection.CellModel
* Cell Selection Model}.
*/
/**
* @var {color}
* The background-color of a selected cell when using a {@link Ext.selection.CellModel
* Cell Selection Model}.
*/
/**
* @var {number}
* The amount of padding to apply to the grid cell's inner div element
*/
/**
* @var {string}
* The type of text-overflow to use on the grid cell's inner div element
*/
/**
* @var {color}
* The border-color of the grid body
*/
/**
* @var {number}
* The border-width of the grid body border
*/
/**
* @var {string}
* The border-style of the grid body border
*/
/**
* @var {color}
* The background-color of the grid body
*/
/**
* @var {number}
* The amount of padding to apply to the grid body when the grid contains no data.
*/
/**
* @var {color}
* The text color of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
* the grid contains no data.
*/
/**
* @var {color}
* The background color of the grid body when the grid contains no data.
*/
/**
* @var {number}
* The font-size of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
* the grid contains no data.
*/
/**
* @var {number}
* The font-weight of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
* the grid contains no data.
*/
/**
* @var {number}
* The font-family of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
* the grid contains no data.
*/
/**
* @var {color}
* The color of the resize markers that display when dragging a column border to resize
* the column
*/
/**
* @class Ext.tree.View
*/
/**
* @var {number} $tree-elbow-width
* The width of the tree elbow/arrow icons
*/
/**
* @var {number} $tree-icon-width
* The width of the tree folder/leaf icons
*/
/**
* @var {number} $tree-elbow-spacing
* The amount of spacing between the tree elbows or arrows, and the checkbox or icon.
*/
/**
* @var {number} $tree-checkbox-spacing
* The amount of space (in pixels) between the tree checkbox and the folder/leaf icon
*/
/**
* @var {number} $tree-icon-spacing
* The amount of space (in pixels) between the folder/leaf icons and the text
*/
/**
* @var {string} $tree-expander-cursor
* The type of cursor to display when the mouse is over a tree expander (+, - or arrow icon)
*/
/**
* @var {number/list}
* The amount of padding to apply to the tree cell's inner div element
*/
/**
* @class Ext.grid.header.DropZone
*/
/**
* @var {number}
* The size of the column move icon
*/
/**
* @class Ext.grid.header.Container
*/
/**
* @var {color}
* The background-color of grid headers
*/
/**
* @var {string/list}
* The background-gradient of grid headers. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {color}
* The border-color of grid headers
*/
/**
* @var {number}
* The border-width of grid headers
*/
/**
* @var {string}
* The border-style of grid headers
*/
/**
* @var {color}
* The background-color of grid headers when the cursor is over the header
*/
/**
* @var {string/list}
* The background-gradient of grid headers when the cursor is over the header. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {color}
* The background-color of a grid header when its menu is open
*/
/**
* @var {number/list}
* The padding to apply to grid headers
*/
/**
* @var {number}
* The height of grid header triggers
*/
/**
* @var {number}
* The width of grid header triggers
*/
/**
* @var {number}
* The width of the grid header sort icon
*/
/**
* @var {string}
* The type of cursor to display when the cursor is over a grid header trigger
*/
/**
* @var {number}
* The amount of space between the header trigger and text
*/
/**
* @var {list}
* The background-position of the header trigger
*/
/**
* @var {color}
* The background-color of the header trigger
*/
/**
* @var {color}
* The background-color of the header trigger when the menu is open
*/
/**
* @var {number}
* The space between the grid header sort icon and the grid header text
*/
/**
* @class Ext.grid.column.Column
*/
/**
* @var {string}
* The font-family of grid column headers
*/
/**
* @var {number}
* The font-size of grid column headers
*/
/**
* @var {string}
* The font-weight of grid column headers
*/
/**
* @var {number}
* The line-height of grid column headers
*/
/**
* @var {string}
* The text-overflow of grid column headers
*/
/**
* @var {color}
* The text color of grid column headers
*/
/**
* @var {number}
* The border-width of grid column headers
*/
/**
* @var {string}
* The border-style of grid column headers
*/
/**
* @var {color}
* The text color of focused grid column headers
*/
/**
* @var {color}
* The background-color of focused grid column headers
*/
/**
* @var {number}
* The border-width of focused grid column headers
*/
/**
* @var {string}
* The border-style of focused grid column headers
*/
/**
* @var {number}
* The spacing between column header element border and inner focus border
*/
/**
* @var {color}
* The border color of focused grid column headers
*/
/**
* @class Ext.layout.container.Border
*/
/**
* @var {color}
* The background-color of the Border layout element
*/
/** @class Ext.button.Button */
/**
* @var {number}
* The default width for a button's {@link #cfg-menu} arrow
*/
/**
* @var {number}
* The default height for a button's {@link #cfg-menu} arrow
*/
/**
* @var {number}
* The default width for a {@link Ext.button.Split Split Button}'s arrow
*/
/**
* @var {number}
* The default height for a {@link Ext.button.Split Split Button}'s arrow
*/
/**
* @var {number}
* The default space between a button's icon and text
*/
/**
* @var {number}
* The default border-radius for a small {@link #scale} button
*/
/**
* @var {number}
* The default border-width for a small {@link #scale} button
*/
/**
* @var {number}
* The default padding for a small {@link #scale} button
*/
/**
* @var {number}
* The default horizontal padding to add to the left and right of the text element for
* a small {@link #scale} button
*/
/**
* @var {number}
* The default font-size for a small {@link #scale} button
*/
/**
* @var {number}
* The default font-size for a small {@link #scale} button when the cursor is over the button
*/
/**
* @var {number}
* The default font-size for a small {@link #scale} button when the button is focused
*/
/**
* @var {number}
* The default font-size for a small {@link #scale} button when the button is pressed
*/
/**
* @var {number}
* The default font-size for a small {@link #scale} button when the button is focused and
* the cursor is over the button
*/
/**
* @var {number}
* The default font-size for a small {@link #scale} button when the button is focused and pressed
*/
/**
* @var {number}
* The default font-size for a small {@link #scale} button when the button is disabled
*/
/**
* @var {string}
* The default font-weight for a small {@link #scale} button
*/
/**
* @var {string}
* The default font-weight for a small {@link #scale} button when the cursor is over the button
*/
/**
* @var {string}
* The default font-weight for a small {@link #scale} button when the button is focused
*/
/**
* @var {string}
* The default font-weight for a small {@link #scale} button when the button is pressed
*/
/**
* @var {string}
* The default font-weight for a small {@link #scale} button when the button is focused
* and the cursor is over the button
*/
/**
* @var {string}
* The default font-weight for a small {@link #scale} button when the button is focused
* and pressed
*/
/**
* @var {string}
* The default font-weight for a small {@link #scale} button when the button is disabled
*/
/**
* @var {string}
* The default font-family for a small {@link #scale} button
*/
/**
* @var {string}
* The default font-family for a small {@link #scale} button when the cursor is over the button
*/
/**
* @var {string}
* The default font-family for a small {@link #scale} button when the button is focused
*/
/**
* @var {string}
* The default font-family for a small {@link #scale} button when the button is pressed
*/
/**
* @var {string}
* The default font-family for a small {@link #scale} button when the button is focused
* and the cursor is over the button
*/
/**
* @var {string}
* The default font-family for a small {@link #scale} button when the button is focused
* and pressed
*/
/**
* @var {string}
* The default font-family for a small {@link #scale} button when the button is disabled
*/
/**
* @var {number}
* The line-height for the text in a small {@link #scale} button
*/
/**
* @var {number}
* The default icon size for a small {@link #scale} button
*/
/**
* @var {number}
* The space between a small {@link #scale} button's icon and text
*/
/**
* @var {number}
* The default width of a small {@link #scale} button's {@link #cfg-menu} arrow
*/
/**
* @var {number}
* The default height of a small {@link #scale} button's {@link #cfg-menu} arrow
*/
/**
* @var {number}
* The default width of a small {@link #scale} {@link Ext.button.Split Split Button}'s arrow
*/
/**
* @var {number}
* The default height of a small {@link #scale} {@link Ext.button.Split Split Button}'s arrow
*/
/**
* @var {number}
* The default border-radius for a medium {@link #scale} button
*/
/**
* @var {number}
* The default border-width for a medium {@link #scale} button
*/
/**
* @var {number}
* The default padding for a medium {@link #scale} button
*/
/**
* @var {number}
* The default horizontal padding to add to the left and right of the text element for
* a medium {@link #scale} button
*/
/**
* @var {number}
* The default font-size for a medium {@link #scale} button
*/
/**
* @var {number}
* The default font-size for a medium {@link #scale} button when the cursor is over the button
*/
/**
* @var {number}
* The default font-size for a medium {@link #scale} button when the button is focused
*/
/**
* @var {number}
* The default font-size for a medium {@link #scale} button when the button is pressed
*/
/**
* @var {number}
* The default font-size for a medium {@link #scale} button when the button is focused
* and the cursor is over the button
*/
/**
* @var {number}
* The default font-size for a medium {@link #scale} button when the button is focused
* and pressed
*/
/**
* @var {number}
* The default font-size for a medium {@link #scale} button when the button is disabled
*/
/**
* @var {string}
* The default font-weight for a medium {@link #scale} button
*/
/**
* @var {string}
* The default font-weight for a medium {@link #scale} button when the cursor is over the button
*/
/**
* @var {string}
* The default font-weight for a medium {@link #scale} button when the button is focused
*/
/**
* @var {string}
* The default font-weight for a medium {@link #scale} button when the button is pressed
*/
/**
* @var {string}
* The default font-weight for a medium {@link #scale} button when the button is focused
* and the cursor is over the button
*/
/**
* @var {string}
* The default font-weight for a medium {@link #scale} button when the button is focused
* and pressed
*/
/**
* @var {string}
* The default font-weight for a medium {@link #scale} button when the button is disabled
*/
/**
* @var {string}
* The default font-family for a medium {@link #scale} button
*/
/**
* @var {string}
* The default font-family for a medium {@link #scale} button when the cursor is over the button
*/
/**
* @var {string}
* The default font-family for a medium {@link #scale} button when the button is focused
*/
/**
* @var {string}
* The default font-family for a medium {@link #scale} button when the button is pressed
*/
/**
* @var {string}
* The default font-family for a medium {@link #scale} button when the button is focused
* and the cursor is over the button
*/
/**
* @var {string}
* The default font-family for a medium {@link #scale} button when the button is focused
* and pressed
*/
/**
* @var {string}
* The default font-family for a medium {@link #scale} button when the button is disabled
*/
/**
* @var {number}
* The line-height for the text in a medium {@link #scale} button
*/
/**
* @var {number}
* The default icon size for a medium {@link #scale} button
*/
/**
* @var {number}
* The space between a medium {@link #scale} button's icon and text
*/
/**
* @var {number}
* The default width of a medium {@link #scale} button's {@link #cfg-menu} arrow
*/
/**
* @var {number}
* The default height of a medium {@link #scale} button's {@link #cfg-menu} arrow
*/
/**
* @var {number}
* The default width of a medium {@link #scale} {@link Ext.button.Split Split Button}'s arrow
*/
/**
* @var {number}
* The default height of a medium {@link #scale} {@link Ext.button.Split Split Button}'s arrow
*/
/**
* @var {number}
* The default border-radius for a large {@link #scale} button
*/
/**
* @var {number}
* The default border-width for a large {@link #scale} button
*/
/**
* @var {number}
* The default padding for a large {@link #scale} button
*/
/**
* @var {number}
* The default horizontal padding to add to the left and right of the text element for
* a large {@link #scale} button
*/
/**
* @var {number}
* The default font-size for a large {@link #scale} button
*/
/**
* @var {number}
* The default font-size for a large {@link #scale} button when the cursor is over the button
*/
/**
* @var {number}
* The default font-size for a large {@link #scale} button when the button is focused
*/
/**
* @var {number}
* The default font-size for a large {@link #scale} button when the button is pressed
*/
/**
* @var {number}
* The default font-size for a large {@link #scale} button when the button is focused
* and the cursor is over the button
*/
/**
* @var {number}
* The default font-size for a large {@link #scale} button when the button is focused
* and pressed
*/
/**
* @var {number}
* The default font-size for a large {@link #scale} button when the button is disabled
*/
/**
* @var {string}
* The default font-weight for a large {@link #scale} button
*/
/**
* @var {string}
* The default font-weight for a large {@link #scale} button when the cursor is over the button
*/
/**
* @var {string}
* The default font-weight for a large {@link #scale} button when the button is focused
*/
/**
* @var {string}
* The default font-weight for a large {@link #scale} button when the button is pressed
*/
/**
* @var {string}
* The default font-weight for a large {@link #scale} button when the button is focused
* and the cursor is over the button
*/
/**
* @var {string}
* The default font-weight for a large {@link #scale} button when the button is focused
* and pressed
*/
/**
* @var {string}
* The default font-weight for a large {@link #scale} button when the button is disabled
*/
/**
* @var {string}
* The default font-family for a large {@link #scale} button
*/
/**
* @var {string}
* The default font-family for a large {@link #scale} button when the cursor is over the button
*/
/**
* @var {string}
* The default font-family for a large {@link #scale} button when the button is focused
*/
/**
* @var {string}
* The default font-family for a large {@link #scale} button when the button is pressed
*/
/**
* @var {string}
* The default font-family for a large {@link #scale} button when the button is focused
* and the cursor is over the button
*/
/**
* @var {string}
* The default font-family for a large {@link #scale} button when the button is focused
* and pressed
*/
/**
* @var {string}
* The default font-family for a large {@link #scale} button when the button is disabled
*/
/**
* @var {number}
* The line-height for the text in a large {@link #scale} button
*/
/**
* @var {number}
* The default icon size for a large {@link #scale} button
*/
/**
* @var {number}
* The space between a large {@link #scale} button's icon and text
*/
/**
* @var {number}
* The default width of a large {@link #scale} button's {@link #cfg-menu} arrow
*/
/**
* @var {number}
* The default height of a large {@link #scale} button's {@link #cfg-menu} arrow
*/
/**
* @var {number}
* The default width of a large {@link #scale} {@link Ext.button.Split Split Button}'s arrow
*/
/**
* @var {number}
* The default height of a large {@link #scale} {@link Ext.button.Split Split Button}'s arrow
*/
/**
* @var {color}
* The base color for the `default` button UI
*/
/**
* @var {color}
* The base color for the `default` button UI when the cursor is over the button
*/
/**
* @var {color}
* The base color for the `default` button UI when the button is focused
*/
/**
* @var {color}
* The base color for the `default` button UI when the button is pressed
*/
/**
* @var {color}
* The base color for the `default` button UI when the button is focused and the cursor
* is over the button
*/
/**
* @var {color}
* The base color for the `default` button UI when the button is focused and pressed
*/
/**
* @var {color}
* The base color for the `default` button UI when the button is disabled
*/
/**
* @var {color}
* The border-color for the `default` button UI
*/
/**
* @var {color}
* The border-color for the `default` button UI when the cursor is over the button
*/
/**
* @var {color}
* The border-color for the `default` button UI when the button is focused
*/
/**
* @var {color}
* The border-color for the `default` button UI when the button is pressed
*/
/**
* @var {color}
* The border-color for the `default` button UI when the button is focused and the cursor
* is over the button
*/
/**
* @var {color}
* The border-color for the `default` button UI when the button is focused and pressed
*/
/**
* @var {color}
* The border-color for the `default` button UI when the button is disabled
*/
/**
* @var {color}
* The background-color for the `default` button UI
*/
/**
* @var {color}
* The background-color for the `default` button UI when the cursor is over the button
*/
/**
* @var {color}
* The background-color for the `default` button UI when the button is focused
*/
/**
* @var {color}
* The background-color for the `default` button UI when the button is pressed
*/
/**
* @var {color}
* The background-color for the `default` button UI when the button is focused and the
* cursor is over the button
*/
/**
* @var {color}
* The background-color for the `default` button UI when the button is focused and pressed
*/
/**
* @var {color}
* The background-color for the `default` button UI when the button is disabled
*/
/**
* @var {string/list}
* The background-gradient for the `default` button UI. Can be either the name of a
* predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default` button UI when the cursor is over the button.
* Can be either the name of a predefined gradient or a list of color stops. Used as the
* `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default` button UI when the button is focused. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default` button UI when the button is pressed. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default` button UI when the button is focused and the
* cursor is over the button. Can be either the name of a predefined gradient or a list
* of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default` button UI when the button is focused and
* pressed. Can be either the name of a predefined gradient or a list of color stops.
* Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default` button UI when the button is disabled. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {color}
* The text color for the `default` button UI
*/
/**
* @var {color}
* The text color for the `default` button UI when the cursor is over the button
*/
/**
* @var {color}
* The text color for the `default` button UI when the button is focused
*/
/**
* @var {color}
* The text color for the `default` button UI when the button is pressed
*/
/**
* @var {color}
* The text color for the `default` button UI when the button is focused and the cursor
* is over the button
*/
/**
* @var {color}
* The text color for the `default` button UI when the button is focused and pressed
*/
/**
* @var {color}
* The text color for the `default` button UI when the button is disabled
*/
/**
* @var {number/list}
* The inner border-width for the `default` button UI
*/
/**
* @var {number/list}
* The inner border-width for the `default` button UI when the cursor is over the button
*/
/**
* @var {number/list}
* The inner border-width for the `default` button UI when the button is focused
*/
/**
* @var {number/list}
* The inner border-width for the `default` button UI when the button is pressed
*/
/**
* @var {number/list}
* The inner border-width for the `default` button UI when the button is focused and the
* cursor is over the button
*/
/**
* @var {number/list}
* The inner border-width for the `default` button UI when the button is focused and pressed
*/
/**
* @var {number/lipressed}
* The inner border-width for the `default` button UI when the button is disabled
*/
/**
* @var {color}
* The inner border-color for the `default` button UI
*/
/**
* @var {color}
* The inner border-color for the `default` button UI when the cursor is over the button
*/
/**
* @var {color}
* The inner border-color for the `default` button UI when the button is focused
*/
/**
* @var {color}
* The inner border-color for the `default` button UI when the button is pressed
*/
/**
* @var {color}
* The inner border-color for the `default` button UI when the button is focused and the
* cursor is over the button
*/
/**
* @var {color}
* The inner border-color for the `default` button UI when the button is focused and pressed
*/
/**
* @var {color}
* The inner border-color for the `default` button UI when the button is disabled
*/
/**
* @var {number}
* The body outline width for the `default` button UI when the button is focused
*/
/**
* @var {string}
* The body outline-style for the `default` button UI when the button is focused
*/
/**
* @var {color}
* The body outline color for the `default` button UI when the button is focused
*/
/**
* @var {color}
* The color of the {@link #glyph} icon for the `default` button UI
*/
/**
* @var {color}
* The opacity of the {@link #glyph} icon for the `default` button UI
*/
/**
* @var {color}
* The border-color for the `default-toolbar` button UI
*/
/**
* @var {color}
* The border-color for the `default-toolbar` button UI when the cursor is over the button
*/
/**
* @var {color}
* The border-color for the `default-toolbar` button UI when the button is focused
*/
/**
* @var {color}
* The border-color for the `default-toolbar` button UI when the button is pressed
*/
/**
* @var {color}
* The border-color for the `default-toolbar` button UI when the button is focused and the
* cursor is over the button
*/
/**
* @var {color}
* The border-color for the `default-toolbar` button UI when the button is focused and
* pressed
*/
/**
* @var {color}
* The border-color for the `default-toolbar` button UI when the button is disabled
*/
/**
* @var {color}
* The background-color for the `default-toolbar` button UI
*/
/**
* @var {color}
* The background-color for the `default-toolbar` button UI when the cursor is over the button
*/
/**
* @var {color}
* The background-color for the `default-toolbar` button UI when the button is focused
*/
/**
* @var {color}
* The background-color for the `default-toolbar` button UI when the button is pressed
*/
/**
* @var {color}
* The background-color for the `default-toolbar` button UI when the button is focused
* and the cursor is over the button
*/
/**
* @var {color}
* The background-color for the `default-toolbar` button UI when the button is focused
* and pressed
*/
/**
* @var {color}
* The background-color for the `default-toolbar` button UI when the button is disabled
*/
/**
* @var {string/list}
* The background-gradient for the `default-toolbar` button UI. Can be either the name of
* a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default-toolbar` button UI when the cursor is over the
* button. Can be either the name of a predefined gradient or a list of color stops. Used
* as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default-toolbar` button UI when the button is focused.
* Can be either the name of a predefined gradient or a list of color stops. Used as the
* `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default-toolbar` button UI when the button is pressed.
* Can be either the name of a predefined gradient or a list of color stops. Used as the
* `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default-toolbar` button UI when the button is focused
* and the cursor is over the button. Can be either the name of a predefined gradient or a
* list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default-toolbar` button UI when the button is focused
* and pressed. Can be either the name of a predefined gradient or a list of color stops.
* Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `default-toolbar` button UI when the button is disabled.
* Can be either the name of a predefined gradient or a list of color stops. Used as the
* `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {color}
* The text color for the `default-toolbar` button UI
*/
/**
* @var {color}
* The text color for the `default-toolbar` button UI when the cursor is over the button
*/
/**
* @var {color}
* The text color for the `default-toolbar` button UI when the button is focused
*/
/**
* @var {color}
* The text color for the `default-toolbar` button UI when the button is pressed
*/
/**
* @var {color}
* The text color for the `default-toolbar` button UI when the button is focused and the
* cursor is over the button
*/
/**
* @var {color}
* The text color for the `default-toolbar` button UI when the button is focused and pressed
*/
/**
* @var {color}
* The text color for the `default-toolbar` button UI when the button is disabled
*/
/**
* @var {number/list}
* The inner border-width for the `default-toolbar` button UI
*/
/**
* @var {number/list}
* The inner border-width for the `default-toolbar` button UI when the cursor is over the button
*/
/**
* @var {number/list}
* The inner border-width for the `default-toolbar` button UI when the button is focused
*/
/**
* @var {number/list}
* The inner border-width for the `default-toolbar` button UI when the button is pressed
*/
/**
* @var {number/list}
* The inner border-width for the `default-toolbar` button UI when the button is focused
* and the cursor is over the button
*/
/**
* @var {number/list}
* The inner border-width for the `default-toolbar` button UI when the button is focused
* and pressed
*/
/**
* @var {number/list}
* The inner border-width for the `default-toolbar` button UI when the button is disabled
*/
/**
* @var {color}
* The inner border-color for the `default-toolbar` button UI
*/
/**
* @var {color}
* The inner border-color for the `default-toolbar` button UI when the cursor is over the button
*/
/**
* @var {color}
* The inner border-color for the `default-toolbar` button UI when the button is focused
*/
/**
* @var {color}
* The inner border-color for the `default-toolbar` button UI when the button is pressed
*/
/**
* @var {color}
* The inner border-color for the `default-toolbar` button UI when the button is focused
* and the cursor is over the button
*/
/**
* @var {color}
* The inner border-color for the `default-toolbar` button UI when the button is focused
* and pressed
*/
/**
* @var {color}
* The inner border-color for the `default-toolbar` button UI when the button is disabled
*/
/**
* @var {number}
* The body outline width for the `default-toolbar` button UI when the button is focused
*/
/**
* @var {string}
* The body outline-style for the `default-toolbar` button UI when the button is focused
*/
/**
* @var {color}
* The body outline color for the `default-toolbar` button UI when the button is focused
*/
/**
* @var {color}
* The color of the {@link #glyph} icon for the `default-toolbar` button UI
*/
/**
* @var {color}
* The opacity of the {@link #glyph} icon for the `default-toolbar` button UI
*/
/**
* @var {boolean} $button-include-ui-menu-arrows
* True to use a different image url for the menu button arrows for each button UI
*/
/**
* @var {boolean} $button-include-ui-split-arrows
* True to use a different image url for the split button arrows for each button UI
*/
/**
* @var {boolean} $button-include-split-over-arrows
* True to include different split arrows for buttons' hover state.
*/
/**
* @var {boolean} $button-include-split-noline-arrows
* True to include "noline" split arrows for buttons in their default state.
*/
/**
* @var {boolean} $button-toolbar-include-split-noline-arrows
* True to include "noline" split arrows for toolbar buttons in their default state.
*/
/**
* @var {number} $button-opacity-disabled
* opacity to apply to the button's main element when the buton is disabled
*/
/**
* @var {number} $button-inner-opacity-disabled
* opacity to apply to the button's inner elements (icon and text) when the buton is disabled
*/
/**
* @var {number} $button-toolbar-opacity-disabled
* opacity to apply to the toolbar button's main element when the button is disabled
*/
/**
* @var {number} $button-toolbar-inner-opacity-disabled
* opacity to apply to the toolbar button's inner elements (icon and text) when the buton is disabled
*/
/**
* @var {boolean}
* True to include the "default" button UI
*/
/**
* @var {boolean}
* True to include the "default" button UI for "small" scale buttons
*/
/**
* @var {boolean}
* True to include the "default" button UI for "medium" scale buttons
*/
/**
* @var {boolean}
* True to include the "default" button UI for "large" scale buttons
*/
/**
* @var {boolean}
* True to include the "default" button UI for buttons rendered inside a grid cell (Slightly smaller height than default)
*/
/**
* @var {boolean}
* True to include the "default-toolbar" button UI
*/
/**
* @var {boolean}
* True to include the "default-toolbar" button UI for "small" scale buttons
*/
/**
* @var {boolean}
* True to include the "default-toolbar" button UI for "medium" scale buttons
*/
/**
* @var {boolean}
* True to include the "default-toolbar" button UI for "large" scale buttons
*/
/**
* @var {number}
* The default width for a grid cell button's {@link #cfg-menu} arrow
*/
/**
* @var {number}
* The default height for a grid cell button's {@link #cfg-menu} arrow
*/
/**
* @var {number}
* The default width a grid cell {@link Ext.button.Split Split Button}'s arrow
*/
/**
* @var {number}
* The default height a grid cell {@link Ext.button.Split Split Button}'s arrow
*/
/**
* @var {number}
* The default space between a grid cell button's icon and text
*/
/**
* @var {number}
* The default border-radius for a grid cell button
*/
/**
* @var {number}
* The default border-width for a grid cell button
*/
/**
* @var {number}
* The default padding for a grid cell button
*/
/**
* @var {number}
* The default horizontal padding to add to the left and right of the text element for
* a grid cell button
*/
/**
* @var {number}
* The default font-size for a grid cell button
*/
/**
* @var {number}
* The default font-size for a grid cell button when the cursor is over the button
*/
/**
* @var {number}
* The default font-size for a grid cell button when the button is focused
*/
/**
* @var {number}
* The default font-size for a grid cell button when the button is pressed
*/
/**
* @var {number}
* The default font-size for a grid cell button when the button is focused and the cursor
* is over the button
*/
/**
* @var {number}
* The default font-size for a grid cell button when the button is focused and pressed
*/
/**
* @var {number}
* The default font-size for a grid cell button when the button is disabled
*/
/**
* @var {string}
* The default font-weight for a grid cell button
*/
/**
* @var {string}
* The default font-weight for a grid cell button when the cursor is over the button
*/
/**
* @var {string}
* The default font-weight for a grid cell button when the button is focused
*/
/**
* @var {string}
* The default font-weight for a grid cell button when the button is pressed
*/
/**
* @var {string}
* The default font-weight for a grid cell button when the button is focused and the
* cursor is over the button
*/
/**
* @var {string}
* The default font-weight for a grid cell button when the button is focused and pressed
*/
/**
* @var {string}
* The default font-weight for a grid cell button when the button is disabled
*/
/**
* @var {string}
* The default font-family for a grid cell button
*/
/**
* @var {string}
* The default font-family for a grid cell button when the cursor is over the button
*/
/**
* @var {string}
* The default font-family for a grid cell button when the button is focused
*/
/**
* @var {string}
* The default font-family for a grid cell button when the button is pressed
*/
/**
* @var {string}
* The default font-family for a grid cell button when the button is focused and the
* cursor is over the button
*/
/**
* @var {string}
* The default font-family for a grid cell button when the button is focused and pressed
*/
/**
* @var {string}
* The default font-family for a grid cell button when the button is disabled
*/
/**
* @var {number}
* The line-height for the text in a grid cell button
*/
/**
* @var {number}
* The default icon size for a grid cell button
*/
/**
* @var {color}
* The border-color for the `cell` button UI
*/
/**
* @var {color}
* The border-color for the `cell` button UI when the cursor is over the button
*/
/**
* @var {color}
* The border-color for the `cell` button UI when the button is focused
*/
/**
* @var {color}
* The border-color for the `cell` button UI when the button is pressed
*/
/**
* @var {color}
* The border-color for the `cell` button UI when the button is focused and the cursor
* is over the button
*/
/**
* @var {color}
* The border-color for the `cell` button UI when the button is focused and pressed
*/
/**
* @var {color}
* The border-color for the `cell` button UI when the button is disabled
*/
/**
* @var {color}
* The background-color for the `cell` button UI
*/
/**
* @var {color}
* The background-color for the `cell` button UI when the cursor is over the button
*/
/**
* @var {color}
* The background-color for the `cell` button UI when the button is focused
*/
/**
* @var {color}
* The background-color for the `cell` button UI when the button is pressed
*/
/**
* @var {color}
* The background-color for the `cell` button UI when the button is focused and the cursor
* is over the button
*/
/**
* @var {color}
* The background-color for the `cell` button UI when the button is focused and pressed
*/
/**
* @var {color}
* The background-color for the `cell` button UI when the button is disabled
*/
/**
* @var {string/list}
* The background-gradient for the `cell` button UI. Can be either the name of a
* predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `cell` button UI when the cursor is over the button.
* Can be either the name of a predefined gradient or a list of color stops. Used as the
* `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `cell` button UI when the button is focused. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `cell` button UI when the button is pressed. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `cell` button UI when the button is focused and the
* cursor is over the button. Can be either the name of a predefined gradient or a list
* of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `cell` button UI when the button is focused and pressed.
* Can be either the name of a predefined gradient or a list of color stops. Used as the
* `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the `cell` button UI when the button is disabled. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {color}
* The text color for the `cell` button UI
*/
/**
* @var {color}
* The text color for the `cell` button UI when the cursor is over the button
*/
/**
* @var {color}
* The text color for the `cell` button UI when the button is focused
*/
/**
* @var {color}
* The text color for the `cell` button UI when the button is pressed
*/
/**
* @var {color}
* The text color for the `cell` button UI when the button is focused and the cursor is
* over the button
*/
/**
* @var {color}
* The text color for the `cell` button UI when the button is focused and pressed
*/
/**
* @var {color}
* The text color for the `cell` button UI when the button is disabled
*/
/**
* @var {number/list}
* The inner border-width for the `cell` button UI
*/
/**
* @var {number/list}
* The inner border-width for the `cell` button UI when the cursor is over the button
*/
/**
* @var {number/list}
* The inner border-width for the `cell` button UI when the button is focused
*/
/**
* @var {number/list}
* The inner border-width for the `cell` button UI when the button is pressed
*/
/**
* @var {number/list}
* The inner border-width for the `cell` button UI when the button is focused and the
* cursor is over the button
*/
/**
* @var {number/list}
* The inner border-width for the `cell` button UI when the button is focused and pressed
*/
/**
* @var {number/list}
* The inner border-width for the `cell` button UI when the button is disabled
*/
/**
* @var {color}
* The inner border-color for the `cell` button UI
*/
/**
* @var {color}
* The inner border-color for the `cell` button UI when the cursor is over the button
*/
/**
* @var {color}
* The inner border-color for the `cell` button UI when the button is focused
*/
/**
* @var {color}
* The inner border-color for the `cell` button UI when the button is pressed
*/
/**
* @var {color}
* The inner border-color for the `cell` button UI when the button is focused and the
* cursor is over the button
*/
/**
* @var {color}
* The inner border-color for the `cell` button UI when the button is focused and pressed
*/
/**
* @var {color}
* The inner border-color for the `cell` button UI when the button is disabled
*/
/**
* @var {number}
* The body outline width for the `cell` button UI when the button is focused
*/
/**
* @var {string}
* The body outline-style for the `cell` button UI when the button is focused
*/
/**
* @var {color}
* The body outline color for the `cell` button UI when the button is focused
*/
/**
* @var {color}
* The color of the {@link #glyph} icon for the `cell` button UI
*/
/**
* @var {color}
* The opacity of the {@link #glyph} icon for the `cell` button UI
*/
/**
* @var {number} $button-grid-cell-opacity-disabled
* opacity to apply to the button's main element when the button is disabled
*/
/**
* @var {number} $button-grid-cell-inner-opacity-disabled
* opacity to apply to the button's inner elements (icon and text) when the buton is disabled
*/
/**
* @class Ext.tab.Tab
*/
/**
* @var {color}
* The base color of Tabs
*/
/**
* @var {color}
* The base color of focused Tabs
*/
/**
* @var {color}
* The base color of hovered Tabs
*/
/**
* @var {color}
* The base color of the active Tabs
*/
/**
* @var {color}
* The base color of focused hovered Tabs
*/
/**
* @var {color}
* The base color of the active Tab when focused
*/
/**
* @var {color}
* The base color of disabled Tabs
*/
/**
* @var {color}
* The text color of Tabs
*/
/**
* @var {color}
* The text color of focused Tabs
*/
/**
* @var {color}
* The text color of hovered Tabs
*/
/**
* @var {color}
* The text color of the active Tab
*/
/**
* @var {color}
* The text color of focused hovered Tabs
*/
/**
* @var {color}
* The text color of the active Tab when focused
*/
/**
* @var {color}
* The text color of disabled Tabs
*/
/**
* @var {number}
* The font-size of Tabs
*/
/**
* @var {number}
* The font-size of focused Tabs
*/
/**
* @var {number}
* The font-size of hovered Tabs
*/
/**
* @var {number}
* The font-size of the active Tab
*/
/**
* @var {number}
* The font-size of focused hovered Tabs
*/
/**
* @var {number}
* The font-size of the active Tab when focused
*/
/**
* @var {number}
* The font-size of disabled Tabs
*/
/**
* @var {string}
* The font-family of Tabs
*/
/**
* @var {string}
* The font-family of focused Tabs
*/
/**
* @var {string}
* The font-family of hovered Tabs
*/
/**
* @var {string}
* The font-family of the active Tab
*/
/**
* @var {string}
* The font-family of focused hovered Tabs
*/
/**
* @var {string}
* The font-family of the active Tab when focused
*/
/**
* @var {string}
* The font-family of disabled Tabs
*/
/**
* @var {string}
* The font-weight of Tabs
*/
/**
* @var {string}
* The font-weight of focused Tabs
*/
/**
* @var {string}
* The font-weight of hovered Tabs
*/
/**
* @var {string}
* The font-weight of the active Tab
*/
/**
* @var {string}
* The font-weight of focused hovered Tabs
*/
/**
* @var {string}
* The font-weight of the active Tab when focused
*/
/**
* @var {string}
* The font-weight of disabled Tabs
*/
/**
* @var {string}
* The Tab cursor
*/
/**
* @var {string}
* The cursor of disabled Tabs
*/
/**
* @var {string/list}
* The background-gradient for Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for focused Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for hovered Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the active Tab. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for focused hovered Tabs. Can be either the name of a
* predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for the active Tab when focused. Can be either the name of a
* predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {string/list}
* The background-gradient for disabled Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {list}
* The border-radius of Tabs
*/
/**
* @var {number/list}
* The border-width of Tabs
*/
/**
* @var {number/list}
* The border-width of focused Tabs
*/
/**
* @var {number/list}
* The border-width of hovered Tabs
*/
/**
* @var {number/list}
* The border-width of active Tabs
*/
/**
* @var {number/list}
* The border-width of focused hovered Tabs
*/
/**
* @var {number/list}
* The border-width of active Tabs when focused
*/
/**
* @var {number/list}
* The border-width of disabled Tabs
*/
/**
* @var {number/list}
* The inner border-width of Tabs
*/
/**
* @var {number/list}
* The inner border-width of focused Tabs
*/
/**
* @var {number/list}
* The inner border-width of hovered Tabs
*/
/**
* @var {number/list}
* The inner border-width of active Tabs
*/
/**
* @var {number/list}
* The inner border-width of focused hovered Tabs
*/
/**
* @var {number/list}
* The inner border-width of active Tabs when focused
*/
/**
* @var {number/list}
* The inner border-width of disabled Tabs
*/
/**
* @var {color}
* The inner border-color of Tabs
*/
/**
* @var {color}
* The inner border-color of focused Tabs
*/
/**
* @var {color}
* The inner border-color of hovered Tabs
*/
/**
* @var {color}
* The inner border-color of active Tabs
*/
/**
* @var {color}
* The inner border-color of focused hovered Tabs
*/
/**
* @var {color}
* The inner border-color of active Tabs when focused
*/
/**
* @var {color}
* The inner border-color of disabled Tabs
*/
/**
* @var {boolean}
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
*/
/**
* @var {boolean}
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is focused
*/
/**
* @var {boolean}
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is hovered
*/
/**
* @var {boolean}
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is active
*/
/**
* @var {boolean}
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is focused and hovered
*/
/**
* @var {boolean}
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is focused and active
*/
/**
* @var {boolean}
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is disabled
*/
/**
* @var {number}
* The body outline width of focused Tabs
*/
/**
* @var {string}
* The body outline-style of focused Tabs
*/
/**
* @var {color}
* The body outline color of focused Tabs
*/
/**
* @var {color}
* The border-color of Tabs
*/
/**
* @var {color}
* The border-color of focused Tabs
*/
/**
* @var {color}
* The border-color of hovered Tabs
*/
/**
* @var {color}
* The border-color of the active Tab
*/
/**
* @var {color}
* The border-color of focused hovered Tabs
*/
/**
* @var {color}
* The border-color of the active Tab when focused
*/
/**
* @var {color}
* The border-color of disabled Tabs
*/
/**
* @var {number/list}
* The padding of Tabs
*/
/**
* @var {number}
* The horizontal padding to add to the left and right of the Tab's text element
*/
/**
* @var {number/list}
* The margin of Tabs. Typically used to add horizontal space between the tabs.
*/
/**
* @var {number}
* The width of the Tab close icon
*/
/**
* @var {number}
* The height of the Tab close icon
*/
/**
* @var {number}
* The distance to offset the Tab close icon from the top of the tab
*/
/**
* @var {number}
* The distance to offset the Tab close icon from the right of the tab
*/
/**
* @var {number}
* the space in between the text and the close button
*/
/**
* @var {number}
* The opacity of the Tab close icon
*/
/**
* @var {number}
* The opacity of the Tab close icon when hovered
*/
/**
* @var {number}
* The opacity of the Tab close icon when the Tab is disabled
*/
/**
* @var {boolean}
* True to change the x background-postition of the close icon background image on hover
* to allow for a horizontally aligned background image sprite
*/
/**
* @var {boolean}
* True to change the x background-postition of the close icon background image on click
* to allow for a horizontally aligned background image sprite
*/
/**
* @var {number}
* The width of Tab icons
*/
/**
* @var {number}
* The height of Tab icons
*/
/**
* @var {number}
* The line-height of Tabs
*/
/**
* @var {number}
* The space between the Tab icon and the Tab text
*/
/**
* @var {number}
* The background-position of Tab icons
*/
/**
* @var {color}
* The color of Tab glyph icons
*/
/**
* @var {color}
* The color of a Tab glyph icon when the Tab is focused
*/
/**
* @var {color}
* The color of a Tab glyph icon when the Tab is hovered
*/
/**
* @var {color}
* The color of a Tab glyph icon when the Tab is active
*/
/**
* @var {color}
* The color of a Tab glyph icon when the Tab is focused and hovered
*/
/**
* @var {color}
* The color of a Tab glyph icon when the Tab is focused and active
*/
/**
* @var {color}
* The color of a Tab glyph icon when the Tab is disabled
*/
/**
* @var {number}
* The opacity of a Tab glyph icon
*/
/**
* @var {number}
* The opacity of a Tab glyph icon when the Tab is disabled
*/
/**
* @var {number}
* opacity to apply to the tab's main element when the tab is disabled
*/
/**
* @var {number}
* opacity to apply to the tab's text element when the tab is disabled
*/
/**
* @var {number}
* opacity to apply to the tab's icon element when the tab is disabled
*/
/**
* @var {boolean}
* True to include the "default" tab UI
*/
/**
* @class Ext.tab.Bar
*/
/**
* @var {number/list}
* The padding of the Tab Bar
*/
/**
* @var {color}
* The base color of the Tab Bar
*/
/**
* @var {string/list}
* The background-gradient of the Tab Bar. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {color}
* The border-color of the Tab Bar
*/
/**
* @var {number/list}
* The border-width of the Tab Bar
*/
/**
* @var {number}
* The height of the Tab Bar strip
*/
/**
* @var {color}
* The border-color of the Tab Bar strip
*/
/**
* @var {color}
* The background-color of the Tab Bar strip
*/
/**
* @var {number/list}
* The border-width of the Tab Bar strip
*/
/**
* @var {number}
* The width of the Tab Bar scrollers
*/
/**
* @var {number}
* The height of the Tab Bar scrollers
*/
/**
* @var {number/list}
* The margin of "top" Tab Bar scroller buttons
*/
/**
* @var {number/list}
* The margin of "right" Tab Bar scroller buttons
*/
/**
* @var {number/list}
* The margin of "bottom" Tab Bar scroller buttons
*/
/**
* @var {number/list}
* The margin of "left" Tab Bar scroller buttons
*/
/**
* @var {string}
* The cursor of the Tab Bar scrollers
*/
/**
* @var {string}
* The cursor of disabled Tab Bar scrollers
*/
/**
* @var {number}
* The opacity of Tab Bar scrollers
*/
/**
* @var {number}
* The opacity of hovered Tab Bar scrollers
*/
/**
* @var {number}
* The opacity of pressed Tab Bar scrollers
*/
/**
* @var {number}
* The opacity of disabled Tab Bar scrollers
*/
/**
* @var {boolean}
* `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
* hover state by changing their background-position, When `false` scroller buttons are
* given their hover state by applying opacity.
*/
/**
* @var {boolean}
* true to include separate scroller icons for "plain" tabbars
*/
/**
* @var {boolean}
* if true, the tabbar will use symmetrical scroller icons. Top and bottom tabbars
* will share icons, and Left and right will share icons.
*/
/**
* @var {boolean}
* True to include the "default" tabbar UI
*/
/**
* @class Ext.window.Window
*/
/**
* @var {color}
* The base color of Windows
*/
/**
* @var {number}
* The padding of Windows
*/
/**
* @var {number}
* The border-radius of Windows
*/
/**
* @var {number}
* The border-width of Windows
*/
/**
* @var {color}
* The border-color of Windows
*/
/**
* @var {color}
* The inner border-color of Windows
*/
/**
* @var {number}
* The inner border-width of Windows
*/
/**
* @var {color}
* The background-color of Windows
*/
/**
* @var {number}
* The body border-width of Windows
*/
/**
* @var {string}
* The body border-style of Windows
*/
/**
* @var {color}
* The body border-color of Windows
*/
/**
* @var {color}
* The body background-color of Windows
*/
/**
* @var {color}
* The body text color of Windows
*/
/**
* @var {number/list}
* The padding of Window Headers
*/
/**
* @var {number}
* The font-size of Window Headers
*/
/**
* @var {number}
* The line-height of Window Headers
*/
/**
* @var {color}
* The text color of Window Headers
*/
/**
* @var {color}
* The background-color of Window Headers
*/
/**
* @var {string}
* The font-weight of Window Headers
*/
/**
* @var {number}
* The space between the Window {@link Ext.panel.Tool Tools}
*/
/**
* @var {string}
* The background sprite to use for Window {@link Ext.panel.Tool Tools}
*/
/**
* @var {string}
* The font-family of Window Headers
*/
/**
* @var {number/list}
* The padding of the Window Header's text element
*/
/**
* @var {string}
* The text-transform of Window Headers
*/
/**
* @var {number}
* The width of the Window Header icon
*/
/**
* @var {number}
* The height of the Window Header icon
*/
/**
* @var {number}
* The space between the Window Header icon and text
*/
/**
* @var {list}
* The background-position of the Window Header icon
*/
/**
* @var {color}
* The color of the Window Header glyph icon
*/
/**
* @var {number}
* The opacity of the Window Header glyph icon
*/
/**
* @var {number}
* The border-width of Window Headers
*/
/**
* @var {color}
* The inner border-color of Window Headers
*/
/**
* @var {number}
* The inner border-width of Window Headers
*/
/**
* @var {boolean} $ui-force-header-border
* True to force the window header to have a border on the side facing the window body.
* Overrides dock layout's border management border removal rules.
*/
/**
* @var {number}
* The opacity of ghost Windows while dragging
*/
/**
* @var {boolean}
* True to include neptune style border management rules.
*/
/**
* @var {color}
* The color to apply to the border that wraps the body and docked items. The presence of
* the wrap border is controlled by the {@link #border} config. Only applicable when
* `$window-include-border-management-rules` is `true`.
*/
/**
* @var {number}
* The width to apply to the border that wraps the body and docked items. The presence of
* the wrap border is controlled by the {@link #border} config. Only applicable when
* `$window-include-border-management-rules` is `true`.
*/
/**
* @var {boolean}
* True to include the "default" window UI
*/
/**
* @var {boolean}
* True to ignore the frame padding. By default, the frame mixin adds extra padding when
* border radius is larger than border width. This is intended to prevent the content
* from colliding with the rounded corners of the frame. Set this to true to prevent
* the window frame from adding this extra padding.
*/
/**
* @var {number}
* The default font-size of the Window body
*/
/**
* @var {string}
* The default font-weight of the Window body
*/
/**
* @var {string}
* The default font-family of the Window body
*/
/**
* @class Ext.tip.Tip
*/
/**
* @var {color}
* The background-color of the Tip
*/
/**
* @var {string/list}
* The background-gradient of the Tip. Can be either the name of a predefined gradient or a
* list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {color}
* The text color of the Tip body
*/
/**
* @var {number}
* The font-size of the Tip body
*/
/**
* @var {string}
* The font-weight of the Tip body
*/
/**
* @var {number/list}
* The padding of the Tip body
*/
/**
* @var {color}
* The text color of any anchor tags inside the Tip body
*/
/**
* @var {color}
* The text color of the Tip header
*/
/**
* @var {number}
* The font-size of the Tip header
*/
/**
* @var {string}
* The font-weight of the Tip header
*/
/**
* @var {number/list}
* The padding of the Tip header's body element
*/
/**
* @var {color}
* The border-color of the Tip
*/
/**
* @var {number}
* The border-width of the Tip
*/
/**
* @var {number}
* The border-radius of the Tip
*/
/**
* @var {color}
* The inner border-color of the form field error Tip
*/
/**
* @var {number}
* The inner border-width of the form field error Tip
*/
/**
* @var {color}
* The border-color of the form field error Tip
*/
/**
* @var {number}
* The border-radius of the form field error Tip
*/
/**
* @var {number}
* The border-width of the form field error Tip
*/
/**
* @var {color}
* The background-color of the form field error Tip
*/
/**
* @var {number/list}
* The padding of the form field error Tip's body element
*/
/**
* @var {color}
* The text color of the form field error Tip's body element
*/
/**
* @var {number}
* The font-size of the form field error Tip's body element
*/
/**
* @var {string}
* The font-weight of the form field error Tip's body element
*/
/**
* @var {color}
* The color of anchor tags in the form field error Tip's body element
*/
/**
* @var {number}
* The space between {@link Ext.panel.Tool Tools} in the header
*/
/**
* @var {string}
* The sprite to use for the header {@link Ext.panel.Tool Tools}
*/
/**
* @var {boolean}
* True to include the "default" tip UI
*/
/**
* @var {boolean}
* True to include the "form-invalid" tip UI
*/
/**
* @class Ext.container.ButtonGroup
*/
/**
* @var {color}
* The background-color of the ButtonGroup
*/
/**
* @var {color}
* The border-color of the ButtonGroup
*/
/**
* @var {number}
* The border-radius of the ButtonGroup
*/
/**
* @var {number}
* The border-radius of framed ButtonGroups
*/
/**
* @var {number}
* The border-width of the ButtonGroup
*/
/**
* @var {number/list}
* The body padding of the ButtonGroup
*/
/**
* @var {number/list}
* The inner border-width of the ButtonGroup
*/
/**
* @var {color}
* The inner border-color of the ButtonGroup
*/
/**
* @var {number/list}
* The margin of the header element. Used to add space around the header.
*/
/**
* @var {number}
* The font-size of the header
*/
/**
* @var {number}
* The font-weight of the header
*/
/**
* @var {number}
* The font-family of the header
*/
/**
* @var {number}
* The line-height of the header
*/
/**
* @var {number}
* The text color of the header
*/
/**
* @var {number}
* The padding of the header
*/
/**
* @var {number}
* The background-color of the header
*/
/**
* @var {number}
* The border-spacing to use on the table layout element
*/
/**
* @var {number}
* The background-color of framed ButtonGroups
*/
/**
* @var {number}
* The border-width of framed ButtonGroups
*/
/**
* @var {string}
* Sprite image to use for header {@link Ext.panel.Tool Tools}
*/
/**
* @var {boolean}
* True to include the "default" button group UI
*/
/**
* @var {boolean}
* True to include the "default-framed" button group UI
*/
/**
* @class Ext.window.MessageBox
*/
/**
* @var {color}
* The background-color of the MessageBox body
*/
/**
* @var {number}
* The border-width of the MessageBox body
*/
/**
* @var {color}
* The border-color of the MessageBox body
*/
/**
* @var {string}
* The border-style of the MessageBox body
*/
/**
* @var {list}
* The background-position of the MessageBox icon
*/
/**
* @var {number}
* The size of the MessageBox icon
*/
/**
* @var {number}
* The amount of space between the MessageBox icon and the message text
*/
/**
* @class Ext.form.CheckboxGroup
*/
/**
* @var {number/list}
* The padding of the CheckboxGroup body element
*/
/**
* @var {color}
* The border color of the CheckboxGroup body element when in an invalid state.
*/
/**
* @var {string}
* The border style of the CheckboxGroup body element when in an invalid state.
*/
/**
* @var {number}
* The border width of the CheckboxGroup body element when in an invalid state.
*/
/**
* @var {string}
* The background image of the CheckboxGroup body element when in an invalid state.
*/
/**
* @var {string}
* The background-repeat of the CheckboxGroup body element when in an invalid state.
*/
/**
* @var {string}
* The background-position of the CheckboxGroup body element when in an invalid state.
*/
/**
* @var {boolean}
* True to include the "default" checkboxgroup UI
*/
/**
* @class Ext.form.FieldSet
*/
/**
* @var {number}
* The font-size of the FieldSet header
*/
/**
* @var {string}
* The font-weight of the FieldSet header
*/
/**
* @var {string}
* The font-family of the FieldSet header
*/
/**
* @var {number/string}
* The line-height of the FieldSet header
*/
/**
* @var {color}
* The text color of the FieldSet header
*/
/**
* @var {number}
* The border-width of the FieldSet
*/
/**
* @var {string}
* The border-style of the FieldSet
*/
/**
* @var {color}
* The border-color of the FieldSet
*/
/**
* @var {number}
* The border radius of FieldSet elements.
*/
/**
* @var {number/list}
* The FieldSet's padding
*/
/**
* @var {number/list}
* The FieldSet's margin
*/
/**
* @var {number/list}
* The padding to apply to the FieldSet's header
*/
/**
* @var {number}
* The size of the FieldSet's collapse tool
*/
/**
* @var {number/list}
* The margin to apply to the FieldSet's collapse tool
*/
/**
* @var {number/list}
* The padding to apply to the FieldSet's collapse tool
*/
/**
* @var {string} $fieldset-collapse-tool-background-image
* The background-image to use for the collapse tool. If 'none' the default tool
* sprite will be used. Defaults to 'none'.
*/
/**
* @var {number}
* The opacity of the FieldSet's collapse tool
*/
/**
* @var {number}
* The opacity of the FieldSet's collapse tool when hovered
*/
/**
* @var {number}
* The opacity of the FieldSet's collapse tool when pressed
*/
/**
* @var {number/list}
* The margin to apply to the FieldSet's checkbox (for FieldSets that use
* {@link #checkboxToggle})
*/
/**
* @var {boolean}
* True to include the "default" fieldset UI
*/
/**
* @class Ext.toolbar.Paging
*/
/**
* @var {boolean}
* True to include different icons when the paging toolbar buttons are disabled.
*/
/**
* @class Ext.view.BoundList
*/
/**
* @var {color}
* The background-color of the BoundList
*/
/**
* @var {color}
* The border-color of the BoundList
*/
/**
* @var {number}
* The border-width of the BoundList
*/
/**
* @var {string}
* The border-style of the BoundList
*/
/**
* @var {number}
* The height of BoundList items
*/
/**
* @var {string}
* The font family of the BoundList items
*/
/**
* @var {number}
* The font size of the BoundList items
*/
/**
* @var {string}
* The font-weight of the BoundList items
*/
/**
* @var {number/list}
* The padding of BoundList items
*/
/**
* @var {number}
* The border-width of BoundList items
*/
/**
* @var {string}
* The border-style of BoundList items
*/
/**
* @var {color}
* The border-color of BoundList items
*/
/**
* @var {color}
* The border-color of hovered BoundList items
*/
/**
* @var {color}
* The border-color of selected BoundList items
*/
/**
* @var {color}
* The background-color of hovered BoundList items
*/
/**
* @var {color}
* The background-color of selected BoundList items
*/
/**
* @class Ext.picker.Date
*/
/**
* @var {number}
* The border-width of the DatePicker
*/
/**
* @var {string}
* The border-style of the DatePicker
*/
/**
* @var {color}
* The background-color of the DatePicker
*/
/**
* @var {string}
* The background-image of the DatePicker next arrow
*/
/**
* @var {list}
* The background-position of the DatePicker next arrow
*/
/**
* @var {string}
* The background-image of the DatePicker previous arrow
*/
/**
* @var {list}
* The background-position of the DatePicker previous arrow
*/
/**
* @var {number}
* The width of DatePicker arrows
*/
/**
* @var {number}
* The height of DatePicker arrows
*/
/**
* @var {string}
* The type of cursor to display when the cursor is over a DatePicker arrow
*/
/**
* @var {number}
* The opacity of the DatePicker arrows
*/
/**
* @var {number}
* The opacity of the DatePicker arrows when hovered
*/
/**
* @var {string/list}
* The Date Picker header background gradient. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {number/list}
* The padding of the Date Picker header
*/
/**
* @var {color}
* The color of the Date Picker month button
*/
/**
* @var {number}
* The width of the arrow on the Date Picker month button
*/
/**
* @var {string}
* The background-image of the arrow on the Date Picker month button
*/
/**
* @var {boolean}
* True to render the month button as transparent
*/
/**
* @var {string}
* The text-align of the Date Picker header
*/
/**
* @var {number}
* The height of Date Picker items
*/
/**
* @var {number}
* The width of Date Picker items
*/
/**
* @var {number/list}
* The padding of Date Picker items
*/
/**
* @var {string}
* The font-family of Date Picker items
*/
/**
* @var {number}
* The font-size of Date Picker items
*/
/**
* @var {string}
* The font-weight of Date Picker items
*/
/**
* @var {string}
* The text-align of Date Picker items
*/
/**
* @var {color}
* The text color of Date Picker items
*/
/**
* @var {string}
* The type of cursor to display when the cursor is over a Date Picker item
*/
/**
* @var {string}
* The font-family of Date Picker column headers
*/
/**
* @var {number}
* The font-size of Date Picker column headers
*/
/**
* @var {string}
* The font-weight of Date Picker column headers
*/
/**
* @var {string/list}
* The background-gradient of Date Picker column headers. Can be either the name of a
* predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {string}
* The border-style of Date Picker column headers
*/
/**
* @var {number}
* The border-width of Date Picker column headers
*/
/**
* @var {string}
* The text-align of Date Picker column headers
*/
/**
* @var {number}
* The height of Date Picker column headers
*/
/**
* @var {number/list}
* The padding of Date Picker column headers
*/
/**
* @var {number}
* The border-width of Date Picker items
*/
/**
* @var {string}
* The border-style of Date Picker items
*/
/**
* @var {color}
* The border-color of Date Picker items
*/
/**
* @var {string}
* The border-style of today's date on the Date Picker
*/
/**
* @var {string}
* The border-style of the selected item
*/
/**
* @var {string}
* The font-weight of the selected item
*/
/**
* @var {color}
* The text color of the items in the previous and next months
*/
/**
* @var {string}
* The type of cursor to display when the cursor is over a disabled item
*/
/**
* @var {color}
* The text color of disabled Date Picker items
*/
/**
* @var {color}
* The background-color of disabled Date Picker items
*/
/**
* @var {color}
* The background-color of the Date Picker footer
*/
/**
* @var {string/list}
* The background-gradient of the Date Picker footer. Can be either the name of a
* predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {number/list}
* The border-width of the Date Picker footer
*/
/**
* @var {string}
* The border-style of the Date Picker footer
*/
/**
* @var {string}
* The text-align of the Date Picker footer
*/
/**
* @var {number/list}
* The padding of the Date Picker footer
*/
/**
* @var {number}
* The space between the footer buttons
*/
/**
* @var {color}
* The border-color of the Month Picker
*/
/**
* @var {number}
* The border-width of the Month Picker
*/
/**
* @var {string}
* The border-style of the Month Picker
*/
/**
* @var {color}
* The text color of Month Picker items
*/
/**
* @var {color}
* The text color of Month Picker items
*/
/**
* @var {color}
* The border-color of Month Picker items
*/
/**
* @var {string}
* The border-style of Month Picker items
*/
/**
* @var {string}
* The font-family of Month Picker items
*/
/**
* @var {number}
* The font-size of Month Picker items
*/
/**
* @var {string}
* The font-weight of Month Picker items
*/
/**
* @var {number/list}
* The margin of Month Picker items
*/
/**
* @var {string}
* The text-align of Month Picker items
*/
/**
* @var {number}
* The height of Month Picker items
*/
/**
* @var {string}
* The type of cursor to display when the cursor is over a Month Picker item
*/
/**
* @var {color}
* The background-color of hovered Month Picker items
*/
/**
* @var {color}
* The background-color of selected Month Picker items
*/
/**
* @var {string}
* The border-style of selected Month Picker items
*/
/**
* @var {color}
* The border-color of selected Month Picker items
*/
/**
* @var {number}
* The height of the Month Picker year navigation buttons
*/
/**
* @var {number}
* The width of the Month Picker year navigation buttons
*/
/**
* @var {string}
* The type of cursor to display when the cursor is over a Month Picker year navigation button
*/
/**
* @var {number}
* The opacity of the Month Picker year navigation buttons
*/
/**
* @var {number}
* The opacity of hovered Month Picker year navigation buttons
*/
/**
* @var {string}
* The background-image of the Month Picker next year navigation button
*/
/**
* @var {string}
* The background-image of the Month Picker previous year navigation button
*/
/**
* @var {list}
* The background-poisition of the Month Picker next year navigation button
*/
/**
* @var {list}
* The background-poisition of the hovered Month Picker next year navigation button
*/
/**
* @var {list}
* The background-poisition of the Month Picker previous year navigation button
*/
/**
* @var {list}
* The background-poisition of the hovered Month Picker previous year navigation button
*/
/**
* @var {string}
* The border-style of the Month Picker separator
*/
/**
* @var {number}
* The border-width of the Month Picker separator
*/
/**
* @var {color}
* The border-color of the Month Picker separator
*/
/**
* @var {number/list}
* The margin of Month Picker items when the datepicker does not have footer buttons
*/
/**
* @var {number}
* The height of Month Picker items when the datepicker does not have footer buttons
*/
/**
* @class Ext.picker.Color
*/
/**
* @var {color}
* The background-color of Color Pickers
*/
/**
* @var {color}
* The border-color of Color Pickers
*/
/**
* @var {number}
* The border-width of Color Pickers
*/
/**
* @var {string}
* The border-style of Color Pickers
*/
/**
* @var {number}
* The number of columns to display in the Color Picker
*/
/**
* @var {number}
* The number of rows to display in the Color Picker
*/
/**
* @var {number}
* The height of each Color Picker item
*/
/**
* @var {number}
* The width of each Color Picker item
*/
/**
* @var {number}
* The padding of each Color Picker item
*/
/**
* @var {string}
* The cursor to display when the mouse is over a Color Picker item
*/
/**
* @var {color}
* The border-color of Color Picker items
*/
/**
* @var {number}
* The border-width of Color Picker items
*/
/**
* @var {string}
* The border-style of Color Picker items
*/
/**
* @var {color}
* The border-color of hovered Color Picker items
*/
/**
* @var {color}
* The background-color of Color Picker items
*/
/**
* @var {color}
* The background-color of hovered Color Picker items
*/
/**
* @var {color}
* The border-color of the selected Color Picker item
*/
/**
* @var {color}
* The background-color of the selected Color Picker item
*/
/**
* @var {color}
* The inner border-color of Color Picker items
*/
/**
* @var {number}
* The inner border-width of Color Picker items
*/
/**
* @var {string}
* The inner border-style of Color Picker items
*/
/**
* @class Ext.form.field.HtmlEditor
*/
/**
* @var {number}
* The border-width of the HtmlEditor
*/
/**
* @var {color}
* The border-color of the HtmlEditor
*/
/**
* @var {color}
* The background-color of the HtmlEditor
*/
/**
* @var {number}
* The size of the HtmlEditor toolbar icons
*/
/**
* @var {number}
* The font-size of the HtmlEditor's font selection control
*/
/**
* @var {number}
* The font-family of the HtmlEditor's font selection control
*/
/**
* @class Ext.grid.column.Action
*/
/**
* @var {number}
* The height of action column icons
*/
/**
* @var {number}
* The width of action column icons
*/
/**
* @var {string}
* The type of cursor to display when the cursor is over an action column icon
*/
/**
* @var {number}
* The opacity of disabled action column icons
*/
/**
* @var {number}
* The amount of padding to add to the left and right of the action column cell
*/
/**
* @class Ext.grid.column.Check
*/
/**
* @var {number}
* Opacity of disabled CheckColumns
*/
/**
* @class Ext.grid.column.RowNumberer
*/
/**
* @var {number}
* The horizontal space before the number in the RowNumberer cell
*/
/**
* @var {number}
* The horizontal space after the number in the RowNumberer cell
*/
/**
* @class Ext.form.field.Base
*/
/**
* @var {number} $form-field-height
* Height for form fields.
*/
/**
* @var {number} $form-toolbar-field-height
* Height for form fields in toolbar.
*/
/**
* @var {number} $form-field-padding
* Padding around form fields.
*/
/**
* @var {number} $form-field-font-size
* Font size for form fields.
*/
/**
* @var {string} $form-field-font-family
* Font family for form fields.
*/
/**
* @var {string} $form-field-font-weight
* Font weight for form fields.
*/
/**
* @var {number} $form-toolbar-field-font-size
* Font size for toolbar form fields.
*/
/**
* @var {string} $form-toolbar-field-font-family
* Font family for toolbar form fields.
*/
/**
* @var {string} $form-toolbar-field-font-weight
* Font weight for toolbar form fields.
*/
/**
* @var {color} $form-field-color
* Text color for form fields.
*/
/**
* @var {color} $form-field-empty-color
* Text color for empty form fields.
*/
/**
* @var {color} $form-field-border-color
* Border color for form fields.
*/
/**
* @var {number} $form-field-border-width
* Border width for form fields.
*/
/**
* @var {string} $form-field-border-style
* Border style for form fields.
*/
/**
* @var {color} $form-field-focus-border-color
* Border color for focused form fields.
*
* In the default Neptune color scheme this is the same as $base-highlight-color
* but it does not change automatically when one changes the $base-color. This is because
* checkboxes and radio buttons have this focus color hard coded into their background
* images. If this color is changed, you should also modify checkbox and radio button
* background images to match
*/
/**
* @var {color} $form-field-invalid-border-color
* Border color for invalid form fields.
*/
/**
* @var {color} $form-field-background-color
* Background color for form fields.
*/
/**
* @var {string} $form-field-background-image
* Background image for form fields.
*/
/**
* @var {color} $form-field-invalid-background-color
* Background color for invalid form fields.
*/
/**
* @var {string} $form-field-invalid-background-image
* Background image for invalid form fields.
*/
/**
* @var {string} $form-field-invalid-background-repeat
* Background repeat for invalid form fields.
*/
/**
* @var {string/list} $form-field-invalid-background-position
* Background position for invalid form fields.
*/
/**
* @var {boolean}
* True to include the "default" field UI
*/
/**
* @var {boolean}
* True to include the "toolbar" field UI
*/
/**
* @class Ext.form.Labelable
*/
/**
* @var {color}
* The text color of form field labels
*/
/**
* @var {string}
* The font-weight of form field labels
*/
/**
* @var {number}
* The font-size of form field labels
*/
/**
* @var {string}
* The font-family of form field labels
*/
/**
* @var {number}
* The line-height of form field labels
*/
/**
* @var {number}
* Horizontal space between the label and the field body when the label is left-aligned.
*/
/**
* @var {number}
* Vertical space between the label and the field body when the label is top-aligned.
*/
/**
* @var {string}
* The background image for error icons
*/
/**
* @var {number}
* Width for form error icons.
*/
/**
* @var {number}
* Height for form error icons.
*/
/**
* @var {number/list}
* Margin for error icons that are aligned to the side of the field
*/
/**
* @var {number}
* The space between the icon and the message for errors that display under the field
*/
/**
* @var {number/list}
* The padding on errors that display under the form field
*/
/**
* @var {color}
* The text color of form error messages
*/
/**
* @var {string}
* The font-weight of form error messages
*/
/**
* @var {number}
* The font-size of form error messages
*/
/**
* @var {string}
* The font-family of form error messages
*/
/**
* @var {number}
* The line-height of form error messages
*/
/**
* @var {number}
* The bottom margin to apply to form items when in auto, anchor, vbox, or table layout.
* This value is also used as the default border-spacing in a form-layout.
*/
/**
* @var {number}
* Opacity of disabled form fields
*/
/**
* @var {color}
* The text color of toolbar form field labels
*/
/**
* @var {string}
* The font-weight of toolbar form field labels
*/
/**
* @var {number}
* The font-size of toolbar form field labels
*/
/**
* @var {string}
* The font-family of toolbar form field labels
*/
/**
* @var {number}
* The line-height of toolbar form field labels
*/
/**
* @var {number}
* Horizontal space between the toolbar field's label and the field body when the label is left-aligned.
*/
/**
* @var {number}
* Vertical space between the toolbar field's label and the field body when the label is top-aligned.
*/
/**
* @var {string}
* The background image for toolbar field error icons
*/
/**
* @var {number}
* Width for toolbar field error icons.
*/
/**
* @var {number}
* Height for toolbar field error icons.
*/
/**
* @var {number/list}
* Margin for toolbar field error icons that are aligned to the side of the field
*/
/**
* @var {number}
* The space between the icon and the message for errors that display under a toolbar field
*/
/**
* @var {number/list}
* The padding on errors that display under the toolbar form field
*/
/**
* @var {color}
* The text color of toolbar form error messages
*/
/**
* @var {string}
* The font-weight of toolbar form field error messages
*/
/**
* @var {number}
* The font-size of toolbar form field error messages
*/
/**
* @var {string}
* The font-family of toolbar form field error messages
*/
/**
* @var {number}
* The line-height of toolbar form field error messages
*/
/**
* @var {number}
* Opacity of disabled toolbar form fields
*/
/**
* @var {boolean}
* True to include the "default" label UI
*/
/**
* @var {boolean}
* True to include the "default" label UI
*/
/**
* @class Ext.form.field.Text
*/
/**
* @var {number}
* The height of text fields
*/
/**
* @var {number}
* Font size for text fields.
*/
/**
* @var {string}
* Font family for text fields.
*/
/**
* @var {string}
* Font weight for text fields.
*/
/**
* @var {color}
* The color of the text field's input element
*/
/**
* @var {color}
* The background color of the text field's input element
*/
/**
* @var {number/list}
* The border width of text fields
*/
/**
* @var {string/list}
* The border style of text fields
*/
/**
* @var {color/list}
* The border color of text fields
*/
/**
* @var {color/list}
* The border color of the focused text field
*/
/**
* @var {color}
* Border color for invalid text fields.
*/
/**
* @var {number/list}
* Border radius for text fields
*/
/**
* @var {string}
* The background image of the text field's input element
*/
/**
* @var {number/list}
* The padding of the text field's input element
*/
/**
* @var {color}
* Text color for empty text fields.
*/
/**
* @var {number}
* The default width of the text field's body element (the element that contains the input
* element and triggers) when the field is not sized explicitly using the {@link #width}
* config, or sized by it's containing layout.
*/
/**
* @var {color}
* Background color of the text field's input element when the field value is invalid.
*/
/**
* @var {string}
* Background image of the text field's input element when the field value is invalid.
*/
/**
* @var {string}
* Background repeat of the text field's input element when the field value is invalid.
*/
/**
* @var {string/list}
* Background position of the text field's input element when the field value is invalid.
*/
/**
* @var {boolean}
* `true` to use classic-theme styled border for text fields.
*/
/**
* @var {number} $form-textarea-line-height
* The line-height to use for the TextArea's text
*/
/**
* @var {number} $form-textarea-body-height
* The default width of the TextArea's body element (the element that contains the textarea
* html element when the field is not sized explicitly using the {@link #width}config, or
* sized by it's containing layout.
*/
/**
* @var {color}
* Text color for file fields
*/
/**
* @var {number}
* The width of the text field's trigger element
*/
/**
* @var {number/list}
* The width of the text field's trigger's border
*/
/**
* @var {color/list}
* The color of the text field's trigger's border
*/
/**
* @var {string/list}
* The style of the text field's trigger's border
*/
/**
* @var {color}
* The color of the text field's trigger's border when hovered
*/
/**
* @var {color}
* The color of the text field's trigger's border when the field is focused
*/
/**
* @var {color}
* The color of the text field's trigger's border when the field is focused and the trigger is hovered
*/
/**
* @var {string}
* The default background image for text field triggers
*/
/**
* @var {color}
* The background color of the text field's trigger element
*/
/**
* @var {number}
* The height of toolbar text fields
*/
/**
* @var {number}
* Font size for toolbar text fields.
*/
/**
* @var {string}
* Font family for toolbar text fields.
*/
/**
* @var {string}
* Font weight for toolbar text fields.
*/
/**
* @var {color}
* The color of the toolbar text field's input element
*/
/**
* @var {color}
* The background color of the toolbar text field's input element
*/
/**
* @var {number/list}
* The border width of toolbar text fields
*/
/**
* @var {string/list}
* The border style of toolbar text fields
*/
/**
* @var {color/list}
* The border color of toolbar text fields
*/
/**
* @var {color/list}
* The border color of the focused toolbar text field
*/
/**
* @var {color} $form-field-invalid-border-color
* Border color for invalid toolbar text fields.
*/
/**
* @var {number/list}
* Border radius for toolbar text fields
*/
/**
* @var {string}
* The background image of the toolbar text field's input element
*/
/**
* @var {number/list}
* The padding of the toolbar text field's input element
*/
/**
* @var {color}
* Text color for empty toolbar text fields.
*/
/**
* @var {number}
* The default width of the toolbar text field's body element (the element that contains the input
* element and triggers) when the field is not sized explicitly using the {@link #width}
* config, or sized by it's containing layout.
*/
/**
* @var {color}
* Background color of the toolbar text field's input element when the field value is invalid.
*/
/**
* @var {string}
* Background image of the toolbar text field's input element when the field value is invalid.
*/
/**
* @var {string}
* Background repeat of the toolbar text field's input element when the field value is invalid.
*/
/**
* @var {string/list}
* Background position of the toolbar text field's input element when the field value is invalid.
*/
/**
* @var {boolean}
* `true` to use classic-theme styled border for toolbar text fields.
*/
/**
* @var {number/string}
* The line-height to use for the toolbar TextArea's text
*/
/**
* @var {number}
* The default width of the toolbar TextArea's body element (the element that contains the
* textarea html element when the field is not sized explicitly using the {@link #width}
* config, or sized by it's containing layout.
*/
/**
* @var {color}
* Text color for toolbar file fields
*/
/**
* @var {number}
* The width of the toolbar text field's trigger element
*/
/**
* @var {number/list}
* The width of the toolbar text field's trigger's border
*/
/**
* @var {color/list}
* The color of the toolbar text field's trigger's border
*/
/**
* @var {string/list}
* The style of the toolbar text field's trigger's border
*/
/**
* @var {color}
* The color of the toolbar text field's trigger's border when hovered
*/
/**
* @var {color}
* The color of the toolbar text field's trigger's border when the field is focused
*/
/**
* @var {color}
* The color of the toolbar text field's trigger's border when the field is focused and the trigger is hovered
*/
/**
* @var {string}
* The default background image for toolbar text field triggers
*/
/**
* @var {color}
* The background color of the toolbar text field's trigger element
*/
/**
* @var {boolean}
* True to include the "default" text field UI
*/
/**
* @var {boolean}
* True to include the "toolbar" text field UI
*/
/**
* @class Ext.form.field.Spinner
*/
/**
* @var {boolean}
* True to use vertically oriented triggers. False to use horizontally oriented triggers.
* Themes that set this property to true must also override the
* {@link Ext.form.trigger.Spinner#vertical} config to match. Defaults to true. When
* 'vertical' orientation is used, the background image for both triggers is
* 'form/spinner'. When 'horizontal' is used, the triggers use separate background
* images - 'form/spinner-up', and 'form/spinner-down'.
*/
/**
* @var {string}
* Background image for vertically oriented spinner triggers
*/
/**
* @var {string}
* Background image for the "up" trigger when trigger buttons are horizontally aligned
*/
/**
* @var {string}
* Background image for the "down" trigger when trigger buttons are horizontally aligned
*/
/**
* @var {boolean}
* `true` to use vertically oriented triggers for fields with the 'toolbar' UI.
*/
/**
* @var {string}
* Background image for vertically oriented toolbar spinner triggers
*/
/**
* @var {string}
* Background image for the "up" toolbar trigger when trigger buttons are horizontally aligned
*/
/**
* @var {string}
* Background image for the "down" toolbar trigger when trigger buttons are horizontally aligned
*/
/**
* @var {boolean}
* True to include the "default" spinner UI
*/
/**
* @var {boolean}
* True to include the "toolbar" spinner UI
*/
/**
* @class Ext.form.field.Checkbox
*/
/**
* @var {number}
* The size of the checkbox
*/
/**
* @var {string}
* The background-image of the checkbox
*/
/**
* @var {string}
* The background-image of the radio button
*/
/**
* @var {color}
* The color of the checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-weight of the checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-size of the checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-family of the checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The line-height of the checkbox's {@link #boxLabel}
*/
/**
* @var {number}
* The space between the {@link #boxLabel} and the checkbox.
*/
/**
* @var {number}
* The size of the toolbar checkbox
*/
/**
* @var {string}
* The background-image of the toolbar checkbox
*/
/**
* @var {string}
* The background-image of the toolbar radio button
*/
/**
* @var {color}
* The color of the toolbar checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-weight of the toolbar checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-size of the toolbar checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The font-family of the toolbar checkbox's {@link #boxLabel}
*/
/**
* @var {string}
* The line-height of the toolbar checkbox's {@link #boxLabel}
*/
/**
* @var {number}
* The space between the {@link #boxLabel} and the toolbar checkbox.
*/
/**
* @var {boolean}
* True to include the "default" checkbox UI
*/
/**
* @var {boolean}
* True to include the "toolbar" checkbox UI
*/
/**
* @class Ext.form.field.Display
*/
/**
* @var {color}
* The text color of display fields
*/
/**
* @var {number}
* The font-size of display fields
*/
/**
* @var {string}
* The font-family of display fields
*/
/**
* @var {string}
* The font-weight of display fields
*/
/**
* @var {number}
* The line-height of display fields
*/
/**
* @var {color}
* The text color of toolbar display fields
*/
/**
* @var {number}
* The font-size of toolbar display fields
*/
/**
* @var {string}
* The font-family of toolbar display fields
*/
/**
* @var {string}
* The font-weight of toolbar display fields
*/
/**
* @var {number}
* The line-height of toolbar display fields
*/
/**
* @var {boolean}
* True to include the "default" display field UI
*/
/**
* @var {boolean}
* True to include the "toolbar" display field UI
*/
/**
* @class Ext.view.Table
*/
/**
* @var {color}
* The color of the text in the grid cells
*/
/**
* @var {number}
* The font size of the text in the grid cells
*/
/**
* @var {number}
* The line-height of the text inside the grid cells.
*/
/**
* @var {string}
* The font-weight of the text in the grid cells
*/
/**
* @var {string}
* The font-family of the text in the grid cells
*/
/**
* @var {color}
* The background-color of the grid cells
*/
/**
* @var {color}
* The border-color of row/column borders. Can be specified as a single color, or as a list
* of colors containing the row border color followed by the column border color.
*/
/**
* @var {string}
* The border-style of the row/column borders.
*/
/**
* @var {number}
* The border-width of the row and column borders.
*/
/**
* @var {color}
* The background-color of "special" cells. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
*/
/**
* @var {string}
* The background-gradient to use for "special" cells. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
*/
/**
* @var {number}
* The border-width of "special" cells. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
* Only applies to the vertical border, since the row border width is determined by
* {#$grid-row-cell-border-width}.
*/
/**
* @var {color}
* The border-color of "special" cells. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
* Only applies to the vertical border, since the row border color is determined by
* {#$grid-row-cell-border-color}.
*/
/**
* @var {string}
* The border-style of "special" cells. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
* Only applies to the vertical border, since the row border style is determined by
* {#$grid-row-cell-border-style}.
*/
/**
* @var {color}
* The border-color of "special" cells when the row is selected using a {@link
* Ext.selection.RowModel Row Selection Model}. Special cells are created by {@link
* Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel Checkbox Selection
* Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
* Only applies to the vertical border, since the selected row border color is determined by
* {#$grid-row-cell-selected-border-color}.
*/
/**
* @var {color}
* The background-color of "special" cells when the row is hovered. Special cells are
* created by {@link Ext.grid.RowNumberer RowNumberer}, {@link Ext.selection.CheckboxModel
* Checkbox Selection Model} and {@link Ext.grid.plugin.RowExpander RowExpander}.
*/
/**
* @var {color}
* The background-color color of odd-numbered rows when the table view is configured with
* `{@link Ext.view.Table#stripeRows stripeRows}: true`.
*/
/**
* @var {string}
* The border-style of the hovered row
*/
/**
* @var {color}
* The text color of the hovered row
*/
/**
* @var {color}
* The background-color of the hovered row
*/
/**
* @var {color}
* The border-color of the hovered row
*/
/**
* @var {string}
* The border-style of the selected row
*/
/**
* @var {color}
* The text color of the selected row
*/
/**
* @var {color}
* The background-color of the selected row
*/
/**
* @var {color}
* The border-color of the selected row
*/
/**
* @var {number}
* The border-width of the focused cell
*/
/**
* @var {color}
* The border-color of the focused cell
*/
/**
* @var {string}
* The border-style of the focused cell
*/
/**
* @var {number}
* The spacing between grid cell border and inner focus border
*/
/**
* @var {color}
* The text color of the focused cell
*/
/**
* @var {color}
* The background-color of the focused cell
*/
/**
* @var {boolean}
* True to show the focus border when a row is focused even if the grid has no
* {@link Ext.panel.Table#rowLines rowLines}.
*/
/**
* @var {color}
* The text color of a selected cell when using a {@link Ext.selection.CellModel
* Cell Selection Model}.
*/
/**
* @var {color}
* The background-color of a selected cell when using a {@link Ext.selection.CellModel
* Cell Selection Model}.
*/
/**
* @var {number}
* The amount of padding to apply to the grid cell's inner div element
*/
/**
* @var {string}
* The type of text-overflow to use on the grid cell's inner div element
*/
/**
* @var {color}
* The border-color of the grid body
*/
/**
* @var {number}
* The border-width of the grid body border
*/
/**
* @var {string}
* The border-style of the grid body border
*/
/**
* @var {color}
* The background-color of the grid body
*/
/**
* @var {number}
* The amount of padding to apply to the grid body when the grid contains no data.
*/
/**
* @var {color}
* The text color of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
* the grid contains no data.
*/
/**
* @var {color}
* The background color of the grid body when the grid contains no data.
*/
/**
* @var {number}
* The font-size of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
* the grid contains no data.
*/
/**
* @var {number}
* The font-weight of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
* the grid contains no data.
*/
/**
* @var {number}
* The font-family of the {@link Ext.view.Table#emptyText emptyText} in the grid body when
* the grid contains no data.
*/
/**
* @var {color}
* The color of the resize markers that display when dragging a column border to resize
* the column
*/
/*
* Vars for fields which are rendered to fit inside grid cells.
* This includes cell and row editor fields and fields in widget columns.
*/
/**
* @class Ext.form.field.Base
*/
/**
* @var {number}
* The height of text fields rendered in the context of a grid cell. Defaults to $form-field-height. If grid row
* height is smaller than $form-field-height, defaults to the grid row height. Grid row
* height is calculated by adding $grid-row-cell-line-height to the top and bottom values of
* $grid-cell-inner-padding.
*/
/**
* @var {number/list}
* The padding of grid fields.
*/
/**
* @var {number}
* The color of the grid field text
*/
/**
* @var {number}
* The font size of the grid field text
*/
/**
* @var {string}
* The font-weight of the grid field text
*/
/**
* @var {string}
* The font-family of the grid field text
*/
/**
* @var {boolean}
* True to include the "grid-cell" form field UIs input fields rendered in the context of a grid cell.
*
* This defaults to `true`. It is required if either grid editors
* ({@link Ext.grid.plugin.CellEditing cell} or {@link Ext.grid.plugin.RowEditing row})
* are being used, or if a {@link Ext.grid.column.Widget WidgetColumn} is being used to
* house an input field.
*/
/**
* @class Ext.form.field.Text
*/
/**
* @var {number}
* The height of text fields rendered in the context of a grid cell
*/
/**
* @var {number}
* Font size for text fields rendered in the context of a grid cell.
*/
/**
* @var {string}
* Font family for text fields rendered in the context of a grid cell.
*/
/**
* @var {string}
* Font weight for text fields rendered in the context of a grid cell.
*/
/**
* @var {color}
* The color of a text field's input element when rendered in the context of a grid cell
*/
/**
* @var {color}
* The background color of a text field's input element when entered in the context of a grid cell
*/
/**
* @var {number/list}
* The border width of text fields entered in the context of a grid cell
*/
/**
* @var {string/list}
* The border style of text fields rendered in the context of a grid cell
*/
/**
* @var {color/list}
* The border color of text fields rendered in the context of a grid cell
*/
/**
* @var {color/list}
* The border color of the focused text fields rendered in the context of a grid cell
*/
/**
* @var {color}
* Border color for invalid text fields rendered in the context of a grid cell.
*/
/**
* @var {number/list}
* Border radius for text fields rendered in the context of a grid cell.
*/
/**
* @var {string}
* The background image of a text field's input element when rendered in the context of a grid cell
*/
/**
* @var {number/list}
* The padding of a text field's input element when rendered in the context of a grid cell
*/
/**
* @var {color}
* Text color for empty text fields rendered in the context of a grid cell.
*/
/**
* @var {number}
* @private
* The default width of a text field's body element (the element that contains the input
* element and triggers) when the field is rendered in the context of a grid cell and not sized explicitly using the {@link #width}
* config, or sized by it's containing layout.
*/
/**
* @var {color}
* Background color of a text field's input element when rendered in the context of a grid cell and the field value is invalid.
*/
/**
* @var {string}
* Background image of a grid field text field's input element when the field value is invalid.
*/
/**
* @var {string}
* Background repeat of the grid field text field's input element when the field value is invalid.
*/
/**
* @var {string/list}
* Background position of the grid field text field's input element when rendered in the context of a grid cell and the field value is invalid.
*/
/**
* @var {boolean}
* `true` to use classic-theme styled border for text fields rendered in the context of a grid cell.
*/
/**
* @var {number/string}
* The line-height to use for the TextArea's text when rendered in the context of a grid cell
*/
/**
* @var {number}
* The default width of the grid field TextArea's body element (the element that
* contains the textarea html element when the field is rendered in the context of a grid cell and not sized explicitly using the
* {@link #width} config, or sized by it's containing layout.
*/
/**
* @var {color}
* Text color for file fields rendered in the context of a grid cell
*/
/**
* @var {number}
* The width of a text field's trigger element when rendered in the context of a grid cell
*/
/**
* @var {number/list}
* The width of a text field's trigger's border when rendered in the context of a grid cell
*/
/**
* @var {color/list}
* The color of a text field's trigger's border when rendered in the context of a grid cell
*/
/**
* @var {string/list}
* The style of a text field's trigger's border when rendered in the context of a grid cell
*/
/**
* @var {color}
* The color of a text field's trigger's border when rendered in the context of a grid cell and hovered
*/
/**
* @var {color}
* The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused
*/
/**
* @var {color}
* The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused and the trigger is hovered
*/
/**
* @var {string}
* The default background image for text field triggers when rendered in the context of a grid cell
*/
/**
* @var {color}
* The background color of a text field's trigger element when rendered in the context of a grid cell
*/
/**
* @var {boolean}
* True to include the "grid-cell" text field UI
*/
/**
* @class Ext.form.field.Spinner
*/
/**
* @var {boolean}
* True to use vertically oriented spinner triggers when rendered in the context of a grid cell.
*/
/**
* @var {string}
* Background image for vertically oriented grid field spinner triggers when rendered in the context of a grid cell
*/
/**
* @var {string}
* Background image for the "up" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned
*/
/**
* @var {string}
* Background image for the "down" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned
*/
/**
* @var {boolean}
* True to include the "grid-cell" spinner UI
*/
/**
* @var {number}
* The size of a checkbox when rendered in the context of a grid cell
*/
/**
* @var {string}
* The background-image of a checkbox when rendered in the context of a grid cell
*/
/**
* @var {string}
* The background-image of a radio button when rendered in the context of a grid cell
*/
/**
* @var {boolean}
* True to include the "grid-cell" checkbox UI
*/
/**
* @class Ext.form.field.Display
*/
/**
* @var {color}
* The text color of display fields rendered in the context of a grid cell
*/
/**
* @var {number}
* The font-size of display fields rendered in the context of a grid cell
*/
/**
* @var {string}
* The font-family of display fields rendered in the context of a grid cell
*/
/**
* @var {string}
* The font-weight of display fields rendered in the context of a grid cell
*/
/**
* @var {number}
* The line-height of display fields rendered in the context of a grid cell
*/
/**
* @var {boolean}
* True to include the "default" display field UI
*/
/**
* @class Ext.grid.feature.Grouping
*/
/**
* @var {color}
* The background color of group headers
*/
/**
* @var {number/list}
* The border-width of group headers
*/
/**
* @var {string}
* The border-style of group headers
*/
/**
* @var {color}
* The border-color of group headers
*/
/**
* @var {number/list}
* The padding of group headers
*/
/**
* @var {string}
* The cursor of group headers
*/
/**
* @var {color}
* The text color of group header titles
*/
/**
* @var {string}
* The font-family of group header titles
*/
/**
* @var {number}
* The font-size of group header titles
*/
/**
* @var {string}
* The font-weight of group header titles
*/
/**
* @var {number}
* The line-height of group header titles
*/
/**
* @var {number/list}
* The amount of padding to add to the group title element. This is typically used
* to reserve space for an icon by setting the amountof space to be reserved for the icon
* as the left value and setting the remaining sides to 0.
*/
/**
* @class Ext.grid.feature.RowBody
*/
/**
* @var {number}
* The font-size of the RowBody
*/
/**
* @var {number}
* The line-height of the RowBody
*/
/**
* @var {string}
* The font-family of the RowBody
*/
/**
* @var {number}
* The font-weight of the RowBody
*/
/**
* @var {number/list}
* The padding of the RowBody
*/
/**
* @class Ext.menu.Menu
*/
/**
* @var {color}
* The background-color of the Menu
*/
/**
* @var {color}
* The border-color of the Menu
*/
/**
* @var {string}
* The border-style of the Menu
*/
/**
* @var {number}
* The border-width of the Menu
*/
/**
* @var {number/list}
* The padding to apply to the Menu body element
*/
/**
* @var {color}
* The color of Menu Item text
*/
/**
* @var {string}
* The font-family of {@link Ext.menu.Item Menu Items}
*/
/**
* @var {number}
* The font-size of {@link Ext.menu.Item Menu Items}
*/
/**
* @var {string}
* The font-weight of {@link Ext.menu.Item Menu Items}
*/
/**
* @var {number}
* The height of {@link Ext.menu.Item Menu Items}
*/
/**
* @var {number}
* The border-width of {@link Ext.menu.Item Menu Items}
*/
/**
* @var {string}
* The style of cursor to display when the cursor is over a {@link Ext.menu.Item Menu Item}
*/
/**
* @var {string}
* The style of cursor to display when the cursor is over a disabled {@link Ext.menu.Item Menu Item}
*/
/**
* @var {color}
* The background-color of the active {@link Ext.menu.Item Menu Item}
*/
/**
* @var {color}
* The border-color of the active {@link Ext.menu.Item Menu Item}
*/
/**
* @var {string/list}
* The background-gradient for {@link Ext.menu.Item Menu Items}. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*/
/**
* @var {number}
* The border-radius of {@link Ext.menu.Item Menu Items}
*/
/**
* @var {number}
* The size of {@link Ext.menu.Item Menu Item} icons
*/
/**
* @var {color} $menu-glyph-color
* The color to use for menu icons configured using {@link Ext.menu.Item#glyph glyph}
*/
/**
* @var {number} $menu-glyph-opacity
* The opacity to use for menu icons configured using {@link Ext.menu.Item#glyph glyph}
*/
/**
* @var {number}
* The size of {@link Ext.menu.Item Menu Item} checkboxes
*/
/**
* @var {list}
* The background-position of {@link Ext.menu.Item Menu Item} icons
*/
/**
* @var {number}
* vertical offset for menu item icons/checkboxes. By default the icons are roughly
* vertically centered, but it may be necessary in some cases to make minor adjustments
* to the vertical position.
*/
/**
* @var {number}
* vertical offset for menu item text. By default the text is given a line-height
* equal to the menu item's content-height, however, depending on the font this may not
* result in perfect vertical centering. Offset can be used to make small adjustments
* to the text's vertical position.
*/
/**
* @var {number/list}
* The space to the left and right of {@link Ext.menu.Item Menu Item} text. Can be specified
* as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
*
* $menu-item-text-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
*/
/**
* @var {number}
* The space to the left and right of {@link Ext.menu.Item Menu Item} icons. Can be specified
* as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
*
* $menu-item-icon-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
*/
/**
* @var {number}
* The space to the left and right of {@link Ext.menu.Item Menu Item} arrows. Can be specified
* as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
*
* $menu-item-arrow-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
*/
/**
* @var {number/list}
* The margin of {@link Ext.menu.Separator Menu Separators}
*/
/**
* @var {number}
* The height of {@link Ext.menu.Item Menu Item} arrows
*/
/**
* @var {number}
* The width of {@link Ext.menu.Item Menu Item} arrows
*/
/**
* @var {number}
* The opacity of disabled {@link Ext.menu.Item Menu Items}
*/
/**
* @var {number/list}
* The margin non-MenuItems placed in a Menu
*/
/**
* @var {color}
* The border-color of {@link Ext.menu.Separator Menu Separators}
*/
/**
* @var {color}
* The background-color of {@link Ext.menu.Separator Menu Separators}
*/
/**
* @var {number}
* The size of {@link Ext.menu.Separator Menu Separators}
*/
/**
* @var {number}
* The width of Menu scrollers
*/
/**
* @var {number}
* The height of Menu scrollers
*/
/**
* @var {color}
* The border-color of Menu scroller buttons
*/
/**
* @var {number}
* The border-width of Menu scroller buttons
*/
/**
* @var {number/list}
* The margin of "top" Menu scroller buttons
*/
/**
* @var {number/list}
* The margin of "bottom" Menu scroller buttons
*/
/**
* @var {string}
* The cursor of Menu scroller buttons
*/
/**
* @var {string}
* The cursor of disabled Menu scroller buttons
*/
/**
* @var {number}
* The opacity of Menu scroller buttons. Only applicable when
* {@link #$menu-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of hovered Menu scroller buttons. Only applicable when
* {@link #$menu-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of pressed Menu scroller buttons. Only applicable when
* {@link #$menu-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of disabled Menu scroller buttons.
*/
/**
* @var {boolean}
* `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
* hover state by changing their background-position, When `false` scroller buttons are
* given their hover state by applying opacity.
*/
/**
* @var {boolean}
* True to include the "default" menu UI
*/
/**
* @class Ext.grid.filters.Filters
*/
/**
* @var {string}
* The font-style of the filtered column.
*/
/**
* @var {string}
* The font-weight of the filtered column.
*/
/**
* @var {string}
* The text-decoration of the filtered column.
*/
/**
* @class Ext.grid.locking.Lockable
*/
/**
* @var {number}
* The width of the border between the locked views
*/
/**
* @var {string}
* The border-style of the border between the locked views
*/
/**
* @var {string}
* The border-color of the border between the locked views. Defaults to the
* panel border color. May be overridden in a theme.
*/
/*
* Vars for fields which are rendered to fit inside grid cells.
* This includes cell and row editor fields and fields in widget columns.
*/
/**
* @class Ext.form.field.Base
*/
/**
* @var {number}
* The height of text fields rendered in the context of a grid cell. Defaults to $form-field-height. If grid row
* height is smaller than $form-field-height, defaults to the grid row height. Grid row
* height is calculated by adding $grid-row-cell-line-height to the top and bottom values of
* $grid-cell-inner-padding.
*/
/**
* @var {number/list}
* The padding of grid fields.
*/
/**
* @var {number}
* The color of the grid field text
*/
/**
* @var {number}
* The font size of the grid field text
*/
/**
* @var {string}
* The font-weight of the grid field text
*/
/**
* @var {string}
* The font-family of the grid field text
*/
/**
* @var {boolean}
* True to include the "grid-cell" form field UIs input fields rendered in the context of a grid cell.
*
* This defaults to `true`. It is required if either grid editors
* ({@link Ext.grid.plugin.CellEditing cell} or {@link Ext.grid.plugin.RowEditing row})
* are being used, or if a {@link Ext.grid.column.Widget WidgetColumn} is being used to
* house an input field.
*/
/**
* @class Ext.form.field.Text
*/
/**
* @var {number}
* The height of text fields rendered in the context of a grid cell
*/
/**
* @var {number}
* Font size for text fields rendered in the context of a grid cell.
*/
/**
* @var {string}
* Font family for text fields rendered in the context of a grid cell.
*/
/**
* @var {string}
* Font weight for text fields rendered in the context of a grid cell.
*/
/**
* @var {color}
* The color of a text field's input element when rendered in the context of a grid cell
*/
/**
* @var {color}
* The background color of a text field's input element when entered in the context of a grid cell
*/
/**
* @var {number/list}
* The border width of text fields entered in the context of a grid cell
*/
/**
* @var {string/list}
* The border style of text fields rendered in the context of a grid cell
*/
/**
* @var {color/list}
* The border color of text fields rendered in the context of a grid cell
*/
/**
* @var {color/list}
* The border color of the focused text fields rendered in the context of a grid cell
*/
/**
* @var {color}
* Border color for invalid text fields rendered in the context of a grid cell.
*/
/**
* @var {number/list}
* Border radius for text fields rendered in the context of a grid cell.
*/
/**
* @var {string}
* The background image of a text field's input element when rendered in the context of a grid cell
*/
/**
* @var {number/list}
* The padding of a text field's input element when rendered in the context of a grid cell
*/
/**
* @var {color}
* Text color for empty text fields rendered in the context of a grid cell.
*/
/**
* @var {number}
* @private
* The default width of a text field's body element (the element that contains the input
* element and triggers) when the field is rendered in the context of a grid cell and not sized explicitly using the {@link #width}
* config, or sized by it's containing layout.
*/
/**
* @var {color}
* Background color of a text field's input element when rendered in the context of a grid cell and the field value is invalid.
*/
/**
* @var {string}
* Background image of a grid field text field's input element when the field value is invalid.
*/
/**
* @var {string}
* Background repeat of the grid field text field's input element when the field value is invalid.
*/
/**
* @var {string/list}
* Background position of the grid field text field's input element when rendered in the context of a grid cell and the field value is invalid.
*/
/**
* @var {boolean}
* `true` to use classic-theme styled border for text fields rendered in the context of a grid cell.
*/
/**
* @var {number/string}
* The line-height to use for the TextArea's text when rendered in the context of a grid cell
*/
/**
* @var {number}
* The default width of the grid field TextArea's body element (the element that
* contains the textarea html element when the field is rendered in the context of a grid cell and not sized explicitly using the
* {@link #width} config, or sized by it's containing layout.
*/
/**
* @var {color}
* Text color for file fields rendered in the context of a grid cell
*/
/**
* @var {number}
* The width of a text field's trigger element when rendered in the context of a grid cell
*/
/**
* @var {number/list}
* The width of a text field's trigger's border when rendered in the context of a grid cell
*/
/**
* @var {color/list}
* The color of a text field's trigger's border when rendered in the context of a grid cell
*/
/**
* @var {string/list}
* The style of a text field's trigger's border when rendered in the context of a grid cell
*/
/**
* @var {color}
* The color of a text field's trigger's border when rendered in the context of a grid cell and hovered
*/
/**
* @var {color}
* The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused
*/
/**
* @var {color}
* The color of a text field's trigger's border when rendered in the context of a grid cell and the field is focused and the trigger is hovered
*/
/**
* @var {string}
* The default background image for text field triggers when rendered in the context of a grid cell
*/
/**
* @var {color}
* The background color of a text field's trigger element when rendered in the context of a grid cell
*/
/**
* @var {boolean}
* True to include the "grid-cell" text field UI
*/
/**
* @class Ext.form.field.Spinner
*/
/**
* @var {boolean}
* True to use vertically oriented spinner triggers when rendered in the context of a grid cell.
*/
/**
* @var {string}
* Background image for vertically oriented grid field spinner triggers when rendered in the context of a grid cell
*/
/**
* @var {string}
* Background image for the "up" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned
*/
/**
* @var {string}
* Background image for the "down" trigger when grid field spinner trigger buttons are rendered in the context of a grid cell and horizontally aligned
*/
/**
* @var {boolean}
* True to include the "grid-cell" spinner UI
*/
/**
* @var {number}
* The size of a checkbox when rendered in the context of a grid cell
*/
/**
* @var {string}
* The background-image of a checkbox when rendered in the context of a grid cell
*/
/**
* @var {string}
* The background-image of a radio button when rendered in the context of a grid cell
*/
/**
* @var {boolean}
* True to include the "grid-cell" checkbox UI
*/
/**
* @class Ext.form.field.Display
*/
/**
* @var {color}
* The text color of display fields rendered in the context of a grid cell
*/
/**
* @var {number}
* The font-size of display fields rendered in the context of a grid cell
*/
/**
* @var {string}
* The font-family of display fields rendered in the context of a grid cell
*/
/**
* @var {string}
* The font-weight of display fields rendered in the context of a grid cell
*/
/**
* @var {number}
* The line-height of display fields rendered in the context of a grid cell
*/
/**
* @var {boolean}
* True to include the "default" display field UI
*/
/**
* @class Ext.grid.plugin.RowEditing
*/
/**
* @var {color}
* The background-color of the RowEditor
*/
/**
* @var {color}
* The border-color of the RowEditor
*/
/**
* @var {number}
* The border-width of the RowEditor
*/
/**
* @var {number/list}
* The padding of the RowEditor
*/
/**
* @var {number}
* The amount of space in between the editor fields
*/
/**
* @var {number}
* The space between the RowEditor buttons
*/
/**
* @var {number}
* The border-radius of the RowEditor button container
*/
/**
* @var {number/list}
* The padding of the RowEditor button container
*/
/**
* @var {number/list}
* Padding to apply to the body element of the error tooltip
*/
/**
* @var {string}
* The list-style of the error tooltip's list items
*/
/**
* @var {number}
* Space to add before each list item on the error tooltip
*/
/**
* @class Ext.grid.plugin.RowExpander
*/
/**
* @var {number}
* The height of the RowExpander icon
*/
/**
* @var {number}
* The width of the RowExpander icon
*/
/**
* @var {number}
* The horizontal space before the RowExpander icon
*/
/**
* @var {number}
* The horizontal space after the RowExpander icon
*/
/**
* @var {string}
* The cursor for the RowExpander icon
*/
/**
* @class Ext.grid.property.Grid
*/
/**
* @var {string}
* The background-image of property grid cells
*/
/**
* @var {string}
* The background-position of property grid cells
*/
/**
* @var {number/string}
* The padding to add before the text of property grid cells to make room for the
* background-image. Only applies if $grid-property-cell-background-image is not null
*/
/**
* @class Ext.layout.container.Accordion
*/
/**
* @var {color}
* The text color of Accordion headers
*/
/**
* @var {color}
* The background-color of Accordion headers
*/
/**
* @var {color}
* The background-color of Accordion headers when hovered
*/
/**
* @var {number}
* The size of {@link Ext.panel.Tool Tools} in Accordion headers
*/
/**
* @var {number/list}
* The border-width of Accordion headers
*/
/**
* @var {number/list}
* The border-color of Accordion headers
*/
/**
* @var {number/list}
* The padding of Accordion headers
*/
/**
* @var {string}
* The font-weight of Accordion headers
*/
/**
* @var {string}
* The font-family of Accordion headers
*/
/**
* @var {string}
* The text-transform property of Accordion headers
*/
/**
* @var {number}
* The body border-width of Accordion layout element
*/
/**
* @var {color}
* The background-color of the Accordion layout element
*/
/**
* @var {color}
* The background-color of the Accordion layout element
*/
/**
* @var {number/list}
* The padding of the Accordion layout element
*/
/**
* @var {string}
* The sprite image to use for {@link Ext.panel.Tool Tools} in Accordion headers
*/
/**
* @class Ext.selection.CheckboxModel
*/
/**
* @var {number}
* The horizontal space before the checkbox
*/
/**
* @var {number}
* The horizontal space after the checkbox
*/
/**
* @class Ext.slider.Multi
*/
/**
* @var {number}
* The horizontal slider thumb width
*/
/**
* @var {number}
* The horizontal slider thumb height
*/
/**
* @var {number}
* The width of the horizontal slider start cap
*/
/**
* @var {number}
* The width of the horizontal slider end cap
*/
/**
* @var {number}
* The vertical slider thumb width
*/
/**
* @var {number}
* The vertical slider thumb height
*/
/**
* @var {number}
* The height of the vertical slider start cap
*/
/**
* @var {number}
* The height of the vertical slider end cap
*/
/** @class Ext.toolbar.Breadcrumb */
/**
* @class Ext.toolbar.Toolbar
*/
/**
* @var {number}
* The default font-size of Toolbar text
*/
/**
* @var {color}
* The background-color of the Toolbar
*/
/**
* @var {string/list}
* The background-gradient of the Toolbar. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*/
/**
* @var {number}
* The horizontal spacing of Toolbar items
*/
/**
* @var {number}
* The vertical spacing of Toolbar items
*/
/**
* @var {number}
* The horizontal spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items
*/
/**
* @var {number}
* The vertical spacing of {@link Ext.panel.Panel#fbar footer} Toolbar items
*/
/**
* @var {color}
* The background-color of {@link Ext.panel.Panel#fbar footer} Toolbars
*/
/**
* @var {number}
* The border-width of {@link Ext.panel.Panel#fbar footer} Toolbars
*/
/**
* @var {color}
* The border-color of Toolbars
*/
/**
* @var {number}
* The border-width of Toolbars
*/
/**
* @var {string}
* The border-style of Toolbars
*/
/**
* @var {number}
* The width of Toolbar {@link Ext.toolbar.Spacer Spacers}
*/
/**
* @var {color}
* The main border-color of Toolbar {@link Ext.toolbar.Separator Separators}
*/
/**
* @var {color}
* The highlight border-color of Toolbar {@link Ext.toolbar.Separator Separators}
*/
/**
* @var {number/list}
* The margin of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
*/
/**
* @var {number}
* The height of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
*/
/**
* @var {string}
* The border-style of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
*/
/**
* @var {number}
* The border-width of {@link Ext.toolbar.Separator Separators} on a horizontally oriented Toolbar
*/
/**
* @var {number/list}
* The margin of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
*/
/**
* @var {string}
* The border-style of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
*/
/**
* @var {number}
* The border-width of {@link Ext.toolbar.Separator Separators} on a vertically oriented Toolbar
*/
/**
* @var {string}
* The default font-family of Toolbar text
*/
/**
* @var {number}
* The default font-size of Toolbar text
*/
/**
* @var {number}
* The default font-size of Toolbar text
*/
/**
* @var {color}
* The text-color of Toolbar text
*/
/**
* @var {number}
* The line-height of Toolbar text
*/
/**
* @var {number/list}
* The padding of Toolbar text
*/
/**
* @var {number}
* The width of Toolbar scrollers
*/
/**
* @var {number}
* The height of Toolbar scrollers
*/
/**
* @var {number}
* The width of scrollers on vertically aligned toolbars
*/
/**
* @var {number}
* The height of scrollers on vertically aligned toolbars
*/
/**
* @var {color}
* The border-color of Toolbar scroller buttons
*/
/**
* @var {number}
* The border-width of Toolbar scroller buttons
*/
/**
* @var {color}
* The border-color of scroller buttons on vertically aligned toolbars
*/
/**
* @var {number}
* The border-width of scroller buttons on vertically aligned toolbars
*/
/**
* @var {number/list}
* The margin of "top" Toolbar scroller buttons
*/
/**
* @var {number/list}
* The margin of "right" Toolbar scroller buttons
*/
/**
* @var {number/list}
* The margin of "bottom" Toolbar scroller buttons
*/
/**
* @var {number/list}
* The margin of "left" Toolbar scroller buttons
*/
/**
* @var {string}
* The cursor of Toolbar scroller buttons
*/
/**
* @var {string}
* The cursor of disabled Toolbar scroller buttons
*/
/**
* @var {number}
* The opacity of Toolbar scroller buttons. Only applicable when
* {@link #$toolbar-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of hovered Toolbar scroller buttons. Only applicable when
* {@link #$toolbar-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of pressed Toolbar scroller buttons. Only applicable when
* {@link #$toolbar-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of disabled Toolbar scroller buttons.
*/
/**
* @var {boolean}
* `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
* hover state by changing their background-position, When `false` scroller buttons are
* given their hover state by applying opacity.
*/
/**
* @var {string}
* The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar
*/
/**
* @var {boolean}
* True to include the "default" toolbar UI
*/
/**
* @var {boolean}
* True to include the "footer" toolbar UI
*/
/**
* @var {string}
* The UI of buttons that are used in the "default" breadcrumb UI
*/
/**
* @var {number}
* The space between the breadcrumb buttons
*/
/**
* @var {number}
* The width of breadcrumb arrows when {@link #useSplitButtons} is `false`
*/
/**
* @var {number}
* The width of breadcrumb arrows when {@link #useSplitButtons} is `true`
*/
/**
* @var {string}
* The background-image for the default "folder" icon
*/
/**
* @var {string}
* The background-image for the default "leaf" icon
*/
/**
* @var {boolean}
* `true` to include a separate background-image for menu arrows when a breadcrumb button's
* menu is open
*/
/**
* @var {boolean}
* `true` to include a separate background-image for split arrows when a breadcrumb button's
* arrow is hovered
*/
/**
* @var {number}
* The width of Breadcrumb scrollers
*/
/**
* @var {number}
* The height of Breadcrumb scrollers
*/
/**
* @var {color}
* The border-color of Breadcrumb scrollers
*/
/**
* @var {number}
* The border-width of Breadcrumb scrollers
*/
/**
* @var {number/list}
* The margin of "top" Breadcrumb scroller buttons
*/
/**
* @var {number/list}
* The margin of "right" Breadcrumb scroller buttons
*/
/**
* @var {number/list}
* The margin of "bottom" Breadcrumb scroller buttons
*/
/**
* @var {number/list}
* The margin of "left" Breadcrumb scroller buttons
*/
/**
* @var {string}
* The cursor of Breadcrumb scrollers
*/
/**
* @var {string}
* The cursor of disabled Breadcrumb scrollers
*/
/**
* @var {number}
* The opacity of Breadcrumb scroller buttons. Only applicable when
* {@link #$breadcrumb-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of hovered Breadcrumb scroller buttons. Only applicable when
* {@link #$breadcrumb-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of pressed Breadcrumb scroller buttons. Only applicable when
* {@link #$breadcrumb-classic-scrollers} is `false`.
*/
/**
* @var {number}
* The opacity of disabled Breadcrumb scroller buttons. Only applicable when
* {@link #$breadcrumb-classic-scrollers} is `false`.
*/
/**
* @var {boolean}
* `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
* hover state by changing their background-position, When `false` scroller buttons are
* given their hover state by applying opacity.
*/
/**
* @var {boolean}
* `true` to include the "default" breadcrumb UI
*/
/**
* @class Ext.view.MultiSelector
*/
/**
* @var {number}
* The font-size for the multiselector's remove glyph.
*/
/**
* @var {number/list}
* The padding of "Remove" cell's inner element
*/
/**
* @var {color}
* The color for the multiselector's remove glyph.
*/
/**
* @var {color}
* The color for the multiselector's remove glyph during mouse over.
*/
/**
* @var {string}
* The cursor style for the remove glyph.
*/
/* including package ext-theme-base */
/**
* @class Global_CSS
*/
/**
* @var {string} $prefix
* The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
* JavaScript application.
*/
/**
* @var {boolean/string} $relative-image-path-for-uis
* True to use a relative image path for all new UIs. If true, the path will be "../images/".
* It can also be a string of the path value.
* It defaults to false, which means it will look for the images in the ExtJS SDK folder.
*/
/**
* @var {boolean} $include-not-found-images
* True to include files which are not found when compiling your SASS
*/
/**
* @var {boolean} $include-ie
* True to include Internet Explorer specific rules for IE9 and lower. IE10 and up are
* considered to be "modern" browsers, and as such do not need any of the CSS hacks required
* for IE9 and below. Setting this property to false will result in a significantly smaller
* CSS file size, and may also result in a slight performance improvement, because the
* browser will have fewer rules to process.
*/
/**
* @var {boolean} $include-ff
* True to include Firefox specific rules
*/
/**
* @var {boolean} $include-opera
* True to include Opera specific rules
*/
/**
* @var {boolean} $include-webkit
* True to include Webkit specific rules
*/
/**
* @var {boolean} $include-safari
* True to include Safari specific rules
*/
/**
* @var {boolean} $include-chrome
* True to include Chrome specific rules
*/
/**
* @var {boolean} $include-slicer-border-radius
* True to include rules for rounded corners produced by the slicer. Enables emulation
* of CSS3 border-radius in browsers that do not support it.
*/
/**
* @var {boolean} $include-slicer-gradient
* True to include rules for background gradients produced by the slicer. Enables emulation
* of CSS3 background-gradient in browsers that do not support it.
*/
/**
* @var {number} $css-shadow-border-radius
* The border radius for CSS shadows
*/
/**
* @var {string} $image-extension
* default file extension to use for images (defaults to 'png').
*/
/**
* @var {string} $slicer-image-extension
* default file extension to use for slicer images (defaults to 'gif').
*/
/**
* Default search path for images
*/
/**
* @var {boolean}
* True to include the default UI for each component.
*/
/**
* @var {boolean}
* True to add font-smoothing styles to all components
*/
/**
* @var {string}
* The base path relative to the CSS output directory to use for theme resources. For example
* if the theme's images live one directory up from the generated CSS output in a directory
* named 'foo/images/', you would need to set this variable to '../foo/' in order for the image
* paths in the CSS output to be generated correctly. By default this is the same as the
* CSS output directory.
*/
/**
* @private
* Flag to ensure GridField rules only get set once
*/
/* including package ext-theme-base */
/* line 1, ../../../ext-theme-base/sass/src/scroll/TouchScroller.scss */
.x5-scroll-container {
overflow: hidden;
position: relative; }
/* line 8, ../../../ext-theme-base/sass/src/scroll/TouchScroller.scss */
.x5-scroll-scroller {
float: left;
position: relative;
min-width: 100%;
min-height: 100%; }
/* line 1, ../../../ext-theme-base/sass/src/Component.scss */
.x5-body {
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
/* line 9, ../../../ext-theme-base/sass/src/Component.scss */
.x5-no-touch-scroll {
touch-action: none;
-ms-touch-action: none; }
@-ms-viewport {
width: device-width; }
/* line 23, ../../../ext-theme-base/sass/src/Component.scss */
img {
border: 0; }
/* line 28, ../../../ext-theme-base/sass/src/Component.scss */
.x5-border-box,
.x5-border-box * {
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box; }
/* line 41, ../../../ext-theme-base/sass/src/Component.scss */
.x5-ltr {
direction: ltr; }
/* line 45, ../../../ext-theme-base/sass/src/Component.scss */
.x5-clear {
overflow: hidden;
clear: both;
font-size: 0;
line-height: 0;
display: table; }
/* line 53, ../../../ext-theme-base/sass/src/Component.scss */
.x5-layer {
position: absolute !important;
overflow: hidden; }
/* line 60, ../../../ext-theme-base/sass/src/Component.scss */
.x5-fixed-layer {
position: fixed !important;
overflow: hidden; }
/* line 65, ../../../ext-theme-base/sass/src/Component.scss */
.x5-shim {
position: absolute;
left: 0;
top: 0;
overflow: hidden;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0; }
/* line 73, ../../../ext-theme-base/sass/src/Component.scss */
.x5-hidden-display {
display: none !important; }
/* line 77, ../../../ext-theme-base/sass/src/Component.scss */
.x5-hidden-visibility {
visibility: hidden !important; }
/* line 82, ../../../ext-theme-base/sass/src/Component.scss */
.x5-hidden,
.x5-hidden-offsets {
display: block !important;
visibility: hidden !important;
position: absolute !important;
top: -10000px !important; }
/* line 93, ../../../ext-theme-base/sass/src/Component.scss */
.x5-hidden-clip {
position: absolute!important;
clip: rect(0, 0, 0, 0); }
/* line 98, ../../../ext-theme-base/sass/src/Component.scss */
.x5-masked-relative {
position: relative; }
/* line 104, ../../../ext-theme-base/sass/src/Component.scss */
.x5-ie-shadow {
background-color: #777;
position: absolute;
overflow: hidden; }
/* line 111, ../../../ext-theme-base/sass/src/Component.scss */
.x5-unselectable {
user-select: none;
-o-user-select: none;
-ms-user-select: none;
-moz-user-select: -moz-none;
-webkit-user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-user-drag: none;
cursor: default; }
/* line 115, ../../../ext-theme-base/sass/src/Component.scss */
.x5-selectable {
cursor: auto;
-moz-user-select: text;
-webkit-user-select: text;
-ms-user-select: text;
user-select: text;
-o-user-select: text; }
/* line 130, ../../../ext-theme-base/sass/src/Component.scss */
.x5-list-plain {
list-style-type: none;
margin: 0;
padding: 0; }
/* line 137, ../../../ext-theme-base/sass/src/Component.scss */
.x5-table-plain {
border-collapse: collapse;
border-spacing: 0;
font-size: 1em; }
/* line 150, ../../../ext-theme-base/sass/src/Component.scss */
.x5-frame-tl,
.x5-frame-tr,
.x5-frame-tc,
.x5-frame-bl,
.x5-frame-br,
.x5-frame-bc {
overflow: hidden;
background-repeat: no-repeat; }
/* line 156, ../../../ext-theme-base/sass/src/Component.scss */
.x5-frame-tc,
.x5-frame-bc {
background-repeat: repeat-x; }
/* line 167, ../../../ext-theme-base/sass/src/Component.scss */
td.x5-frame-tl,
td.x5-frame-tr,
td.x5-frame-bl,
td.x5-frame-br {
width: 1px; }
/* line 171, ../../../ext-theme-base/sass/src/Component.scss */
.x5-frame-mc {
background-repeat: repeat-x;
overflow: hidden; }
/* line 176, ../../../ext-theme-base/sass/src/Component.scss */
.x5-proxy-el {
position: absolute;
background: #b4b4b4;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
opacity: 0.8; }
/* line 183, ../../../ext-theme-base/sass/src/Component.scss */
.x5-css-shadow {
position: absolute;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px; }
/* line 189, ../../../ext-theme-base/sass/src/Component.scss */
.x5-item-disabled,
.x5-item-disabled * {
cursor: default; }
/* line 194, ../../../ext-theme-base/sass/src/Component.scss */
.x5-component,
.x5-container {
position: relative; }
/* line 203, ../../../ext-theme-base/sass/src/Component.scss */
:focus {
outline: none; }
/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */
.x5-box-item {
position: absolute !important;
left: 0;
top: 0; }
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Auto.scss */
.x5-autocontainer-outerCt {
display: table; }
/* line 5, ../../../ext-theme-base/sass/src/layout/container/Auto.scss */
.x5-autocontainer-innerCt {
display: table-cell;
height: 100%;
vertical-align: top; }
/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */
.x5-mask {
z-index: 100;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
/*
* IE and FF will add an outline to focused elements,
* which we don't want when using our own focus treatment
*/
outline: none !important; }
/*
* IE8 will treat partially transparent divs as invalid click targets,
* allowing mouse events to reach elements beneath the mask. Placing
* a 1x1 transparent gif as the link el background will cure this.
*/
/* line 21, ../../../ext-theme-base/sass/src/LoadMask.scss */
.x5-ie8 .x5-mask {
background-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); }
/* line 27, ../../../ext-theme-base/sass/src/LoadMask.scss */
.x5-mask-fixed {
position: fixed; }
/* line 31, ../../../ext-theme-base/sass/src/LoadMask.scss */
.x5-mask-msg {
position: absolute; }
/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */
.x5-progress {
position: relative;
border-style: solid;
overflow: hidden; }
/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */
.x5-progress-bar {
overflow: hidden;
position: absolute;
width: 0;
height: 100%; }
/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */
.x5-progress-text {
overflow: hidden;
position: absolute; }
/* line 1, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title-icon {
background-repeat: no-repeat;
background-position: 0 0;
vertical-align: middle;
text-align: center; }
/* line 8, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title {
display: table;
table-layout: fixed; }
/* line 20, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title-text {
display: table-cell;
overflow: hidden;
white-space: nowrap;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
vertical-align: middle; }
/* line 29, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title-align-left {
text-align: left; }
/* line 38, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title-align-center {
text-align: center; }
/* line 42, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title-align-right {
text-align: right; }
/* line 51, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title-rotate-right {
-webkit-transform: rotate(90deg);
-webkit-transform-origin: 0 0;
-moz-transform: rotate(90deg);
-moz-transform-origin: 0 0;
-o-transform: rotate(90deg);
-o-transform-origin: 0 0;
-ms-transform: rotate(90deg);
-ms-transform-origin: 0 0;
transform: rotate(90deg);
transform-origin: 0 0; }
/* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x5-ie8 .x5-title-rotate-right {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); }
/* line 61, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title-rotate-left {
-webkit-transform: rotate(270deg);
-webkit-transform-origin: 100% 0;
-moz-transform: rotate(270deg);
-moz-transform-origin: 100% 0;
-o-transform: rotate(270deg);
-o-transform-origin: 100% 0;
-ms-transform: rotate(270deg);
-ms-transform-origin: 100% 0;
transform: rotate(270deg);
transform-origin: 100% 0; }
/* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x5-ie8 .x5-title-rotate-left {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }
/* line 74, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-horizontal.x5-header .x5-title-rotate-right.x5-title-align-left > .x5-title-item {
vertical-align: bottom; }
/* line 78, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-horizontal.x5-header .x5-title-rotate-right.x5-title-align-center > .x5-title-item {
vertical-align: middle; }
/* line 82, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-horizontal.x5-header .x5-title-rotate-right.x5-title-align-right > .x5-title-item {
vertical-align: top; }
/* line 88, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-horizontal.x5-header .x5-title-rotate-left.x5-title-align-left > .x5-title-item {
vertical-align: top; }
/* line 92, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-horizontal.x5-header .x5-title-rotate-left.x5-title-align-center > .x5-title-item {
vertical-align: middle; }
/* line 96, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-horizontal.x5-header .x5-title-rotate-left.x5-title-align-right > .x5-title-item {
vertical-align: bottom; }
/* line 104, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-vertical.x5-header .x5-title-rotate-none.x5-title-align-left > .x5-title-item {
vertical-align: top; }
/* line 108, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-vertical.x5-header .x5-title-rotate-none.x5-title-align-center > .x5-title-item {
vertical-align: middle; }
/* line 112, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-vertical.x5-header .x5-title-rotate-none.x5-title-align-right > .x5-title-item {
vertical-align: bottom; }
/* line 119, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title-icon-wrap {
display: table-cell;
text-align: center;
vertical-align: middle;
line-height: 0; }
/* line 125, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title-icon-wrap.x5-title-icon-top, .x5-title-icon-wrap.x5-title-icon-bottom {
display: table-row; }
/* line 130, ../../../ext-theme-base/sass/src/panel/Title.scss */
.x5-title-icon {
display: inline-block;
vertical-align: middle;
background-position: center;
background-repeat: no-repeat; }
/* line 1, ../../../ext-theme-base/sass/src/panel/Tool.scss */
.x5-tool {
font-size: 0;
line-height: 0; }
/* line 3, ../../../ext-theme-base/sass/src/panel/Header.scss */
.x5-header > .x5-box-inner {
overflow: visible; }
/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x5-splitter {
font-size: 1px; }
/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x5-splitter-horizontal {
cursor: e-resize;
cursor: row-resize; }
/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x5-splitter-vertical {
cursor: e-resize;
cursor: col-resize; }
/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x5-splitter-collapsed,
.x5-splitter-horizontal-noresize,
.x5-splitter-vertical-noresize {
cursor: default; }
/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x5-splitter-active {
z-index: 4; }
/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x5-collapse-el {
position: absolute;
background-repeat: no-repeat; }
/* line 30, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */
.x5-splitter-focus {
z-index: 4; }
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x5-box-layout-ct {
overflow: hidden;
position: relative; }
/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x5-box-target {
position: absolute;
width: 20000px;
top: 0;
left: 0;
height: 1px; }
/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x5-box-inner {
overflow: hidden;
position: relative;
left: 0;
top: 0; }
/* line 38, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x5-box-scroller {
position: absolute;
background-repeat: no-repeat;
background-position: center;
line-height: 0;
font-size: 0; }
/* line 46, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x5-box-scroller-top {
top: 0; }
/* line 50, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x5-box-scroller-right {
right: 0; }
/* line 54, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x5-box-scroller-bottom {
bottom: 0; }
/* line 58, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x5-box-scroller-left {
left: 0; }
/* line 62, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x5-box-menu-body-horizontal {
float: left; }
/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */
.x5-box-menu-after {
position: relative;
float: left; }
/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-text {
white-space: nowrap; }
/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-separator {
display: block;
font-size: 1px;
overflow: hidden;
cursor: default;
border: 0;
width: 0;
height: 0;
line-height: 0px; }
/* line 16, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-scroller {
padding-left: 0; }
/* line 23, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-plain {
border: 0; }
/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */
.x5-dd-drag-proxy,
.x5-dd-drag-current {
z-index: 1000000!important;
pointer-events: none; }
/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x5-dd-drag-repair .x5-dd-drag-ghost {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
opacity: 0.6; }
/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x5-dd-drag-repair .x5-dd-drop-icon {
display: none; }
/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x5-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 */
.x5-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 */
.x5-dd-drop-ok .x5-dd-drop-icon {
background-image: url(images/dd/drop-yes.gif); }
/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x5-dd-drop-ok-add .x5-dd-drop-icon {
background-image: url(images/dd/drop-add.gif); }
/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */
.x5-dd-drop-nodrop div.x5-dd-drop-icon {
background-image: url(images/dd/drop-no.gif); }
/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-docked {
position: absolute !important;
z-index: 1; }
/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-docked-vertical {
position: static; }
/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-docked-top {
border-bottom-width: 0 !important; }
/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-docked-bottom {
border-top-width: 0 !important; }
/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-docked-left {
border-right-width: 0 !important; }
/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-docked-right {
border-left-width: 0 !important; }
/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-docked-noborder-top {
border-top-width: 0 !important; }
/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-docked-noborder-right {
border-right-width: 0 !important; }
/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-docked-noborder-bottom {
border-bottom-width: 0 !important; }
/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-docked-noborder-left {
border-left-width: 0 !important; }
/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-noborder-l {
border-left-width: 0 !important; }
/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-noborder-b {
border-bottom-width: 0 !important; }
/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-noborder-bl {
border-bottom-width: 0 !important;
border-left-width: 0 !important; }
/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-noborder-r {
border-right-width: 0 !important; }
/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-noborder-rl {
border-right-width: 0 !important;
border-left-width: 0 !important; }
/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-noborder-rb {
border-right-width: 0 !important;
border-bottom-width: 0 !important; }
/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-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 */
.x5-noborder-t {
border-top-width: 0 !important; }
/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-noborder-tl {
border-top-width: 0 !important;
border-left-width: 0 !important; }
/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-noborder-tb {
border-top-width: 0 !important;
border-bottom-width: 0 !important; }
/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-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 */
.x5-noborder-tr {
border-top-width: 0 !important;
border-right-width: 0 !important; }
/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */
.x5-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 */
.x5-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 */
.x5-noborder-trbl {
border-width: 0 !important; }
/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x5-panel,
.x5-plain {
overflow: hidden;
position: relative; }
/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x5-panel {
outline: none; }
/* line 13, ../../../ext-theme-base/sass/src/panel/Panel.scss */
td.x5-frame-mc {
vertical-align: top; }
/* line 18, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x5-panel-body {
overflow: hidden;
position: relative; }
/* line 24, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x5-panel-header-plain,
.x5-panel-body-plain {
border: 0;
padding: 0; }
/* line 33, ../../../ext-theme-base/sass/src/panel/Panel.scss */
.x5-panel-collapsed-mini {
visibility: hidden; }
/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-item {
display: table;
table-layout: fixed;
border-spacing: 0;
border-collapse: separate; }
/* line 10, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-item-label {
overflow: hidden; }
/* line 14, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-item.x5-form-item-no-label > .x5-form-item-label {
display: none; }
/* line 19, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-item-label,
.x5-form-item-body {
display: table-cell; }
/* line 23, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-item-body {
vertical-align: middle;
height: 100%; }
/* line 28, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-item-label-inner {
display: inline-block; }
/* line 32, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-item-label-top {
display: table-row;
height: 1px; }
/* line 35, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-item-label-top > .x5-form-item-label-inner {
display: table-cell; }
/* line 39, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-item-label-top-side-error:after {
display: table-cell;
content: ''; }
/* line 44, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-item-label-right {
text-align: right; }
/* line 53, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-error-wrap-side {
display: table-cell;
vertical-align: middle; }
/* line 58, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-error-wrap-under {
display: table-row;
height: 1px; }
/* line 61, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-error-wrap-under > .x5-form-error-msg {
display: table-cell; }
/* line 66, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-error-wrap-under-side-label:before {
display: table-cell;
content: '';
pointer-events: none; }
/* line 72, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-invalid-icon {
overflow: hidden; }
/* line 74, ../../../ext-theme-base/sass/src/form/Labelable.scss */
.x5-form-invalid-icon ul {
display: none; }
/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */
.x5-form-display-field-body {
vertical-align: top; }
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */
.x5-fit-item {
position: relative; }
/* line 1, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x5-grid-view {
overflow: hidden;
position: relative; }
/* A grid *item* is a dataview item. It is encapsulated by a <table class="x-grid-item">.
* One item always corresponds to one store record
* But an item may contain more than one <tr>.
* ONE child row, <tr class="x-grid-row"> will be the grid-row and will contain record data
*/
/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x5-grid-row-table {
width: 0;
table-layout: fixed;
border: 0 none;
border-collapse: separate;
border-spacing: 0; }
/* line 25, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x5-grid-item {
table-layout: fixed;
outline: none; }
/* line 30, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x5-grid-row {
outline: none; }
/* line 34, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x5-grid-td {
overflow: hidden;
border-width: 0;
vertical-align: top; }
/* line 40, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x5-grid-cell-inner {
overflow: hidden;
white-space: nowrap; }
/* line 46, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x5-wrap-cell .x5-grid-cell-inner {
white-space: normal; }
/* line 51, ../../../ext-theme-base/sass/src/panel/Table.scss */
.x5-grid-resize-marker {
position: absolute;
z-index: 5;
top: 0; }
/* line 1, ../../../ext-theme-base/sass/src/view/View.scss */
.x5-view-item-focused {
outline: 1px dashed #c0d4ed !important;
outline-offset: -1px; }
/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
.x5-form-cb-wrap {
vertical-align: top; }
/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
.x5-form-cb-wrap-inner {
position: relative; }
/* line 9, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
.x5-form-cb {
position: absolute;
left: 0;
right: auto;
vertical-align: top;
overflow: hidden;
padding: 0;
border: 0; }
/* line 17, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
.x5-form-cb::-moz-focus-inner {
padding: 0;
border: 0; }
/* allow for the component to be positioned after the label */
/* line 31, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
.x5-form-cb-after {
left: auto;
right: 0; }
/* some browsers like IE 10 need a block element to be able to measure
the height of a multi-line element */
/* line 45, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
.x5-form-cb-label {
display: inline-block; }
/* line 54, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
.x5-form-cb-wrap-inner-no-box-label > .x5-form-cb {
position: static; }
/* line 58, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */
.x5-form-cb-wrap-inner-no-box-label > .x5-form-cb-label {
display: none; }
/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */
.x5-col-move-top,
.x5-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 */
.x5-grid-header-ct {
cursor: default; }
/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header {
position: absolute;
overflow: hidden;
background-repeat: repeat-x; }
/*
* TODO:
* When IE8 retires, revisit path_to_url for better way to center header text
*/
/* line 11, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header-inner {
white-space: nowrap;
position: relative;
overflow: hidden; }
/* line 17, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-leaf-column-header {
height: 100%; }
/* line 19, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-leaf-column-header .x5-column-header-text-container {
height: 100%; }
/* line 26, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header-text-container {
width: 100%;
display: table;
table-layout: fixed; }
/* line 31, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header-text-container.x5-column-header-text-container-auto {
table-layout: auto; }
/* line 36, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header-text-wrapper {
display: table-cell;
vertical-align: middle; }
/* line 41, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header-text {
background-repeat: no-repeat;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header-trigger {
display: none;
height: 100%;
background-repeat: no-repeat;
position: absolute;
right: 0;
top: 0;
z-index: 2; }
/* line 76, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header-over .x5-column-header-trigger, .x5-column-header-open .x5-column-header-trigger {
display: block; }
/* line 81, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header-align-right {
text-align: right; }
/* line 91, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header-align-left {
text-align: left; }
/* line 101, ../../../ext-theme-base/sass/src/grid/column/Column.scss */
.x5-column-header-align-center {
text-align: center; }
/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x5-autowidth-table .x5-grid-item {
table-layout: auto;
width: auto !important; }
/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x5-tree-view {
overflow: hidden; }
/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x5-tree-elbow-img,
.x5-tree-icon {
background-repeat: no-repeat;
background-position: 0 center;
vertical-align: top; }
/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x5-tree-checkbox {
border: 0;
padding: 0;
vertical-align: top;
position: relative;
background-color: transparent; }
/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */
.x5-tree-animator-wrap {
overflow: hidden; }
/* line 1, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-form-trigger-wrap {
display: table;
width: 100%;
height: 100%; }
/* line 14, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-gecko .x5-form-trigger-wrap {
display: -moz-inline-box;
display: inline-flex;
vertical-align: top; }
/* line 22, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-form-text-wrap {
display: table-cell;
overflow: hidden;
height: 100%; }
/* line 29, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-gecko .x5-form-text-wrap {
display: block;
-moz-box-flex: 1;
flex: 1; }
/* line 39, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-form-item-body.x5-form-text-grow {
min-width: inherit;
max-width: inherit; }
/* line 44, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-form-text {
border: 0;
margin: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
display: block;
background: repeat-x 0 0;
width: 100%;
height: 100%; }
/* line 53, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-webkit .x5-form-text {
height: calc(100% + 3px); }
/* line 61, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-form-trigger {
display: table-cell;
vertical-align: top;
cursor: pointer;
overflow: hidden;
background-repeat: no-repeat;
line-height: 0;
white-space: nowrap; }
/* line 72, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-item-disabled .x5-form-trigger {
cursor: default; }
/* line 75, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-form-trigger.x5-form-trigger-cmp {
background: none;
border: 0; }
/* line 92, ../../../ext-theme-base/sass/src/form/field/Text.scss */
.x5-gecko .x5-form-trigger {
display: block; }
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */
.x5-border-layout-ct {
overflow: hidden; }
/* line 5, ../../../ext-theme-base/sass/src/layout/container/Border.scss */
.x5-border-layout-ct {
position: relative; }
/* line 9, ../../../ext-theme-base/sass/src/layout/container/Border.scss */
.x5-border-region-slide-in {
z-index: 5; }
/* line 13, ../../../ext-theme-base/sass/src/layout/container/Border.scss */
.x5-region-collapsed-placeholder {
z-index: 4; }
/**
* generates base style rules for both tabs and buttons
*
* @param {string} [$base-cls='button']
*
* @param {boolean} [$include-arrows=true]
*
* @member Ext.button.Button
* @private
*/
/* line 16, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn {
display: inline-block;
outline: 0;
cursor: pointer;
white-space: nowrap;
text-decoration: none;
vertical-align: top;
overflow: hidden;
position: relative; }
/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn > .x5-frame {
height: 100%;
width: 100%; }
/* line 34, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-wrap {
display: table;
height: 100%;
width: 100%; }
/* line 40, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-button {
vertical-align: middle;
display: table-cell;
white-space: nowrap;
line-height: 0; }
/* line 47, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-inner {
display: inline-block;
vertical-align: middle;
overflow: hidden;
text-overflow: ellipsis; }
/* line 53, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-icon.x5-btn-no-text > .x5-btn-inner {
display: none; }
/* line 58, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-icon-el {
display: none;
vertical-align: middle;
background-position: center center;
background-repeat: no-repeat; }
/* line 64, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-icon > .x5-btn-icon-el {
display: inline-block; }
/* line 69, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-icon-top > .x5-btn-icon-el, .x5-btn-icon-bottom > .x5-btn-icon-el {
display: block; }
/* line 74, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-button-center {
text-align: center; }
/* line 78, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-button-left {
text-align: left; }
/* line 88, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-button-right {
text-align: right; }
/* line 102, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-opera12m-btn-arrow-right {
display: table; }
/* line 106, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-opera12m-btn-arrow-right > .x5-btn-arrow-right,
.x5-opera12m-btn-arrow-right > .x5-btn-split-right {
display: table-row; }
/* line 114, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-arrow:after,
.x5-btn-split:after {
background-repeat: no-repeat;
content: '';
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box; }
/* line 126, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-arrow-right:after,
.x5-btn-split-right:after {
display: table-cell;
background-position: right center; }
/* line 141, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-arrow-bottom:after,
.x5-btn-split-bottom:after {
display: table-row;
background-position: center bottom;
content: '\00a0';
line-height: 0; }
/* line 154, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-btn-mc {
overflow: visible; }
/* line 16, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab {
display: block;
outline: 0;
cursor: pointer;
white-space: nowrap;
text-decoration: none;
vertical-align: top;
overflow: hidden;
position: relative; }
/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab > .x5-frame {
height: 100%;
width: 100%; }
/* line 34, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-wrap {
display: table;
height: 100%;
width: 100%; }
/* line 40, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-button {
vertical-align: middle;
display: table-cell;
white-space: nowrap;
line-height: 0; }
/* line 47, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-inner {
display: inline-block;
vertical-align: middle;
overflow: hidden;
text-overflow: ellipsis; }
/* line 53, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-icon.x5-tab-no-text > .x5-tab-inner {
display: none; }
/* line 58, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-icon-el {
display: none;
vertical-align: middle;
background-position: center center;
background-repeat: no-repeat; }
/* line 64, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-icon > .x5-tab-icon-el {
display: inline-block; }
/* line 69, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-icon-top > .x5-tab-icon-el, .x5-tab-icon-bottom > .x5-tab-icon-el {
display: block; }
/* line 74, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-button-center {
text-align: center; }
/* line 78, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-button-left {
text-align: left; }
/* line 88, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-button-right {
text-align: right; }
/* line 154, ../../../ext-theme-base/sass/src/button/Button.scss */
.x5-tab-mc {
overflow: visible; }
/* line 7, ../../../ext-theme-base/sass/src/tab/Tab.scss */
.x5-tab {
z-index: 1; }
/* line 11, ../../../ext-theme-base/sass/src/tab/Tab.scss */
.x5-tab-active {
z-index: 3; }
/* line 15, ../../../ext-theme-base/sass/src/tab/Tab.scss */
.x5-tab-button {
position: relative; }
/* line 21, ../../../ext-theme-base/sass/src/tab/Tab.scss */
.x5-tab-close-btn {
display: block;
position: absolute;
font-size: 0;
line-height: 0; }
/* line 28, ../../../ext-theme-base/sass/src/tab/Tab.scss */
.x5-tab-rotate-left {
-webkit-transform: rotate(270deg);
-webkit-transform-origin: 100% 0;
-moz-transform: rotate(270deg);
-moz-transform-origin: 100% 0;
-o-transform: rotate(270deg);
-o-transform-origin: 100% 0;
-ms-transform: rotate(270deg);
-ms-transform-origin: 100% 0;
transform: rotate(270deg);
transform-origin: 100% 0; }
/* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x5-ie8 .x5-tab-rotate-left {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }
/* line 38, ../../../ext-theme-base/sass/src/tab/Tab.scss */
.x5-tab-rotate-right {
-webkit-transform: rotate(90deg);
-webkit-transform-origin: 0 0;
-moz-transform: rotate(90deg);
-moz-transform-origin: 0 0;
-o-transform: rotate(90deg);
-o-transform-origin: 0 0;
-ms-transform: rotate(90deg);
-ms-transform-origin: 0 0;
transform: rotate(90deg);
transform-origin: 0 0; }
/* line 43, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */
.x5-ie8 .x5-tab-rotate-right {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); }
/* line 55, ../../../ext-theme-base/sass/src/tab/Tab.scss */
.x5-tab-tr,
.x5-tab-br,
.x5-tab-mr,
.x5-tab-tl,
.x5-tab-bl,
.x5-tab-ml {
width: 1px; }
/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar {
z-index: 0;
position: relative; }
/* line 6, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar-body {
position: relative; }
/* line 10, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar-strip {
position: absolute;
line-height: 0;
font-size: 0;
z-index: 2; }
/* line 16, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar-top > .x5-tab-bar-strip {
bottom: 0; }
/* line 20, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar-bottom > .x5-tab-bar-strip {
top: 0; }
/* line 24, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar-left > .x5-tab-bar-strip {
right: 0; }
/* line 35, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar-right > .x5-tab-bar-strip {
left: 0; }
/* line 47, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar-horizontal .x5-tab-bar-strip {
width: 100%;
left: 0; }
/* line 52, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar-vertical {
display: table-cell; }
/* line 58, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar-vertical .x5-tab-bar-strip {
height: 100%;
top: 0; }
/* line 64, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-tab-bar-plain {
background: transparent !important; }
/* line 68, ../../../ext-theme-base/sass/src/tab/Bar.scss */
.x5-box-scroller-plain {
background-color: transparent !important; }
/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */
.x5-window {
outline: none;
overflow: hidden; }
/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */
.x5-window .x5-window-wrap {
position: relative; }
/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */
.x5-window-body {
position: relative;
overflow: hidden; }
/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */
.x5-tip {
position: absolute;
overflow: visible;
/*pointer needs to be able to stick out*/ }
/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */
.x5-tip-body {
overflow: hidden;
position: relative; }
/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */
.x5-tip-anchor {
position: absolute;
overflow: hidden;
border-style: solid; }
/* line 1, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button {
display: table;
table-layout: fixed; }
/* line 6, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item {
display: table-cell;
vertical-align: top; }
/* line 10, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item > .x5-frame {
width: 100%;
height: 100%; }
/* line 17, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item .x5-btn-mc {
width: 100%; }
/* line 23, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-horizontal {
display: table-cell;
height: 100%; }
/* line 30, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-horizontal.x5-segmented-button-first {
border-top-right-radius: 0;
border-bottom-right-radius: 0; }
/* line 37, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-horizontal.x5-segmented-button-first .x5-btn-tr,
.x5-segmented-button-item-horizontal.x5-segmented-button-first .x5-btn-mr,
.x5-segmented-button-item-horizontal.x5-segmented-button-first .x5-btn-br {
display: none; }
/* line 43, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-horizontal.x5-segmented-button-middle {
border-radius: 0;
border-left: 0; }
/* line 53, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-horizontal.x5-segmented-button-middle .x5-btn-tl,
.x5-segmented-button-item-horizontal.x5-segmented-button-middle .x5-btn-tr,
.x5-segmented-button-item-horizontal.x5-segmented-button-middle .x5-btn-ml,
.x5-segmented-button-item-horizontal.x5-segmented-button-middle .x5-btn-mr,
.x5-segmented-button-item-horizontal.x5-segmented-button-middle .x5-btn-bl,
.x5-segmented-button-item-horizontal.x5-segmented-button-middle .x5-btn-br {
display: none; }
/* line 59, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-horizontal.x5-segmented-button-last {
border-left: 0;
border-top-left-radius: 0;
border-bottom-left-radius: 0; }
/* line 67, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-horizontal.x5-segmented-button-last .x5-btn-tl,
.x5-segmented-button-item-horizontal.x5-segmented-button-last .x5-btn-ml,
.x5-segmented-button-item-horizontal.x5-segmented-button-last .x5-btn-bl {
display: none; }
/* line 74, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-row {
display: table-row; }
/* line 79, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-vertical.x5-segmented-button-first {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
/* line 86, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-vertical.x5-segmented-button-first .x5-btn-bl,
.x5-segmented-button-item-vertical.x5-segmented-button-first .x5-btn-bc,
.x5-segmented-button-item-vertical.x5-segmented-button-first .x5-btn-br {
display: none; }
/* line 92, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-vertical.x5-segmented-button-middle {
border-radius: 0;
border-top: 0; }
/* line 102, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-vertical.x5-segmented-button-middle .x5-btn-tl,
.x5-segmented-button-item-vertical.x5-segmented-button-middle .x5-btn-tc,
.x5-segmented-button-item-vertical.x5-segmented-button-middle .x5-btn-tr,
.x5-segmented-button-item-vertical.x5-segmented-button-middle .x5-btn-bl,
.x5-segmented-button-item-vertical.x5-segmented-button-middle .x5-btn-bc,
.x5-segmented-button-item-vertical.x5-segmented-button-middle .x5-btn-br {
display: none; }
/* line 108, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-vertical.x5-segmented-button-last {
border-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0; }
/* line 116, ../../../ext-theme-base/sass/src/button/Segmented.scss */
.x5-segmented-button-item-vertical.x5-segmented-button-last .x5-btn-tl,
.x5-segmented-button-item-vertical.x5-segmented-button-last .x5-btn-tc,
.x5-segmented-button-item-vertical.x5-segmented-button-last .x5-btn-tr {
display: none; }
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */
.x5-table-layout {
font-size: 1em; }
/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */
.x5-btn-group {
position: relative;
overflow: hidden; }
/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */
.x5-btn-group-body {
position: relative; }
/* line 8, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */
.x5-btn-group-body .x5-table-layout-cell {
vertical-align: top; }
/* line 2, ../../../ext-theme-base/sass/src/plugin/Viewport.scss */
.x5-viewport,
.x5-viewport > .x5-body {
margin: 0;
padding: 0;
border: 0 none;
overflow: hidden;
position: static;
touch-action: none;
-ms-touch-action: none; }
/* line 21, ../../../ext-theme-base/sass/src/plugin/Viewport.scss */
.x5-viewport {
height: 100%; }
/* line 27, ../../../ext-theme-base/sass/src/plugin/Viewport.scss */
.x5-viewport > .x5-body {
min-height: 100%; }
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */
.x5-column {
float: left; }
/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */
.x5-resizable-overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: none;
z-index: 200000;
background-color: #fff;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0; }
/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */
.x5-form-textarea {
overflow: auto;
resize: none; }
/* line 6, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */
div.x5-form-text-grow .x5-form-textarea {
min-height: inherit; }
/* line 2, ../../../ext-theme-base/sass/src/window/MessageBox.scss */
.x5-message-box .x5-form-display-field {
height: auto; }
/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x5-fieldset {
display: block;
/* preserve margins in IE */
position: relative;
overflow: hidden; }
/* line 7, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x5-fieldset-header {
overflow: hidden; }
/* line 11, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x5-fieldset-header .x5-form-item,
.x5-fieldset-header .x5-tool {
float: left; }
/* line 15, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x5-fieldset-header .x5-fieldset-header-text {
float: left; }
/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x5-fieldset-header .x5-form-cb-wrap {
font-size: 0;
line-height: 0;
height: auto; }
/* line 25, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x5-fieldset-header .x5-form-cb {
margin: 0;
position: static; }
/* line 31, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x5-fieldset-body {
overflow: hidden; }
/* line 35, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x5-fieldset-collapsed {
padding-bottom: 0 !important; }
/* line 38, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x5-fieldset-collapsed > .x5-fieldset-body {
display: none; }
/* line 43, ../../../ext-theme-base/sass/src/form/FieldSet.scss */
.x5-fieldset-header-text-collapsible {
cursor: pointer; }
/* line 8, ../../../ext-theme-base/sass/src/view/BoundList.scss */
.x5-ie9 .x5-boundlist-list-ct {
min-height: 0\%; }
/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-datepicker {
position: relative; }
/* line 4, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-datepicker .x5-monthpicker {
left: 0;
top: 0;
display: block; }
/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-datepicker .x5-monthpicker-months,
.x5-datepicker .x5-monthpicker-years {
height: 100%; }
/* line 16, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-datepicker-inner {
table-layout: fixed;
width: 100%;
border-collapse: separate; }
/* line 22, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-datepicker-cell {
padding: 0; }
/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-datepicker-header {
position: relative; }
/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-datepicker-arrow {
position: absolute;
outline: none;
font-size: 0; }
/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-datepicker-column-header {
padding: 0; }
/* line 40, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-datepicker-date {
display: block;
text-decoration: none; }
/* line 45, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-monthpicker {
display: table; }
/* line 48, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-monthpicker-body {
height: 100%;
position: relative; }
/* line 54, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-monthpicker-months,
.x5-monthpicker-years {
float: left; }
/* line 58, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-monthpicker-item {
float: left; }
/* line 62, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-monthpicker-item-inner {
display: block;
text-decoration: none; }
/* line 67, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-monthpicker-yearnav-button-ct {
float: left;
text-align: center; }
/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-monthpicker-yearnav-button {
display: inline-block;
outline: none;
font-size: 0; }
/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-monthpicker-buttons {
width: 100%; }
/* line 82, ../../../ext-theme-base/sass/src/picker/Date.scss */
.x5-datepicker .x5-monthpicker-buttons {
position: absolute;
bottom: 0; }
/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */
.x5-form-file-btn {
overflow: hidden;
position: relative; }
/* line 6, ../../../ext-theme-base/sass/src/form/field/File.scss */
.x5-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 */
.x5-form-item-hidden {
margin: 0; }
/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */
.x5-color-picker-item {
float: left;
text-decoration: none; }
/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */
.x5-color-picker-item-inner {
display: block;
font-size: 1px; }
/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */
.x5-html-editor-tb .x5-toolbar {
position: static !important; }
/* line 6, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */
.x5-htmleditor-iframe,
.x5-htmleditor-textarea {
display: block;
overflow: auto;
width: 100%;
height: 100%;
border: 0; }
/* line 1, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield-body {
vertical-align: top; }
/* line 5, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield {
height: auto!important;
/* The wrap has to accommodate the list, so override the .x-form-text height rule */
padding: 0!important;
/* Override .x-form-text padding rule */
cursor: text;
min-height: 22px;
overflow-y: auto; }
/* line 13, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield .x5-tagfield-list {
padding: 1px 3px;
margin: 0; }
/* line 18, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield-list.x5-tagfield-singleselect {
white-space: nowrap;
overflow: hidden; }
/* line 23, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield-input, .x5-tagfield-item {
vertical-align: top;
display: inline-block;
position: relative; }
/* line 29, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield-input input, .x5-tagfield-input div {
border: 0 none;
margin: 0;
background: none;
width: 100%; }
/* line 36, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield-input-field {
line-height: 18px; }
/* line 40, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield-emptyinput {
display: none; }
/* line 44, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield-stacked .x5-tagfield-item {
display: block; }
/* line 48, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield-item {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
background-color: #dfe9f6;
border: 1px solid #99bce8;
padding: 0px 1px 0px 5px !important;
margin: 1px 4px 1px 0;
cursor: default; }
/* line 57, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-field:not(.x5-item-disabled) .x5-tagfield-item:hover {
background: #afc9e9;
border: 1px solid #679bdd; }
/* line 62, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-field:not(.x5-item-disabled) .x5-tagfield-item.x5-tagfield-item-selected {
border: 1px solid #2d6cbb !important;
background: #6f96c7 !important;
color: white !important; }
/* line 68, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield-item-text {
line-height: 16px;
padding-right: 20px; }
/* line 73, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-tagfield-item-close {
cursor: pointer;
position: absolute;
background-image: url(images/form/tag-field-item-close.gif);
width: 11px;
height: 11px;
top: 2px;
right: 2px; }
/* line 83, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-field:not(.x5-item-disabled) .x5-tagfield-item.x5-tagfield-item-selected .x5-tagfield-item-close {
background-position: 0px 11px; }
/* line 87, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-field:not(.x5-item-disabled) .x5-tagfield-item-close:hover {
background-position: 22px 0px; }
/* line 91, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-field:not(.x5-item-disabled) .x5-tagfield-item.x5-tagfield-item-selected .x5-tagfield-item-close:hover {
background-position: 22px 11px; }
/* line 95, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-field:not(.x5-item-disabled) .x5-tagfield-item-close:active {
background-position: 11px 0px; }
/* line 99, ../../../ext-theme-base/sass/src/form/field/Tag.scss */
.x5-field:not(.x5-item-disabled) .x5-tagfield-item.x5-tagfield-item-selected .x5-tagfield-item-close:active {
background-position: 11px 11px; }
/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */
.x5-grid-cell-inner-action-col {
line-height: 0;
font-size: 0; }
/* line 1, ../../../ext-theme-base/sass/src/grid/column/Check.scss */
.x5-grid-cell-inner-checkcolumn {
line-height: 0;
font-size: 0; }
/* line 1, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */
.x5-group-hd-container {
overflow: hidden; }
/* line 5, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */
.x5-grid-group-hd {
white-space: nowrap;
outline: none; }
/* line 10, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */
.x5-grid-row-body-hidden, .x5-grid-group-collapsed {
display: none; }
/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */
.x5-grid-row-body-hidden {
display: none; }
/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x5-menu {
outline: none; }
/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x5-menu-item {
white-space: nowrap;
overflow: hidden;
border-color: transparent;
border-style: solid; }
/* line 16, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x5-menu-item-cmp .x5-field-label-cell {
vertical-align: middle; }
/* line 24, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x5-menu-icon-separator {
position: absolute;
top: 0px;
z-index: 0;
height: 100%;
overflow: hidden; }
/* line 30, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x5-menu-plain .x5-menu-icon-separator {
display: none; }
/* line 35, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x5-menu-item-link {
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
text-decoration: none;
outline: 0;
display: block; }
/* line 50, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x5-menu-item-link-href {
-webkit-touch-callout: default; }
/* line 54, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x5-menu-item-text {
display: inline-block; }
/* line 60, ../../../ext-theme-base/sass/src/menu/Menu.scss */
.x5-menu-item-icon,
.x5-menu-item-icon-right,
.x5-menu-item-arrow {
font-size: 0;
position: absolute;
text-align: center;
background-repeat: no-repeat; }
/*
* Rules for fields which are rendered to fit inside grid cells.
* This includes cell and row editor fields and fields in widget columns.
*/
/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */
.x5-grid-editor .x5-form-cb-wrap {
text-align: center; }
/* line 12, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */
.x5-grid-editor .x5-form-cb {
position: static; }
/* line 19, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */
.x5-grid-editor .x5-form-display-field {
margin: 0;
white-space: nowrap;
overflow: hidden; }
/* line 27, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */
.x5-grid-editor div.x5-form-action-col-field {
line-height: 0; }
/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor-wrap {
position: absolute;
overflow: visible;
z-index: 2; }
/* line 8, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor {
position: absolute; }
/* line 12, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor-buttons {
position: absolute;
white-space: nowrap; }
/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */
.x5-grid-row-expander {
font-size: 0;
line-height: 0; }
/* line 1, ../../../ext-theme-base/sass/src/grid/selection/SpreadsheetModel.scss */
.x5-ssm-row-numberer-hd {
cursor: se-resize!important; }
/* line 6, ../../../ext-theme-base/sass/src/grid/selection/SpreadsheetModel.scss */
.x5-ssm-row-numberer-cell {
cursor: e-resize; }
/* line 11, ../../../ext-theme-base/sass/src/grid/selection/SpreadsheetModel.scss */
.x5-ssm-column-select .x5-column-header {
cursor: s-resize; }
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */
.x5-abs-layout-ct {
position: relative; }
/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */
.x5-abs-layout-item {
position: absolute !important; }
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Center.scss */
.x5-center-layout-item {
position: absolute; }
/* line 5, ../../../ext-theme-base/sass/src/layout/container/Center.scss */
.x5-center-target {
position: relative; }
/* line 1, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-layout-wrap {
display: table;
width: 100%;
border-collapse: separate; }
/* line 7, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-layout-colgroup {
display: table-column-group; }
/* line 11, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-layout-column {
display: table-column; }
/* line 16, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-layout-auto-label > * > .x5-form-item-label {
width: auto !important; }
/* line 20, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-layout-auto-label > * > .x5-form-item-label > .x5-form-item-label-inner {
width: auto !important;
white-space: nowrap; }
/* line 26, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-layout-auto-label > * > .x5-form-layout-label-column {
width: 1px; }
/* line 33, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-layout-sized-label > * > .x5-form-item-label {
width: auto !important; }
/* line 40, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-form-item {
display: table-row; }
/* line 43, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-form-item > .x5-form-item-label {
padding-left: 0 !important;
padding-right: 0 !important;
padding-bottom: 0 !important; }
/* line 51, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-form-item > .x5-form-item-body {
max-width: none; }
/* line 60, ../../../ext-theme-base/sass/src/layout/container/Form.scss */
.x5-form-form-item.x5-form-item-no-label:before {
content: ' ';
display: table-cell;
pointer-events: none; }
/* line 2, ../../../ext-theme-base/sass/src/resizer/Resizer.scss */
.x5-resizable-wrapped {
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box; }
/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */
.x5-column-header-checkbox .x5-column-header-text {
display: block;
background-repeat: no-repeat;
font-size: 0; }
/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */
.x5-grid-cell-row-checker {
vertical-align: middle;
background-repeat: no-repeat;
font-size: 0; }
/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x5-slider {
outline: none;
position: relative; }
/* line 6, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x5-slider-inner {
position: relative;
left: 0;
top: 0;
overflow: visible; }
/* line 11, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x5-slider-vert .x5-slider-inner {
background: repeat-y 0 0; }
/* line 16, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x5-slider-thumb {
position: absolute;
background: no-repeat 0 0; }
/* line 19, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x5-slider-horz .x5-slider-thumb {
left: 0; }
/* line 22, ../../../ext-theme-base/sass/src/slider/Multi.scss */
.x5-slider-vert .x5-slider-thumb {
bottom: 0; }
/* line 1, ../../../ext-theme-base/sass/src/toolbar/Breadcrumb.scss */
.x5-breadcrumb-btn .x5-box-target:first-child {
margin: 0; }
/* including package ext-theme-neutral */
/* line 1, ../../../ext-theme-neutral/sass/src/scroll/Indicator.scss */
.x5-scroll-indicator {
position: absolute;
background-color: black;
opacity: 0.5;
border-radius: 3px;
margin: 2px; }
/* line 10, ../../../ext-theme-neutral/sass/src/scroll/Indicator.scss */
.x5-scroll-indicator-x {
bottom: 0;
left: 0;
height: 6px; }
/* line 16, ../../../ext-theme-neutral/sass/src/scroll/Indicator.scss */
.x5-scroll-indicator-y {
right: 0;
top: 0;
width: 6px; }
/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */
.x5-body {
color: black;
font-size: 12px;
font-family: tahoma, arial, verdana, sans-serif; }
/* line 19, ../../../ext-theme-neutral/sass/src/Component.scss */
.x5-animating-size,
.x5-collapsed {
overflow: hidden!important; }
/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */
.x5-editor .x5-form-item-body {
padding-bottom: 0; }
/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */
.x5-focus-element {
position: absolute;
top: -10px;
left: -10px;
width: 0px;
height: 0px; }
/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */
.x5-focus-frame {
position: absolute;
left: 0px;
top: 0px;
z-index: 100000000;
width: 0px;
height: 0px; }
/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */
.x5-focus-frame-top,
.x5-focus-frame-bottom,
.x5-focus-frame-left,
.x5-focus-frame-right {
position: absolute;
top: 0px;
left: 0px; }
/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */
.x5-focus-frame-top,
.x5-focus-frame-bottom {
border-top: solid 2px #15428b;
height: 2px; }
/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */
.x5-focus-frame-left,
.x5-focus-frame-right {
border-left: solid 2px #15428b;
width: 2px; }
/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */
.x5-mask {
background-image: none;
background-color: rgba(204, 204, 204, 0.5);
cursor: default;
border-style: solid;
border-width: 1px;
border-color: transparent; }
/* line 16, ../../../ext-theme-base/sass/etc/mixins/background-opacity.scss */
.x5-ie8 .x5-mask {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80CCCCCC, endColorstr=#80CCCCCC);
zoom: 1; }
/* line 15, ../../../ext-theme-neutral/sass/src/LoadMask.scss */
.x5-mask.x5-focus {
border-style: solid;
border-width: 1px;
border-color: #c0d4ed; }
/* line 22, ../../../ext-theme-neutral/sass/src/LoadMask.scss */
.x5-mask-msg {
padding: 2px;
border-style: solid;
border-width: 1px;
border-color: #99bce8;
background: #dfe9f6; }
/* line 40, ../../../ext-theme-neutral/sass/src/LoadMask.scss */
.x5-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 52, ../../../ext-theme-neutral/sass/src/LoadMask.scss */
.x5-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
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {color} [$ui-border-color=$progress-border-color]
* The border-color of the ProgressBar
*
* @param {color} [$ui-background-color=$progress-background-color]
* The background-color of the ProgressBar
*
* @param {color} [$ui-bar-background-color=$progress-bar-background-color]
* The background-color of the ProgressBar's moving element
*
* @param {string/list} [$ui-bar-background-gradient=$progress-bar-background-gradient]
* The background-gradient of the ProgressBar's moving element. Can be either the name of
* a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {color} [$ui-color-front=$progress-text-color-front]
* The color of the ProgressBar's text when in front of the ProgressBar's moving element
*
* @param {color} [$ui-color-back=$progress-text-color-back]
* The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it
*
* @param {number} [$ui-height=$progress-height]
* The height of the ProgressBar
*
* @param {number} [$ui-border-width=$progress-border-width]
* The border-width of the ProgressBar
*
* @param {number} [$ui-border-radius=$progress-border-radius]
* The border-radius of the ProgressBar
*
* @param {string} [$ui-text-text-align=$progress-text-text-align]
* The text-align of the ProgressBar's text
*
* @param {number} [$ui-text-font-size=$progress-text-font-size]
* The font-size of the ProgressBar's text
*
* @param {string} [$ui-text-font-weight=$progress-text-font-weight]
* The font-weight of the ProgressBar's text
*
* @member Ext.ProgressBar
*/
/* line 80, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
.x5-progress-default {
background-color: #e0e8f3;
border-width: 1px;
height: 20px;
border-color: #6594cf; }
/* line 92, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
.x5-progress-default .x5-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: -ms-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); }
/* line 100, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
.x5-nlg .x5-progress-default .x5-progress-bar-default {
background: repeat-x;
background-image: url(images/progress/progress-default-bg.gif); }
/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
.x5-progress-default .x5-progress-text {
color: white;
font-weight: bold;
font-size: 11px;
font-family: tahoma, arial, verdana, sans-serif;
text-align: center;
line-height: 18px; }
/* line 116, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
.x5-progress-default .x5-progress-text-back {
color: #396295;
line-height: 18px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-progress-bar-default:before {
display: none;
content: "x-slicer:bg:url(images/progress/progress-default-bg.gif), stretch:bottom" !important; }
/*</if slicer>*/
/* */
/* line 127, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
.x5-progressbar-default-cell > .x5-grid-cell-inner,
.x5-progressbarwidget-default-cell > .x5-grid-cell-inner {
padding-top: 0px;
padding-bottom: 0px; }
/* line 130, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */
.x5-progressbar-default-cell > .x5-grid-cell-inner .x5-progress-default,
.x5-progressbarwidget-default-cell > .x5-grid-cell-inner .x5-progress-default {
height: 18px; }
/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool {
cursor: pointer; }
/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-img {
overflow: hidden;
width: 15px;
height: 15px;
background-image: url(images/tools/tool-sprites.gif);
margin: 0; }
/* line 28, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-placeholder {
visibility: hidden; }
/* line 32, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-close {
background-position: 0 0; }
/* line 36, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-minimize {
background-position: 0 -15px; }
/* line 40, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-maximize {
background-position: 0 -30px; }
/* line 44, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-restore {
background-position: 0 -45px; }
/* line 48, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-toggle {
background-position: 0 -60px; }
/* line 51, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-panel-collapsed .x5-tool-toggle {
background-position: 0 -75px; }
/* line 56, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-gear {
background-position: 0 -90px; }
/* line 60, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-prev {
background-position: 0 -105px; }
/* line 64, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-next {
background-position: 0 -120px; }
/* line 68, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-pin {
background-position: 0 -135px; }
/* line 72, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-unpin {
background-position: 0 -150px; }
/* line 76, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-right {
background-position: 0 -165px; }
/* line 80, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-left {
background-position: 0 -180px; }
/* line 84, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-down {
background-position: 0 -195px; }
/* line 88, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-up {
background-position: 0 -210px; }
/* line 92, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-refresh {
background-position: 0 -225px; }
/* line 96, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-plus {
background-position: 0 -240px; }
/* line 100, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-minus {
background-position: 0 -255px; }
/* line 104, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-search {
background-position: 0 -270px; }
/* line 108, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-save {
background-position: 0 -285px; }
/* line 112, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-help {
background-position: 0 -300px; }
/* line 116, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-print {
background-position: 0 -315px; }
/* line 120, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-expand {
background-position: 0 -330px; }
/* line 124, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-collapse {
background-position: 0 -345px; }
/* line 128, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-resize {
background-position: 0 -360px; }
/* line 132, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-move {
background-position: 0 -375px; }
/* line 137, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-expand-bottom,
.x5-tool-collapse-bottom {
background-position: 0 -195px; }
/* line 142, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-expand-top,
.x5-tool-collapse-top {
background-position: 0 -210px; }
/* line 147, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-expand-left,
.x5-tool-collapse-left {
background-position: 0 -180px; }
/* line 152, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-expand-right,
.x5-tool-collapse-right {
background-position: 0 -165px; }
/* line 172, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-close {
background-position: -15px 0; }
/* line 176, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-minimize {
background-position: -15px -15px; }
/* line 180, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-maximize {
background-position: -15px -30px; }
/* line 184, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-restore {
background-position: -15px -45px; }
/* line 188, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-toggle {
background-position: -15px -60px; }
/* line 193, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-panel-collapsed .x5-tool-over .x5-tool-toggle {
background-position: -15px -75px; }
/* line 198, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-gear {
background-position: -15px -90px; }
/* line 202, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-prev {
background-position: -15px -105px; }
/* line 206, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-next {
background-position: -15px -120px; }
/* line 210, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-pin {
background-position: -15px -135px; }
/* line 214, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-unpin {
background-position: -15px -150px; }
/* line 218, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-right {
background-position: -15px -165px; }
/* line 222, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-left {
background-position: -15px -180px; }
/* line 226, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-down {
background-position: -15px -195px; }
/* line 230, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-up {
background-position: -15px -210px; }
/* line 234, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-refresh {
background-position: -15px -225px; }
/* line 238, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-plus {
background-position: -15px -240px; }
/* line 242, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-minus {
background-position: -15px -255px; }
/* line 246, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-search {
background-position: -15px -270px; }
/* line 250, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-save {
background-position: -15px -285px; }
/* line 254, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-help {
background-position: -15px -300px; }
/* line 258, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-print {
background-position: -15px -315px; }
/* line 262, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-expand {
background-position: -15px -330px; }
/* line 266, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-collapse {
background-position: -15px -345px; }
/* line 270, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-resize {
background-position: -15px -360px; }
/* line 274, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-move {
background-position: -15px -375px; }
/* line 279, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-expand-bottom,
.x5-tool-over .x5-tool-collapse-bottom {
background-position: -15px -195px; }
/* line 284, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-expand-top,
.x5-tool-over .x5-tool-collapse-top {
background-position: -15px -210px; }
/* line 289, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-expand-left,
.x5-tool-over .x5-tool-collapse-left {
background-position: -15px -180px; }
/* line 294, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */
.x5-tool-over .x5-tool-expand-right,
.x5-tool-over .x5-tool-collapse-right {
background-position: -15px -165px; }
/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */
.x5-header-draggable,
.x5-header-ghost {
cursor: move; }
/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */
.x5-header-text {
white-space: nowrap; }
/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-collapse-el {
cursor: pointer; }
/* line 9, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-layout-split-left,
.x5-layout-split-right {
top: 50%;
margin-top: -18px;
width: 5px;
height: 35px; }
/* line 17, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-layout-split-top,
.x5-layout-split-bottom {
left: 50%;
width: 35px;
height: 5px;
margin-left: -18px; }
/* line 24, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-layout-split-left {
background-image: url(images/util/splitter/mini-left.gif); }
/* line 28, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-layout-split-right {
background-image: url(images/util/splitter/mini-right.gif); }
/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-layout-split-top {
background-image: url(images/util/splitter/mini-top.gif); }
/* line 48, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-layout-split-bottom {
background-image: url(images/util/splitter/mini-bottom.gif); }
/* line 53, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-splitter-collapsed .x5-layout-split-left {
background-image: url(images/util/splitter/mini-right.gif); }
/* line 57, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-splitter-collapsed .x5-layout-split-right {
background-image: url(images/util/splitter/mini-left.gif); }
/* line 73, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-splitter-collapsed .x5-layout-split-top {
background-image: url(images/util/splitter/mini-bottom.gif); }
/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-splitter-collapsed .x5-layout-split-bottom {
background-image: url(images/util/splitter/mini-top.gif); }
/* line 82, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-splitter-active {
background-color: #b4b4b4;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
opacity: 0.8; }
/* line 86, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-splitter-active .x5-collapse-el {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
opacity: 0.3; }
/* line 91, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */
.x5-splitter-focus {
outline: 1px dotted #464646;
outline-offset: -1px; }
/* line 33, ../../../ext-theme-base/sass/etc/mixins/css-outline.scss */
.x5-ie8 .x5-splitter-focus {
outline: none; }
/* line 35, ../../../ext-theme-base/sass/etc/mixins/css-outline.scss */
.x5-ie8 .x5-splitter-focus:after {
position: absolute;
content: ' ';
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
border: 1px dotted #464646; }
/**
* Creates a visual theme for a {@link Ext.layout.container.boxOverflow.Scroller Box Scroller}
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {string} $type
* The type of component that this box scroller will be used with. For example 'toolbar'
* or 'tab-bar'
*
* @param {number} [$horizontal-width=16px]
* The width of horizontal scroller buttons
*
* @param {Number} [$horizontal-height=16px]
* The height of horizontal scroller buttons
*
* @param {number} [$vertical-width=16px]
* The width of vertical scroller buttons
*
* @param {Number} [$vertical-height=16px]
* The height of vertical scroller buttons
*
* @param {number/list} [$top-margin=0]
* The margin of the "top" scroller button
*
* @param {number/list} [$right-margin=0]
* The margin of the "right" scroller button
*
* @param {number/list} [$bottom-margin=0]
* The margin of the "bottom" scroller button
*
* @param {number/list} [$left-margin=0]
* The margin of the "left" scroller button
*
* @param {number/list} $top-background-image
* The background-image of the "top" scroller button
*
* @param {number/list} $right-background-image
* The background-image of the "right" scroller button
*
* @param {number/list} $bottom-background-image
* The background-image of the "bottom" scroller button
*
* @param {number/list} $left-background-image
* The background-image of the "left" scroller button
*
* @param {color} [$border-color=$base-color]
* The border-color of the scroller buttons
*
* @param {number} [$horizontal-border-width=0]
* The border-width of the scroller buttons
*
* @param {number} [$vertical-border-width=0]
* The border-width of the scroller buttons
*
* @param {number/list} [$container-padding=0]
* The padding of the container that these scroller buttons will be used in. Used for
* setting margin offsets of the inner layout element to reserve space for the scrollers.
*
* @param {string} [$cursor=pointer]
* The type of cursor to display when the mouse is over a scroller button
*
* @param {string} [$cursor-disabled=default]
* The type of cursor to display when the mouse is over a disabled scroller button
*
* @param {string} [$align=middle]
* Vertical alignment of the scroller buttons, or horizontal align of vertically oriented
* scroller buttons. Can be one of the following values:
*
* - `begin`
* - `middle`
* - `end`
* - `stretch`
*
* @param {number} [$opacity=0.6]
* The opacity of the scroller buttons. Only applicable when `$classic` is `false`.
*
* @param {number} [$opacity-over=0.8]
* The opacity of hovered scroller buttons. Only applicable when `$classic` is `false`.
*
* @param {number} [$opacity-pressed=1]
* The opacity of pressed scroller buttons. Only applicable when `$classic` is `false`.
*
* @param {number} [$opacity-disabled=0.25]
* The opacity of disabled scroller buttons. Only applicable when `$classic` is `false`.
*
* @param {boolean} [$classic=false]
* `true` to use classic-style scroller buttons. When `true` scroller buttons are given
* their hover state by changing their background-position, When `false` scroller buttons
* are given their hover state by applying opacity.
*
* @member Ext.layout.container.Box
* @private
*/
/**
* Creates a visual theme for a Toolbar.
* @param {String} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {color} [$background-color=$toolbar-background-color]
* The background color of the toolbar
*
* @param {string/list} [$background-gradient=$toolbar-background-gradient]
* The background gradient of the toolbar
*
* @param {string/list} [$vertical-spacing=$toolbar-vertical-spacing]
* The vertical spacing of the toolbar's items
*
* @param {string/list} [$horizontal-spacing=$toolbar-horizontal-spacing]
* The horizontal spacing of the toolbar's items
*
* @param {color} [$border-color=$toolbar-border-color]
* The border color of the toolbar
*
* @param {number} [$border-width=$toolbar-border-width]
* The border-width of the toolbar
*
* @param {number} [$border-style=$toolbar-border-style]
* The border-style of the toolbar
*
* @param {number} [$spacer-width=$toolbar-spacer-width]
* The width of the toolbar's {@link Ext.toolbar.Spacer Spacers}
*
* @param {color} [$separator-color=$toolbar-separator-color]
* The main border-color of the toolbar's {@link Ext.toolbar.Separator Separators}
*
* @param {color} [$separator-highlight-color=$toolbar-separator-highlight-color]
* The highlight border-color of the toolbar's {@link Ext.toolbar.Separator Separators}
*
* @param {number/list} [$separator-horizontal-margin=$toolbar-separator-horizontal-margin]
* The margin of {@link Ext.toolbar.Separator Separators} when the toolbar is horizontally aligned
*
* @param {number} [$separator-horizontal-height=$toolbar-separator-horizontal-height]
* The height of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned
*
* @param {string} [$separator-horizontal-border-style=$toolbar-separator-horizontal-border-style]
* The border-style of {@link Ext.toolbar.Separator Separators} when the toolbar is horizontally aligned
*
* @param {number} [$separator-horizontal-border-width=$toolbar-separator-horizontal-border-width]
* The border-width of {@link Ext.toolbar.Separator Separators} when the toolbar is horizontally aligned
*
* @param {number/list} [$separator-vertical-margin=$toolbar-separator-vertical-margin]
* The margin of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned
*
* @param {string} [$separator-vertical-border-style=$toolbar-separator-vertical-border-style]
* The border-style of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned
*
* @param {number} [$separator-vertical-border-width=$toolbar-separator-vertical-border-width]
* The border-width of {@link Ext.toolbar.Separator Separators} when the toolbar is vertically aligned
*
* @param {string} [$text-font-family=$toolbar-text-font-family]
* The default font-family of the toolbar's text items
*
* @param {number} [$text-font-size=$toolbar-text-font-size]
* The default font-size of the toolbar's text items
*
* @param {number} [$text-font-weight=$toolbar-text-font-weight]
* The default font-weight of the toolbar's text items
*
* @param {color} [$text-color=$toolbar-text-color]
* The color of the toolbar's text items
*
* @param {number} [$text-line-height=$toolbar-text-line-height]
* The line-height of the toolbar's text items
*
* @param {number/list} [$text-padding=$toolbar-text-padding]
* The padding of the toolbar's text items
*
* @param {number} [$scroller-width=$toolbar-scroller-width]
* The width of the scroller buttons
*
* @param {number} [$scroller-height=$toolbar-scroller-height]
* The height of the scroller buttons
*
* @param {number} [$scroller-vertical-width=$toolbar-scroller-vertical-width]
* The width of scrollers on vertically aligned toolbars
*
* @param {number} [$scroller-vertical-height=$toolbar-scroller-vertical-height]
* The height of scrollers on vertically aligned toolbars
*
* @param {color} [$scroller-border-color=$toolbar-scroller-border-color]
* The border-color of the scroller buttons
*
* @param {color} [$scroller-border-width=$toolbar-scroller-border-width]
* The border-width of the scroller buttons
*
* @param {color} [$scroller-vertical-border-color=$toolbar-scroller-vertical-border-color]
* The border-color of scroller buttons on vertically aligned toolbars
*
* @param {color} [$scroller-vertical-border-width=$toolbar-scroller-vertical-border-width]
* The border-width of scroller buttons on vertically aligned toolbars
*
* @param {number/list} [$scroller-top-margin=$toolbar-scroller-top-margin]
* The margin of "top" scroller buttons
*
* @param {number/list} [$scroller-right-margin=$toolbar-scroller-right-margin]
* The margin of "right" scroller buttons
*
* @param {number/list} [$scroller-bottom-margin=$toolbar-scroller-bottom-margin]
* The margin of "bottom" scroller buttons
*
* @param {number/list} [$scroller-left-margin=$toolbar-scroller-left-margin]
* The margin of "left" scroller buttons
*
* @param {string} [$scroller-cursor=$toolbar-scroller-cursor]
* The cursor of Toolbar scrollers
*
* @param {string} [$scroller-cursor-disabled=$toolbar-scroller-cursor-disabled]
* The cursor of disabled Toolbar scrollers
*
* @param {number} [$scroller-opacity=$toolbar-scroller-opacity]
* The opacity of Toolbar scroller buttons. Only applicable when
* `$classic-scrollers` is `false`.
*
* @param {number} [$scroller-opacity-over=$toolbar-scroller-opacity-over]
* The opacity of hovered Toolbar scroller buttons. Only applicable when
* `$classic-scrollers` is `false`.
*
* @param {number} [$scroller-opacity-pressed=$toolbar-scroller-opacity-pressed]
* The opacity of pressed Toolbar scroller buttons. Only applicable when
* `$classic-scrollers` is `false`.
*
* @param {number} [$scroller-opacity-disabled=$toolbar-scroller-opacity-disabled]
* The opacity of disabled Toolbar scroller buttons.
*
* @param {string} [$tool-background-image=$toolbar-tool-background-image]
* The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar
*
* @param {boolean} [$classic-scrollers=$toolbar-classic-scrollers]
* `true` to use classic-style scroller buttons. When `true` scroller buttons are given
* their hover state by changing their background-position, When `false` scroller buttons
* are given their hover state by applying opacity.
*
* @member Ext.toolbar.Toolbar
*/
/* line 198, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-default {
padding: 2px 0 2px 2px;
border-style: solid;
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: -ms-linear-gradient(top, #dfe9f5, #d3e1f1);
background-image: linear-gradient(top, #dfe9f5, #d3e1f1); }
/* line 227, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-default .x5-toolbar-item {
margin: 0 2px 0 0; }
/* line 237, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-default .x5-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 246, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-default .x5-box-menu-after {
margin: 0 2px; }
/* line 251, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-default-vertical {
padding: 2px 2px 0; }
/* line 260, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-default-vertical .x5-toolbar-item {
margin: 0 0 2px 0; }
/* line 269, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-default-vertical .x5-toolbar-separator-vertical {
margin: 0 5px 2px;
border-style: solid none;
border-width: 1px 0;
border-top-color: #98c8ff;
border-bottom-color: white; }
/* line 277, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-default-vertical .x5-box-menu-after {
margin: 2px 0; }
/* line 284, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-nlg .x5-toolbar-default {
background-image: url(images/toolbar/toolbar-default-bg.gif) !important;
background-repeat: repeat-x; }
/* line 292, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-text-default {
padding: 0 4px;
color: #4c4c4c;
font: normal 11px/16px tahoma, arial, verdana, sans-serif; }
/* line 298, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-spacer-default {
width: 2px; }
/* line 145, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-toolbar-default-scroller .x5-box-scroller-body-horizontal {
margin-left: 12px; }
/* line 151, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-toolbar-default-vertical-scroller .x5-box-scroller-body-vertical {
margin-top: 13px; }
/* line 156, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default {
cursor: pointer; }
/* line 177, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-disabled {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5;
cursor: default; }
/* line 188, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-left, .x5-box-scroller-toolbar-default.x5-box-scroller-right {
width: 14px;
height: 22px;
border-style: solid;
border-color: #8db2e3;
border-width: 0 0 1px;
top: 50%;
margin-top: -11px; }
/* line 214, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-left {
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
background-image: url(images/toolbar/default-scroll-left.gif);
background-position: -14px 0; }
/* line 231, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-left.x5-box-scroller-hover {
background-position: 0 0; }
/* line 237, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-right {
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
background-image: url(images/toolbar/default-scroll-right.gif);
background-position: 0 0; }
/* line 254, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-right.x5-box-scroller-hover {
background-position: -14px 0; }
/* line 263, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-top, .x5-box-scroller-toolbar-default.x5-box-scroller-bottom {
height: 5px;
width: 35px;
left: 50%;
margin-left: -17px; }
/* line 289, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-top {
margin-top: 5px;
margin-right: 0;
margin-bottom: 5px;
background-image: url(images/toolbar/default-scroll-top.gif);
background-position: 0 -5px; }
/* line 306, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-top.x5-box-scroller-hover {
background-position: 0 0; }
/* line 312, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-bottom {
margin-top: 5px;
margin-right: 0;
margin-bottom: 5px;
background-image: url(images/toolbar/default-scroll-bottom.gif);
background-position: 0 0; }
/* line 329, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-default.x5-box-scroller-bottom.x5-box-scroller-hover {
background-position: 0 -5px; }
/* line 335, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-ie8 .x5-box-scroller-toolbar-default {
background-color: #d3e1f1; }
/* line 341, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-more-icon {
background-image: url(images/toolbar/default-more.gif); }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-toolbar-default:before {
display: none;
content: "x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom" !important; }
/*</if slicer>*/
/* */
/* line 198, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-footer {
padding: 4px 0 4px 6px;
border-style: solid;
border-color: #99bce8;
border-width: 0;
background-image: none;
background-color: transparent; }
/* line 227, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-footer .x5-toolbar-item {
margin: 0 6px 0 0; }
/* line 237, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-footer .x5-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 246, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-footer .x5-box-menu-after {
margin: 0 6px; }
/* line 251, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-footer-vertical {
padding: 4px 6px 0; }
/* line 260, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-footer-vertical .x5-toolbar-item {
margin: 0 0 4px 0; }
/* line 269, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-footer-vertical .x5-toolbar-separator-vertical {
margin: 0 5px 2px;
border-style: solid none;
border-width: 1px 0;
border-top-color: #98c8ff;
border-bottom-color: white; }
/* line 277, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-footer-vertical .x5-box-menu-after {
margin: 4px 0; }
/* line 284, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-nlg .x5-toolbar-footer {
background-image: url(images/toolbar/toolbar-footer-bg.gif) !important;
background-repeat: repeat-x; }
/* line 292, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-text-footer {
padding: 0 4px;
color: #4c4c4c;
font: normal 11px/16px tahoma, arial, verdana, sans-serif; }
/* line 298, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-spacer-footer {
width: 2px; }
/* line 145, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-toolbar-footer-scroller .x5-box-scroller-body-horizontal {
margin-left: 8px; }
/* line 151, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-toolbar-footer-vertical-scroller .x5-box-scroller-body-vertical {
margin-top: 11px; }
/* line 156, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-footer {
cursor: pointer; }
/* line 177, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-footer.x5-box-scroller-disabled {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5;
cursor: default; }
/* line 188, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-footer.x5-box-scroller-left, .x5-box-scroller-toolbar-footer.x5-box-scroller-right {
width: 14px;
height: 22px;
border-style: solid;
border-color: #8db2e3;
border-width: 0 0 1px;
top: 50%;
margin-top: -11px; }
/* line 214, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-footer.x5-box-scroller-left {
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
background-image: url(images/toolbar/footer-scroll-left.gif);
background-position: -14px 0; }
/* line 231, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-footer.x5-box-scroller-left.x5-box-scroller-hover {
background-position: 0 0; }
/* line 237, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-footer.x5-box-scroller-right {
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
background-image: url(images/toolbar/footer-scroll-right.gif);
background-position: 0 0; }
/* line 254, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-toolbar-footer.x5-box-scroller-right.x5-box-scroller-hover {
background-position: -14px 0; }
/* line 335, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-ie8 .x5-box-scroller-toolbar-footer {
background-color: transparent; }
/* line 341, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */
.x5-toolbar-more-icon {
background-image: url(images/toolbar/footer-more.gif); }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-toolbar-footer:before {
display: none;
content: "x-slicer:bg:url(images/toolbar/toolbar-footer-bg.gif), stretch:bottom" !important; }
/*</if slicer>*/
/* */
/**
* Creates a visual theme for a Panel.
*
* **Note:** When using `frame: true`, this mixin call creates a UI property with the name and a "-framed" suffix.
*
* For example, Panel's UI will be set to "highlight-framed" if `frame:true`.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {color} [$ui-border-color=$panel-border-color]
* The border-color of the Panel
*
* @param {number} [$ui-border-radius=$panel-border-radius]
* The border-radius of the Panel
*
* @param {number} [$ui-border-width=$panel-border-width]
* The border-width of the Panel
*
* @param {number} [$ui-padding=$panel-padding]
* The padding of the Panel
*
* @param {color} [$ui-header-color=$panel-header-color]
* The text color of the Header
*
* @param {string} [$ui-header-font-family=$panel-header-font-family]
* The font-family of the Header
*
* @param {number} [$ui-header-font-size=$panel-header-font-size]
* The font-size of the Header
*
* @param {string} [$ui-header-font-weight=$panel-header-font-weight]
* The font-weight of the Header
*
* @param {number} [$ui-header-line-height=$panel-header-line-height]
* The line-height of the Header
*
* @param {color} [$ui-header-border-color=$panel-header-border-color]
* The border-color of the Header
*
* @param {number} [$ui-header-border-width=$panel-header-border-width]
* The border-width of the Header
*
* @param {string} [$ui-header-border-style=$panel-header-border-style]
* The border-style of the Header
*
* @param {color} [$ui-header-background-color=$panel-header-background-color]
* The background-color of the Header
*
* @param {string/list} [$ui-header-background-gradient=$panel-header-background-gradient]
* The background-gradient of the Header. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {color} [$ui-header-inner-border-color=$panel-header-inner-border-color]
* The inner border-color of the Header
*
* @param {number} [$ui-header-inner-border-width=$panel-header-inner-border-width]
* The inner border-width of the Header
*
* @param {number/list} [$ui-header-text-padding=$panel-header-text-padding]
* The padding of the Header's text element
*
* @param {number/list} [$ui-header-text-margin=$panel-header-text-margin]
* The margin of the Header's text element
*
* @param {string} [$ui-header-text-transform=$panel-header-text-transform]
* The text-transform of the Header
*
* @param {number/list} [$ui-header-padding=$panel-header-padding]
* The padding of the Header
*
* @param {number} [$ui-header-icon-width=$panel-header-icon-width]
* The width of the Header icon
*
* @param {number} [$ui-header-icon-height=$panel-header-icon-height]
* The height of the Header icon
*
* @param {number} [$ui-header-icon-spacing=$panel-header-icon-spacing]
* The space between the Header icon and text
*
* @param {list} [$ui-header-icon-background-position=$panel-header-icon-background-position]
* The background-position of the Header icon
*
* @param {color} [$ui-header-glyph-color=$panel-header-glyph-color]
* The color of the Header glyph icon
*
* @param {number} [$ui-header-glyph-opacity=$panel-header-glyph-opacity]
* The opacity of the Header glyph icon
*
* @param {number} [$ui-header-noborder-adjust=$panel-header-noborder-adjust]
* True to adjust the padding of borderless panel headers so that their height is the same
* as the height of bordered panels. This is helpful when borderless and bordered panels
* are used side-by-side, as it maintains a consistent vertical alignment.
*
* @param {number} [$ui-tool-spacing=$panel-tool-spacing]
* The space between the Panel {@link Ext.panel.Tool Tools}
*
* @param {string} [$ui-tool-background-image=$panel-tool-background-image]
* The background sprite to use for Panel {@link Ext.panel.Tool Tools}
*
* @param {color} [$ui-body-color=$panel-body-color]
* The color of text inside the Panel body
*
* @param {color} [$ui-body-border-color=$panel-body-border-color]
* The border-color of the Panel body
*
* @param {number} [$ui-body-border-width=$panel-body-border-width]
* The border-width of the Panel body
*
* @param {string} [$ui-body-border-style=$panel-body-border-style]
* The border-style of the Panel body
*
* @param {color} [$ui-body-background-color=$panel-body-background-color]
* The background-color of the Panel body
*
* @param {number} [$ui-body-font-size=$panel-body-font-size]
* The font-size of the Panel body
*
* @param {string} [$ui-body-font-weight=$panel-body-font-weight]
* The font-weight of the Panel body
*
* @param {string} [$ui-background-stretch-top=$panel-background-stretch-top]
* The direction to strech the background-gradient of top docked Headers when slicing images
* for IE using Sencha Cmd
*
* @param {string} [$ui-background-stretch-bottom=$panel-background-stretch-bottom]
* The direction to strech the background-gradient of bottom docked Headers when slicing images
* for IE using Sencha Cmd
*
* @param {string} [$ui-background-stretch-right=$panel-background-stretch-right]
* The direction to strech the background-gradient of right docked Headers when slicing images
* for IE using Sencha Cmd
*
* @param {string} [$ui-background-stretch-left=$panel-background-stretch-left]
* The direction to strech the background-gradient of left docked Headers when slicing images
* for IE using Sencha Cmd
*
* @param {boolean} [$ui-include-border-management-rules=$panel-include-border-management-rules]
* True to include neptune style border management rules.
*
* @param {color} [$ui-wrap-border-color=$panel-wrap-border-color]
* The color to apply to the border that wraps the body and docked items in a framed
* panel. The presence of the wrap border in a framed panel is controlled by the
* {@link #border} config. Only applicable when `$ui-include-border-management-rules` is
* `true`.
*
* @param {color} [$ui-wrap-border-width=$panel-wrap-border-width]
* The width to apply to the border that wraps the body and docked items in a framed
* panel. The presence of the wrap border in a framed panel is controlled by the
* {@link #border} config. Only applicable when `$ui-include-border-management-rules` is
* `true`.
*
* @param {boolean} [$ui-ignore-frame-padding=$panel-ignore-frame-padding]
* True to ignore the frame padding. By default, the frame mixin adds extra padding when
* border radius is larger than border width. This is intended to prevent the content
* from colliding with the rounded corners of the frame. Set this to true to prevent
* the panel frame from adding this extra padding.
*
* @member Ext.panel.Panel
*/
/* line 864, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-ghost {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
opacity: 0.65; }
/* line 256, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-default {
border-color: #99bce8;
padding: 0; }
/* line 262, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default {
font-size: 11px;
border: 1px solid #99bce8; }
/* line 282, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-horizontal {
padding: 5px; }
/* line 286, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-horizontal .x5-panel-header-default-tab-bar {
margin-top: -5px;
margin-bottom: -5px; }
/* line 294, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-horizontal.x5-header-noborder {
padding: 6px 6px 5px 6px; }
/* line 298, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-horizontal.x5-header-noborder .x5-panel-header-default-tab-bar {
margin-top: -6px;
margin-bottom: -5px; }
/* line 306, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-vertical {
padding: 5px 5px 5px 5px; }
/* line 310, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-vertical .x5-panel-header-default-tab-bar {
margin-right: -5px;
margin-left: -5px; }
/* line 318, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-vertical.x5-header-noborder {
padding: 6px 6px 6px 5px; }
/* line 322, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-vertical.x5-header-noborder .x5-panel-header-default-tab-bar {
margin-right: -6px;
margin-left: -5px; }
/* line 356, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default {
color: #04408c;
font-size: 11px;
font-weight: bold;
font-family: tahoma, arial, verdana, sans-serif;
line-height: 15px; }
/* line 369, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default > .x5-title-text-default {
text-transform: none;
padding: 0 2px 1px; }
/* line 412, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default > .x5-title-icon-wrap-default.x5-title-icon-top {
height: 18px;
padding-bottom: 2px; }
/* line 417, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default > .x5-title-icon-wrap-default.x5-title-icon-right {
width: 18px;
padding-left: 2px; }
/* line 429, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default > .x5-title-icon-wrap-default.x5-title-icon-bottom {
height: 18px;
padding-top: 2px; }
/* line 434, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default > .x5-title-icon-wrap-default.x5-title-icon-left {
width: 18px;
padding-right: 2px; }
/* line 446, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default > .x5-title-icon-wrap-default > .x5-title-icon-default {
width: 16px;
height: 16px;
background-position: center center; }
/* line 452, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default > .x5-title-icon-wrap-default > .x5-title-glyph {
color: #04408c;
font-size: 16px;
line-height: 16px;
opacity: 0.5; }
/* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-ie8 .x5-panel-header-title-default > .x5-title-icon-wrap-default > .x5-title-glyph {
color: #678ebf; }
/* line 479, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-body-default {
background: white;
border-color: #99bce8;
color: black;
font-size: 12px;
font-weight: normal;
font-family: tahoma, arial, verdana, sans-serif;
border-width: 1px;
border-style: solid; }
/* line 643, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-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: -ms-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 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-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: -ms-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 665, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-nlg .x5-panel-header-default-top {
background: url(images/panel-header/panel-header-default-top-bg.gif); }
/* line 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-nlg .x5-panel-header-default-bottom {
background: url(images/panel-header/panel-header-default-bottom-bg.gif) bottom left; }
/* line 675, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-nlg .x5-panel-header-default-left {
background: url(images/panel-header/panel-header-default-left-bg.gif) top left; }
/* line 680, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-nlg .x5-panel-header-default-right {
background: url(images/panel-header/panel-header-default-right-bg.gif) top right; }
/* line 705, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel .x5-panel-header-default-collapsed-border-top {
border-bottom-width: 1px !important; }
/* line 709, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel .x5-panel-header-default-collapsed-border-right {
border-left-width: 1px !important; }
/* line 713, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel .x5-panel-header-default-collapsed-border-bottom {
border-top-width: 1px !important; }
/* line 717, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel .x5-panel-header-default-collapsed-border-left {
border-right-width: 1px !important; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-top:before {
display: none;
content: "x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-bottom:before {
display: none;
content: "x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:top" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-left:before {
display: none;
content: "x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), stretch:right" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-right:before {
display: none;
content: "x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), stretch:left" !important; }
/*</if slicer>*/
/* */
/* line 734, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-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 738, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-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 742, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-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 746, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-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 753, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-horizontal .x5-tool-after-title {
margin: 0 0 0 2px; }
/* line 763, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-horizontal .x5-tool-before-title {
margin: 0 2px 0 0; }
/* line 775, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-vertical .x5-tool-after-title {
margin: 2px 0 0 0; }
/* line 785, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-vertical .x5-tool-before-title {
margin: 0 0 2px 0; }
/* line 815, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-default-resizable .x5-panel-handle {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0; }
/* line 256, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-default-framed {
border-color: #99bce8;
padding: 4px; }
/* line 262, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed {
font-size: 11px;
border: 1px solid #99bce8; }
/* line 282, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-horizontal {
padding: 5px; }
/* line 286, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-horizontal .x5-panel-header-default-framed-tab-bar {
margin-top: -5px;
margin-bottom: -5px; }
/* line 294, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-horizontal.x5-header-noborder {
padding: 6px 6px 5px 6px; }
/* line 298, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-horizontal.x5-header-noborder .x5-panel-header-default-framed-tab-bar {
margin-top: -6px;
margin-bottom: -5px; }
/* line 306, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-vertical {
padding: 5px 5px 5px 5px; }
/* line 310, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-vertical .x5-panel-header-default-framed-tab-bar {
margin-right: -5px;
margin-left: -5px; }
/* line 318, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-vertical.x5-header-noborder {
padding: 6px 6px 6px 5px; }
/* line 322, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-vertical.x5-header-noborder .x5-panel-header-default-framed-tab-bar {
margin-right: -6px;
margin-left: -5px; }
/* line 356, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default-framed {
color: #04408c;
font-size: 11px;
font-weight: bold;
font-family: tahoma, arial, verdana, sans-serif;
line-height: 15px; }
/* line 369, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default-framed > .x5-title-text-default-framed {
text-transform: none;
padding: 0 2px 1px; }
/* line 412, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default-framed > .x5-title-icon-wrap-default-framed.x5-title-icon-top {
height: 18px;
padding-bottom: 2px; }
/* line 417, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default-framed > .x5-title-icon-wrap-default-framed.x5-title-icon-right {
width: 18px;
padding-left: 2px; }
/* line 429, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default-framed > .x5-title-icon-wrap-default-framed.x5-title-icon-bottom {
height: 18px;
padding-top: 2px; }
/* line 434, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default-framed > .x5-title-icon-wrap-default-framed.x5-title-icon-left {
width: 18px;
padding-right: 2px; }
/* line 446, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default-framed > .x5-title-icon-wrap-default-framed > .x5-title-icon-default-framed {
width: 16px;
height: 16px;
background-position: center center; }
/* line 452, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-title-default-framed > .x5-title-icon-wrap-default-framed > .x5-title-glyph {
color: #04408c;
font-size: 16px;
line-height: 16px;
opacity: 0.5; }
/* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-ie8 .x5-panel-header-title-default-framed > .x5-title-icon-wrap-default-framed > .x5-title-glyph {
color: #678ebf; }
/* line 479, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-body-default-framed {
background: #dfe9f6;
border-color: #99bce8;
color: black;
font-size: 12px;
font-weight: normal;
font-family: tahoma, arial, verdana, sans-serif;
border-width: 0;
border-style: solid; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-mc {
background-color: #dfe9f6; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-panel-default-framed {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-frameInfo {
font-family: dh-4-4-4-4-1-1-1-1-4-4-4-4; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-tl {
background-position: 0 -8px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-tr {
background-position: right -12px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-bl {
background-position: 0 -16px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-br {
background-position: right -20px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-bc {
background-position: 0 -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-tr,
.x5-panel-default-framed-br,
.x5-panel-default-framed-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-tl,
.x5-panel-default-framed-bl,
.x5-panel-default-framed-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-tl,
.x5-panel-default-framed-bl,
.x5-panel-default-framed-tr,
.x5-panel-default-framed-br,
.x5-panel-default-framed-tc,
.x5-panel-default-framed-bc,
.x5-panel-default-framed-ml,
.x5-panel-default-framed-mr {
background-image: url(images/panel/panel-default-framed-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-ml,
.x5-panel-default-framed-mr {
background-image: url(images/panel/panel-default-framed-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-default-framed-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-default-framed:before {
display: none;
content: "x-slicer:frame:4px 4px 4px 4px, corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 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: -ms-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-panel-header-default-framed-top {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-frameInfo {
font-family: dh-4-4-0-4-1-1-0-1-5-5-5-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-tl {
background-position: 0 -8px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-tr {
background-position: right -12px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-bl {
background-position: 0 -16px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-br {
background-position: right -20px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-bc {
background-position: 0 -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-tr,
.x5-panel-header-default-framed-top-br,
.x5-panel-header-default-framed-top-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-tl,
.x5-panel-header-default-framed-top-bl,
.x5-panel-header-default-framed-top-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-bc {
height: 0; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-tl,
.x5-panel-header-default-framed-top-bl,
.x5-panel-header-default-framed-top-tr,
.x5-panel-header-default-framed-top-br,
.x5-panel-header-default-framed-top-tc,
.x5-panel-header-default-framed-top-bc,
.x5-panel-header-default-framed-top-ml,
.x5-panel-header-default-framed-top-mr {
background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-ml,
.x5-panel-header-default-framed-top-mr {
background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-top-mc {
padding: 2px 2px 5px 2px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-framed-top:before {
display: none;
content: "x-slicer:stretch:bottom, frame:4px 4px 0 4px, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.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)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 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: -ms-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-mc {
background-image: url(images/panel-header/panel-header-default-framed-right-fbg.gif);
background-position: right 0;
background-repeat: repeat-y;
background-color: #cbddf3; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-panel-header-default-framed-right {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-frameInfo {
font-family: dv-4-4-4-0-1-1-1-0-5-5-5-5; }
/* line 304, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-tl {
background-position: 0 0; }
/* line 308, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-tr {
background-position: 0 -4px; }
/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-bl {
background-position: 0 -8px; }
/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-br {
background-position: 0 -12px; }
/* line 320, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-ml {
background-position: -4px 0; }
/* line 324, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-mr {
background-position: right 0; }
/* line 328, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-tc {
background-position: right 0; }
/* line 332, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-bc {
background-position: right -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-tr,
.x5-panel-header-default-framed-right-br,
.x5-panel-header-default-framed-right-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-tl,
.x5-panel-header-default-framed-right-bl,
.x5-panel-header-default-framed-right-ml {
padding-left: 0; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-tl,
.x5-panel-header-default-framed-right-bl,
.x5-panel-header-default-framed-right-tr,
.x5-panel-header-default-framed-right-br,
.x5-panel-header-default-framed-right-tc,
.x5-panel-header-default-framed-right-bc,
.x5-panel-header-default-framed-right-ml,
.x5-panel-header-default-framed-right-mr {
background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); }
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-tc,
.x5-panel-header-default-framed-right-bc {
background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif);
background-repeat: repeat-x; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-right-mc {
padding: 2px 2px 2px 5px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-framed-right:before {
display: none;
content: "x-slicer:stretch:left, frame:4px 4px 4px 0, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.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)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 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: -ms-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-panel-header-default-framed-bottom {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-frameInfo {
font-family: dh-0-4-4-4-0-1-1-1-5-5-5-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-tl {
background-position: 0 -8px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-tr {
background-position: right -12px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-bl {
background-position: 0 -16px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-br {
background-position: right -20px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-ml {
background-position: 0 bottom; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-mr {
background-position: right bottom; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-bc {
background-position: 0 -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-tr,
.x5-panel-header-default-framed-bottom-br,
.x5-panel-header-default-framed-bottom-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-tl,
.x5-panel-header-default-framed-bottom-bl,
.x5-panel-header-default-framed-bottom-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-tc {
height: 0; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-tl,
.x5-panel-header-default-framed-bottom-bl,
.x5-panel-header-default-framed-bottom-tr,
.x5-panel-header-default-framed-bottom-br,
.x5-panel-header-default-framed-bottom-tc,
.x5-panel-header-default-framed-bottom-bc,
.x5-panel-header-default-framed-bottom-ml,
.x5-panel-header-default-framed-bottom-mr {
background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-ml,
.x5-panel-header-default-framed-bottom-mr {
background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-bottom-mc {
padding: 5px 2px 2px 2px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-framed-bottom:before {
display: none;
content: "x-slicer:stretch:top, frame:0 4px 4px 4px, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.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)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 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: -ms-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-mc {
background-image: url(images/panel-header/panel-header-default-framed-left-fbg.gif);
background-position: left 0;
background-repeat: repeat-y;
background-color: #cbddf3; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-panel-header-default-framed-left {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-frameInfo {
font-family: dv-4-0-4-4-1-0-1-1-5-5-5-5; }
/* line 304, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-tl {
background-position: 0 0; }
/* line 308, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-tr {
background-position: 0 -4px; }
/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-bl {
background-position: 0 -8px; }
/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-br {
background-position: 0 -12px; }
/* line 320, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-ml {
background-position: -4px 0; }
/* line 324, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-mr {
background-position: right 0; }
/* line 328, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-tc {
background-position: left 0; }
/* line 332, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-bc {
background-position: left -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-tr,
.x5-panel-header-default-framed-left-br,
.x5-panel-header-default-framed-left-mr {
padding-right: 0; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-tl,
.x5-panel-header-default-framed-left-bl,
.x5-panel-header-default-framed-left-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-tl,
.x5-panel-header-default-framed-left-bl,
.x5-panel-header-default-framed-left-tr,
.x5-panel-header-default-framed-left-br,
.x5-panel-header-default-framed-left-tc,
.x5-panel-header-default-framed-left-bc,
.x5-panel-header-default-framed-left-ml,
.x5-panel-header-default-framed-left-mr {
background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); }
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-tc,
.x5-panel-header-default-framed-left-bc {
background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif);
background-repeat: repeat-x; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-left-mc {
padding: 2px 5px 2px 2px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-framed-left:before {
display: none;
content: "x-slicer:stretch:right, frame:4px 0 4px 4px, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.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)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 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: -ms-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-panel-header-default-framed-collapsed-top {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-frameInfo {
font-family: dh-4-4-4-4-1-1-1-1-5-5-5-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-tl {
background-position: 0 -8px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-tr {
background-position: right -12px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-bl {
background-position: 0 -16px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-br {
background-position: right -20px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-bc {
background-position: 0 -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-tr,
.x5-panel-header-default-framed-collapsed-top-br,
.x5-panel-header-default-framed-collapsed-top-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-tl,
.x5-panel-header-default-framed-collapsed-top-bl,
.x5-panel-header-default-framed-collapsed-top-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-tl,
.x5-panel-header-default-framed-collapsed-top-bl,
.x5-panel-header-default-framed-collapsed-top-tr,
.x5-panel-header-default-framed-collapsed-top-br,
.x5-panel-header-default-framed-collapsed-top-tc,
.x5-panel-header-default-framed-collapsed-top-bc,
.x5-panel-header-default-framed-collapsed-top-ml,
.x5-panel-header-default-framed-collapsed-top-mr {
background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-ml,
.x5-panel-header-default-framed-collapsed-top-mr {
background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-top-mc {
padding: 2px 2px 2px 2px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-framed-collapsed-top:before {
display: none;
content: "x-slicer:stretch:bottom, frame:4px 4px 4px 4px, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.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)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 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: -ms-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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-repeat: repeat-y;
background-color: #cbddf3; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-panel-header-default-framed-collapsed-right {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-frameInfo {
font-family: dv-4-4-4-4-1-1-1-1-5-5-5-5; }
/* line 304, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-tl {
background-position: 0 0; }
/* line 308, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-tr {
background-position: 0 -4px; }
/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-bl {
background-position: 0 -8px; }
/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-br {
background-position: 0 -12px; }
/* line 320, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-ml {
background-position: -4px 0; }
/* line 324, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-mr {
background-position: right 0; }
/* line 328, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-tc {
background-position: right 0; }
/* line 332, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-bc {
background-position: right -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-tr,
.x5-panel-header-default-framed-collapsed-right-br,
.x5-panel-header-default-framed-collapsed-right-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-tl,
.x5-panel-header-default-framed-collapsed-right-bl,
.x5-panel-header-default-framed-collapsed-right-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-tl,
.x5-panel-header-default-framed-collapsed-right-bl,
.x5-panel-header-default-framed-collapsed-right-tr,
.x5-panel-header-default-framed-collapsed-right-br,
.x5-panel-header-default-framed-collapsed-right-tc,
.x5-panel-header-default-framed-collapsed-right-bc,
.x5-panel-header-default-framed-collapsed-right-ml,
.x5-panel-header-default-framed-collapsed-right-mr {
background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); }
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-tc,
.x5-panel-header-default-framed-collapsed-right-bc {
background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);
background-repeat: repeat-x; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-right-mc {
padding: 2px 2px 2px 2px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-framed-collapsed-right:before {
display: none;
content: "x-slicer:stretch:left, frame:4px 4px 4px 4px, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.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)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 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: -ms-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-panel-header-default-framed-collapsed-bottom {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-frameInfo {
font-family: dh-4-4-4-4-1-1-1-1-5-5-5-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-tl {
background-position: 0 -8px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-tr {
background-position: right -12px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-bl {
background-position: 0 -16px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-br {
background-position: right -20px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-ml {
background-position: 0 bottom; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-mr {
background-position: right bottom; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-bc {
background-position: 0 -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-tr,
.x5-panel-header-default-framed-collapsed-bottom-br,
.x5-panel-header-default-framed-collapsed-bottom-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-tl,
.x5-panel-header-default-framed-collapsed-bottom-bl,
.x5-panel-header-default-framed-collapsed-bottom-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-tl,
.x5-panel-header-default-framed-collapsed-bottom-bl,
.x5-panel-header-default-framed-collapsed-bottom-tr,
.x5-panel-header-default-framed-collapsed-bottom-br,
.x5-panel-header-default-framed-collapsed-bottom-tc,
.x5-panel-header-default-framed-collapsed-bottom-bc,
.x5-panel-header-default-framed-collapsed-bottom-ml,
.x5-panel-header-default-framed-collapsed-bottom-mr {
background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-ml,
.x5-panel-header-default-framed-collapsed-bottom-mr {
background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-bottom-mc {
padding: 2px 2px 2px 2px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-framed-collapsed-bottom:before {
display: none;
content: "x-slicer:stretch:top, frame:4px 4px 4px 4px, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.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)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 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: -ms-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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-repeat: repeat-y;
background-color: #cbddf3; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-panel-header-default-framed-collapsed-left {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-frameInfo {
font-family: dv-4-4-4-4-1-1-1-1-5-5-5-5; }
/* line 304, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-tl {
background-position: 0 0; }
/* line 308, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-tr {
background-position: 0 -4px; }
/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-bl {
background-position: 0 -8px; }
/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-br {
background-position: 0 -12px; }
/* line 320, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-ml {
background-position: -4px 0; }
/* line 324, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-mr {
background-position: right 0; }
/* line 328, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-tc {
background-position: left 0; }
/* line 332, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-bc {
background-position: left -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-tr,
.x5-panel-header-default-framed-collapsed-left-br,
.x5-panel-header-default-framed-collapsed-left-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-tl,
.x5-panel-header-default-framed-collapsed-left-bl,
.x5-panel-header-default-framed-collapsed-left-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-tl,
.x5-panel-header-default-framed-collapsed-left-bl,
.x5-panel-header-default-framed-collapsed-left-tr,
.x5-panel-header-default-framed-collapsed-left-br,
.x5-panel-header-default-framed-collapsed-left-tc,
.x5-panel-header-default-framed-collapsed-left-bc,
.x5-panel-header-default-framed-collapsed-left-ml,
.x5-panel-header-default-framed-collapsed-left-mr {
background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); }
/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-tc,
.x5-panel-header-default-framed-collapsed-left-bc {
background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);
background-repeat: repeat-x; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-panel-header-default-framed-collapsed-left-mc {
padding: 2px 2px 2px 2px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-panel-header-default-framed-collapsed-left:before {
display: none;
content: "x-slicer:stretch:right, frame:4px 4px 4px 4px, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.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)" !important; }
/*</if slicer>*/
/* */
/* line 605, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel .x5-panel-header-default-framed-top {
border-bottom-width: 1px !important; }
/* line 609, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel .x5-panel-header-default-framed-right {
border-left-width: 1px !important; }
/* line 613, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel .x5-panel-header-default-framed-bottom {
border-top-width: 1px !important; }
/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel .x5-panel-header-default-framed-left {
border-right-width: 1px !important; }
/* line 623, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-nbr .x5-panel-header-default-framed-collapsed-top {
border-bottom-width: 0 !important; }
/* line 627, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-nbr .x5-panel-header-default-framed-collapsed-right {
border-left-width: 0 !important; }
/* line 631, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-nbr .x5-panel-header-default-framed-collapsed-bottom {
border-top-width: 0 !important; }
/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-nbr .x5-panel-header-default-framed-collapsed-left {
border-right-width: 0 !important; }
/* line 734, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-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 738, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-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 742, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-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 746, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-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 753, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-horizontal .x5-tool-after-title {
margin: 0 0 0 2px; }
/* line 763, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-horizontal .x5-tool-before-title {
margin: 0 2px 0 0; }
/* line 775, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-vertical .x5-tool-after-title {
margin: 2px 0 0 0; }
/* line 785, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-header-default-framed-vertical .x5-tool-before-title {
margin: 0 0 2px 0; }
/* line 815, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */
.x5-panel-default-framed-resizable .x5-panel-handle {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0; }
/**
* Creates a visual theme for "labelable" form items. Provides visual styling for the
* Label and error message that can be shared between many types of form fields.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {color} [$ui-font-color=$form-label-font-color]
* The text color the label
*
* @param {string} [$ui-font-weight=$form-label-font-weight]
* The font-weight of the label
*
* @param {number} [$ui-font-size=$form-label-font-size]
* The font-size of the label
*
* @param {string} [$ui-font-family=$form-label-font-family]
* The font-family the label
*
* @param {number} [$ui-height=$form-field-height]
* The height of the label. This should be the same height as the height of fields that
* this label ui will be used with. This does not actually set the height of the label
* but is used to ensure that the label is centered within the given height.
*
* @param {number} [$ui-line-height=$form-label-line-height]
* The line-height of the label
*
* @param {number} [$ui-horizontal-spacing=$form-label-horizontal-spacing]
* Horizontal space between the label and the field body when the label is left-aligned.
*
* @param {number} [$ui-vertical-spacing=$form-label-vertical-spacing]
* Vertical space between the label and the field body when the label is top-aligned.
*
* @param {number} [$ui-error-icon-background-image=$form-error-icon-background-image]
* The background-image of the error icon
*
* @param {number} [$ui-error-icon-width=$form-error-icon-width]
* The width of the error icon
*
* @param {number} [$ui-error-icon-height=$form-error-icon-height]
* The height of the error icon
*
* @param {number/list} [$ui-error-icon-side-margin=$form-error-icon-side-margin]
* Margin for error icons when aligned to the side of the field
*
* @param {number} [$ui-error-under-icon-spacing=$form-error-under-icon-spacing]
* The space between the icon and the message for errors that display under the field
*
* @param {number/list} [$ui-error-under-padding=$form-error-under-padding]
* The padding on errors that display under the form field
*
* @param {color} [$ui-error-msg-color=$form-error-msg-color]
* The text color of form error messages
*
* @param {string} [$ui-error-msg-font-weight=$form-error-msg-font-weight]
* The font-weight of form error messages
*
* @param {number} [$ui-error-msg-font-size=$form-error-msg-font-size]
* The font-size of form error messages
*
* @param {string} [$ui-error-msg-font-family=$form-error-msg-font-family]
* The font-family of form error messages
*
* @param {number} [$ui-error-msg-line-height=$form-error-msg-line-height]
* The line-height of form error messages
*
* @param {number} [$ui-disabled-opacity=$form-field-disabled-opacity]
* Opacity of disabled form fields
*
* @member Ext.form.Labelable
*/
/* line 97, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-label-default {
color: black;
font: normal 12px/14px tahoma, arial, verdana, sans-serif;
min-height: 22px;
padding-top: 4px;
padding-right: 5px; }
/* line 107, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-ie8 .x5-form-item-label-default {
min-height: 18px; }
/* line 113, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-label-default.x5-form-item-label-top {
height: 1px; }
/* line 115, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-label-default.x5-form-item-label-top > .x5-form-item-label-inner {
padding-top: 4px;
padding-bottom: 5px; }
/* line 121, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-label-default.x5-form-item-label-top-side-error:after {
width: 18px; }
/* line 126, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-body-default {
min-height: 22px; }
/* line 130, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-invalid-icon-default {
width: 16px;
height: 16px;
margin: 0 1px 0 1px;
background: url(images/form/exclamation.gif) no-repeat; }
/* line 137, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-invalid-under-default {
padding: 2px 2px 2px 20px;
color: #c0272b;
font: normal 11px/16px tahoma, arial, verdana, sans-serif;
background: no-repeat 0 2px;
background-image: url(images/form/exclamation.gif); }
/* line 145, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-error-wrap-default.x5-form-error-wrap-side {
width: 18px; }
/* line 150, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-default.x5-item-disabled {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
opacity: 0.3; }
/* line 97, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-label-toolbar {
color: black;
font: normal 11px/13px tahoma, arial, verdana, sans-serif;
min-height: 20px;
padding-top: 4px;
padding-right: 5px; }
/* line 107, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-ie8 .x5-form-item-label-toolbar {
min-height: 16px; }
/* line 113, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-label-toolbar.x5-form-item-label-top {
height: 1px; }
/* line 115, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-label-toolbar.x5-form-item-label-top > .x5-form-item-label-inner {
padding-top: 4px;
padding-bottom: 5px; }
/* line 121, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-label-toolbar.x5-form-item-label-top-side-error:after {
width: 18px; }
/* line 126, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-body-toolbar {
min-height: 20px; }
/* line 130, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-invalid-icon-toolbar {
width: 16px;
height: 16px;
margin: 0 1px 0 1px;
background: url(images/form/exclamation.gif) no-repeat; }
/* line 137, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-invalid-under-toolbar {
padding: 2px 2px 2px 20px;
color: #cc3300;
font: normal 12px/16px tahoma, arial, verdana, sans-serif;
background: no-repeat 0 2px;
background-image: url(images/form/exclamation.gif); }
/* line 145, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-error-wrap-toolbar.x5-form-error-wrap-side {
width: 18px; }
/* line 150, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-form-item-toolbar.x5-item-disabled {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
opacity: 0.3; }
/* line 191, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */
.x5-autocontainer-form-item,
.x5-anchor-form-item,
.x5-vbox-form-item,
.x5-table-form-item {
margin-bottom: 5px; }
/**
* Creates a visual theme for display fields. Note this mixin only provides styling
* for the form field body, The label and error are styled by {@link #extjs-label-ui}.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$ui-field-height=$form-field-height]
* The height of the field body that the display text must fit within. This does not set
* the height of the field, only allows the text to be centered inside the field body.
* (The height of the field body is determined by {@link #extjs-label-ui}).
*
* @param {color} [$ui-color=$form-display-field-color]
* The text color of display fields
*
* @param {number} [$ui-font-size=$form-display-field-font-size]
* The font-size of the display field
*
* @param {string} [$ui-font-family=$form-display-field-font-family]
* The font-family of the display field
*
* @param {string} [$ui-font-weight=$form-display-field-font-weight]
* The font-weight of the display field
*
* @param {number} [$ui-line-height=$form-display-field-line-height]
* The line-height of the display field
*
* @member Ext.form.field.Display
*/
/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */
.x5-form-display-field-default {
min-height: 22px;
font: normal 12px/14px tahoma, arial, verdana, sans-serif;
color: black;
margin-top: 4px; }
/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */
.x5-form-display-field-toolbar {
min-height: 22px;
font: normal 11px/13px tahoma, arial, verdana, sans-serif;
color: black;
margin-top: 5px; }
/* line 5, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-view {
z-index: 1; }
/* line 9, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-body {
background: white;
border-width: 1px;
border-style: solid;
border-color: #99bce8; }
/* line 18, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-item-container {
min-height: 1px;
position: relative; }
/* line 23, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-empty {
padding: 10px;
color: gray;
background-color: white;
font: normal 11px tahoma, arial, verdana, sans-serif; }
/* line 31, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-item {
color: black;
font: normal 11px/13px tahoma, arial, verdana, sans-serif;
background-color: white; }
/* line 37, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-item-alt {
background-color: #fafafa; }
/* line 41, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-item-over {
color: black;
background-color: #efefef; }
/* line 48, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-item-focused {
outline: 0;
color: black; }
/* line 52, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-item-focused .x5-grid-cell-inner {
z-index: 1; }
/* line 60, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-item-focused .x5-grid-cell-inner:before {
content: "";
position: absolute;
z-index: -1;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
pointer-events: none;
border: 1px dotted #464646; }
/* line 82, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-item-selected {
color: black;
background-color: #dfe8f6; }
/* line 88, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-with-row-lines .x5-grid-item {
border-style: solid;
border-width: 1px 0 0;
border-color: #ededed; }
/* line 94, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-with-row-lines .x5-grid-item:first-child {
border-top-color: white; }
/* line 100, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-with-row-lines .x5-grid-item.x5-grid-item-over {
border-style: solid;
border-color: #dddddd; }
/* line 105, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-with-row-lines .x5-grid-item-over + .x5-grid-item {
border-top-style: solid;
border-top-color: #dddddd; }
/* line 110, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-with-row-lines .x5-grid-item.x5-grid-item-selected {
border-style: dotted;
border-color: #a3bae9; }
/* line 115, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-with-row-lines .x5-grid-item-selected + .x5-grid-item {
border-top-style: dotted;
border-top-color: #a3bae9; }
/* line 120, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-with-row-lines .x5-grid-item:last-child {
border-bottom-width: 1px; }
/* line 130, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-ie8 .x5-grid-with-row-lines .x5-grid-item {
border-width: 1px 0;
margin-top: -1px; }
/* line 135, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-ie8 .x5-grid-with-row-lines .x5-grid-item:first-child {
margin-top: 0; }
/* line 141, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-cell-inner {
position: relative;
text-overflow: ellipsis;
padding: 3px 6px 4px 6px; }
/* line 157, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-cell-special {
border-color: #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: -ms-linear-gradient(top, #f6f6f6, #e9e9e9);
background-image: linear-gradient(top, #f6f6f6, #e9e9e9);
/*<if slicer>*/
/*</if slicer>*/
/* */
/*<if slicer>*/
/*</if slicer>*/
/* */ }
/* line 170, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-item-selected .x5-grid-cell-special {
border-right-color: #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: -ms-linear-gradient(left, #dfe8f6, #cbdaf0);
background-image: linear-gradient(left, #dfe8f6, #cbdaf0); }
/* line 185, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-nlg .x5-grid-cell-special {
background-repeat: repeat-y;
background-image: url(images/grid/cell-special-bg.gif); }
/* line 190, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-nlg .x5-grid-item-selected .x5-grid-cell-special {
background-image: url(images/grid/cell-special-selected-bg.gif); }
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x5-grid-cell-special .x-cmd-slicer.x5-grid-cell-special:before {
display: none;
content: "x-slicer:bg:url(images/grid/cell-special-bg.gif)" !important; }
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x5-grid-cell-special .x-cmd-slicer.x5-grid-cell-special-selected:before {
display: none;
content: "x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)" !important; }
/* line 207, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-dirty-cell {
background: url(images/grid/dirty.gif) no-repeat 0 0; }
/* line 220, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-row .x5-grid-cell-selected {
color: black;
background-color: #b8cfee; }
/* line 226, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-with-col-lines .x5-grid-cell {
border-right: 1px solid #d0d0d0; }
/* line 238, ../../../ext-theme-neutral/sass/src/view/Table.scss */
.x5-grid-resize-marker {
width: 1px;
background-color: #0f0f0f; }
/**
* Creates a visual theme for checkboxes and radio buttons. Note this mixin only provides
* styling for the checkbox/radio button and its {@link #boxLabel}, The {@link #fieldLabel}
* and error icon/message are styled by {@link #extjs-label-ui}.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$ui-field-height=$form-field-height]
* The height of the field body that the checkbox must fit within. This does not set the
* height of the field, only allows the checkbox to be centered inside the field body.
* (The height of the field body is determined by {@link #extjs-label-ui}).
*
* @param {number} [$ui-checkbox-size=$form-checkbox-size]
* The size of the checkbox
*
* @param {string} [$ui-checkbox-background-image=$form-checkbox-background-image]
* The background-image of the checkbox
*
* @param {string} [$ui-radio-background-image=$form-radio-background-image]
* The background-image of the radio button
*
* @param {color} [$ui-label-color=$form-checkbox-label-color]
* The color of the checkbox's {@link #boxLabel}
*
* @param {string} [$ui-label-font-weight=$form-checkbox-label-font-weight]
* The font-weight of the checkbox's {@link #boxLabel}
*
* @param {string} [$ui-label-font-size=$form-checkbox-label-font-size]
* The font-size of the checkbox's {@link #boxLabel}
*
* @param {string} [$ui-label-font-family=$form-checkbox-label-font-family]
* The font-family of the checkbox's {@link #boxLabel}
*
* @param {string} [$ui-label-line-height=$form-checkbox-label-line-height]
* The line-height of the checkbox's {@link #boxLabel}
*
* @param {number} [$ui-label-spacing=$form-checkbox-label-spacing]
* The space between the boxLabel and the checkbox.
*
* @member Ext.form.field.Checkbox
*/
/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-wrap-default {
height: 22px; }
/* line 61, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-default {
margin-top: 5px; }
/* line 67, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-checkbox-default,
.x5-form-radio-default {
width: 13px;
height: 13px; }
/* line 72, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-radio-default {
background: url(images/form/radio.gif) no-repeat; }
/* line 75, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-checked .x5-form-radio-default {
background-position: 0 -13px; }
/* line 80, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-checkbox-default {
background: url(images/form/checkbox.gif) no-repeat; }
/* line 83, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-checked .x5-form-checkbox-default {
background-position: 0 -13px; }
/* line 88, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-field-default-form-checkbox-focus {
background-position: -13px 0; }
/* line 92, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-checked .x5-field-default-form-checkbox-focus {
background-position: -13px -13px; }
/* line 97, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-label-default {
margin-top: 4px;
font: normal tahoma, arial, verdana, sans-serif/14px tahoma, arial, verdana, sans-serif; }
/* line 101, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-label-default.x5-form-cb-label-before {
padding-right: 17px; }
/* line 112, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-label-default.x5-form-cb-label-after {
padding-left: 17px; }
/* line 126, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-checkbox-default-cell > .x5-grid-cell-inner {
padding-top: 0;
padding-bottom: 0; }
/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-wrap-toolbar {
height: 20px; }
/* line 61, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-toolbar {
margin-top: 4px; }
/* line 67, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-checkbox-toolbar,
.x5-form-radio-toolbar {
width: 13px;
height: 13px; }
/* line 72, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-radio-toolbar {
background: url(images/form/radio.gif) no-repeat; }
/* line 75, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-checked .x5-form-radio-toolbar {
background-position: 0 -13px; }
/* line 80, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-checkbox-toolbar {
background: url(images/form/checkbox.gif) no-repeat; }
/* line 83, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-checked .x5-form-checkbox-toolbar {
background-position: 0 -13px; }
/* line 88, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-field-toolbar-form-checkbox-focus {
background-position: -13px 0; }
/* line 92, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-checked .x5-field-toolbar-form-checkbox-focus {
background-position: -13px -13px; }
/* line 97, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-label-toolbar {
margin-top: 4px;
font: normal tahoma, arial, verdana, sans-serif/13px tahoma, arial, verdana, sans-serif; }
/* line 101, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-label-toolbar.x5-form-cb-label-before {
padding-right: 17px; }
/* line 112, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-label-toolbar.x5-form-cb-label-after {
padding-left: 17px; }
/* line 126, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-checkbox-toolbar-cell > .x5-grid-cell-inner {
padding-top: 0px;
padding-bottom: 0px; }
/* line 1, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-expander {
cursor: pointer; }
/* line 7, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-arrows .x5-tree-expander {
background-image: url(images/tree/arrows.gif); }
/* line 11, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-arrows .x5-tree-expander-over .x5-tree-expander {
background-position: -32px center; }
/* line 15, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-arrows .x5-grid-tree-node-expanded .x5-tree-expander {
background-position: -16px center; }
/* line 19, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-arrows .x5-grid-tree-node-expanded .x5-tree-expander-over .x5-tree-expander {
background-position: -48px center; }
/* line 44, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-lines .x5-tree-elbow {
background-image: url(images/tree/elbow.gif); }
/* line 48, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-lines .x5-tree-elbow-end {
background-image: url(images/tree/elbow-end.gif); }
/* line 52, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-lines .x5-tree-elbow-plus {
background-image: url(images/tree/elbow-plus.gif); }
/* line 56, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-lines .x5-tree-elbow-end-plus {
background-image: url(images/tree/elbow-end-plus.gif); }
/* line 60, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-lines .x5-grid-tree-node-expanded .x5-tree-elbow-plus {
background-image: url(images/tree/elbow-minus.gif); }
/* line 64, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-lines .x5-grid-tree-node-expanded .x5-tree-elbow-end-plus {
background-image: url(images/tree/elbow-end-minus.gif); }
/* line 68, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-lines .x5-tree-elbow-line {
background-image: url(images/tree/elbow-line.gif); }
/* line 104, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-no-lines .x5-tree-expander {
background-image: url(images/tree/elbow-plus-nl.gif); }
/* line 108, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-no-lines .x5-grid-tree-node-expanded .x5-tree-expander {
background-image: url(images/tree/elbow-minus-nl.gif); }
/* line 123, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-icon {
width: 16px;
height: 20px; }
/* line 128, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-elbow-img {
width: 16px;
height: 20px;
margin-right: 0; }
/* line 143, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-icon,
.x5-tree-elbow-img,
.x5-tree-checkbox {
margin-top: -3px;
margin-bottom: -4px; }
/* line 151, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-icon-leaf {
background-image: url(images/tree/leaf.gif); }
/* line 161, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-icon-parent {
background-image: url(images/tree/folder.gif); }
/* line 171, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-grid-tree-node-expanded .x5-tree-icon-parent {
background-image: url(images/tree/folder-open.gif); }
/* line 181, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-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/View.scss */
.x5-tree-checkbox-checked {
background-position: 0 -13px; }
/* line 200, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-grid-tree-loading .x5-tree-icon {
background-image: url(images/tree/loading.gif); }
/* line 210, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-tree-node-text {
padding-left: 3px; }
/* line 222, ../../../ext-theme-neutral/sass/src/tree/View.scss */
.x5-grid-cell-inner-treecolumn {
padding: 3px 6px 4px 0; }
/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */
.x5-col-move-top,
.x5-col-move-bottom {
width: 9px;
height: 9px; }
/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */
.x5-col-move-top {
background-image: url(images/grid/col-move-top.gif); }
/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */
.x5-col-move-bottom {
background-image: url(images/grid/col-move-bottom.gif); }
/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x5-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: -ms-linear-gradient(top, #f9f9f9, #e3e4e6);
background-image: linear-gradient(top, #f9f9f9, #e3e4e6); }
/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x5-accordion-item .x5-grid-header-ct {
border-width: 0 0 1px !important; }
/* line 21, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x5-grid-header-ct-hidden {
border-top: 0 !important;
border-bottom: 0 !important; }
/* line 31, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x5-grid-body {
border-top-color: #c5c5c5; }
/* line 35, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x5-hmenu-sort-asc {
background-image: url(images/grid/hmenu-asc.gif); }
/* line 39, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x5-hmenu-sort-desc {
background-image: url(images/grid/hmenu-desc.gif); }
/* line 43, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */
.x5-cols-icon {
background-image: url(images/grid/columns.gif); }
/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header {
border-right: 1px solid #c5c5c5;
color: black;
font: normal 11px/13px tahoma, arial, verdana, sans-serif;
outline: 0;
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: -ms-linear-gradient(top, #f9f9f9, #e3e4e6);
background-image: linear-gradient(top, #f9f9f9, #e3e4e6); }
/* line 27, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-group-sub-header {
background: transparent;
border-top: 1px solid #c5c5c5; }
/* line 32, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-group-sub-header .x5-column-header-inner {
padding: 3px 6px 5px 6px; }
/* line 37, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header-inner {
padding: 4px 6px 5px 6px; }
/* line 41, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header-inner-empty {
text-overflow: clip; }
/* line 49, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header.x5-column-header-focus {
color: black; }
/* line 50, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header.x5-column-header-focus .x5-column-header-inner:before {
content: "";
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
border: 1px dotted #333333;
pointer-events: none; }
/* line 63, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header.x5-column-header-focus.x5-group-sub-header .x5-column-header-inner:before {
bottom: 0px; }
/* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header-over,
.x5-column-header-sort-ASC,
.x5-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: -ms-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb);
background-image: linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); }
/* line 86, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-nlg .x5-grid-header-ct,
.x5-nlg .x5-column-header {
background-image: url(images/grid/column-header-bg.gif); }
/* line 97, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-nlg .x5-column-header-over,
.x5-nlg .x5-column-header-sort-ASC,
.x5-nlg .x5-column-header-sort-DESC {
background-image: url(images/grid/column-header-over-bg.gif); }
/* line 105, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header-open {
background-color: transparent; }
/* line 108, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header-open .x5-column-header-trigger {
background-color: transparent; }
/* line 113, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header-trigger {
width: 14px;
cursor: pointer;
background-color: transparent;
background-position: 0 center; }
/* line 131, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header-align-right .x5-column-header-text {
margin-right: 9px; }
/* line 145, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header-sort-ASC .x5-column-header-text,
.x5-column-header-sort-DESC .x5-column-header-text {
padding-right: 12px;
background-position: right center; }
/* line 162, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header-sort-ASC .x5-column-header-text {
background-image: url(images/grid/sort_asc.gif); }
/* line 165, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */
.x5-column-header-sort-DESC .x5-column-header-text {
background-image: url(images/grid/sort_desc.gif); }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-column-header:before {
display: none;
content: "x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-column-header-over:before {
display: none;
content: "x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom" !important; }
/*</if slicer>*/
/* */
/**
* Creates a visual theme for text fields. Note this mixin only provides styling
* for the form field body, The label and error are styled by {@link #extjs-label-ui}.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$ui-height=$form-text-field-height]
* The height of the text field
*
* @param {number} [$ui-font-size=$form-text-field-font-size]
* The font-size of the text field
*
* @param {string} [$ui-font-family=$form-text-field-font-family]
* The font-family of the text field
*
* @param {string} [$ui-font-weight=$form-text-field-font-weight]
* The font-weight of the text field
*
* @param {color} [$ui-color=$form-text-field-color]
* The color of the text field's input element
*
* @param {color} [$ui-background-color=$form-text-field-background-color]
* The background color of the text field's input element
*
* @param {number/list} [$ui-border-width=$form-text-field-border-width]
* The border width of the text field
*
* @param {string/list} [$ui-border-style=$form-text-field-border-style]
* The border style of the text field
*
* @param {color/list} [$ui-border-color=$form-text-field-border-color]
* The border color of text fields
*
* @param {color/list} [$ui-focus-border-color=$form-text-field-focus-border-color]
* The border color of the text field when focused
*
* @param {color} [$ui-invalid-border-color=$form-text-field-invalid-border-color]
* The border color of the text field when the field value is invalid.
*
* @param {number/list} [$ui-border-radius=$form-text-field-border-radius]
* The border radius of the text field
*
* @param {string} [$ui-background-image=$form-text-field-background-image]
* The background image of the text field's input element
*
* @param {number/list} [$ui-padding=$form-text-field-padding]
* The padding of the text field's input element
*
* @param {color} [$ui-empty-color=$form-text-field-empty-color]
* Text color for of the text field when empty
*
* @param {number} [$ui-body-width=$form-text-field-body-width]
* The default width of the text field's body element (the element that contains the input
* element and triggers) when the field is not sized explicitly using the {@link #width}
* config, or sized by it's containing layout.
*
* @param {color} [$ui-invalid-background-color=$form-field-invalid-background-color]
* Background color of the input element when the field value is invalid.
*
* @param {string} [$ui-invalid-background-image=$form-field-invalid-background-image]
* Background image of the input element when the field value is invalid.
*
* @param {string} [$ui-invalid-background-repeat=$form-field-invalid-background-repeat]
* Background repeat of the input element when the field value is invalid.
*
* @param {string/list} [$ui-invalid-background-position=$form-field-invalid-background-position]
* Background position of the input element when the field value is invalid.
*
* @param {number} [$ui-trigger-width=$form-trigger-width]
* The width of the trigger element
*
* @param {number/list} [$ui-trigger-border-width=$form-trigger-border-width]
* The width of the trigger's border
*
* @param {color/list} [$ui-trigger-border-color=$form-trigger-border-color]
* The color of the trigger's border
*
* @param {string/list} [$ui-trigger-border-style=$form-trigger-border-style]
* The style of the trigger's border
*
* @param {color} [$ui-trigger-border-color-over=$form-trigger-border-color-over]
* The color of the trigger's border when hovered
*
* @param {color} [$ui-trigger-border-color-focus=$form-trigger-border-color-focus]
* The color of the trigger's border when the field is focused
*
* @param {color} [$ui-trigger-border-color-pressed=$form-trigger-border-color-pressed]
* The color of the trigger's border when the field is focused and the trigger is hovered
*
* @param {string} [$ui-trigger-background-image=$form-trigger-background-image]
* The default background image for the trigger
*
* @param {color} [$ui-trigger-background-color=$form-trigger-background-color]
* The background color of the trigger element
*
* @param {number} [$ui-textarea-line-height=$form-textarea-line-height]
* The line-height of the textarea element when this mixin is used to style a
* {@link Ext.form.field.TextArea TextArea}
*
* @param {number} [$ui-textarea-body-height=$form-textarea-body-height]
* The default width of the TextArea's body element (the element that contains the textarea
* html element when the field is not sized explicitly using the {@link #width}config, or
* sized by it's containing layout.
*
* @param {color} [$ui-file-field-color=$form-file-field-color] The text color of the
* input element when this mixin is used to style a {@link Ext.form.field.File File Field}
*
* @param {boolean} [$ui-classic-border=$form-text-field-classic-border]
* `true` to use classic-theme styled border.
*
* @member Ext.form.field.Text
*/
/* line 193, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-field-body-default {
min-width: 150px;
max-width: 150px; }
/* line 232, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-wrap-default {
border-width: 1px;
border-style: solid;
border-color: #b5b8c8; }
/* line 239, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-wrap-default.x5-form-text-wrap-focus {
border-color: #7eadd9; }
/* line 243, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-wrap-default.x5-form-text-wrap-invalid {
border-color: #cc3300; }
/* line 250, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-default {
color: black;
padding: 1px 3px 2px 3px;
background-color: white;
background-image: url(images/form/text-bg.gif);
font: normal 12px/17px tahoma, arial, verdana, sans-serif;
min-height: 20px; }
/* line 264, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-ie8 .x5-form-text-default {
min-height: 17px; }
/* line 270, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-default.x5-form-textarea {
line-height: 14px;
min-height: 56px; }
/* line 275, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-ie8 .x5-form-text-default.x5-form-textarea {
min-height: 53px; }
/* line 282, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-default.x5-form-text-file {
color: gray; }
/* line 287, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-empty-field-default {
color: gray; }
/* line 291, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-invalid-field-default {
background-color: white;
background-image: url(images/grid/invalid_line.gif);
background-repeat: repeat-x;
background-position: bottom; }
/* line 302, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-default {
background: transparent url(images/form/trigger.gif) no-repeat;
background-position: 0 0;
width: 17px;
border-width: 0 0 1px;
border-color: #b5b8c8;
border-style: solid; }
/* line 319, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-default.x5-form-trigger-over {
background-position: -17px 0;
border-color: #7eadd9; }
/* line 325, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-default.x5-form-trigger-over.x5-form-trigger-focus {
background-position: -68px 0; }
/* line 330, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-default.x5-form-trigger-focus {
background-position: -51px 0;
border-color: #7eadd9; }
/* line 339, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger.x5-form-trigger-default.x5-form-trigger-click {
background-position: -34px 0; }
/* line 348, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-textfield-default-cell > .x5-grid-cell-inner {
padding-top: 0;
padding-bottom: 0; }
/* line 193, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-field-body-toolbar {
min-width: 150px;
max-width: 150px; }
/* line 232, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-wrap-toolbar {
border-width: 1px;
border-style: solid;
border-color: #b5b8c8; }
/* line 239, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-wrap-toolbar.x5-form-text-wrap-focus {
border-color: #7eadd9; }
/* line 243, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-wrap-toolbar.x5-form-text-wrap-invalid {
border-color: #cc3300; }
/* line 250, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-toolbar {
color: black;
padding: 1px 3px 2px 3px;
background-color: white;
background-image: url(images/form/text-bg.gif);
font: normal 12px/15px tahoma, arial, verdana, sans-serif;
min-height: 18px; }
/* line 264, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-ie8 .x5-form-text-toolbar {
min-height: 15px; }
/* line 270, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-toolbar.x5-form-textarea {
line-height: 14px;
min-height: 56px; }
/* line 275, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-ie8 .x5-form-text-toolbar.x5-form-textarea {
min-height: 53px; }
/* line 282, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-toolbar.x5-form-text-file {
color: gray; }
/* line 287, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-empty-field-toolbar {
color: gray; }
/* line 291, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-invalid-field-toolbar {
background-color: white;
background-image: url(images/grid/invalid_line.gif);
background-repeat: repeat-x;
background-position: bottom; }
/* line 302, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-toolbar {
background: white url(images/form/trigger.gif) no-repeat;
background-position: 0 0;
width: 17px;
border-width: 0 0 1px;
border-color: #b5b8c8;
border-style: solid; }
/* line 319, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-toolbar.x5-form-trigger-over {
background-position: -17px 0; }
/* line 325, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-toolbar.x5-form-trigger-over.x5-form-trigger-focus {
background-position: -68px 0; }
/* line 330, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-toolbar.x5-form-trigger-focus {
background-position: -51px 0;
border-color: null; }
/* line 339, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger.x5-form-trigger-toolbar.x5-form-trigger-click {
background-position: -34px 0; }
/* line 348, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-textfield-toolbar-cell > .x5-grid-cell-inner {
padding-top: 0px;
padding-bottom: 0px; }
/* line 406, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-clear-trigger {
background-image: url(images/form/clear-trigger.gif); }
/* line 415, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-search-trigger {
background-image: url(images/form/search-trigger.gif); }
/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */
body.x5-border-layout-ct,
div.x5-border-layout-ct {
background-color: #dfe8f6; }
/**
* Creates a visual theme for a Button. This mixin is not {@link #scale} aware, and therefore
* does not provide defaults for most parameters, so it is advisable to use one of the
* following mixins instead when creating a custom buttonUI:
*
* #extjs-button-small-ui - creates a button UI for a small button
* #extjs-button-medium-ui - creates a button UI for a medium button
* #extjs-button-large-ui - creates a button UI for a large button
* #extjs-button-toolbar-small-ui - creates a button UI for a small toolbar button
* #extjs-button-toolbar-medium-ui - creates a button UI for a medium toolbar button
* #extjs-button-toolbar-large-ui - creates a button UI for a large toolbar button
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$border-radius=0px]
* The border-radius of the button
*
* @param {number} [$border-width=0px]
* The border-width of the button
*
* @param {color} $border-color
* The border-color of the button
*
* @param {color} $border-color-over
* The border-color of the button when the cursor is over the button
*
* @param {color} $border-color-focus
* The border-color of the button when focused
*
* @param {color} $border-color-pressed
* The border-color of the button when pressed
*
* @param {color} $border-color-focus-over
* The border-color of the button when the button is focused and the cursor is over the
* button
*
* @param {color} $border-color-focus-pressed
* The border-color of the button when focused and pressed
*
* @param {color} $border-color-disabled
* The border-color of the button when disabled
*
* @param {number} $padding
* The amount of padding inside the border of the button on all sides
*
* @param {number} $text-padding
* The amount of horizontal space to add to the left and right of the button text
*
* @param {color} $background-color
* The background-color of the button
*
* @param {color} $background-color-over
* The background-color of the button when the cursor is over the button
*
* @param {color} $background-color-focus
* The background-color of the button when focused
*
* @param {color} $background-color-pressed
* The background-color of the button when pressed
*
* @param {color} $background-color-focus-over
* The background-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} $background-color-focus-pressed
* The background-color of the button when focused and pressed
*
* @param {color} $background-color-disabled
* The background-color of the button when disabled
*
* @param {string/list} $background-gradient
* The background-gradient for the button. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string} $background-gradient-over
* The background-gradient to use when the cursor is over the button. Can be either the
* name of a predefined gradient or a list of color stops. Used as the `$type` parameter
* for {@link Global_CSS#background-gradient}.
*
* @param {string} $background-gradient-focus
* The background-gradient to use when the the button is focused. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string} $background-gradient-pressed
* The background-gradient to use when the the button is pressed. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string} $background-gradient-focus-over
* The background-gradient to use when the the button is focused and the cursor is over
* the button. Can be either the name of a predefined gradient or a list of color stops.
* Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string} $background-gradient-focus-pressed
* The background-gradient to use when the the button is focused and pressed. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*
* @param {string} $background-gradient-disabled
* The background-gradient to use when the the button is disabled. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {color} $color
* The text color of the button
*
* @param {color} $color-over
* The text color of the button when the cursor is over the button
*
* @param {color} $color-focus
* The text color of the button when the button is focused
*
* @param {color} $color-pressed
* The text color of the button when the button is pressed
*
* @param {color} $color-focus-over
* The text color of the button when the button is focused and the cursor is over the button
*
* @param {color} $color-focus-pressed
* The text color of the button when the button is focused and pressed
*
* @param {color} $color-disabled
* The text color of the button when the button is disabled
*
* @param {number/list} $inner-border-width
* The inner border-width of the button
*
* @param {number/list} $inner-border-width-over
* The inner border-width of the button when the cursor is over the button
*
* @param {number/list} $inner-border-width-focus
* The inner border-width of the button when focused
*
* @param {number/list} $inner-border-width-pressed
* The inner border-width of the button when pressed
*
* @param {number/list} $inner-border-width-focus-over
* The inner border-width of the button when the button is focused and the cursor is over
* the button
*
* @param {number/list} $inner-border-width-focus-pressed
* The inner border-width of the button when focused and pressed
*
* @param {number/list} $inner-border-width-disabled
* The inner border-width of the button when disabled
*
* @param {color} $inner-border-color
* The inner border-color of the button
*
* @param {color} $inner-border-color-over
* The inner border-color of the button when the cursor is over the button
*
* @param {color} $inner-border-color-focus
* The inner border-color of the button when focused
*
* @param {color} $inner-border-color-pressed
* The inner border-color of the button when pressed
*
* @param {color} $inner-border-color-focus-over
* The inner border-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} $inner-border-color-focus-pressed
* The inner border-color of the button when focused and pressed
*
* @param {color} $inner-border-color-disabled
* The inner border-color of the button when disabled
*
* @param {number} $body-outline-width-focus
* The body outline width of the button when focused
*
* @param {string} $body-outline-style-focus
* The body outline-style of the button when focused
*
* @param {color} $body-outline-color-focus
* The body outline color of the button when focused
*
* @param {number} $font-size
* The font-size of the button
*
* @param {number} $font-size-over
* The font-size of the button when the cursor is over the button
*
* @param {number} $font-size-focus
* The font-size of the button when the button is focused
*
* @param {number} $font-size-pressed
* The font-size of the button when the button is pressed
*
* @param {number} $font-size-focus-over
* The font-size of the button when the button is focused and the cursor is over the
* button
*
* @param {number} $font-size-focus-pressed
* The font-size of the button when the button is focused and pressed
*
* @param {number} $font-size-disabled
* The font-size of the button when the button is disabled
*
* @param {string} $font-weight
* The font-weight of the button
*
* @param {string} $font-weight-over
* The font-weight of the button when the cursor is over the button
*
* @param {string} $font-weight-focus
* The font-weight of the button when the button is focused
*
* @param {string} $font-weight-pressed
* The font-weight of the button when the button is pressed
*
* @param {string} $font-weight-focus-over
* The font-weight of the button when the button is focused and the cursor is over the
* button
*
* @param {string} $font-weight-focus-pressed
* The font-weight of the button when the button is focused and pressed
*
* @param {string} $font-weight-disabled
* The font-weight of the button when the button is disabled
*
* @param {string} $font-family
* The font-family of the button
*
* @param {string} $font-family-over
* The font-family of the button when the cursor is over the button
*
* @param {string} $font-family-focus
* The font-family of the button when the button is focused
*
* @param {string} $font-family-pressed
* The font-family of the button when the button is pressed
*
* @param {string} $font-family-focus-over
* The font-family of the button when the button is focused and the cursor is over the
* button
*
* @param {string} $font-family-focus-pressed
* The font-family of the button when the button is focused and pressed
*
* @param {string} $font-family-disabled
* The font-family of the button when the button is disabled
*
* @param {number} $line-height
* The line-height of the button text
*
* @param {number} $icon-size
* The size of the button icon
*
* @param {number} $icon-spacing
* The space between the button's icon and text
*
* @param {color} $glyph-color
* The color of the button's {@link #glyph} icon
*
* @param {number} [$glyph-opacity=1]
* The opacity of the button's {@link #glyph} icon
*
* @param {number} $arrow-width
* The width of the button's {@link #cfg-menu} arrow
*
* @param {number} $arrow-height
* The height of the button's {@link #cfg-menu} arrow
*
* @param {number} $split-width
* The width of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {number} $split-height
* The height of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
* True to include the UI name in the file name of the {@link #cfg-menu}
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
* True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows]
* True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Used for hiding the split line when toolbar buttons are in their default
* state.
*
* @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
* True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
* is over the button. The over icon file name will have a "-o" suffix
*
* @param {number} [$opacity-disabled=1]
* The opacity of the button when it is disabled
*
* @param {number} [$inner-opacity-disabled=1]
* The opacity of the button's text and icon elements when when the button is disabled
*
* @member Ext.button.Button
*/
/**
* Creates a visual theme for a {@link #scale small} Button.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$border-radius=$button-small-border-radius]
* The border-radius of the button
*
* @param {number} [$border-width=$button-small-border-width]
* The border-width of the button
*
* @param {color} [$border-color=$button-default-border-color]
* The border-color of the button
*
* @param {color} [$border-color-over=$button-default-border-color-over]
* The border-color of the button when the cursor is over the button
*
* @param {color} [$border-color-focus=$button-default-border-color-focus]
* The border-color of the button when focused
*
* @param {color} [$border-color-pressed=$button-default-border-color-pressed]
* The border-color of the button when pressed
*
* @param {color} [$border-color-focus-over=$button-default-border-color-focus-over]
* The border-color of the button when the button is focused and the cursor is over the
* button
*
* @param {color} [$border-color-focus-pressed=$button-default-border-color-focus-pressed]
* The border-color of the button when focused and pressed
*
* @param {color} [$border-color-disabled=$button-default-border-color-disabled]
* The border-color of the button when disabled
*
* @param {number} [$padding=$button-small-padding]
* The amount of padding inside the border of the button on all sides
*
* @param {number} [$text-padding=$button-small-text-padding]
* The amount of horizontal space to add to the left and right of the button text
*
* @param {color} [$background-color=$button-default-background-color]
* The background-color of the button
*
* @param {color} [$background-color-over=$button-default-background-color-over]
* The background-color of the button when the cursor is over the button
*
* @param {color} [$background-color-focus=$button-default-background-color-focus]
* The background-color of the button when focused
*
* @param {color} [$background-color-pressed=$button-default-background-color-pressed]
* The background-color of the button when pressed
*
* @param {color} [$background-color-focus-over=$button-default-background-color-focus-over]
* The background-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$background-color-focus-pressed=$button-default-background-color-focus-pressed]
* The background-color of the button when focused and pressed
*
* @param {color} [$background-color-disabled=$button-default-background-color-disabled]
* The background-color of the button when disabled
*
* @param {string/list} [$background-gradient=$button-default-background-gradient]
* The background-gradient for the button. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-over=$button-default-background-gradient-over]
* The background-gradient to use when the cursor is over the button. Can be either the
* name of a predefined gradient or a list of color stops. Used as the `$type` parameter
* for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-focus=$button-default-background-gradient-focus]
* The background-gradient to use when the the button is focused. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-pressed=$button-default-background-gradient-pressed]
* The background-gradient to use when the the button is pressed. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-over=$button-default-background-gradient-focus-over]
* The background-gradient to use when the the button is focused and the cursor is over
* the button. Can be either the name of a predefined gradient or a list of color stops.
* Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-pressed=$button-default-background-gradient-focus-pressed]
* The background-gradient to use when the the button is focused and pressed. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-disabled=$button-default-background-gradient-disabled]
* The background-gradient to use when the the button is disabled. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {color} [$color=$button-default-color]
* The text color of the button
*
* @param {color} [$color-over=$button-default-color-over]
* The text color of the button when the cursor is over the button
*
* @param {color} [$color-focus=$button-default-color-focus]
* The text color of the button when the button is focused
*
* @param {color} [$color-pressed=$button-default-color-pressed]
* The text color of the button when the button is pressed
*
* @param {color} [$color-focus-over=$button-default-color-focus-over]
* The text color of the button when the button is focused and the cursor is over the button
*
* @param {color} [$color-focus-pressed=$button-default-color-focus-pressed]
* The text color of the button when the button is focused and pressed
*
* @param {color} [$color-disabled=$button-default-color-disabled]
* The text color of the button when the button is disabled
*
* @param {number/list} [$inner-border-width=$button-default-inner-border-width]
* The inner border-width of the button
*
* @param {number/list} [$inner-border-width-over=$button-default-inner-border-width-over]
* The inner border-width of the button when the cursor is over the button
*
* @param {number/list} [$inner-border-width-focus=$button-default-inner-border-width-focus]
* The inner border-width of the button when focused
*
* @param {number/list} [$inner-border-width-pressed=$button-default-inner-border-width-pressed]
* The inner border-width of the button when pressed
*
* @param {number/list} [$inner-border-width-focus-over=$button-default-inner-border-width-focus-over]
* The inner border-width of the button when the button is focused and the cursor is over
* the button
*
* @param {number/list} [$inner-border-width-focus-pressed=$button-default-inner-border-width-focus-pressed]
* The inner border-width of the button when focused and pressed
*
* @param {number/list} [$inner-border-width-disabled=$button-default-inner-border-width-disabled]
* The inner border-width of the button when disabled
*
* @param {color} [$inner-border-color=$button-default-inner-border-color]
* The inner border-color of the button
*
* @param {color} [$inner-border-color-over=$button-default-inner-border-color-over]
* The inner border-color of the button when the cursor is over the button
*
* @param {color} [$inner-border-color-focus=$button-default-inner-border-color-focus]
* The inner border-color of the button when focused
*
* @param {color} [$inner-border-color-pressed=$button-default-inner-border-color-pressed]
* The inner border-color of the button when pressed
*
* @param {color} [$inner-border-color-focus-over=$button-default-inner-border-color-focus-over]
* The inner border-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$inner-border-color-focus-pressed=$button-default-inner-border-color-focus-pressed]
* The inner border-color of the button when focused and pressed
*
* @param {color} [$inner-border-color-disabled=$button-default-inner-border-color-disabled]
* The inner border-color of the button when disabled
*
* @param {number} [$body-outline-width-focus=$button-default-body-outline-width-focus]
* The body outline width of the button when focused
*
* @param {number} [$body-outline-style-focus=$button-default-body-outline-style-focus]
* The body outline-style of the button when focused
*
* @param {number} [$body-outline-color-focus=$button-default-body-outline-color-focus]
* The body outline color of the button when focused
*
* @param {number} [$font-size=$button-small-font-size]
* The font-size of the button
*
* @param {number} [$font-size-over=$button-small-font-size-over]
* The font-size of the button when the cursor is over the button
*
* @param {number} [$font-size-focus=$button-small-font-size-focus]
* The font-size of the button when the button is focused
*
* @param {number} [$font-size-pressed=$button-small-font-size-pressed]
* The font-size of the button when the button is pressed
*
* @param {number} [$font-size-focus-over=$button-small-font-size-focus-over]
* The font-size of the button when the button is focused and the cursor is over the
* button
*
* @param {number} [$font-size-focus-pressed=$button-small-font-size-focus-pressed]
* The font-size of the button when the button is focused and pressed
*
* @param {number} [$font-size-disabled=$button-small-font-size-disabled]
* The font-size of the button when the button is disabled
*
* @param {string} [$font-weight=$button-small-font-weight]
* The font-weight of the button
*
* @param {string} [$font-weight-over=$button-small-font-weight-over]
* The font-weight of the button when the cursor is over the button
*
* @param {string} [$font-weight-focus=$button-small-font-weight-focus]
* The font-weight of the button when the button is focused
*
* @param {string} [$font-weight-pressed=$button-small-font-weight-pressed]
* The font-weight of the button when the button is pressed
*
* @param {string} [$font-weight-focus-over=$button-small-font-weight-focus-over]
* The font-weight of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-weight-focus-pressed=$button-small-font-weight-focus-pressed]
* The font-weight of the button when the button is focused and pressed
*
* @param {string} [$font-weight-disabled=$button-small-font-weight-disabled]
* The font-weight of the button when the button is disabled
*
* @param {string} [$font-family=$button-small-font-family]
* The font-family of the button
*
* @param {string} [$font-family-over=$button-small-font-family-over]
* The font-family of the button when the cursor is over the button
*
* @param {string} [$font-family-focus=$button-small-font-family-focus]
* The font-family of the button when the button is focused
*
* @param {string} [$font-family-pressed=$button-small-font-family-pressed]
* The font-family of the button when the button is pressed
*
* @param {string} [$font-family-focus-over=$button-small-font-family-focus-over]
* The font-family of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-family-focus-pressed=$button-small-font-family-focus-pressed]
* The font-family of the button when the button is focused and pressed
*
* @param {string} [$font-family-disabled=$button-small-font-family-disabled]
* The font-family of the button when the button is disabled
*
* @param {number} [$line-height=$button-small-line-height]
* The line-height of the button text
*
* @param {number} [$icon-size=$button-small-icon-size]
* The size of the button icon
*
* @param {number} [$icon-spacing=$button-small-icon-spacing]
* The space between the button's icon and text
*
* @param {color} [$glyph-color=$button-default-glyph-color]
* The color of the button's {@link #glyph} icon
*
* @param {number} [$glyph-opacity=$button-default-glyph-opacity]
* The opacity of the button's {@link #glyph} icon
*
* @param {number} [$arrow-width=$button-small-arrow-width]
* The width of the button's {@link #cfg-menu} arrow
*
* @param {number} [$arrow-height=$button-small-arrow-height]
* The height of the button's {@link #cfg-menu} arrow
*
* @param {number} [$split-width=$button-small-split-width]
* The width of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {number} [$split-height=$button-small-split-height]
* The height of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
* True to include the UI name in the file name of the {@link #cfg-menu}
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
* True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows]
* True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Used for hiding the split line when toolbar buttons are in their default
* state.
*
* @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
* True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
* is over the button. The over icon file name will have a "-o" suffix
*
* @param {number} [$opacity-disabled=$button-opacity-disabled]
* The opacity of the button when it is disabled
*
* @param {number} [$inner-opacity-disabled=$button-inner-opacity-disabled]
* The opacity of the button's text and icon elements when when the button is disabled
*
* @member Ext.button.Button
*/
/**
* Creates a visual theme for a {@link #scale small} toolbar Button.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$border-radius=$button-small-border-radius]
* The border-radius of the button
*
* @param {number} [$border-width=$button-small-border-width]
* The border-width of the button
*
* @param {color} [$border-color=$button-toolbar-border-color]
* The border-color of the button
*
* @param {color} [$border-color-over=$button-toolbar-border-color-over]
* The border-color of the button when the cursor is over the button
*
* @param {color} [$border-color-focus=$button-toolbar-border-color-focus]
* The border-color of the button when focused
*
* @param {color} [$border-color-pressed=$button-toolbar-border-color-pressed]
* The border-color of the button when pressed
*
* @param {color} [$border-color-focus-over=$button-toolbar-border-color-focus-over]
* The border-color of the button when the button is focused and the cursor is over the
* button
*
* @param {color} [$border-color-focus-pressed=$button-toolbar-border-color-focus-pressed]
* The border-color of the button when focused and pressed
*
* @param {color} [$border-color-disabled=$button-toolbar-border-color-disabled]
* The border-color of the button when disabled
*
* @param {number} [$padding=$button-small-padding]
* The amount of padding inside the border of the button on all sides
*
* @param {number} [$text-padding=$button-small-text-padding]
* The amount of horizontal space to add to the left and right of the button text
*
* @param {color} [$background-color=$button-toolbar-background-color]
* The background-color of the button
*
* @param {color} [$background-color-over=$button-toolbar-background-color-over]
* The background-color of the button when the cursor is over the button
*
* @param {color} [$background-color-focus=$button-toolbar-background-color-focus]
* The background-color of the button when focused
*
* @param {color} [$background-color-pressed=$button-toolbar-background-color-pressed]
* The background-color of the button when pressed
*
* @param {color} [$background-color-focus-over=$button-toolbar-background-color-focus-over]
* The background-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$background-color-focus-pressed=$button-toolbar-background-color-focus-pressed]
* The background-color of the button when focused and pressed
*
* @param {color} [$background-color-disabled=$button-toolbar-background-color-disabled]
* The background-color of the button when disabled
*
* @param {string/list} [$background-gradient=$button-toolbar-background-gradient]
* The background-gradient for the button. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-over=$button-toolbar-background-gradient-over]
* The background-gradient to use when the cursor is over the button. Can be either the
* name of a predefined gradient or a list of color stops. Used as the `$type` parameter
* for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-focus=$button-toolbar-background-gradient-focus]
* The background-gradient to use when the the button is focused. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-pressed=$button-toolbar-background-gradient-pressed]
* The background-gradient to use when the the button is pressed. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-over=$button-toolbar-background-gradient-focus-over]
* The background-gradient to use when the the button is focused and the cursor is over
* the button. Can be either the name of a predefined gradient or a list of color stops.
* Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-pressed=$button-toolbar-background-gradient-focus-pressed]
* The background-gradient to use when the the button is focused and pressed. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-disabled=$button-toolbar-background-gradient-disabled]
* The background-gradient to use when the the button is disabled. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {color} [$color=$button-toolbar-color]
* The text color of the button
*
* @param {color} [$color-over=$button-toolbar-color-over]
* The text color of the button when the cursor is over the button
*
* @param {color} [$color-focus=$button-toolbar-color-focus]
* The text color of the button when the button is focused
*
* @param {color} [$color-pressed=$button-toolbar-color-pressed]
* The text color of the button when the button is pressed
*
* @param {color} [$color-focus-over=$button-toolbar-color-focus-over]
* The text color of the button when the button is focused and the cursor is over the button
*
* @param {color} [$color-focus-pressed=$button-toolbar-color-focus-pressed]
* The text color of the button when the button is focused and pressed
*
* @param {color} [$color-disabled=$button-toolbar-color-disabled]
* The text color of the button when the button is disabled
*
* @param {number/list} [$inner-border-width=$button-toolbar-inner-border-width]
* The inner border-width of the button
*
* @param {number/list} [$inner-border-width-over=$button-toolbar-inner-border-width-over]
* The inner border-width of the button when the cursor is over the button
*
* @param {number/list} [$inner-border-width-focus=$button-toolbar-inner-border-width-focus]
* The inner border-width of the button when focused
*
* @param {number/list} [$inner-border-width-pressed=$button-toolbar-inner-border-width-pressed]
* The inner border-width of the button when pressed
*
* @param {number/list} [$inner-border-width-focus-over=$button-toolbar-inner-border-width-focus-over]
* The inner border-width of the button when the button is focused and the cursor is over
* the button
*
* @param {number/list} [$inner-border-width-focus-pressed=$button-toolbar-inner-border-width-focus-pressed]
* The inner border-width of the button when focused and pressed
*
* @param {number/list} [$inner-border-width-disabled=$button-toolbar-inner-border-width-disabled]
* The inner border-width of the button when disabled
*
* @param {color} [$inner-border-color=$button-toolbar-inner-border-color]
* The inner border-color of the button
*
* @param {color} [$inner-border-color-over=$button-toolbar-inner-border-color-over]
* The inner border-color of the button when the cursor is over the button
*
* @param {color} [$inner-border-color-focus=$button-toolbar-inner-border-color-focus]
* The inner border-color of the button when focused
*
* @param {color} [$inner-border-color-pressed=$button-toolbar-inner-border-color-pressed]
* The inner border-color of the button when pressed
*
* @param {color} [$inner-border-color-focus-over=$button-toolbar-inner-border-color-focus-over]
* The inner border-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$inner-border-color-focus-pressed=$button-toolbar-inner-border-color-focus-pressed]
* The inner border-color of the button when focused and pressed
*
* @param {color} [$inner-border-color-disabled=$button-toolbar-inner-border-color-disabled]
* The inner border-color of the button when disabled
*
* @param {number} [$body-outline-width-focus=$button-toolbar-body-outline-width-focus]
* The body outline width of the button when focused
*
* @param {number} [$body-outline-style-focus=$button-toolbar-body-outline-style-focus]
* The body outline-style of the button when focused
*
* @param {number} [$body-outline-color-focus=$button-toolbar-body-outline-color-focus]
* The body outline color of the button when focused
*
* @param {number} [$font-size=$button-small-font-size]
* The font-size of the button
*
* @param {number} [$font-size-over=$button-small-font-size-over]
* The font-size of the button when the cursor is over the button
*
* @param {number} [$font-size-focus=$button-small-font-size-focus]
* The font-size of the button when the button is focused
*
* @param {number} [$font-size-pressed=$button-small-font-size-pressed]
* The font-size of the button when the button is pressed
*
* @param {number} [$font-size-focus-over=$button-small-font-size-focus-over]
* The font-size of the button when the button is focused and the cursor is over the
* button
*
* @param {number} [$font-size-focus-pressed=$button-small-font-size-focus-pressed]
* The font-size of the button when the button is focused and pressed
*
* @param {number} [$font-size-disabled=$button-small-font-size-disabled]
* The font-size of the button when the button is disabled
*
* @param {string} [$font-weight=$button-small-font-weight]
* The font-weight of the button
*
* @param {string} [$font-weight-over=$button-small-font-weight-over]
* The font-weight of the button when the cursor is over the button
*
* @param {string} [$font-weight-focus=$button-small-font-weight-focus]
* The font-weight of the button when the button is focused
*
* @param {string} [$font-weight-pressed=$button-small-font-weight-pressed]
* The font-weight of the button when the button is pressed
*
* @param {string} [$font-weight-focus-over=$button-small-font-weight-focus-over]
* The font-weight of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-weight-focus-pressed=$button-small-font-weight-focus-pressed]
* The font-weight of the button when the button is focused and pressed
*
* @param {string} [$font-weight-disabled=$button-small-font-weight-disabled]
* The font-weight of the button when the button is disabled
*
* @param {string} [$font-family=$button-small-font-family]
* The font-family of the button
*
* @param {string} [$font-family-over=$button-small-font-family-over]
* The font-family of the button when the cursor is over the button
*
* @param {string} [$font-family-focus=$button-small-font-family-focus]
* The font-family of the button when the button is focused
*
* @param {string} [$font-family-pressed=$button-small-font-family-pressed]
* The font-family of the button when the button is pressed
*
* @param {string} [$font-family-focus-over=$button-small-font-family-focus-over]
* The font-family of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-family-focus-pressed=$button-small-font-family-focus-pressed]
* The font-family of the button when the button is focused and pressed
*
* @param {string} [$font-family-disabled=$button-small-font-family-disabled]
* The font-family of the button when the button is disabled
*
* @param {number} [$line-height=$button-small-line-height]
* The line-height of the button text
*
* @param {number} [$icon-size=$button-small-icon-size]
* The size of the button icon
*
* @param {number} [$icon-spacing=$button-small-icon-spacing]
* The space between the button's icon and text
*
* @param {color} [$glyph-color=$button-toolbar-glyph-color]
* The color of the button's {@link #glyph} icon
*
* @param {number} [$glyph-opacity=$button-toolbar-glyph-opacity]
* The opacity of the button's {@link #glyph} icon
*
* @param {number} [$arrow-width=$button-small-arrow-width]
* The width of the button's {@link #cfg-menu} arrow
*
* @param {number} [$arrow-height=$button-small-arrow-height]
* The height of the button's {@link #cfg-menu} arrow
*
* @param {number} [$split-width=$button-small-split-width]
* The width of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {number} [$split-height=$button-small-split-height]
* The height of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
* True to include the UI name in the file name of the {@link #cfg-menu}
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
* True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-split-noline-arrows=$button-toolbar-include-split-noline-arrows]
* True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Used for hiding the split line when toolbar buttons are in their default
* state.
*
* @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
* True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
* is over the button. The over icon file name will have a "-o" suffix
*
* @param {number} [$opacity-disabled=$button-toolbar-opacity-disabled]
* The opacity of the button when it is disabled
*
* @param {number} [$inner-opacity-disabled=$button-toolbar-inner-opacity-disabled]
* The opacity of the button's text and icon elements when when the button is disabled
*
* @member Ext.button.Button
*/
/**
* Creates a visual theme for a {@link #scale medium} Button.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$border-radius=$button-medium-border-radius]
* The border-radius of the button
*
* @param {number} [$border-width=$button-medium-border-width]
* The border-width of the button
*
* @param {color} [$border-color=$button-default-border-color]
* The border-color of the button
*
* @param {color} [$border-color-over=$button-default-border-color-over]
* The border-color of the button when the cursor is over the button
*
* @param {color} [$border-color-focus=$button-default-border-color-focus]
* The border-color of the button when focused
*
* @param {color} [$border-color-pressed=$button-default-border-color-pressed]
* The border-color of the button when pressed
*
* @param {color} [$border-color-focus-over=$button-default-border-color-focus-over]
* The border-color of the button when the button is focused and the cursor is over the
* button
*
* @param {color} [$border-color-focus-pressed=$button-default-border-color-focus-pressed]
* The border-color of the button when focused and pressed
*
* @param {color} [$border-color-disabled=$button-default-border-color-disabled]
* The border-color of the button when disabled
*
* @param {number} [$padding=$button-medium-padding]
* The amount of padding inside the border of the button on all sides
*
* @param {number} [$text-padding=$button-medium-text-padding]
* The amount of horizontal space to add to the left and right of the button text
*
* @param {color} [$background-color=$button-default-background-color]
* The background-color of the button
*
* @param {color} [$background-color-over=$button-default-background-color-over]
* The background-color of the button when the cursor is over the button
*
* @param {color} [$background-color-focus=$button-default-background-color-focus]
* The background-color of the button when focused
*
* @param {color} [$background-color-pressed=$button-default-background-color-pressed]
* The background-color of the button when pressed
*
* @param {color} [$background-color-focus-over=$button-default-background-color-focus-over]
* The background-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$background-color-focus-pressed=$button-default-background-color-focus-pressed]
* The background-color of the button when focused and pressed
*
* @param {color} [$background-color-disabled=$button-default-background-color-disabled]
* The background-color of the button when disabled
*
* @param {string/list} [$background-gradient=$button-default-background-gradient]
* The background-gradient for the button. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-over=$button-default-background-gradient-over]
* The background-gradient to use when the cursor is over the button. Can be either the
* name of a predefined gradient or a list of color stops. Used as the `$type` parameter
* for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-focus=$button-default-background-gradient-focus]
* The background-gradient to use when the the button is focused. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-pressed=$button-default-background-gradient-pressed]
* The background-gradient to use when the the button is pressed. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-over=$button-default-background-gradient-focus-over]
* The background-gradient to use when the the button is focused and the cursor is over
* the button. Can be either the name of a predefined gradient or a list of color stops.
* Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-pressed=$button-default-background-gradient-focus-pressed]
* The background-gradient to use when the the button is focused and pressed. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-disabled=$button-default-background-gradient-disabled]
* The background-gradient to use when the the button is disabled. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {color} [$color=$button-default-color]
* The text color of the button
*
* @param {color} [$color-over=$button-default-color-over]
* The text color of the button when the cursor is over the button
*
* @param {color} [$color-focus=$button-default-color-focus]
* The text color of the button when the button is focused
*
* @param {color} [$color-pressed=$button-default-color-pressed]
* The text color of the button when the button is pressed
*
* @param {color} [$color-focus-over=$button-default-color-focus-over]
* The text color of the button when the button is focused and the cursor is over the button
*
* @param {color} [$color-focus-pressed=$button-default-color-focus-pressed]
* The text color of the button when the button is focused and pressed
*
* @param {color} [$color-disabled=$button-default-color-disabled]
* The text color of the button when the button is disabled
*
* @param {number/list} [$inner-border-width=$button-default-inner-border-width]
* The inner border-width of the button
*
* @param {number/list} [$inner-border-width-over=$button-default-inner-border-width-over]
* The inner border-width of the button when the cursor is over the button
*
* @param {number/list} [$inner-border-width-focus=$button-default-inner-border-width-focus]
* The inner border-width of the button when focused
*
* @param {number/list} [$inner-border-width-pressed=$button-default-inner-border-width-pressed]
* The inner border-width of the button when pressed
*
* @param {number/list} [$inner-border-width-focus-over=$button-default-inner-border-width-focus-over]
* The inner border-width of the button when the button is focused and the cursor is over
* the button
*
* @param {number/list} [$inner-border-width-focus-pressed=$button-default-inner-border-width-focus-pressed]
* The inner border-width of the button when focused and pressed
*
* @param {number/list} [$inner-border-width-disabled=$button-default-inner-border-width-disabled]
* The inner border-width of the button when disabled
*
* @param {color} [$inner-border-color=$button-default-inner-border-color]
* The inner border-color of the button
*
* @param {color} [$inner-border-color-over=$button-default-inner-border-color-over]
* The inner border-color of the button when the cursor is over the button
*
* @param {color} [$inner-border-color-focus=$button-default-inner-border-color-focus]
* The inner border-color of the button when focused
*
* @param {color} [$inner-border-color-pressed=$button-default-inner-border-color-pressed]
* The inner border-color of the button when pressed
*
* @param {color} [$inner-border-color-focus-over=$button-default-inner-border-color-focus-over]
* The inner border-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$inner-border-color-focus-pressed=$button-default-inner-border-color-focus-pressed]
* The inner border-color of the button when focused and pressed
*
* @param {color} [$inner-border-color-disabled=$button-default-inner-border-color-disabled]
* The inner border-color of the button when disabled
*
* @param {number} [$body-outline-width-focus=$button-default-body-outline-width-focus]
* The body outline width of the button when focused
*
* @param {number} [$body-outline-style-focus=$button-default-body-outline-style-focus]
* The body outline-style of the button when focused
*
* @param {number} [$body-outline-color-focus=$button-default-body-outline-color-focus]
* The body outline color of the button when focused
*
* @param {number} [$font-size=$button-medium-font-size]
* The font-size of the button
*
* @param {number} [$font-size-over=$button-medium-font-size-over]
* The font-size of the button when the cursor is over the button
*
* @param {number} [$font-size-focus=$button-medium-font-size-focus]
* The font-size of the button when the button is focused
*
* @param {number} [$font-size-pressed=$button-medium-font-size-pressed]
* The font-size of the button when the button is pressed
*
* @param {number} [$font-size-focus-over=$button-medium-font-size-focus-over]
* The font-size of the button when the button is focused and the cursor is over the
* button
*
* @param {number} [$font-size-focus-pressed=$button-medium-font-size-focus-pressed]
* The font-size of the button when the button is focused and pressed
*
* @param {number} [$font-size-disabled=$button-medium-font-size-disabled]
* The font-size of the button when the button is disabled
*
* @param {string} [$font-weight=$button-medium-font-weight]
* The font-weight of the button
*
* @param {string} [$font-weight-over=$button-medium-font-weight-over]
* The font-weight of the button when the cursor is over the button
*
* @param {string} [$font-weight-focus=$button-medium-font-weight-focus]
* The font-weight of the button when the button is focused
*
* @param {string} [$font-weight-pressed=$button-medium-font-weight-pressed]
* The font-weight of the button when the button is pressed
*
* @param {string} [$font-weight-focus-over=$button-medium-font-weight-focus-over]
* The font-weight of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-weight-focus-pressed=$button-medium-font-weight-focus-pressed]
* The font-weight of the button when the button is focused and pressed
*
* @param {string} [$font-weight-disabled=$button-medium-font-weight-disabled]
* The font-weight of the button when the button is disabled
*
* @param {string} [$font-family=$button-medium-font-family]
* The font-family of the button
*
* @param {string} [$font-family-over=$button-medium-font-family-over]
* The font-family of the button when the cursor is over the button
*
* @param {string} [$font-family-focus=$button-medium-font-family-focus]
* The font-family of the button when the button is focused
*
* @param {string} [$font-family-pressed=$button-medium-font-family-pressed]
* The font-family of the button when the button is pressed
*
* @param {string} [$font-family-focus-over=$button-medium-font-family-focus-over]
* The font-family of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-family-focus-pressed=$button-medium-font-family-focus-pressed]
* The font-family of the button when the button is focused and pressed
*
* @param {string} [$font-family-disabled=$button-medium-font-family-disabled]
* The font-family of the button when the button is disabled
*
* @param {number} [$line-height=$button-medium-line-height]
* The line-height of the button text
*
* @param {number} [$icon-size=$button-medium-icon-size]
* The size of the button icon
*
* @param {number} [$icon-spacing=$button-medium-icon-spacing]
* The space between the button's icon and text
*
* @param {color} [$glyph-color=$button-default-glyph-color]
* The color of the button's {@link #glyph} icon
*
* @param {number} [$glyph-opacity=$button-default-glyph-opacity]
* The opacity of the button's {@link #glyph} icon
*
* @param {number} [$arrow-width=$button-medium-arrow-width]
* The width of the button's {@link #cfg-menu} arrow
*
* @param {number} [$arrow-height=$button-medium-arrow-height]
* The height of the button's {@link #cfg-menu} arrow
*
* @param {number} [$split-width=$button-medium-split-width]
* The width of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {number} [$split-height=$button-medium-split-height]
* The height of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
* True to include the UI name in the file name of the {@link #cfg-menu}
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
* True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows]
* True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Used for hiding the split line when toolbar buttons are in their default
* state.
*
* @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
* True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
* is over the button. The over icon file name will have a "-o" suffix
*
* @param {number} [$opacity-disabled=$button-opacity-disabled]
* The opacity of the button when it is disabled
*
* @param {number} [$inner-opacity-disabled=$button-inner-opacity-disabled]
* The opacity of the button's text and icon elements when when the button is disabled
*
* @member Ext.button.Button
*/
/**
* Creates a visual theme for a {@link #scale medium} toolbar Button.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$border-radius=$button-medium-border-radius]
* The border-radius of the button
*
* @param {number} [$border-width=$button-medium-border-width]
* The border-width of the button
*
* @param {color} [$border-color=$button-toolbar-border-color]
* The border-color of the button
*
* @param {color} [$border-color-over=$button-toolbar-border-color-over]
* The border-color of the button when the cursor is over the button
*
* @param {color} [$border-color-focus=$button-toolbar-border-color-focus]
* The border-color of the button when focused
*
* @param {color} [$border-color-pressed=$button-toolbar-border-color-pressed]
* The border-color of the button when pressed
*
* @param {color} [$border-color-focus-over=$button-toolbar-border-color-focus-over]
* The border-color of the button when the button is focused and the cursor is over the
* button
*
* @param {color} [$border-color-focus-pressed=$button-toolbar-border-color-focus-pressed]
* The border-color of the button when focused and pressed
*
* @param {color} [$border-color-disabled=$button-toolbar-border-color-disabled]
* The border-color of the button when disabled
*
* @param {number} [$padding=$button-medium-padding]
* The amount of padding inside the border of the button on all sides
*
* @param {number} [$text-padding=$button-medium-text-padding]
* The amount of horizontal space to add to the left and right of the button text
*
* @param {color} [$background-color=$button-toolbar-background-color]
* The background-color of the button
*
* @param {color} [$background-color-over=$button-toolbar-background-color-over]
* The background-color of the button when the cursor is over the button
*
* @param {color} [$background-color-focus=$button-toolbar-background-color-focus]
* The background-color of the button when focused
*
* @param {color} [$background-color-pressed=$button-toolbar-background-color-pressed]
* The background-color of the button when pressed
*
* @param {color} [$background-color-focus-over=$button-toolbar-background-color-focus-over]
* The background-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$background-color-focus-pressed=$button-toolbar-background-color-focus-pressed]
* The background-color of the button when focused and pressed
*
* @param {color} [$background-color-disabled=$button-toolbar-background-color-disabled]
* The background-color of the button when disabled
*
* @param {string/list} [$background-gradient=$button-toolbar-background-gradient]
* The background-gradient for the button. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-over=$button-toolbar-background-gradient-over]
* The background-gradient to use when the cursor is over the button. Can be either the
* name of a predefined gradient or a list of color stops. Used as the `$type` parameter
* for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-focus=$button-toolbar-background-gradient-focus]
* The background-gradient to use when the the button is focused. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-pressed=$button-toolbar-background-gradient-pressed]
* The background-gradient to use when the the button is pressed. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-over=$button-toolbar-background-gradient-focus-over]
* The background-gradient to use when the the button is focused and the cursor is over
* the button. Can be either the name of a predefined gradient or a list of color stops.
* Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-pressed=$button-toolbar-background-gradient-focus-pressed]
* The background-gradient to use when the the button is focused and pressed. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-disabled=$button-toolbar-background-gradient-disabled]
* The background-gradient to use when the the button is disabled. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {color} [$color=$button-toolbar-color]
* The text color of the button
*
* @param {color} [$color-over=$button-toolbar-color-over]
* The text color of the button when the cursor is over the button
*
* @param {color} [$color-focus=$button-toolbar-color-focus]
* The text color of the button when the button is focused
*
* @param {color} [$color-pressed=$button-toolbar-color-pressed]
* The text color of the button when the button is pressed
*
* @param {color} [$color-focus-over=$button-toolbar-color-focus-over]
* The text color of the button when the button is focused and the cursor is over the button
*
* @param {color} [$color-focus-pressed=$button-toolbar-color-focus-pressed]
* The text color of the button when the button is focused and pressed
*
* @param {color} [$color-disabled=$button-toolbar-color-disabled]
* The text color of the button when the button is disabled
*
* @param {number/list} [$inner-border-width=$button-toolbar-inner-border-width]
* The inner border-width of the button
*
* @param {number/list} [$inner-border-width-over=$button-toolbar-inner-border-width-over]
* The inner border-width of the button when the cursor is over the button
*
* @param {number/list} [$inner-border-width-focus=$button-toolbar-inner-border-width-focus]
* The inner border-width of the button when focused
*
* @param {number/list} [$inner-border-width-pressed=$button-toolbar-inner-border-width-pressed]
* The inner border-width of the button when pressed
*
* @param {number/list} [$inner-border-width-focus-over=$button-toolbar-inner-border-width-focus-over]
* The inner border-width of the button when the button is focused and the cursor is over
* the button
*
* @param {number/list} [$inner-border-width-focus-pressed=$button-toolbar-inner-border-width-focus-pressed]
* The inner border-width of the button when focused and pressed
*
* @param {number/list} [$inner-border-width-disabled=$button-toolbar-inner-border-width-disabled]
* The inner border-width of the button when disabled
*
* @param {color} [$inner-border-color=$button-toolbar-inner-border-color]
* The inner border-color of the button
*
* @param {color} [$inner-border-color-over=$button-toolbar-inner-border-color-over]
* The inner border-color of the button when the cursor is over the button
*
* @param {color} [$inner-border-color-focus=$button-toolbar-inner-border-color-focus]
* The inner border-color of the button when focused
*
* @param {color} [$inner-border-color-pressed=$button-toolbar-inner-border-color-pressed]
* The inner border-color of the button when pressed
*
* @param {color} [$inner-border-color-focus-over=$button-toolbar-inner-border-color-focus-over]
* The inner border-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$inner-border-color-focus-pressed=$button-toolbar-inner-border-color-focus-pressed]
* The inner border-color of the button when focused and pressed
*
* @param {color} [$inner-border-color-disabled=$button-toolbar-inner-border-color-disabled]
* The inner border-color of the button when disabled
*
* @param {number} [$body-outline-width-focus=$button-toolbar-body-outline-width-focus]
* The body outline width of the button when focused
*
* @param {number} [$body-outline-style-focus=$button-toolbar-body-outline-style-focus]
* The body outline-style of the button when focused
*
* @param {number} [$body-outline-color-focus=$button-toolbar-body-outline-color-focus]
* The body outline color of the button when focused
*
* @param {number} [$font-size=$button-medium-font-size]
* The font-size of the button
*
* @param {number} [$font-size-over=$button-medium-font-size-over]
* The font-size of the button when the cursor is over the button
*
* @param {number} [$font-size-focus=$button-medium-font-size-focus]
* The font-size of the button when the button is focused
*
* @param {number} [$font-size-pressed=$button-medium-font-size-pressed]
* The font-size of the button when the button is pressed
*
* @param {number} [$font-size-focus-over=$button-medium-font-size-focus-over]
* The font-size of the button when the button is focused and the cursor is over the
* button
*
* @param {number} [$font-size-focus-pressed=$button-medium-font-size-focus-pressed]
* The font-size of the button when the button is focused and pressed
*
* @param {number} [$font-size-disabled=$button-medium-font-size-disabled]
* The font-size of the button when the button is disabled
*
* @param {string} [$font-weight=$button-medium-font-weight]
* The font-weight of the button
*
* @param {string} [$font-weight-over=$button-medium-font-weight-over]
* The font-weight of the button when the cursor is over the button
*
* @param {string} [$font-weight-focus=$button-medium-font-weight-focus]
* The font-weight of the button when the button is focused
*
* @param {string} [$font-weight-pressed=$button-medium-font-weight-pressed]
* The font-weight of the button when the button is pressed
*
* @param {string} [$font-weight-focus-over=$button-medium-font-weight-focus-over]
* The font-weight of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-weight-focus-pressed=$button-medium-font-weight-focus-pressed]
* The font-weight of the button when the button is focused and pressed
*
* @param {string} [$font-weight-disabled=$button-medium-font-weight-disabled]
* The font-weight of the button when the button is disabled
*
* @param {string} [$font-family=$button-medium-font-family]
* The font-family of the button
*
* @param {string} [$font-family-over=$button-medium-font-family-over]
* The font-family of the button when the cursor is over the button
*
* @param {string} [$font-family-focus=$button-medium-font-family-focus]
* The font-family of the button when the button is focused
*
* @param {string} [$font-family-pressed=$button-medium-font-family-pressed]
* The font-family of the button when the button is pressed
*
* @param {string} [$font-family-focus-over=$button-medium-font-family-focus-over]
* The font-family of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-family-focus-pressed=$button-medium-font-family-focus-pressed]
* The font-family of the button when the button is focused and pressed
*
* @param {string} [$font-family-disabled=$button-medium-font-family-disabled]
* The font-family of the button when the button is disabled
*
* @param {number} [$line-height=$button-medium-line-height]
* The line-height of the button text
*
* @param {number} [$icon-size=$button-medium-icon-size]
* The size of the button icon
*
* @param {number} [$icon-spacing=$button-medium-icon-spacing]
* The space between the button's icon and text
*
* @param {color} [$glyph-color=$button-toolbar-glyph-color]
* The color of the button's {@link #glyph} icon
*
* @param {number} [$glyph-opacity=$button-toolbar-glyph-opacity]
* The opacity of the button's {@link #glyph} icon
*
* @param {number} [$arrow-width=$button-medium-arrow-width]
* The width of the button's {@link #cfg-menu} arrow
*
* @param {number} [$arrow-height=$button-medium-arrow-height]
* The height of the button's {@link #cfg-menu} arrow
*
* @param {number} [$split-width=$button-medium-split-width]
* The width of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {number} [$split-height=$button-medium-split-height]
* The height of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
* True to include the UI name in the file name of the {@link #cfg-menu}
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
* True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-split-noline-arrows=$button-toolbar-include-split-noline-arrows]
* True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Used for hiding the split line when toolbar buttons are in their default
* state.
*
* @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
* True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
* is over the button. The over icon file name will have a "-o" suffix
*
* @param {number} [$opacity-disabled=$button-toolbar-opacity-disabled]
* The opacity of the button when it is disabled
*
* @param {number} [$inner-opacity-disabled=$button-toolbar-inner-opacity-disabled]
* The opacity of the button's text and icon elements when when the button is disabled
*
* @member Ext.button.Button
*/
/**
* Creates a visual theme for a {@link #scale large} Button.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$border-radius=$button-large-border-radius]
* The border-radius of the button
*
* @param {number} [$border-width=$button-large-border-width]
* The border-width of the button
*
* @param {color} [$border-color=$button-default-border-color]
* The border-color of the button
*
* @param {color} [$border-color-over=$button-default-border-color-over]
* The border-color of the button when the cursor is over the button
*
* @param {color} [$border-color-focus=$button-default-border-color-focus]
* The border-color of the button when focused
*
* @param {color} [$border-color-pressed=$button-default-border-color-pressed]
* The border-color of the button when pressed
*
* @param {color} [$border-color-focus-over=$button-default-border-color-focus-over]
* The border-color of the button when the button is focused and the cursor is over the
* button
*
* @param {color} [$border-color-focus-pressed=$button-default-border-color-focus-pressed]
* The border-color of the button when focused and pressed
*
* @param {color} [$border-color-disabled=$button-default-border-color-disabled]
* The border-color of the button when disabled
*
* @param {number} [$padding=$button-large-padding]
* The amount of padding inside the border of the button on all sides
*
* @param {number} [$text-padding=$button-large-text-padding]
* The amount of horizontal space to add to the left and right of the button text
*
* @param {color} [$background-color=$button-default-background-color]
* The background-color of the button
*
* @param {color} [$background-color-over=$button-default-background-color-over]
* The background-color of the button when the cursor is over the button
*
* @param {color} [$background-color-focus=$button-default-background-color-focus]
* The background-color of the button when focused
*
* @param {color} [$background-color-pressed=$button-default-background-color-pressed]
* The background-color of the button when pressed
*
* @param {color} [$background-color-focus-over=$button-default-background-color-focus-over]
* The background-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$background-color-focus-pressed=$button-default-background-color-focus-pressed]
* The background-color of the button when focused and pressed
*
* @param {color} [$background-color-disabled=$button-default-background-color-disabled]
* The background-color of the button when disabled
*
* @param {string/list} [$background-gradient=$button-default-background-gradient]
* The background-gradient for the button. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-over=$button-default-background-gradient-over]
* The background-gradient to use when the cursor is over the button. Can be either the
* name of a predefined gradient or a list of color stops. Used as the `$type` parameter
* for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-focus=$button-default-background-gradient-focus]
* The background-gradient to use when the the button is focused. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-pressed=$button-default-background-gradient-pressed]
* The background-gradient to use when the the button is pressed. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-over=$button-default-background-gradient-focus-over]
* The background-gradient to use when the the button is focused and the cursor is over
* the button. Can be either the name of a predefined gradient or a list of color stops.
* Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-pressed=$button-default-background-gradient-focus-pressed]
* The background-gradient to use when the the button is focused and pressed. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-disabled=$button-default-background-gradient-disabled]
* The background-gradient to use when the the button is disabled. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {color} [$color=$button-default-color]
* The text color of the button
*
* @param {color} [$color-over=$button-default-color-over]
* The text color of the button when the cursor is over the button
*
* @param {color} [$color-focus=$button-default-color-focus]
* The text color of the button when the button is focused
*
* @param {color} [$color-pressed=$button-default-color-pressed]
* The text color of the button when the button is pressed
*
* @param {color} [$color-focus-over=$button-default-color-focus-over]
* The text color of the button when the button is focused and the cursor is over the button
*
* @param {color} [$color-focus-pressed=$button-default-color-focus-pressed]
* The text color of the button when the button is focused and pressed
*
* @param {color} [$color-disabled=$button-default-color-disabled]
* The text color of the button when the button is disabled
*
* @param {number/list} [$inner-border-width=$button-default-inner-border-width]
* The inner border-width of the button
*
* @param {number/list} [$inner-border-width-over=$button-default-inner-border-width-over]
* The inner border-width of the button when the cursor is over the button
*
* @param {number/list} [$inner-border-width-focus=$button-default-inner-border-width-focus]
* The inner border-width of the button when focused
*
* @param {number/list} [$inner-border-width-pressed=$button-default-inner-border-width-pressed]
* The inner border-width of the button when pressed
*
* @param {number/list} [$inner-border-width-focus-over=$button-default-inner-border-width-focus-over]
* The inner border-width of the button when the button is focused and the cursor is over
* the button
*
* @param {number/list} [$inner-border-width-focus-pressed=$button-default-inner-border-width-focus-pressed]
* The inner border-width of the button when focused and pressed
*
* @param {number/list} [$inner-border-width-disabled=$button-default-inner-border-width-disabled]
* The inner border-width of the button when disabled
*
* @param {color} [$inner-border-color=$button-default-inner-border-color]
* The inner border-color of the button
*
* @param {color} [$inner-border-color-over=$button-default-inner-border-color-over]
* The inner border-color of the button when the cursor is over the button
*
* @param {color} [$inner-border-color-focus=$button-default-inner-border-color-focus]
* The inner border-color of the button when focused
*
* @param {color} [$inner-border-color-pressed=$button-default-inner-border-color-pressed]
* The inner border-color of the button when pressed
*
* @param {color} [$inner-border-color-focus-over=$button-default-inner-border-color-focus-over]
* The inner border-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$inner-border-color-focus-pressed=$button-default-inner-border-color-focus-pressed]
* The inner border-color of the button when focused and pressed
*
* @param {color} [$inner-border-color-disabled=$button-default-inner-border-color-disabled]
* The inner border-color of the button when disabled
*
* @param {number} [$body-outline-width-focus=$button-default-body-outline-width-focus]
* The body outline width of the button when focused
*
* @param {number} [$body-outline-style-focus=$button-default-body-outline-style-focus]
* The body outline-style of the button when focused
*
* @param {number} [$body-outline-color-focus=$button-default-body-outline-color-focus]
* The body outline color of the button when focused
*
* @param {number} [$font-size=$button-large-font-size]
* The font-size of the button
*
* @param {number} [$font-size-over=$button-large-font-size-over]
* The font-size of the button when the cursor is over the button
*
* @param {number} [$font-size-focus=$button-large-font-size-focus]
* The font-size of the button when the button is focused
*
* @param {number} [$font-size-pressed=$button-large-font-size-pressed]
* The font-size of the button when the button is pressed
*
* @param {number} [$font-size-focus-over=$button-large-font-size-focus-over]
* The font-size of the button when the button is focused and the cursor is over the
* button
*
* @param {number} [$font-size-focus-pressed=$button-large-font-size-focus-pressed]
* The font-size of the button when the button is focused and pressed
*
* @param {number} [$font-size-disabled=$button-large-font-size-disabled]
* The font-size of the button when the button is disabled
*
* @param {string} [$font-weight=$button-large-font-weight]
* The font-weight of the button
*
* @param {string} [$font-weight-over=$button-large-font-weight-over]
* The font-weight of the button when the cursor is over the button
*
* @param {string} [$font-weight-focus=$button-large-font-weight-focus]
* The font-weight of the button when the button is focused
*
* @param {string} [$font-weight-pressed=$button-large-font-weight-pressed]
* The font-weight of the button when the button is pressed
*
* @param {string} [$font-weight-focus-over=$button-large-font-weight-focus-over]
* The font-weight of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-weight-focus-pressed=$button-large-font-weight-focus-pressed]
* The font-weight of the button when the button is focused and pressed
*
* @param {string} [$font-weight-disabled=$button-large-font-weight-disabled]
* The font-weight of the button when the button is disabled
*
* @param {string} [$font-family=$button-large-font-family]
* The font-family of the button
*
* @param {string} [$font-family-over=$button-large-font-family-over]
* The font-family of the button when the cursor is over the button
*
* @param {string} [$font-family-focus=$button-large-font-family-focus]
* The font-family of the button when the button is focused
*
* @param {string} [$font-family-pressed=$button-large-font-family-pressed]
* The font-family of the button when the button is pressed
*
* @param {string} [$font-family-focus-over=$button-large-font-family-focus-over]
* The font-family of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-family-focus-pressed=$button-large-font-family-focus-pressed]
* The font-family of the button when the button is focused and pressed
*
* @param {string} [$font-family-disabled=$button-large-font-family-disabled]
* The font-family of the button when the button is disabled
*
* @param {number} [$line-height=$button-large-line-height]
* The line-height of the button text
*
* @param {number} [$icon-size=$button-large-icon-size]
* The size of the button icon
*
* @param {number} [$icon-spacing=$button-large-icon-spacing]
* The space between the button's icon and text
*
* @param {color} [$glyph-color=$button-default-glyph-color]
* The color of the button's {@link #glyph} icon
*
* @param {number} [$glyph-opacity=$button-default-glyph-opacity]
* The opacity of the button's {@link #glyph} icon
*
* @param {number} [$arrow-width=$button-large-arrow-width]
* The width of the button's {@link #cfg-menu} arrow
*
* @param {number} [$arrow-height=$button-large-arrow-height]
* The height of the button's {@link #cfg-menu} arrow
*
* @param {number} [$split-width=$button-large-split-width]
* The width of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {number} [$split-height=$button-large-split-height]
* The height of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
* True to include the UI name in the file name of the {@link #cfg-menu}
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
* True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-split-noline-arrows=$button-include-split-noline-arrows]
* True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Used for hiding the split line when toolbar buttons are in their default
* state.
*
* @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
* True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
* is over the button. The over icon file name will have a "-o" suffix
*
* @param {number} [$opacity-disabled=$button-opacity-disabled]
* The opacity of the button when it is disabled
*
* @param {number} [$inner-opacity-disabled=$button-inner-opacity-disabled]
* The opacity of the button's text and icon elements when when the button is disabled
*
* @member Ext.button.Button
*/
/**
* Creates a visual theme for a {@link #scale large} toolbar Button.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$border-radius=$button-large-border-radius]
* The border-radius of the button
*
* @param {number} [$border-width=$button-large-border-width]
* The border-width of the button
*
* @param {color} [$border-color=$button-toolbar-border-color]
* The border-color of the button
*
* @param {color} [$border-color-over=$button-toolbar-border-color-over]
* The border-color of the button when the cursor is over the button
*
* @param {color} [$border-color-focus=$button-toolbar-border-color-focus]
* The border-color of the button when focused
*
* @param {color} [$border-color-pressed=$button-toolbar-border-color-pressed]
* The border-color of the button when pressed
*
* @param {color} [$border-color-focus-over=$button-toolbar-border-color-focus-over]
* The border-color of the button when the button is focused and the cursor is over the
* button
*
* @param {color} [$border-color-focus-pressed=$button-toolbar-border-color-focus-pressed]
* The border-color of the button when focused and pressed
*
* @param {color} [$border-color-disabled=$button-toolbar-border-color-disabled]
* The border-color of the button when disabled
*
* @param {number} [$padding=$button-large-padding]
* The amount of padding inside the border of the button on all sides
*
* @param {number} [$text-padding=$button-large-text-padding]
* The amount of horizontal space to add to the left and right of the button text
*
* @param {color} [$background-color=$button-toolbar-background-color]
* The background-color of the button
*
* @param {color} [$background-color-over=$button-toolbar-background-color-over]
* The background-color of the button when the cursor is over the button
*
* @param {color} [$background-color-focus=$button-toolbar-background-color-focus]
* The background-color of the button when focused
*
* @param {color} [$background-color-pressed=$button-toolbar-background-color-pressed]
* The background-color of the button when pressed
*
* @param {color} [$background-color-focus-over=$button-toolbar-background-color-focus-over]
* The background-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$background-color-focus-pressed=$button-toolbar-background-color-focus-pressed]
* The background-color of the button when focused and pressed
*
* @param {color} [$background-color-disabled=$button-toolbar-background-color-disabled]
* The background-color of the button when disabled
*
* @param {string/list} [$background-gradient=$button-toolbar-background-gradient]
* The background-gradient for the button. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-over=$button-toolbar-background-gradient-over]
* The background-gradient to use when the cursor is over the button. Can be either the
* name of a predefined gradient or a list of color stops. Used as the `$type` parameter
* for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-focus=$button-toolbar-background-gradient-focus]
* The background-gradient to use when the the button is focused. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-pressed=$button-toolbar-background-gradient-pressed]
* The background-gradient to use when the the button is pressed. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-over=$button-toolbar-background-gradient-focus-over]
* The background-gradient to use when the the button is focused and the cursor is over
* the button. Can be either the name of a predefined gradient or a list of color stops.
* Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {string} [$background-gradient-focus-pressed=$button-toolbar-background-gradient-focus-pressed]
* The background-gradient to use when the the button is focused and pressed. Can be
* either the name of a predefined gradient or a list of color stops. Used as the `$type`
* parameter for {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$background-gradient-disabled=$button-toolbar-background-gradient-disabled]
* The background-gradient to use when the the button is disabled. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {color} [$color=$button-toolbar-color]
* The text color of the button
*
* @param {color} [$color-over=$button-toolbar-color-over]
* The text color of the button when the cursor is over the button
*
* @param {color} [$color-focus=$button-toolbar-color-focus]
* The text color of the button when the button is focused
*
* @param {color} [$color-pressed=$button-toolbar-color-pressed]
* The text color of the button when the button is pressed
*
* @param {color} [$color-focus-over=$button-toolbar-color-focus-over]
* The text color of the button when the button is focused and the cursor is over the button
*
* @param {color} [$color-focus-pressed=$button-toolbar-color-focus-pressed]
* The text color of the button when the button is focused and pressed
*
* @param {color} [$color-disabled=$button-toolbar-color-disabled]
* The text color of the button when the button is disabled
*
* @param {number/list} [$inner-border-width=$button-toolbar-inner-border-width]
* The inner border-width of the button
*
* @param {number/list} [$inner-border-width-over=$button-toolbar-inner-border-width-over]
* The inner border-width of the button when the cursor is over the button
*
* @param {number/list} [$inner-border-width-focus=$button-toolbar-inner-border-width-focus]
* The inner border-width of the button when focused
*
* @param {number/list} [$inner-border-width-pressed=$button-toolbar-inner-border-width-pressed]
* The inner border-width of the button when pressed
*
* @param {number/list} [$inner-border-width-focus-over=$button-toolbar-inner-border-width-focus-over]
* The inner border-width of the button when the button is focused and the cursor is over
* the button
*
* @param {number/list} [$inner-border-width-focus-pressed=$button-toolbar-inner-border-width-focus-pressed]
* The inner border-width of the button when focused and pressed
*
* @param {number/list} [$inner-border-width-disabled=$button-toolbar-inner-border-width-disabled]
* The inner border-width of the button when disabled
*
* @param {color} [$inner-border-color=$button-toolbar-inner-border-color]
* The inner border-color of the button
*
* @param {color} [$inner-border-color-over=$button-toolbar-inner-border-color-over]
* The inner border-color of the button when the cursor is over the button
*
* @param {color} [$inner-border-color-focus=$button-toolbar-inner-border-color-focus]
* The inner border-color of the button when focused
*
* @param {color} [$inner-border-color-pressed=$button-toolbar-inner-border-color-pressed]
* The inner border-color of the button when pressed
*
* @param {color} [$inner-border-color-focus-over=$button-toolbar-inner-border-color-focus-over]
* The inner border-color of the button when the button is focused and the cursor is over
* the button
*
* @param {color} [$inner-border-color-focus-pressed=$button-toolbar-inner-border-color-focus-pressed]
* The inner border-color of the button when focused and pressed
*
* @param {color} [$inner-border-color-disabled=$button-toolbar-inner-border-color-disabled]
* The inner border-color of the button when disabled
*
* @param {number} [$body-outline-width-focus=$button-toolbar-body-outline-width-focus]
* The body outline width of the button when focused
*
* @param {number} [$body-outline-style-focus=$button-toolbar-body-outline-style-focus]
* The body outline-style of the button when focused
*
* @param {number} [$body-outline-color-focus=$button-toolbar-body-outline-color-focus]
* The body outline color of the button when focused
*
* @param {number} [$font-size=$button-large-font-size]
* The font-size of the button
*
* @param {number} [$font-size-over=$button-large-font-size-over]
* The font-size of the button when the cursor is over the button
*
* @param {number} [$font-size-focus=$button-large-font-size-focus]
* The font-size of the button when the button is focused
*
* @param {number} [$font-size-pressed=$button-large-font-size-pressed]
* The font-size of the button when the button is pressed
*
* @param {number} [$font-size-focus-over=$button-large-font-size-focus-over]
* The font-size of the button when the button is focused and the cursor is over the
* button
*
* @param {number} [$font-size-focus-pressed=$button-large-font-size-focus-pressed]
* The font-size of the button when the button is focused and pressed
*
* @param {number} [$font-size-disabled=$button-large-font-size-disabled]
* The font-size of the button when the button is disabled
*
* @param {string} [$font-weight=$button-large-font-weight]
* The font-weight of the button
*
* @param {string} [$font-weight-over=$button-large-font-weight-over]
* The font-weight of the button when the cursor is over the button
*
* @param {string} [$font-weight-focus=$button-large-font-weight-focus]
* The font-weight of the button when the button is focused
*
* @param {string} [$font-weight-pressed=$button-large-font-weight-pressed]
* The font-weight of the button when the button is pressed
*
* @param {string} [$font-weight-focus-over=$button-large-font-weight-focus-over]
* The font-weight of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-weight-focus-pressed=$button-large-font-weight-focus-pressed]
* The font-weight of the button when the button is focused and pressed
*
* @param {string} [$font-weight-disabled=$button-large-font-weight-disabled]
* The font-weight of the button when the button is disabled
*
* @param {string} [$font-family=$button-large-font-family]
* The font-family of the button
*
* @param {string} [$font-family-over=$button-large-font-family-over]
* The font-family of the button when the cursor is over the button
*
* @param {string} [$font-family-focus=$button-large-font-family-focus]
* The font-family of the button when the button is focused
*
* @param {string} [$font-family-pressed=$button-large-font-family-pressed]
* The font-family of the button when the button is pressed
*
* @param {string} [$font-family-focus-over=$button-large-font-family-focus-over]
* The font-family of the button when the button is focused and the cursor is over the
* button
*
* @param {string} [$font-family-focus-pressed=$button-large-font-family-focus-pressed]
* The font-family of the button when the button is focused and pressed
*
* @param {string} [$font-family-disabled=$button-large-font-family-disabled]
* The font-family of the button when the button is disabled
*
* @param {number} [$line-height=$button-large-line-height]
* The line-height of the button text
*
* @param {number} [$icon-size=$button-large-icon-size]
* The size of the button icon
*
* @param {number} [$icon-spacing=$button-large-icon-spacing]
* The space between the button's icon and text
*
* @param {color} [$glyph-color=$button-toolbar-glyph-color]
* The color of the button's {@link #glyph} icon
*
* @param {number} [$glyph-opacity=$button-toolbar-glyph-opacity]
* The opacity of the button's {@link #glyph} icon
*
* @param {number} [$arrow-width=$button-large-arrow-width]
* The width of the button's {@link #cfg-menu} arrow
*
* @param {number} [$arrow-height=$button-large-arrow-height]
* The height of the button's {@link #cfg-menu} arrow
*
* @param {number} [$split-width=$button-large-split-width]
* The width of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {number} [$split-height=$button-large-split-height]
* The height of a {@link Ext.button.Split Split Button}'s arrow
*
* @param {boolean} [$include-ui-menu-arrows=$button-include-ui-menu-arrows]
* True to include the UI name in the file name of the {@link #cfg-menu}
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-ui-split-arrows=$button-include-ui-split-arrows]
* True to include the UI name in the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Set this to false to share the same arrow bewteen multiple UIs.
*
* @param {boolean} [$include-split-noline-arrows=$button-toolbar-include-split-noline-arrows]
* True to add a "-noline" suffix to the file name of the {@link Ext.button.Split Split Button}'s
* arrow icon. Used for hiding the split line when toolbar buttons are in their default
* state.
*
* @param {boolean} [$include-split-over-arrows=$button-include-split-over-arrows]
* True to use a separate icon for {@link Ext.button.Split Split Button}s when the cursor
* is over the button. The over icon file name will have a "-o" suffix
*
* @param {number} [$opacity-disabled=$button-toolbar-opacity-disabled]
* The opacity of the button when it is disabled
*
* @param {number} [$inner-opacity-disabled=$button-toolbar-inner-opacity-disabled]
* The opacity of the button's text and icon elements when when the button is disabled
*
* @member Ext.button.Button
*/
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-mc {
background-image: url(images/btn/btn-default-small-fbg.gif);
background-position: 0 top;
background-color: white; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-btn-default-small {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-frameInfo {
font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-tl {
background-position: 0 -6px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-tr {
background-position: right -9px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-bl {
background-position: 0 -12px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-br {
background-position: right -15px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-bc {
background-position: 0 -3px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-tr,
.x5-btn-default-small-br,
.x5-btn-default-small-mr {
padding-right: 3px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-tl,
.x5-btn-default-small-bl,
.x5-btn-default-small-ml {
padding-left: 3px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-tc {
height: 3px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-bc {
height: 3px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-tl,
.x5-btn-default-small-bl,
.x5-btn-default-small-tr,
.x5-btn-default-small-br,
.x5-btn-default-small-tc,
.x5-btn-default-small-bc,
.x5-btn-default-small-ml,
.x5-btn-default-small-mr {
background-image: url(images/btn/btn-default-small-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-ml,
.x5-btn-default-small-mr {
background-image: url(images/btn/btn-default-small-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-small-mc {
padding: 0px 0px 0px 0px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-default-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-default-small-fbg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-default-small {
border-color: #d1d1d1; }
/* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-button-default-small {
height: 16px; }
/* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-inner-default-small {
font: normal 11px/16px tahoma, arial, verdana, sans-serif;
color: #333333;
padding: 0 4px;
max-width: 100%; }
/* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-right > .x5-btn-inner-default-small, .x5-btn-icon-left > .x5-btn-inner-default-small {
max-width: calc(100% - 16px); }
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-small {
height: 16px; }
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-left > .x5-btn-icon-el-default-small, .x5-btn-icon-right > .x5-btn-icon-el-default-small {
width: 16px; }
/* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-top > .x5-btn-icon-el-default-small, .x5-btn-icon-bottom > .x5-btn-icon-el-default-small {
min-width: 16px; }
/* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-small.x5-btn-glyph {
font-size: 16px;
line-height: 16px;
color: #333333;
opacity: 0.5; }
/* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-ie8 .x5-btn-icon-el-default-small.x5-btn-glyph {
color: #999999; }
/* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-left > .x5-btn-icon-el-default-small {
margin-right: 0px; }
/* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-small {
margin-left: 0px; }
/* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-top > .x5-btn-icon-el-default-small {
margin-bottom: 4px; }
/* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-bottom > .x5-btn-icon-el-default-small {
margin-top: 4px; }
/* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-small {
padding-right: 4px; }
/* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-small {
margin-right: 4px; }
/* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-bottom > .x5-btn-button-default-small,
.x5-btn-split-bottom > .x5-btn-button-default-small {
padding-bottom: 2px; }
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-small.x5-btn-arrow-right:after {
width: 8px;
padding-right: 8px;
background-image: url(images/button/arrow.gif); }
/* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-small.x5-btn-arrow-bottom:after {
height: 8px;
background-image: url(images/button/arrow.gif); }
/* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-small.x5-btn-split-right:after {
width: 14px;
padding-right: 14px;
background-image: url(images/button/s-arrow.gif); }
/* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-small.x5-btn-split-bottom:after {
height: 14px;
background-image: url(images/button/s-arrow-b.gif); }
/* line 606, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-small.x5-btn-split-right:after {
background-image: url(images/button/s-arrow-o.gif); }
/* line 616, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-small.x5-btn-split-bottom:after {
background-image: url(images/button/s-arrow-bo.gif); }
/* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-small {
padding-right: 4px; }
/* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-small {
margin-right: 4px; }
/* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-small {
border-color: #b0ccf2;
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%, #e7e7e7), color-stop(100%, #ececec));
background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec); }
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-small .x5-btn-wrap {
outline: 1px dotted #333333; }
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over.x5-btn-default-small {
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: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
/* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active.x5-btn-default-small,
.x5-btn.x5-btn-pressed.x5-btn-default-small {
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: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
/* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled.x5-btn-default-small {
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: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
/* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-small-tl,
.x5-btn-focus .x5-btn-default-small-bl,
.x5-btn-focus .x5-btn-default-small-tr,
.x5-btn-focus .x5-btn-default-small-br,
.x5-btn-focus .x5-btn-default-small-tc,
.x5-btn-focus .x5-btn-default-small-bc {
background-image: url(images/btn/btn-default-small-focus-corners.gif); }
/* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-small-ml,
.x5-btn-focus .x5-btn-default-small-mr {
background-image: url(images/btn/btn-default-small-focus-sides.gif); }
/* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-small-mc {
background-color: white;
background-image: url(images/btn/btn-default-small-focus-fbg.gif); }
/* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-small-tl,
.x5-btn-over .x5-btn-default-small-bl,
.x5-btn-over .x5-btn-default-small-tr,
.x5-btn-over .x5-btn-default-small-br,
.x5-btn-over .x5-btn-default-small-tc,
.x5-btn-over .x5-btn-default-small-bc {
background-image: url(images/btn/btn-default-small-over-corners.gif); }
/* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-small-ml,
.x5-btn-over .x5-btn-default-small-mr {
background-image: url(images/btn/btn-default-small-over-sides.gif); }
/* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-small-mc {
background-color: #e4f3ff;
background-image: url(images/btn/btn-default-small-over-fbg.gif); }
/* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-small-tl,
.x5-btn-focus.x5-btn-over .x5-btn-default-small-bl,
.x5-btn-focus.x5-btn-over .x5-btn-default-small-tr,
.x5-btn-focus.x5-btn-over .x5-btn-default-small-br,
.x5-btn-focus.x5-btn-over .x5-btn-default-small-tc,
.x5-btn-focus.x5-btn-over .x5-btn-default-small-bc {
background-image: url(images/btn/btn-default-small-focus-over-corners.gif); }
/* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-small-ml,
.x5-btn-focus.x5-btn-over .x5-btn-default-small-mr {
background-image: url(images/btn/btn-default-small-focus-over-sides.gif); }
/* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-small-mc {
background-color: #e4f3ff;
background-image: url(images/btn/btn-default-small-focus-over-fbg.gif); }
/* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-small-tl,
.x5-btn.x5-btn-menu-active .x5-btn-default-small-bl,
.x5-btn.x5-btn-menu-active .x5-btn-default-small-tr,
.x5-btn.x5-btn-menu-active .x5-btn-default-small-br,
.x5-btn.x5-btn-menu-active .x5-btn-default-small-tc,
.x5-btn.x5-btn-menu-active .x5-btn-default-small-bc,
.x5-btn.x5-btn-pressed .x5-btn-default-small-tl,
.x5-btn.x5-btn-pressed .x5-btn-default-small-bl,
.x5-btn.x5-btn-pressed .x5-btn-default-small-tr,
.x5-btn.x5-btn-pressed .x5-btn-default-small-br,
.x5-btn.x5-btn-pressed .x5-btn-default-small-tc,
.x5-btn.x5-btn-pressed .x5-btn-default-small-bc {
background-image: url(images/btn/btn-default-small-pressed-corners.gif); }
/* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-small-ml,
.x5-btn.x5-btn-menu-active .x5-btn-default-small-mr,
.x5-btn.x5-btn-pressed .x5-btn-default-small-ml,
.x5-btn.x5-btn-pressed .x5-btn-default-small-mr {
background-image: url(images/btn/btn-default-small-pressed-sides.gif); }
/* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-small-mc,
.x5-btn.x5-btn-pressed .x5-btn-default-small-mc {
background-color: #b6cbe4;
background-image: url(images/btn/btn-default-small-pressed-fbg.gif); }
/* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-small-tl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-small-bl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-small-tr,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-small-br,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-small-tc,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-small-bc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-small-tl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-small-bl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-small-tr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-small-br,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-small-tc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-small-bc {
background-image: url(images/btn/btn-default-small-focus-pressed-corners.gif); }
/* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-small-ml,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-small-mr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-small-ml,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-small-mr {
background-image: url(images/btn/btn-default-small-focus-pressed-sides.gif); }
/* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-small-mc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-small-mc {
background-color: #b6cbe4;
background-image: url(images/btn/btn-default-small-focus-pressed-fbg.gif); }
/* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-small-tl,
.x5-btn.x5-btn-disabled .x5-btn-default-small-bl,
.x5-btn.x5-btn-disabled .x5-btn-default-small-tr,
.x5-btn.x5-btn-disabled .x5-btn-default-small-br,
.x5-btn.x5-btn-disabled .x5-btn-default-small-tc,
.x5-btn.x5-btn-disabled .x5-btn-default-small-bc {
background-image: url(images/btn/btn-default-small-disabled-corners.gif); }
/* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-small-ml,
.x5-btn.x5-btn-disabled .x5-btn-default-small-mr {
background-image: url(images/btn/btn-default-small-disabled-sides.gif); }
/* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-small-mc {
background-color: #f7f7f7;
background-image: url(images/btn/btn-default-small-disabled-fbg.gif); }
/* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-btn-default-small {
background-image: none; }
/* line 971, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-disabled.x5-btn-default-small .x5-btn-inner,
.x5-btn-disabled.x5-btn-default-small .x5-btn-icon-el {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5; }
/* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-small.x5-segmented-button-first {
border-right-width: 1px !important; }
/* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-small.x5-segmented-button-first .x5-btn-default-small-mc {
padding-right: 2px !important; }
/* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-small.x5-segmented-button-middle {
border-right-width: 1px !important; }
/* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-small.x5-segmented-button-middle .x5-btn-default-small-mc {
padding-right: 2px !important;
padding-left: 2px !important; }
/* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-small.x5-segmented-button-last .x5-btn-default-small-mc {
padding-left: 2px !important; }
/* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-small.x5-segmented-button-first {
border-bottom-width: 1px !important; }
/* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-small.x5-segmented-button-first .x5-btn-default-small-mc {
padding-bottom: 2px !important; }
/* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-small.x5-segmented-button-middle {
border-bottom-width: 1px !important; }
/* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-small.x5-segmented-button-middle .x5-btn-default-small-mc {
padding-top: 2px !important;
padding-bottom: 2px !important; }
/* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-small.x5-segmented-button-last .x5-btn-default-small-mc {
padding-top: 2px !important; }
/* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item.x5-btn-default-small:after {
content: ' ';
border-style: solid;
border-width: 0;
position: absolute; }
/* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-small:after {
top: 1px;
right: 0;
bottom: 1px;
left: 0; }
/* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-small.x5-segmented-button-first:after {
left: 1px; }
/* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-small.x5-segmented-button-last:after {
right: 1px; }
/* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-small:after {
top: 0;
right: 1px;
bottom: 0;
left: 1px; }
/* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-small.x5-segmented-button-first:after {
top: 1px; }
/* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-small.x5-segmented-button-last:after {
bottom: 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-default-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-over.x5-btn-default-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-over.x5-btn-default-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-focus-over-corners.gif), sides:url(images/btn/btn-default-small-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-pressed.x5-btn-default-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-pressed.x5-btn-default-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-focus-pressed-corners.gif), sides:url(images/btn/btn-default-small-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-disabled.x5-btn-default-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-small-cell > .x5-grid-cell-inner {
padding-top: 0;
padding-bottom: 0; }
/* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-small-cell > .x5-grid-cell-inner > .x5-btn-default-small {
vertical-align: top; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-mc {
background-image: url(images/btn/btn-default-medium-fbg.gif);
background-position: 0 top;
background-color: white; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-btn-default-medium {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-frameInfo {
font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-tl {
background-position: 0 -6px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-tr {
background-position: right -9px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-bl {
background-position: 0 -12px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-br {
background-position: right -15px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-bc {
background-position: 0 -3px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-tr,
.x5-btn-default-medium-br,
.x5-btn-default-medium-mr {
padding-right: 3px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-tl,
.x5-btn-default-medium-bl,
.x5-btn-default-medium-ml {
padding-left: 3px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-tc {
height: 3px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-bc {
height: 3px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-tl,
.x5-btn-default-medium-bl,
.x5-btn-default-medium-tr,
.x5-btn-default-medium-br,
.x5-btn-default-medium-tc,
.x5-btn-default-medium-bc,
.x5-btn-default-medium-ml,
.x5-btn-default-medium-mr {
background-image: url(images/btn/btn-default-medium-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-ml,
.x5-btn-default-medium-mr {
background-image: url(images/btn/btn-default-medium-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-medium-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-default-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-default-medium-fbg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-default-medium {
border-color: #d1d1d1; }
/* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-button-default-medium {
height: 24px; }
/* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-inner-default-medium {
font: normal 11px/16px tahoma, arial, verdana, sans-serif;
color: #333333;
padding: 0 4px;
max-width: 100%; }
/* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-right > .x5-btn-inner-default-medium, .x5-btn-icon-left > .x5-btn-inner-default-medium {
max-width: calc(100% - 24px); }
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-medium {
height: 24px; }
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-left > .x5-btn-icon-el-default-medium, .x5-btn-icon-right > .x5-btn-icon-el-default-medium {
width: 24px; }
/* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-top > .x5-btn-icon-el-default-medium, .x5-btn-icon-bottom > .x5-btn-icon-el-default-medium {
min-width: 24px; }
/* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-medium.x5-btn-glyph {
font-size: 24px;
line-height: 24px;
color: #333333;
opacity: 0.5; }
/* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-ie8 .x5-btn-icon-el-default-medium.x5-btn-glyph {
color: #999999; }
/* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-left > .x5-btn-icon-el-default-medium {
margin-right: 0px; }
/* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-medium {
margin-left: 0px; }
/* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-top > .x5-btn-icon-el-default-medium {
margin-bottom: 4px; }
/* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-bottom > .x5-btn-icon-el-default-medium {
margin-top: 4px; }
/* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-medium {
padding-right: 4px; }
/* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-medium {
margin-right: 4px; }
/* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-bottom > .x5-btn-button-default-medium,
.x5-btn-split-bottom > .x5-btn-button-default-medium {
padding-bottom: 3px; }
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-medium.x5-btn-arrow-right:after {
width: 8px;
padding-right: 8px;
background-image: url(images/button/arrow.gif); }
/* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-medium.x5-btn-arrow-bottom:after {
height: 8px;
background-image: url(images/button/arrow.gif); }
/* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-medium.x5-btn-split-right:after {
width: 14px;
padding-right: 14px;
background-image: url(images/button/s-arrow.gif); }
/* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-medium.x5-btn-split-bottom:after {
height: 14px;
background-image: url(images/button/s-arrow-b.gif); }
/* line 606, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-medium.x5-btn-split-right:after {
background-image: url(images/button/s-arrow-o.gif); }
/* line 616, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-medium.x5-btn-split-bottom:after {
background-image: url(images/button/s-arrow-bo.gif); }
/* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-medium {
padding-right: 4px; }
/* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-medium {
margin-right: 4px; }
/* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-medium {
border-color: #b0ccf2;
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%, #e7e7e7), color-stop(100%, #ececec));
background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec); }
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-medium .x5-btn-wrap {
outline: 1px dotted #333333; }
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over.x5-btn-default-medium {
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: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
/* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active.x5-btn-default-medium,
.x5-btn.x5-btn-pressed.x5-btn-default-medium {
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: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
/* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled.x5-btn-default-medium {
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: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
/* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-medium-tl,
.x5-btn-focus .x5-btn-default-medium-bl,
.x5-btn-focus .x5-btn-default-medium-tr,
.x5-btn-focus .x5-btn-default-medium-br,
.x5-btn-focus .x5-btn-default-medium-tc,
.x5-btn-focus .x5-btn-default-medium-bc {
background-image: url(images/btn/btn-default-medium-focus-corners.gif); }
/* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-medium-ml,
.x5-btn-focus .x5-btn-default-medium-mr {
background-image: url(images/btn/btn-default-medium-focus-sides.gif); }
/* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-medium-mc {
background-color: white;
background-image: url(images/btn/btn-default-medium-focus-fbg.gif); }
/* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-medium-tl,
.x5-btn-over .x5-btn-default-medium-bl,
.x5-btn-over .x5-btn-default-medium-tr,
.x5-btn-over .x5-btn-default-medium-br,
.x5-btn-over .x5-btn-default-medium-tc,
.x5-btn-over .x5-btn-default-medium-bc {
background-image: url(images/btn/btn-default-medium-over-corners.gif); }
/* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-medium-ml,
.x5-btn-over .x5-btn-default-medium-mr {
background-image: url(images/btn/btn-default-medium-over-sides.gif); }
/* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-medium-mc {
background-color: #e4f3ff;
background-image: url(images/btn/btn-default-medium-over-fbg.gif); }
/* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-medium-tl,
.x5-btn-focus.x5-btn-over .x5-btn-default-medium-bl,
.x5-btn-focus.x5-btn-over .x5-btn-default-medium-tr,
.x5-btn-focus.x5-btn-over .x5-btn-default-medium-br,
.x5-btn-focus.x5-btn-over .x5-btn-default-medium-tc,
.x5-btn-focus.x5-btn-over .x5-btn-default-medium-bc {
background-image: url(images/btn/btn-default-medium-focus-over-corners.gif); }
/* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-medium-ml,
.x5-btn-focus.x5-btn-over .x5-btn-default-medium-mr {
background-image: url(images/btn/btn-default-medium-focus-over-sides.gif); }
/* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-medium-mc {
background-color: #e4f3ff;
background-image: url(images/btn/btn-default-medium-focus-over-fbg.gif); }
/* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-medium-tl,
.x5-btn.x5-btn-menu-active .x5-btn-default-medium-bl,
.x5-btn.x5-btn-menu-active .x5-btn-default-medium-tr,
.x5-btn.x5-btn-menu-active .x5-btn-default-medium-br,
.x5-btn.x5-btn-menu-active .x5-btn-default-medium-tc,
.x5-btn.x5-btn-menu-active .x5-btn-default-medium-bc,
.x5-btn.x5-btn-pressed .x5-btn-default-medium-tl,
.x5-btn.x5-btn-pressed .x5-btn-default-medium-bl,
.x5-btn.x5-btn-pressed .x5-btn-default-medium-tr,
.x5-btn.x5-btn-pressed .x5-btn-default-medium-br,
.x5-btn.x5-btn-pressed .x5-btn-default-medium-tc,
.x5-btn.x5-btn-pressed .x5-btn-default-medium-bc {
background-image: url(images/btn/btn-default-medium-pressed-corners.gif); }
/* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-medium-ml,
.x5-btn.x5-btn-menu-active .x5-btn-default-medium-mr,
.x5-btn.x5-btn-pressed .x5-btn-default-medium-ml,
.x5-btn.x5-btn-pressed .x5-btn-default-medium-mr {
background-image: url(images/btn/btn-default-medium-pressed-sides.gif); }
/* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-medium-mc,
.x5-btn.x5-btn-pressed .x5-btn-default-medium-mc {
background-color: #b6cbe4;
background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); }
/* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-medium-tl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-medium-bl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-medium-tr,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-medium-br,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-medium-tc,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-medium-bc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-medium-tl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-medium-bl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-medium-tr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-medium-br,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-medium-tc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-medium-bc {
background-image: url(images/btn/btn-default-medium-focus-pressed-corners.gif); }
/* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-medium-ml,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-medium-mr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-medium-ml,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-medium-mr {
background-image: url(images/btn/btn-default-medium-focus-pressed-sides.gif); }
/* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-medium-mc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-medium-mc {
background-color: #b6cbe4;
background-image: url(images/btn/btn-default-medium-focus-pressed-fbg.gif); }
/* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-medium-tl,
.x5-btn.x5-btn-disabled .x5-btn-default-medium-bl,
.x5-btn.x5-btn-disabled .x5-btn-default-medium-tr,
.x5-btn.x5-btn-disabled .x5-btn-default-medium-br,
.x5-btn.x5-btn-disabled .x5-btn-default-medium-tc,
.x5-btn.x5-btn-disabled .x5-btn-default-medium-bc {
background-image: url(images/btn/btn-default-medium-disabled-corners.gif); }
/* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-medium-ml,
.x5-btn.x5-btn-disabled .x5-btn-default-medium-mr {
background-image: url(images/btn/btn-default-medium-disabled-sides.gif); }
/* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-medium-mc {
background-color: #f7f7f7;
background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); }
/* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-btn-default-medium {
background-image: none; }
/* line 971, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-disabled.x5-btn-default-medium .x5-btn-inner,
.x5-btn-disabled.x5-btn-default-medium .x5-btn-icon-el {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5; }
/* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-medium.x5-segmented-button-first {
border-right-width: 1px !important; }
/* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-medium.x5-segmented-button-first .x5-btn-default-medium-mc {
padding-right: 3px !important; }
/* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-medium.x5-segmented-button-middle {
border-right-width: 1px !important; }
/* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-medium.x5-segmented-button-middle .x5-btn-default-medium-mc {
padding-right: 3px !important;
padding-left: 3px !important; }
/* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-medium.x5-segmented-button-last .x5-btn-default-medium-mc {
padding-left: 3px !important; }
/* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-medium.x5-segmented-button-first {
border-bottom-width: 1px !important; }
/* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-medium.x5-segmented-button-first .x5-btn-default-medium-mc {
padding-bottom: 3px !important; }
/* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-medium.x5-segmented-button-middle {
border-bottom-width: 1px !important; }
/* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-medium.x5-segmented-button-middle .x5-btn-default-medium-mc {
padding-top: 3px !important;
padding-bottom: 3px !important; }
/* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-medium.x5-segmented-button-last .x5-btn-default-medium-mc {
padding-top: 3px !important; }
/* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item.x5-btn-default-medium:after {
content: ' ';
border-style: solid;
border-width: 0;
position: absolute; }
/* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-medium:after {
top: 1px;
right: 0;
bottom: 1px;
left: 0; }
/* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-medium.x5-segmented-button-first:after {
left: 1px; }
/* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-medium.x5-segmented-button-last:after {
right: 1px; }
/* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-medium:after {
top: 0;
right: 1px;
bottom: 0;
left: 1px; }
/* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-medium.x5-segmented-button-first:after {
top: 1px; }
/* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-medium.x5-segmented-button-last:after {
bottom: 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-default-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-over.x5-btn-default-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-over.x5-btn-default-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-focus-over-corners.gif), sides:url(images/btn/btn-default-medium-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-pressed.x5-btn-default-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-pressed.x5-btn-default-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-focus-pressed-corners.gif), sides:url(images/btn/btn-default-medium-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-disabled.x5-btn-default-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-medium-cell > .x5-grid-cell-inner {
padding-top: 0;
padding-bottom: 0; }
/* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-medium-cell > .x5-grid-cell-inner > .x5-btn-default-medium {
vertical-align: top; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-mc {
background-image: url(images/btn/btn-default-large-fbg.gif);
background-position: 0 top;
background-color: white; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-btn-default-large {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-frameInfo {
font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-tl {
background-position: 0 -6px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-tr {
background-position: right -9px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-bl {
background-position: 0 -12px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-br {
background-position: right -15px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-bc {
background-position: 0 -3px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-tr,
.x5-btn-default-large-br,
.x5-btn-default-large-mr {
padding-right: 3px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-tl,
.x5-btn-default-large-bl,
.x5-btn-default-large-ml {
padding-left: 3px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-tc {
height: 3px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-bc {
height: 3px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-tl,
.x5-btn-default-large-bl,
.x5-btn-default-large-tr,
.x5-btn-default-large-br,
.x5-btn-default-large-tc,
.x5-btn-default-large-bc,
.x5-btn-default-large-ml,
.x5-btn-default-large-mr {
background-image: url(images/btn/btn-default-large-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-ml,
.x5-btn-default-large-mr {
background-image: url(images/btn/btn-default-large-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-large-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-default-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-default-large-fbg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-default-large {
border-color: #d1d1d1; }
/* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-button-default-large {
height: 32px; }
/* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-inner-default-large {
font: normal 11px/16px tahoma, arial, verdana, sans-serif;
color: #333333;
padding: 0 4px;
max-width: 100%; }
/* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-right > .x5-btn-inner-default-large, .x5-btn-icon-left > .x5-btn-inner-default-large {
max-width: calc(100% - 32px); }
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-large {
height: 32px; }
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-left > .x5-btn-icon-el-default-large, .x5-btn-icon-right > .x5-btn-icon-el-default-large {
width: 32px; }
/* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-top > .x5-btn-icon-el-default-large, .x5-btn-icon-bottom > .x5-btn-icon-el-default-large {
min-width: 32px; }
/* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-large.x5-btn-glyph {
font-size: 32px;
line-height: 32px;
color: #333333;
opacity: 0.5; }
/* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-ie8 .x5-btn-icon-el-default-large.x5-btn-glyph {
color: #999999; }
/* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-left > .x5-btn-icon-el-default-large {
margin-right: 0px; }
/* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-large {
margin-left: 0px; }
/* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-top > .x5-btn-icon-el-default-large {
margin-bottom: 4px; }
/* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-bottom > .x5-btn-icon-el-default-large {
margin-top: 4px; }
/* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-large {
padding-right: 4px; }
/* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-large {
margin-right: 4px; }
/* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-bottom > .x5-btn-button-default-large,
.x5-btn-split-bottom > .x5-btn-button-default-large {
padding-bottom: 3px; }
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-large.x5-btn-arrow-right:after {
width: 8px;
padding-right: 8px;
background-image: url(images/button/arrow.gif); }
/* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-large.x5-btn-arrow-bottom:after {
height: 8px;
background-image: url(images/button/arrow.gif); }
/* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-large.x5-btn-split-right:after {
width: 14px;
padding-right: 14px;
background-image: url(images/button/s-arrow.gif); }
/* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-large.x5-btn-split-bottom:after {
height: 14px;
background-image: url(images/button/s-arrow-b.gif); }
/* line 606, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-large.x5-btn-split-right:after {
background-image: url(images/button/s-arrow-o.gif); }
/* line 616, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-large.x5-btn-split-bottom:after {
background-image: url(images/button/s-arrow-bo.gif); }
/* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-large {
padding-right: 4px; }
/* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-large {
margin-right: 4px; }
/* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-large {
border-color: #b0ccf2;
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%, #e7e7e7), color-stop(100%, #ececec));
background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec); }
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-large .x5-btn-wrap {
outline: 1px dotted #333333; }
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over.x5-btn-default-large {
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: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
/* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active.x5-btn-default-large,
.x5-btn.x5-btn-pressed.x5-btn-default-large {
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: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
/* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled.x5-btn-default-large {
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: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
/* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-large-tl,
.x5-btn-focus .x5-btn-default-large-bl,
.x5-btn-focus .x5-btn-default-large-tr,
.x5-btn-focus .x5-btn-default-large-br,
.x5-btn-focus .x5-btn-default-large-tc,
.x5-btn-focus .x5-btn-default-large-bc {
background-image: url(images/btn/btn-default-large-focus-corners.gif); }
/* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-large-ml,
.x5-btn-focus .x5-btn-default-large-mr {
background-image: url(images/btn/btn-default-large-focus-sides.gif); }
/* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-large-mc {
background-color: white;
background-image: url(images/btn/btn-default-large-focus-fbg.gif); }
/* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-large-tl,
.x5-btn-over .x5-btn-default-large-bl,
.x5-btn-over .x5-btn-default-large-tr,
.x5-btn-over .x5-btn-default-large-br,
.x5-btn-over .x5-btn-default-large-tc,
.x5-btn-over .x5-btn-default-large-bc {
background-image: url(images/btn/btn-default-large-over-corners.gif); }
/* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-large-ml,
.x5-btn-over .x5-btn-default-large-mr {
background-image: url(images/btn/btn-default-large-over-sides.gif); }
/* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-large-mc {
background-color: #e4f3ff;
background-image: url(images/btn/btn-default-large-over-fbg.gif); }
/* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-large-tl,
.x5-btn-focus.x5-btn-over .x5-btn-default-large-bl,
.x5-btn-focus.x5-btn-over .x5-btn-default-large-tr,
.x5-btn-focus.x5-btn-over .x5-btn-default-large-br,
.x5-btn-focus.x5-btn-over .x5-btn-default-large-tc,
.x5-btn-focus.x5-btn-over .x5-btn-default-large-bc {
background-image: url(images/btn/btn-default-large-focus-over-corners.gif); }
/* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-large-ml,
.x5-btn-focus.x5-btn-over .x5-btn-default-large-mr {
background-image: url(images/btn/btn-default-large-focus-over-sides.gif); }
/* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-large-mc {
background-color: #e4f3ff;
background-image: url(images/btn/btn-default-large-focus-over-fbg.gif); }
/* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-large-tl,
.x5-btn.x5-btn-menu-active .x5-btn-default-large-bl,
.x5-btn.x5-btn-menu-active .x5-btn-default-large-tr,
.x5-btn.x5-btn-menu-active .x5-btn-default-large-br,
.x5-btn.x5-btn-menu-active .x5-btn-default-large-tc,
.x5-btn.x5-btn-menu-active .x5-btn-default-large-bc,
.x5-btn.x5-btn-pressed .x5-btn-default-large-tl,
.x5-btn.x5-btn-pressed .x5-btn-default-large-bl,
.x5-btn.x5-btn-pressed .x5-btn-default-large-tr,
.x5-btn.x5-btn-pressed .x5-btn-default-large-br,
.x5-btn.x5-btn-pressed .x5-btn-default-large-tc,
.x5-btn.x5-btn-pressed .x5-btn-default-large-bc {
background-image: url(images/btn/btn-default-large-pressed-corners.gif); }
/* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-large-ml,
.x5-btn.x5-btn-menu-active .x5-btn-default-large-mr,
.x5-btn.x5-btn-pressed .x5-btn-default-large-ml,
.x5-btn.x5-btn-pressed .x5-btn-default-large-mr {
background-image: url(images/btn/btn-default-large-pressed-sides.gif); }
/* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-large-mc,
.x5-btn.x5-btn-pressed .x5-btn-default-large-mc {
background-color: #b6cbe4;
background-image: url(images/btn/btn-default-large-pressed-fbg.gif); }
/* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-large-tl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-large-bl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-large-tr,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-large-br,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-large-tc,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-large-bc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-large-tl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-large-bl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-large-tr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-large-br,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-large-tc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-large-bc {
background-image: url(images/btn/btn-default-large-focus-pressed-corners.gif); }
/* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-large-ml,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-large-mr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-large-ml,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-large-mr {
background-image: url(images/btn/btn-default-large-focus-pressed-sides.gif); }
/* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-large-mc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-large-mc {
background-color: #b6cbe4;
background-image: url(images/btn/btn-default-large-focus-pressed-fbg.gif); }
/* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-large-tl,
.x5-btn.x5-btn-disabled .x5-btn-default-large-bl,
.x5-btn.x5-btn-disabled .x5-btn-default-large-tr,
.x5-btn.x5-btn-disabled .x5-btn-default-large-br,
.x5-btn.x5-btn-disabled .x5-btn-default-large-tc,
.x5-btn.x5-btn-disabled .x5-btn-default-large-bc {
background-image: url(images/btn/btn-default-large-disabled-corners.gif); }
/* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-large-ml,
.x5-btn.x5-btn-disabled .x5-btn-default-large-mr {
background-image: url(images/btn/btn-default-large-disabled-sides.gif); }
/* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-large-mc {
background-color: #f7f7f7;
background-image: url(images/btn/btn-default-large-disabled-fbg.gif); }
/* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-btn-default-large {
background-image: none; }
/* line 971, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-disabled.x5-btn-default-large .x5-btn-inner,
.x5-btn-disabled.x5-btn-default-large .x5-btn-icon-el {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5; }
/* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-large.x5-segmented-button-first {
border-right-width: 1px !important; }
/* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-large.x5-segmented-button-first .x5-btn-default-large-mc {
padding-right: 3px !important; }
/* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-large.x5-segmented-button-middle {
border-right-width: 1px !important; }
/* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-large.x5-segmented-button-middle .x5-btn-default-large-mc {
padding-right: 3px !important;
padding-left: 3px !important; }
/* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-large.x5-segmented-button-last .x5-btn-default-large-mc {
padding-left: 3px !important; }
/* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-large.x5-segmented-button-first {
border-bottom-width: 1px !important; }
/* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-large.x5-segmented-button-first .x5-btn-default-large-mc {
padding-bottom: 3px !important; }
/* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-large.x5-segmented-button-middle {
border-bottom-width: 1px !important; }
/* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-large.x5-segmented-button-middle .x5-btn-default-large-mc {
padding-top: 3px !important;
padding-bottom: 3px !important; }
/* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-large.x5-segmented-button-last .x5-btn-default-large-mc {
padding-top: 3px !important; }
/* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item.x5-btn-default-large:after {
content: ' ';
border-style: solid;
border-width: 0;
position: absolute; }
/* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-large:after {
top: 1px;
right: 0;
bottom: 1px;
left: 0; }
/* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-large.x5-segmented-button-first:after {
left: 1px; }
/* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-large.x5-segmented-button-last:after {
right: 1px; }
/* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-large:after {
top: 0;
right: 1px;
bottom: 0;
left: 1px; }
/* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-large.x5-segmented-button-first:after {
top: 1px; }
/* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-large.x5-segmented-button-last:after {
bottom: 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-default-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-over.x5-btn-default-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-over.x5-btn-default-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-focus-over-corners.gif), sides:url(images/btn/btn-default-large-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-pressed.x5-btn-default-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-pressed.x5-btn-default-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-focus-pressed-corners.gif), sides:url(images/btn/btn-default-large-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-disabled.x5-btn-default-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-large-cell > .x5-grid-cell-inner {
padding-top: 0;
padding-bottom: 0; }
/* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-large-cell > .x5-grid-cell-inner > .x5-btn-default-large {
vertical-align: top; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-mc {
background-color: transparent; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-btn-default-toolbar-small {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-frameInfo {
font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-tl {
background-position: 0 -6px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-tr {
background-position: right -9px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-bl {
background-position: 0 -12px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-br {
background-position: right -15px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-bc {
background-position: 0 -3px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-tr,
.x5-btn-default-toolbar-small-br,
.x5-btn-default-toolbar-small-mr {
padding-right: 3px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-tl,
.x5-btn-default-toolbar-small-bl,
.x5-btn-default-toolbar-small-ml {
padding-left: 3px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-tc {
height: 3px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-bc {
height: 3px; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-small-mc {
padding: 0px 0px 0px 0px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-default-toolbar-small:before {
display: none;
content: "x-slicer:frame:3px 3px 3px 3px" !important; }
/*</if slicer>*/
/* */
/* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-default-toolbar-small {
border-color: transparent; }
/* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-button-default-toolbar-small {
height: 16px; }
/* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-inner-default-toolbar-small {
font: normal 11px/16px tahoma, arial, verdana, sans-serif;
color: #333333;
padding: 0 4px;
max-width: 100%; }
/* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-right > .x5-btn-inner-default-toolbar-small, .x5-btn-icon-left > .x5-btn-inner-default-toolbar-small {
max-width: calc(100% - 16px); }
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-toolbar-small {
height: 16px; }
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-left > .x5-btn-icon-el-default-toolbar-small, .x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-small {
width: 16px; }
/* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-top > .x5-btn-icon-el-default-toolbar-small, .x5-btn-icon-bottom > .x5-btn-icon-el-default-toolbar-small {
min-width: 16px; }
/* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-toolbar-small.x5-btn-glyph {
font-size: 16px;
line-height: 16px;
color: #333333;
opacity: 0.5; }
/* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-ie8 .x5-btn-icon-el-default-toolbar-small.x5-btn-glyph {
color: #999999; }
/* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-left > .x5-btn-icon-el-default-toolbar-small {
margin-right: 0px; }
/* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-small {
margin-left: 0px; }
/* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-top > .x5-btn-icon-el-default-toolbar-small {
margin-bottom: 4px; }
/* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-bottom > .x5-btn-icon-el-default-toolbar-small {
margin-top: 4px; }
/* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-toolbar-small {
padding-right: 4px; }
/* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-small {
margin-right: 4px; }
/* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-bottom > .x5-btn-button-default-toolbar-small,
.x5-btn-split-bottom > .x5-btn-button-default-toolbar-small {
padding-bottom: 2px; }
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-small.x5-btn-arrow-right:after {
width: 8px;
padding-right: 8px;
background-image: url(images/button/arrow.gif); }
/* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-small.x5-btn-arrow-bottom:after {
height: 8px;
background-image: url(images/button/arrow.gif); }
/* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-small.x5-btn-split-right:after {
width: 14px;
padding-right: 14px;
background-image: url(images/button/s-arrow-noline.gif); }
/* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-small.x5-btn-split-bottom:after {
height: 14px;
background-image: url(images/button/s-arrow-b-noline.gif); }
/* line 606, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-toolbar-small.x5-btn-split-right:after {
background-image: url(images/button/s-arrow-o.gif); }
/* line 616, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-toolbar-small.x5-btn-split-bottom:after {
background-image: url(images/button/s-arrow-bo.gif); }
/* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-toolbar-small {
padding-right: 4px; }
/* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-small {
margin-right: 4px; }
/* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-toolbar-small {
background-image: none;
background-color: transparent; }
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-toolbar-small .x5-btn-wrap {
outline: 1px dotted #333333; }
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over.x5-btn-default-toolbar-small {
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: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
/* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active.x5-btn-default-toolbar-small,
.x5-btn.x5-btn-pressed.x5-btn-default-toolbar-small {
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: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
/* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled.x5-btn-default-toolbar-small {
border-color: #e1e1e1;
background-image: none;
background-color: transparent; }
/* line 790, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled.x5-btn-default-toolbar-small .x5-btn-inner {
color: #8c8c8c; }
/* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-toolbar-small-tl,
.x5-btn-focus .x5-btn-default-toolbar-small-bl,
.x5-btn-focus .x5-btn-default-toolbar-small-tr,
.x5-btn-focus .x5-btn-default-toolbar-small-br,
.x5-btn-focus .x5-btn-default-toolbar-small-tc,
.x5-btn-focus .x5-btn-default-toolbar-small-bc {
background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); }
/* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-toolbar-small-ml,
.x5-btn-focus .x5-btn-default-toolbar-small-mr {
background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); }
/* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-toolbar-small-mc {
background-color: transparent;
background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif); }
/* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-toolbar-small-tl,
.x5-btn-over .x5-btn-default-toolbar-small-bl,
.x5-btn-over .x5-btn-default-toolbar-small-tr,
.x5-btn-over .x5-btn-default-toolbar-small-br,
.x5-btn-over .x5-btn-default-toolbar-small-tc,
.x5-btn-over .x5-btn-default-toolbar-small-bc {
background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); }
/* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-toolbar-small-ml,
.x5-btn-over .x5-btn-default-toolbar-small-mr {
background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); }
/* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-toolbar-small-mc {
background-color: #dbeeff;
background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif); }
/* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-small-tl,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-small-bl,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-small-tr,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-small-br,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-small-tc,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-small-bc {
background-image: url(images/btn/btn-default-toolbar-small-focus-over-corners.gif); }
/* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-small-ml,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-small-mr {
background-image: url(images/btn/btn-default-toolbar-small-focus-over-sides.gif); }
/* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-small-mc {
background-color: #dbeeff;
background-image: url(images/btn/btn-default-toolbar-small-focus-over-fbg.gif); }
/* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-small-tl,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-small-bl,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-small-tr,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-small-br,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-small-tc,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-small-bc,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-small-tl,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-small-bl,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-small-tr,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-small-br,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-small-tc,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-small-bc {
background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); }
/* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-small-ml,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-small-mr,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-small-ml,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-small-mr {
background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); }
/* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-small-mc,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-small-mc {
background-color: #bccfe5;
background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif); }
/* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-small-tl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-small-bl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-small-tr,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-small-br,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-small-tc,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-small-bc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-small-tl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-small-bl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-small-tr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-small-br,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-small-tc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-small-bc {
background-image: url(images/btn/btn-default-toolbar-small-focus-pressed-corners.gif); }
/* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-small-ml,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-small-mr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-small-ml,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-small-mr {
background-image: url(images/btn/btn-default-toolbar-small-focus-pressed-sides.gif); }
/* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-small-mc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-small-mc {
background-color: #bccfe5;
background-image: url(images/btn/btn-default-toolbar-small-focus-pressed-fbg.gif); }
/* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-small-tl,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-small-bl,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-small-tr,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-small-br,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-small-tc,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-small-bc {
background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); }
/* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-small-ml,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-small-mr {
background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); }
/* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-small-mc {
background-color: transparent;
background-image: url(images/btn/btn-default-toolbar-small-disabled-fbg.gif); }
/* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-btn-default-toolbar-small {
background-image: none; }
/* line 963, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-disabled.x5-btn-default-toolbar-small {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5; }
/* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-small.x5-segmented-button-first {
border-right-width: 1px !important; }
/* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-small.x5-segmented-button-first .x5-btn-default-toolbar-small-mc {
padding-right: 2px !important; }
/* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-small.x5-segmented-button-middle {
border-right-width: 1px !important; }
/* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-small.x5-segmented-button-middle .x5-btn-default-toolbar-small-mc {
padding-right: 2px !important;
padding-left: 2px !important; }
/* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-small.x5-segmented-button-last .x5-btn-default-toolbar-small-mc {
padding-left: 2px !important; }
/* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-small.x5-segmented-button-first {
border-bottom-width: 1px !important; }
/* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-small.x5-segmented-button-first .x5-btn-default-toolbar-small-mc {
padding-bottom: 2px !important; }
/* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-small.x5-segmented-button-middle {
border-bottom-width: 1px !important; }
/* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-small.x5-segmented-button-middle .x5-btn-default-toolbar-small-mc {
padding-top: 2px !important;
padding-bottom: 2px !important; }
/* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-small.x5-segmented-button-last .x5-btn-default-toolbar-small-mc {
padding-top: 2px !important; }
/* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item.x5-btn-default-toolbar-small:after {
content: ' ';
border-style: solid;
border-width: 0;
position: absolute; }
/* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-small:after {
top: 1px;
right: 0;
bottom: 1px;
left: 0; }
/* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-small.x5-segmented-button-first:after {
left: 1px; }
/* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-small.x5-segmented-button-last:after {
right: 1px; }
/* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-small:after {
top: 0;
right: 1px;
bottom: 0;
left: 1px; }
/* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-small.x5-segmented-button-first:after {
top: 1px; }
/* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-small.x5-segmented-button-last:after {
bottom: 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-default-toolbar-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-over.x5-btn-default-toolbar-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-over.x5-btn-default-toolbar-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-focus-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-pressed.x5-btn-default-toolbar-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-pressed.x5-btn-default-toolbar-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-focus-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-disabled.x5-btn-default-toolbar-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-disabled-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-toolbar-small-cell > .x5-grid-cell-inner {
padding-top: 0;
padding-bottom: 0; }
/* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-toolbar-small-cell > .x5-grid-cell-inner > .x5-btn-default-toolbar-small {
vertical-align: top; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-mc {
background-color: transparent; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-btn-default-toolbar-medium {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-frameInfo {
font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-tl {
background-position: 0 -6px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-tr {
background-position: right -9px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-bl {
background-position: 0 -12px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-br {
background-position: right -15px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-bc {
background-position: 0 -3px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-tr,
.x5-btn-default-toolbar-medium-br,
.x5-btn-default-toolbar-medium-mr {
padding-right: 3px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-tl,
.x5-btn-default-toolbar-medium-bl,
.x5-btn-default-toolbar-medium-ml {
padding-left: 3px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-tc {
height: 3px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-bc {
height: 3px; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-medium-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-default-toolbar-medium:before {
display: none;
content: "x-slicer:frame:3px 3px 3px 3px" !important; }
/*</if slicer>*/
/* */
/* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-default-toolbar-medium {
border-color: transparent; }
/* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-button-default-toolbar-medium {
height: 24px; }
/* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-inner-default-toolbar-medium {
font: normal 11px/16px tahoma, arial, verdana, sans-serif;
color: #333333;
padding: 0 4px;
max-width: 100%; }
/* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-right > .x5-btn-inner-default-toolbar-medium, .x5-btn-icon-left > .x5-btn-inner-default-toolbar-medium {
max-width: calc(100% - 24px); }
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-toolbar-medium {
height: 24px; }
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-left > .x5-btn-icon-el-default-toolbar-medium, .x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-medium {
width: 24px; }
/* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-top > .x5-btn-icon-el-default-toolbar-medium, .x5-btn-icon-bottom > .x5-btn-icon-el-default-toolbar-medium {
min-width: 24px; }
/* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-toolbar-medium.x5-btn-glyph {
font-size: 24px;
line-height: 24px;
color: #333333;
opacity: 0.5; }
/* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-ie8 .x5-btn-icon-el-default-toolbar-medium.x5-btn-glyph {
color: #999999; }
/* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-left > .x5-btn-icon-el-default-toolbar-medium {
margin-right: 0px; }
/* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-medium {
margin-left: 0px; }
/* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-top > .x5-btn-icon-el-default-toolbar-medium {
margin-bottom: 4px; }
/* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-bottom > .x5-btn-icon-el-default-toolbar-medium {
margin-top: 4px; }
/* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-toolbar-medium {
padding-right: 4px; }
/* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-medium {
margin-right: 4px; }
/* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-bottom > .x5-btn-button-default-toolbar-medium,
.x5-btn-split-bottom > .x5-btn-button-default-toolbar-medium {
padding-bottom: 3px; }
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-medium.x5-btn-arrow-right:after {
width: 8px;
padding-right: 8px;
background-image: url(images/button/arrow.gif); }
/* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-medium.x5-btn-arrow-bottom:after {
height: 8px;
background-image: url(images/button/arrow.gif); }
/* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-medium.x5-btn-split-right:after {
width: 14px;
padding-right: 14px;
background-image: url(images/button/s-arrow-noline.gif); }
/* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-medium.x5-btn-split-bottom:after {
height: 14px;
background-image: url(images/button/s-arrow-b-noline.gif); }
/* line 606, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-toolbar-medium.x5-btn-split-right:after {
background-image: url(images/button/s-arrow-o.gif); }
/* line 616, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-toolbar-medium.x5-btn-split-bottom:after {
background-image: url(images/button/s-arrow-bo.gif); }
/* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-toolbar-medium {
padding-right: 4px; }
/* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-medium {
margin-right: 4px; }
/* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-toolbar-medium {
background-image: none;
background-color: transparent; }
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-toolbar-medium .x5-btn-wrap {
outline: 1px dotted #333333; }
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over.x5-btn-default-toolbar-medium {
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: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
/* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active.x5-btn-default-toolbar-medium,
.x5-btn.x5-btn-pressed.x5-btn-default-toolbar-medium {
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: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
/* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled.x5-btn-default-toolbar-medium {
border-color: #e1e1e1;
background-image: none;
background-color: transparent; }
/* line 790, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled.x5-btn-default-toolbar-medium .x5-btn-inner {
color: #8c8c8c; }
/* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-toolbar-medium-tl,
.x5-btn-focus .x5-btn-default-toolbar-medium-bl,
.x5-btn-focus .x5-btn-default-toolbar-medium-tr,
.x5-btn-focus .x5-btn-default-toolbar-medium-br,
.x5-btn-focus .x5-btn-default-toolbar-medium-tc,
.x5-btn-focus .x5-btn-default-toolbar-medium-bc {
background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); }
/* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-toolbar-medium-ml,
.x5-btn-focus .x5-btn-default-toolbar-medium-mr {
background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); }
/* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-toolbar-medium-mc {
background-color: transparent;
background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif); }
/* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-toolbar-medium-tl,
.x5-btn-over .x5-btn-default-toolbar-medium-bl,
.x5-btn-over .x5-btn-default-toolbar-medium-tr,
.x5-btn-over .x5-btn-default-toolbar-medium-br,
.x5-btn-over .x5-btn-default-toolbar-medium-tc,
.x5-btn-over .x5-btn-default-toolbar-medium-bc {
background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); }
/* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-toolbar-medium-ml,
.x5-btn-over .x5-btn-default-toolbar-medium-mr {
background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); }
/* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-toolbar-medium-mc {
background-color: #dbeeff;
background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif); }
/* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-medium-tl,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-medium-bl,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-medium-tr,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-medium-br,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-medium-tc,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-medium-bc {
background-image: url(images/btn/btn-default-toolbar-medium-focus-over-corners.gif); }
/* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-medium-ml,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-medium-mr {
background-image: url(images/btn/btn-default-toolbar-medium-focus-over-sides.gif); }
/* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-medium-mc {
background-color: #dbeeff;
background-image: url(images/btn/btn-default-toolbar-medium-focus-over-fbg.gif); }
/* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-medium-tl,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-medium-bl,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-medium-tr,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-medium-br,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-medium-tc,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-medium-bc,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-medium-tl,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-medium-bl,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-medium-tr,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-medium-br,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-medium-tc,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-medium-bc {
background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); }
/* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-medium-ml,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-medium-mr,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-medium-ml,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-medium-mr {
background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); }
/* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-medium-mc,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-medium-mc {
background-color: #bccfe5;
background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif); }
/* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-medium-tl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-medium-bl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-medium-tr,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-medium-br,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-medium-tc,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-medium-bc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-medium-tl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-medium-bl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-medium-tr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-medium-br,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-medium-tc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-medium-bc {
background-image: url(images/btn/btn-default-toolbar-medium-focus-pressed-corners.gif); }
/* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-medium-ml,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-medium-mr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-medium-ml,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-medium-mr {
background-image: url(images/btn/btn-default-toolbar-medium-focus-pressed-sides.gif); }
/* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-medium-mc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-medium-mc {
background-color: #bccfe5;
background-image: url(images/btn/btn-default-toolbar-medium-focus-pressed-fbg.gif); }
/* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-medium-tl,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-medium-bl,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-medium-tr,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-medium-br,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-medium-tc,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-medium-bc {
background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); }
/* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-medium-ml,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-medium-mr {
background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); }
/* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-medium-mc {
background-color: transparent;
background-image: url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif); }
/* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-btn-default-toolbar-medium {
background-image: none; }
/* line 963, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-disabled.x5-btn-default-toolbar-medium {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5; }
/* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-medium.x5-segmented-button-first {
border-right-width: 1px !important; }
/* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-medium.x5-segmented-button-first .x5-btn-default-toolbar-medium-mc {
padding-right: 3px !important; }
/* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-medium.x5-segmented-button-middle {
border-right-width: 1px !important; }
/* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-medium.x5-segmented-button-middle .x5-btn-default-toolbar-medium-mc {
padding-right: 3px !important;
padding-left: 3px !important; }
/* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-medium.x5-segmented-button-last .x5-btn-default-toolbar-medium-mc {
padding-left: 3px !important; }
/* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-medium.x5-segmented-button-first {
border-bottom-width: 1px !important; }
/* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-medium.x5-segmented-button-first .x5-btn-default-toolbar-medium-mc {
padding-bottom: 3px !important; }
/* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-medium.x5-segmented-button-middle {
border-bottom-width: 1px !important; }
/* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-medium.x5-segmented-button-middle .x5-btn-default-toolbar-medium-mc {
padding-top: 3px !important;
padding-bottom: 3px !important; }
/* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-medium.x5-segmented-button-last .x5-btn-default-toolbar-medium-mc {
padding-top: 3px !important; }
/* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item.x5-btn-default-toolbar-medium:after {
content: ' ';
border-style: solid;
border-width: 0;
position: absolute; }
/* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-medium:after {
top: 1px;
right: 0;
bottom: 1px;
left: 0; }
/* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-medium.x5-segmented-button-first:after {
left: 1px; }
/* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-medium.x5-segmented-button-last:after {
right: 1px; }
/* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-medium:after {
top: 0;
right: 1px;
bottom: 0;
left: 1px; }
/* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-medium.x5-segmented-button-first:after {
top: 1px; }
/* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-medium.x5-segmented-button-last:after {
bottom: 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-default-toolbar-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-over.x5-btn-default-toolbar-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-over.x5-btn-default-toolbar-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-focus-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-pressed.x5-btn-default-toolbar-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-pressed.x5-btn-default-toolbar-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-focus-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-disabled.x5-btn-default-toolbar-medium:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-toolbar-medium-cell > .x5-grid-cell-inner {
padding-top: 0;
padding-bottom: 0; }
/* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-toolbar-medium-cell > .x5-grid-cell-inner > .x5-btn-default-toolbar-medium {
vertical-align: top; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-mc {
background-color: transparent; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-btn-default-toolbar-large {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-frameInfo {
font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-tl {
background-position: 0 -6px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-tr {
background-position: right -9px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-bl {
background-position: 0 -12px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-br {
background-position: right -15px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-bc {
background-position: 0 -3px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-tr,
.x5-btn-default-toolbar-large-br,
.x5-btn-default-toolbar-large-mr {
padding-right: 3px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-tl,
.x5-btn-default-toolbar-large-bl,
.x5-btn-default-toolbar-large-ml {
padding-left: 3px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-tc {
height: 3px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-bc {
height: 3px; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-default-toolbar-large-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-default-toolbar-large:before {
display: none;
content: "x-slicer:frame:3px 3px 3px 3px" !important; }
/*</if slicer>*/
/* */
/* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-default-toolbar-large {
border-color: transparent; }
/* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-button-default-toolbar-large {
height: 32px; }
/* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-inner-default-toolbar-large {
font: normal 11px/16px tahoma, arial, verdana, sans-serif;
color: #333333;
padding: 0 4px;
max-width: 100%; }
/* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-right > .x5-btn-inner-default-toolbar-large, .x5-btn-icon-left > .x5-btn-inner-default-toolbar-large {
max-width: calc(100% - 32px); }
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-toolbar-large {
height: 32px; }
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-left > .x5-btn-icon-el-default-toolbar-large, .x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-large {
width: 32px; }
/* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-top > .x5-btn-icon-el-default-toolbar-large, .x5-btn-icon-bottom > .x5-btn-icon-el-default-toolbar-large {
min-width: 32px; }
/* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-default-toolbar-large.x5-btn-glyph {
font-size: 32px;
line-height: 32px;
color: #333333;
opacity: 0.5; }
/* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-ie8 .x5-btn-icon-el-default-toolbar-large.x5-btn-glyph {
color: #999999; }
/* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-left > .x5-btn-icon-el-default-toolbar-large {
margin-right: 0px; }
/* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-large {
margin-left: 0px; }
/* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-top > .x5-btn-icon-el-default-toolbar-large {
margin-bottom: 4px; }
/* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-bottom > .x5-btn-icon-el-default-toolbar-large {
margin-top: 4px; }
/* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-toolbar-large {
padding-right: 4px; }
/* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-large {
margin-right: 4px; }
/* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-bottom > .x5-btn-button-default-toolbar-large,
.x5-btn-split-bottom > .x5-btn-button-default-toolbar-large {
padding-bottom: 3px; }
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-large.x5-btn-arrow-right:after {
width: 8px;
padding-right: 8px;
background-image: url(images/button/arrow.gif); }
/* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-large.x5-btn-arrow-bottom:after {
height: 8px;
background-image: url(images/button/arrow.gif); }
/* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-large.x5-btn-split-right:after {
width: 14px;
padding-right: 14px;
background-image: url(images/button/s-arrow-noline.gif); }
/* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-default-toolbar-large.x5-btn-split-bottom:after {
height: 14px;
background-image: url(images/button/s-arrow-b-noline.gif); }
/* line 606, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-toolbar-large.x5-btn-split-right:after {
background-image: url(images/button/s-arrow-o.gif); }
/* line 616, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-default-toolbar-large.x5-btn-split-bottom:after {
background-image: url(images/button/s-arrow-bo.gif); }
/* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-default-toolbar-large {
padding-right: 4px; }
/* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-default-toolbar-large {
margin-right: 4px; }
/* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-toolbar-large {
background-image: none;
background-color: transparent; }
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-default-toolbar-large .x5-btn-wrap {
outline: 1px dotted #333333; }
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over.x5-btn-default-toolbar-large {
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: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
/* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active.x5-btn-default-toolbar-large,
.x5-btn.x5-btn-pressed.x5-btn-default-toolbar-large {
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: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
/* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled.x5-btn-default-toolbar-large {
border-color: #e1e1e1;
background-image: none;
background-color: transparent; }
/* line 790, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled.x5-btn-default-toolbar-large .x5-btn-inner {
color: #8c8c8c; }
/* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-toolbar-large-tl,
.x5-btn-focus .x5-btn-default-toolbar-large-bl,
.x5-btn-focus .x5-btn-default-toolbar-large-tr,
.x5-btn-focus .x5-btn-default-toolbar-large-br,
.x5-btn-focus .x5-btn-default-toolbar-large-tc,
.x5-btn-focus .x5-btn-default-toolbar-large-bc {
background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); }
/* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-toolbar-large-ml,
.x5-btn-focus .x5-btn-default-toolbar-large-mr {
background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); }
/* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-default-toolbar-large-mc {
background-color: transparent;
background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif); }
/* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-toolbar-large-tl,
.x5-btn-over .x5-btn-default-toolbar-large-bl,
.x5-btn-over .x5-btn-default-toolbar-large-tr,
.x5-btn-over .x5-btn-default-toolbar-large-br,
.x5-btn-over .x5-btn-default-toolbar-large-tc,
.x5-btn-over .x5-btn-default-toolbar-large-bc {
background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); }
/* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-toolbar-large-ml,
.x5-btn-over .x5-btn-default-toolbar-large-mr {
background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); }
/* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-default-toolbar-large-mc {
background-color: #dbeeff;
background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif); }
/* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-large-tl,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-large-bl,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-large-tr,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-large-br,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-large-tc,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-large-bc {
background-image: url(images/btn/btn-default-toolbar-large-focus-over-corners.gif); }
/* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-large-ml,
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-large-mr {
background-image: url(images/btn/btn-default-toolbar-large-focus-over-sides.gif); }
/* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-default-toolbar-large-mc {
background-color: #dbeeff;
background-image: url(images/btn/btn-default-toolbar-large-focus-over-fbg.gif); }
/* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-large-tl,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-large-bl,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-large-tr,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-large-br,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-large-tc,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-large-bc,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-large-tl,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-large-bl,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-large-tr,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-large-br,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-large-tc,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-large-bc {
background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); }
/* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-large-ml,
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-large-mr,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-large-ml,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-large-mr {
background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); }
/* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-default-toolbar-large-mc,
.x5-btn.x5-btn-pressed .x5-btn-default-toolbar-large-mc {
background-color: #bccfe5;
background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif); }
/* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-large-tl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-large-bl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-large-tr,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-large-br,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-large-tc,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-large-bc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-large-tl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-large-bl,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-large-tr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-large-br,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-large-tc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-large-bc {
background-image: url(images/btn/btn-default-toolbar-large-focus-pressed-corners.gif); }
/* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-large-ml,
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-large-mr,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-large-ml,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-large-mr {
background-image: url(images/btn/btn-default-toolbar-large-focus-pressed-sides.gif); }
/* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-default-toolbar-large-mc,
.x5-btn-focus.x5-btn-pressed .x5-btn-default-toolbar-large-mc {
background-color: #bccfe5;
background-image: url(images/btn/btn-default-toolbar-large-focus-pressed-fbg.gif); }
/* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-large-tl,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-large-bl,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-large-tr,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-large-br,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-large-tc,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-large-bc {
background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); }
/* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-large-ml,
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-large-mr {
background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); }
/* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-default-toolbar-large-mc {
background-color: transparent;
background-image: url(images/btn/btn-default-toolbar-large-disabled-fbg.gif); }
/* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-btn-default-toolbar-large {
background-image: none; }
/* line 963, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-disabled.x5-btn-default-toolbar-large {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5; }
/* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-large.x5-segmented-button-first {
border-right-width: 1px !important; }
/* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-large.x5-segmented-button-first .x5-btn-default-toolbar-large-mc {
padding-right: 3px !important; }
/* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-large.x5-segmented-button-middle {
border-right-width: 1px !important; }
/* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-large.x5-segmented-button-middle .x5-btn-default-toolbar-large-mc {
padding-right: 3px !important;
padding-left: 3px !important; }
/* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-large.x5-segmented-button-last .x5-btn-default-toolbar-large-mc {
padding-left: 3px !important; }
/* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-large.x5-segmented-button-first {
border-bottom-width: 1px !important; }
/* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-large.x5-segmented-button-first .x5-btn-default-toolbar-large-mc {
padding-bottom: 3px !important; }
/* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-large.x5-segmented-button-middle {
border-bottom-width: 1px !important; }
/* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-large.x5-segmented-button-middle .x5-btn-default-toolbar-large-mc {
padding-top: 3px !important;
padding-bottom: 3px !important; }
/* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-large.x5-segmented-button-last .x5-btn-default-toolbar-large-mc {
padding-top: 3px !important; }
/* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item.x5-btn-default-toolbar-large:after {
content: ' ';
border-style: solid;
border-width: 0;
position: absolute; }
/* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-large:after {
top: 1px;
right: 0;
bottom: 1px;
left: 0; }
/* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-large.x5-segmented-button-first:after {
left: 1px; }
/* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-default-toolbar-large.x5-segmented-button-last:after {
right: 1px; }
/* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-large:after {
top: 0;
right: 1px;
bottom: 0;
left: 1px; }
/* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-large.x5-segmented-button-first:after {
top: 1px; }
/* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-default-toolbar-large.x5-segmented-button-last:after {
bottom: 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-default-toolbar-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-over.x5-btn-default-toolbar-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-over.x5-btn-default-toolbar-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-focus-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-pressed.x5-btn-default-toolbar-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-pressed.x5-btn-default-toolbar-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-focus-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-disabled.x5-btn-default-toolbar-large:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-disabled-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-toolbar-large-cell > .x5-grid-cell-inner {
padding-top: 0;
padding-bottom: 0; }
/* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-default-toolbar-large-cell > .x5-grid-cell-inner > .x5-btn-default-toolbar-large {
vertical-align: top; }
/**
* Creates a visual theme for a Tab
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {color} [$ui-background-color=$tab-base-color]
* The background-color of Tabs
*
* @param {color} [$ui-background-color-focus=$tab-base-color-focus]
* The background-color of focused Tabs
*
* @param {color} [$ui-background-color-over=$tab-base-color-over]
* The background-color of hovered Tabs
*
* @param {color} [$ui-background-color-active=$tab-base-color-active]
* The background-color of the active Tab
*
* @param {color} [$ui-background-color-focus-over=$tab-base-color-focus-over]
* The background-color of focused hovered Tabs
*
* @param {color} [$ui-background-color-focus-active=$tab-base-color-focus-active]
* The background-color of the active Tab when focused
*
* @param {color} [$ui-background-color-disabled=$tab-base-color-disabled]
* The background-color of disabled Tabs
*
* @param {list} [$ui-border-radius=$tab-border-radius]
* The border-radius of Tabs
*
* @param {number/list} [$ui-border-width=$tab-border-width]
* The border-width of Tabs
*
* @param {number/list} [$ui-border-width-focus=$tab-border-width-focus]
* The border-width of focused Tabs
*
* @param {number/list} [$ui-border-width-over=$tab-border-width-over]
* The border-width of hovered Tabs
*
* @param {number/list} [$ui-border-width-active=$tab-border-width-active]
* The border-width of active Tabs
*
* @param {number/list} [$ui-border-width-focus-over=$tab-border-width-focus-over]
* The border-width of focused hovered Tabs
*
* @param {number/list} [$ui-border-width-focus-active=$tab-border-width-focus-active]
* The border-width of active Tabs when focused
*
* @param {number/list} [$ui-border-width-disabled=$tab-border-width-disabled]
* The border-width of disabled Tabs
*
* @param {number/list} [$ui-margin=$tab-margin]
* The border-width of Tabs
*
* @param {number/list} [$ui-padding=$tab-padding]
* The padding of Tabs
*
* @param {number/list} [$ui-text-padding=$tab-text-padding]
* The padding of the Tab's text element
*
* @param {color} [$ui-border-color=$tab-border-color]
* The border-color of Tabs
*
* @param {color} [$ui-border-color-focus=$tab-border-color-focus]
* The border-color of focused Tabs
*
* @param {color} [$ui-border-color-over=$tab-border-color-over]
* The border-color of hovered Tabs
*
* @param {color} [$ui-border-color-active=$tab-border-color-active]
* The border-color of the active Tab
*
* @param {color} [$ui-border-color-focus-over=$tab-border-color-focus-over]
* The border-color of focused hovered Tabs
*
* @param {color} [$ui-border-color-focus-active=$tab-border-color-focus-active]
* The border-color of the active Tab when focused
* @param {color} [$ui-border-color-disabled=$tab-border-color-disabled]
* The border-color of disabled Tabs
*
* @param {string} [$ui-cursor=$tab-cursor]
* The Tab cursor
*
* @param {string} [$ui-cursor-disabled=$tab-cursor-disabled]
* The cursor of disabled Tabs
*
* @param {number} [$ui-font-size=$tab-font-size]
* The font-size of Tabs
*
* @param {number} [$ui-font-size-focus=$tab-font-size-focus]
* The font-size of focused Tabs
*
* @param {number} [$ui-font-size-over=$tab-font-size-over]
* The font-size of hovered Tabs
*
* @param {number} [$ui-font-size-active=$tab-font-size-active]
* The font-size of the active Tab
*
* @param {number} [$ui-font-size-focus-over=$tab-font-size-focus-over]
* The font-size of focused hovered Tabs
*
* @param {number} [$ui-font-size-focus-active=$tab-font-size-focus-active]
* The font-size of the active Tab when focused
*
* @param {number} [$ui-font-size-disabled=$tab-font-size-disabled]
* The font-size of disabled Tabs
*
* @param {string} [$ui-font-weight=$tab-font-weight]
* The font-weight of Tabs
*
* @param {string} [$ui-font-weight-focus=$tab-font-weight-focus]
* The font-weight of focused Tabs
*
* @param {string} [$ui-font-weight-over=$tab-font-weight-over]
* The font-weight of hovered Tabs
*
* @param {string} [$ui-font-weight-active=$tab-font-weight-active]
* The font-weight of the active Tab
*
* @param {string} [$ui-font-weight-focus-over=$tab-font-weight-focus-over]
* The font-weight of focused hovered Tabs
*
* @param {string} [$ui-font-weight-focus-active=$tab-font-weight-focus-active]
* The font-weight of the active Tab when focused
*
* @param {string} [$ui-font-weight-disabled=$tab-font-weight-disabled]
* The font-weight of disabled Tabs
*
* @param {string} [$ui-font-family=$tab-font-family]
* The font-family of Tabs
*
* @param {string} [$ui-font-family-focus=$tab-font-family-focus]
* The font-family of focused Tabs
*
* @param {string} [$ui-font-family-over=$tab-font-family-over]
* The font-family of hovered Tabs
*
* @param {string} [$ui-font-family-active=$tab-font-family-active]
* The font-family of the active Tab
*
* @param {string} [$ui-font-family-focus-over=$tab-font-family-focus-over]
* The font-family of focused hovered Tabs
*
* @param {string} [$ui-font-family-focus-active=$tab-font-family-focus-active]
* The font-family of the active Tab when focused
*
* @param {string} [$ui-font-family-disabled=$tab-font-family-disabled]
* The font-family of disabled Tabs
*
* @param {number} [$ui-line-height=$tab-line-height]
* The line-height of Tabs
*
* @param {color} [$ui-color=$tab-color]
* The text color of Tabs
*
* @param {color} [$ui-color-focus=$tab-color-focus]
* The text color of focused Tabs
*
* @param {color} [$ui-color-over=$tab-color-over]
* The text color of hovered Tabs
*
* @param {color} [$ui-color-active=$tab-color-active]
* The text color of the active Tab
*
* @param {color} [$ui-color-focus-over=$tab-color-focus-over]
* The text color of focused hovered Tabs
*
* @param {color} [$ui-color-focus-active=$tab-color-focus-active]
* The text color of the active Tab when focused
*
* @param {color} [$ui-color-disabled=$tab-color-disabled]
* The text color of disabled Tabs
*
* @param {string/list} [$ui-background-gradient=$tab-background-gradient]
* The background-gradient for Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-background-gradient-focus=$tab-background-gradient-focus]
* The background-gradient for focused Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-background-gradient-over=$tab-background-gradient-over]
* The background-gradient for hovered Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-background-gradient-active=$tab-background-gradient-active]
* The background-gradient for the active Tab. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-background-gradient-focus-over=$tab-background-gradient-focus-over]
* The background-gradient for focused hovered Tabs. Can be either the name of a
* predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-background-gradient-focus-active=$tab-background-gradient-focus-active]
* The background-gradient for the active Tab when focused. Can be either the name of a
* predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-background-gradient-disabled=$tab-background-gradient-disabled]
* The background-gradient for disabled Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {number} [$ui-inner-border-width=$tab-inner-border-width]
* The inner border-width of Tabs
*
* @param {number} [$ui-inner-border-width-focus=$tab-inner-border-width-focus]
* The inner border-width of focused Tabs
*
* @param {number} [$ui-inner-border-width-over=$tab-inner-border-width-over]
* The inner border-width of hovered Tabs
*
* @param {number} [$ui-inner-border-width-active=$tab-inner-border-width-active]
* The inner border-width of active Tabs
*
* @param {number} [$ui-inner-border-width-focus-over=$tab-inner-border-width-focus-over]
* The inner border-width of focused hovered Tabs
*
* @param {number} [$ui-inner-border-width-focus-active=$tab-inner-border-width-focus-active]
* The inner border-width of active Tabs when focused
*
* @param {number} [$ui-inner-border-width-disabled=$tab-inner-border-width-disabled]
* The inner border-width of disabled Tabs
*
* @param {color} [$ui-inner-border-color=$tab-inner-border-color]
* The inner border-color of Tabs
*
* @param {color} [$ui-inner-border-color-focus=$tab-inner-border-color-focus]
* The inner border-color of focused Tabs
*
* @param {color} [$ui-inner-border-color-over=$tab-inner-border-color-over]
* The inner border-color of hovered Tabs
*
* @param {color} [$ui-inner-border-color-active=$tab-inner-border-color-active]
* The inner border-color of active Tabs
*
* @param {color} [$ui-inner-border-color-focus-over=$tab-inner-border-color-focus-over]
* The inner border-color of focused hovered Tabs
*
* @param {color} [$ui-inner-border-color-focus-active=$tab-inner-border-color-focus-active]
* The inner border-color of active Tabs when focused
*
* @param {color} [$ui-inner-border-color-disabled=$tab-inner-border-color-disabled]
* The inner border-color of disabled Tabs
*
* @param {boolean} [$ui-inner-border-collapse=$tab-inner-border-collapse]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
*
* @param {boolean} [$ui-inner-border-collapse-focus=$tab-inner-border-collapse-focus]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is focused
*
* @param {boolean} [$ui-inner-border-collapse-over=$tab-inner-border-collapse-over]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is hovered
*
* @param {boolean} [$ui-inner-border-collapse-active=$tab-inner-border-collapse-active]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is active
*
* @param {boolean} [$ui-inner-border-collapse-focus-over=$tab-inner-border-collapse-focus-over]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is focused and hovered
*
* @param {boolean} [$ui-inner-border-collapse-focus-active=$tab-inner-border-collapse-focus-active]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is focused and active
*
* @param {boolean} [$ui-inner-border-collapse-disabled=$tab-inner-border-collapse-disabled]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is disabled
*
* @param {number} [$ui-body-outline-width-focus=$tab-body-outline-width-focus]
* The body outline width of focused Tabs
*
* @param {string} [$ui-body-outline-style-focus=$tab-body-outline-style-focus]
* The body outline-style of focused Tabs
*
* @param {color} [$ui-body-outline-color-focus=$tab-body-outline-color-focus]
* The body outline color of focused Tabs
*
* @param {number} [$ui-icon-width=$tab-icon-width]
* The width of the Tab close icon
*
* @param {number} [$ui-icon-height=$tab-icon-height]
* The height of the Tab close icon
*
* @param {number} [$ui-icon-spacing=$tab-icon-spacing]
* the space in between the text and the close button
*
* @param {list} [$ui-icon-background-position=$tab-icon-background-position]
* The background-position of Tab icons
*
* @param {color} [$ui-glyph-color=$tab-glyph-color]
* The color of Tab glyph icons
*
* @param {color} [$ui-glyph-color-focus=$tab-glyph-color-focus]
* The color of a Tab glyph icon when the Tab is focused
*
* @param {color} [$ui-glyph-color-over=$tab-glyph-color-over]
* The color of a Tab glyph icon when the Tab is hovered
*
* @param {color} [$ui-glyph-color-active=$tab-glyph-color-active]
* The color of a Tab glyph icon when the Tab is active
*
* @param {color} [$ui-glyph-color-focus-over=$tab-glyph-color-focus-over]
* The color of a Tab glyph icon when the Tab is focused and hovered
*
* @param {color} [$ui-glyph-color-focus-active=$tab-glyph-color-focus-active]
* The color of a Tab glyph icon when the Tab is focused and active
*
* @param {color} [$ui-glyph-color-disabled=$tab-glyph-color-disabled]
* The color of a Tab glyph icon when the Tab is disabled
*
* @param {number} [$ui-glyph-opacity=$tab-glyph-opacity]
* The opacity of a Tab glyph icon
*
* @param {number} [$ui-glyph-opacity-disabled=$tab-glyph-opacity-disabled]
* The opacity of a Tab glyph icon when the Tab is disabled
*
* @param {number} [$ui-opacity-disabled=$tab-opacity-disabled]
* opacity to apply to the tab's main element when the tab is disabled
*
* @param {number} [$ui-text-opacity-disabled=$tab-text-opacity-disabled]
* opacity to apply to the tab's text element when the tab is disabled
*
* @param {number} [$ui-icon-opacity-disabled=$tab-icon-opacity-disabled]
* opacity to apply to the tab's icon element when the tab is disabled
*
* @param {number} [$ui-closable-icon-width=$tab-closable-icon-width]
* The width of the Tab close icon
*
* @param {number} [$ui-closable-icon-height=$tab-closable-icon-height]
* The height of the Tab close icon
*
* @param {number} [$ui-closable-icon-top=$tab-closable-icon-top]
* The distance to offset the Tab close icon from the top of the tab
*
* @param {number} [$ui-closable-icon-right=$tab-closable-icon-right]
* The distance to offset the Tab close icon from the right of the tab
*
* @param {number} [$ui-closable-icon-spacing=$tab-closable-icon-spacing]
* The space in between the text and the close button
*
* @member Ext.tab.Tab
*/
/**
* Creates a visual theme for a Tab Bar
*
* Note: When creating a tab bar UI with the extjs-tab-bar-ui mixin,
* you will need to create a corresponding tab-ui of the same name.
* This will ensure that the tabs render properly in your theme.
* Not creating a matching tab theme may result in unpredictable
* tab rendering.
*
* See `Ext.tab.Tab-css_mixin-extjs-tab-ui`
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$ui-strip-height=$tabbar-strip-height]
* The height of the Tab Bar strip
*
* @param {number/list} [$ui-strip-border-width=$tabbar-strip-border-width]
* The border-width of the Tab Bar strip
*
* @param {color} [$ui-strip-border-color=$tabbar-strip-border-color]
* The border-color of the Tab Bar strip
*
* @param {color} [$ui-strip-background-color=$tabbar-strip-background-color]
* The background-color of the Tab Bar strip
*
* @param {number/list} [$ui-border-width=$tabbar-border-width]
* The border-width of the Tab Bar
*
* @param {color} [$ui-border-color=$tabbar-border-color]
* The border-color of the Tab Bar
*
* @param {number/list} [$ui-padding=$tabbar-padding]
* The padding of the Tab Bar
*
* @param {color} [$ui-background-color=$tabbar-background-color]
* The background color of the Tab Bar
*
* @param {string/list} [$ui-background-gradient=$tabbar-background-gradient]
* The background-gradient of the Tab Bar. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {number} [$ui-scroller-width=$tabbar-scroller-width]
* The width of the Tab Bar scrollers
*
* @param {number} [$ui-scroller-height=$tabbar-scroller-height]
* The height of the Tab Bar scrollers
*
* @param {number/list} [$ui-scroller-top-margin=$tabbar-scroller-top-margin]
* The margin of "top" scroller buttons
*
* @param {number/list} [$ui-scroller-right-margin=$tabbar-scroller-right-margin]
* The margin of "right" scroller buttons
*
* @param {number/list} [$ui-scroller-bottom-margin=$tabbar-scroller-bottom-margin]
* The margin of "bottom" scroller buttons
*
* @param {number/list} [$ui-scroller-left-margin=$tabbar-scroller-left-margin]
* The margin of "left" scroller buttons
*
* @param {string} [$ui-scroller-cursor=$tabbar-scroller-cursor]
* The cursor of the Tab Bar scrollers
*
* @param {string} [$ui-scroller-cursor-disabled=$tabbar-scroller-cursor-disabled]
* The cursor of disabled Tab Bar scrollers
*
* @param {number} [$ui-scroller-opacity=$tabbar-scroller-opacity]
* The opacity of Tab Bar scrollers
*
* @param {number} [$ui-scroller-opacity-over=$tabbar-scroller-opacity-over]
* The opacity of hovered Tab Bar scrollers
*
* @param {number} [$ui-scroller-opacity-pressed=$tabbar-scroller-opacity-pressed]
* The opacity of pressed Tab Bar scrollers
*
* @param {number} [$ui-scroller-opacity-disabled=$tabbar-scroller-opacity-disabled]
* The opacity of disabled Tab Bar scrollers
*
* @param {boolean} [$ui-classic-scrollers=$tabbar-classic-scrollers]
* `true` to use classic-style scroller buttons. When `true` scroller buttons are given
* their hover state by changing their background-position, When `false` scroller buttons
* are given their hover state by applying opacity.
*
* @param {number} [$ui-tab-height]
* The minimum height of tabs that will be used in this tabbar UI. The tabbar body is given
* a min-height so that it does not collapse when it does not contain any tabs, but it
* is allowed to expand to be larger than the default tab height if it contains a tab
* that's larger than the default height.
*
* @member Ext.tab.Bar
*/
/**
* Creates a visual theme for a Tab Panel
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {color} [$ui-tab-background-color=$tab-base-color]
* The background-color of Tabs
*
* @param {color} [$ui-tab-background-color-focus=$tab-base-color-focus]
* The background-color of focused Tabs
*
* @param {color} [$ui-tab-background-color-over=$tab-base-color-over]
* The background-color of hovered Tabs
*
* @param {color} [$ui-tab-background-color-active=$tab-base-color-active]
* The background-color of the active Tab
*
* @param {color} [$ui-tab-background-color-focus-over=$tab-base-color-focus-over]
* The background-color of focused hovered Tabs
*
* @param {color} [$ui-tab-background-color-focus-active=$tab-base-color-focus-active]
* The background-color of the active Tab when focused
*
* @param {color} [$ui-tab-background-color-disabled=$tab-base-color-disabled]
* The background-color of disabled Tabs
*
* @param {list} [$ui-tab-border-radius=$tab-border-radius]
* The border-radius of Tabs
*
* @param {number} [$ui-tab-border-width=$tab-border-width]
* The border-width of Tabs
*
* @param {number/list} [$ui-tab-border-width-focus=$tab-border-width-focus]
* The border-width of focused Tabs
*
* @param {number/list} [$ui-tab-border-width-over=$tab-border-width-over]
* The border-width of hovered Tabs
*
* @param {number/list} [$ui-tab-border-width-active=$tab-border-width-active]
* The border-width of active Tabs
*
* @param {number/list} [$ui-tab-border-width-focus-over=$tab-border-width-focus-over]
* The border-width of focused hovered Tabs
*
* @param {number/list} [$ui-tab-border-width-focus-active=$tab-border-width-focus-active]
* The border-width of active Tabs when focused
*
* @param {number/list} [$ui-tab-border-width-disabled=$tab-border-width-disabled]
* The border-width of disabled Tabs
*
* @param {number/list} [$ui-tab-margin=$tab-margin]
* The border-width of Tabs
*
* @param {number/list} [$ui-tab-padding=$tab-padding]
* The padding of Tabs
*
* @param {number/list} [$ui-tab-text-padding=$tab-text-padding]
* The padding of the Tab's text element
*
* @param {color} [$ui-tab-border-color=$tab-border-color]
* The border-color of Tabs
*
* @param {color} [$ui-tab-border-color-focus=$tab-border-color-focus]
* The border-color of focused Tabs
*
* @param {color} [$ui-tab-border-color-over=$tab-border-color-over]
* The border-color of hovered Tabs
*
* @param {color} [$ui-tab-border-color-active=$tab-border-color-active]
* The border-color of the active Tab
*
* @param {color} [$ui-tab-border-color-focus-over=$tab-border-color-focus-over]
* The border-color of focused hovered Tabs
*
* @param {color} [$ui-tab-border-color-focus-active=$tab-border-color-focus-active]
* The border-color of the active Tab when focused
* @param {color} [$ui-tab-border-color-disabled=$tab-border-color-disabled]
* The border-color of disabled Tabs
*
* @param {string} [$ui-tab-cursor=$tab-cursor]
* The Tab cursor
*
* @param {string} [$ui-tab-cursor-disabled=$tab-cursor-disabled]
* The cursor of disabled Tabs
*
* @param {number} [$ui-tab-font-size=$tab-font-size]
* The font-size of Tabs
*
* @param {number} [$ui-tab-font-size-focus=$tab-font-size-focus]
* The font-size of focused Tabs
*
* @param {number} [$ui-tab-font-size-over=$tab-font-size-over]
* The font-size of hovered Tabs
*
* @param {number} [$ui-tab-font-size-active=$tab-font-size-active]
* The font-size of the active Tab
*
* @param {number} [$ui-tab-font-size-focus-over=$tab-font-size-focus-over]
* The font-size of focused hovered Tabs
*
* @param {number} [$ui-tab-font-size-focus-active=$tab-font-size-focus-active]
* The font-size of the active Tab when focused
*
* @param {number} [$ui-tab-font-size-disabled=$tab-font-size-disabled]
* The font-size of disabled Tabs
*
* @param {string} [$ui-tab-font-weight=$tab-font-weight]
* The font-weight of Tabs
*
* @param {string} [$ui-tab-font-weight-focus=$tab-font-weight-focus]
* The font-weight of focused Tabs
*
* @param {string} [$ui-tab-font-weight-over=$tab-font-weight-over]
* The font-weight of hovered Tabs
*
* @param {string} [$ui-tab-font-weight-active=$tab-font-weight-active]
* The font-weight of the active Tab
*
* @param {string} [$ui-tab-font-weight-focus-over=$tab-font-weight-focus-over]
* The font-weight of focused hovered Tabs
*
* @param {string} [$ui-tab-font-weight-focus-active=$tab-font-weight-focus-active]
* The font-weight of the active Tab when focused
*
* @param {string} [$ui-tab-font-weight-disabled=$tab-font-weight-disabled]
* The font-weight of disabled Tabs
*
* @param {string} [$ui-tab-font-family=$tab-font-family]
* The font-family of Tabs
*
* @param {string} [$ui-tab-font-family-focus=$tab-font-family-focus]
* The font-family of focused Tabs
*
* @param {string} [$ui-tab-font-family-over=$tab-font-family-over]
* The font-family of hovered Tabs
*
* @param {string} [$ui-tab-font-family-active=$tab-font-family-active]
* The font-family of the active Tab
*
* @param {string} [$ui-tab-font-family-focus-over=$tab-font-family-focus-over]
* The font-family of focused hovered Tabs
*
* @param {string} [$ui-tab-font-family-focus-active=$tab-font-family-focus-active]
* The font-family of the active Tab when focused
*
* @param {string} [$ui-tab-font-family-disabled=$tab-font-family-disabled]
* The font-family of disabled Tabs
*
* @param {number} [$ui-tab-line-height=$tab-line-height]
* The line-height of Tabs
*
* @param {color} [$ui-tab-color=$tab-color]
* The text color of Tabs
*
* @param {color} [$ui-tab-color-focus=$tab-color-focus]
* The text color of focused Tabs
*
* @param {color} [$ui-tab-color-over=$tab-color-over]
* The text color of hovered Tabs
*
* @param {color} [$ui-tab-color-active=$tab-color-active]
* The text color of the active Tab
*
* @param {color} [$ui-tab-color-focus-over=$tab-color-focus-over]
* The text color of focused hovered Tabs
*
* @param {color} [$ui-tab-color-focus-active=$tab-color-focus-active]
* The text color of the active Tab when focused
*
* @param {color} [$ui-tab-color-disabled=$tab-color-disabled]
* The text color of disabled Tabs
*
* @param {string/list} [$ui-tab-background-gradient=$tab-background-gradient]
* The background-gradient for Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-tab-background-gradient-focus=$tab-background-gradient-focus]
* The background-gradient for focused Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-tab-background-gradient-over=$tab-background-gradient-over]
* The background-gradient for hovered Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-tab-background-gradient-active=$tab-background-gradient-active]
* The background-gradient for the active Tab. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-tab-background-gradient-focus-over=$tab-background-gradient-focus-over]
* The background-gradient for focused hovered Tabs. Can be either the name of a
* predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-tab-background-gradient-focus-active=$tab-background-gradient-focus-active]
* The background-gradient for the active Tab when focused. Can be either the name of a
* predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {string/list} [$ui-tab-background-gradient-disabled=$tab-background-gradient-disabled]
* The background-gradient for disabled Tabs. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {number} [$ui-tab-inner-border-width=$tab-inner-border-width]
* The inner border-width of Tabs
*
* @param {number} [$ui-tab-inner-border-width-focus=$tab-inner-border-width-focus]
* The inner border-width of focused Tabs
*
* @param {number} [$ui-tab-inner-border-width-over=$tab-inner-border-width-over]
* The inner border-width of hovered Tabs
*
* @param {number} [$ui-tab-inner-border-width-active=$tab-inner-border-width-active]
* The inner border-width of active Tabs
*
* @param {number} [$ui-tab-inner-border-width-focus-over=$tab-inner-border-width-focus-over]
* The inner border-width of focused hovered Tabs
*
* @param {number} [$ui-tab-inner-border-width-focus-active=$tab-inner-border-width-focus-active]
* The inner border-width of active Tabs when focused
*
* @param {number} [$ui-tab-inner-border-width-disabled=$tab-inner-border-width-disabled]
* The inner border-width of disabled Tabs
*
* @param {color} [$ui-tab-inner-border-color=$tab-inner-border-color]
* The inner border-color of Tabs
*
* @param {color} [$ui-tab-inner-border-color-focus=$tab-inner-border-color-focus]
* The inner border-color of focused Tabs
*
* @param {color} [$ui-tab-inner-border-color-over=$tab-inner-border-color-over]
* The inner border-color of hovered Tabs
*
* @param {color} [$ui-tab-inner-border-color-active=$tab-inner-border-color-active]
* The inner border-color of active Tabs
*
* @param {color} [$ui-tab-inner-border-color-focus-over=$tab-inner-border-color-focus-over]
* The inner border-color of focused hovered Tabs
*
* @param {color} [$ui-tab-inner-border-color-focus-active=$tab-inner-border-color-focus-active]
* The inner border-color of active Tabs when focused
*
* @param {color} [$ui-tab-inner-border-color-disabled=$tab-inner-border-color-disabled]
* The inner border-color of disabled Tabs
*
* @param {boolean} [$ui-tab-inner-border-collapse=$tab-inner-border-collapse]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
*
* @param {boolean} [$ui-tab-inner-border-collapse-focus=$tab-inner-border-collapse-focus]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is focused
*
* @param {boolean} [$ui-tab-inner-border-collapse-over=$tab-inner-border-collapse-over]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is hovered
*
* @param {boolean} [$ui-tab-inner-border-collapse-active=$tab-inner-border-collapse-active]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is active
*
* @param {boolean} [$ui-tab-inner-border-collapse-focus-over=$tab-inner-border-collapse-focus-over]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is focused and hovered
*
* @param {boolean} [$ui-tab-inner-border-collapse-focus-active=$tab-inner-border-collapse-focus-active]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is focused and active
*
* @param {boolean} [$ui-tab-inner-border-collapse-disabled=$tab-inner-border-collapse-disabled]
* `true` to suppress the inner border of the tab on the side adjacent to the tab strip
* when the tab is disabled
*
* @param {number} [$ui-tab-body-outline-width-focus=$tab-body-outline-width-focus]
* The body outline width of focused Tabs
*
* @param {string} [$ui-tab-body-outline-style-focus=$tab-body-outline-style-focus]
* The body outline-style of focused Tabs
*
* @param {color} [$ui-tab-body-outline-color-focus=$tab-body-outline-color-focus]
* The body outline color of focused Tabs
*
* @param {number} [$ui-tab-icon-width=$tab-icon-width]
* The width of the Tab close icon
*
* @param {number} [$ui-tab-icon-height=$tab-icon-height]
* The height of the Tab close icon
*
* @param {number} [$ui-tab-icon-spacing=$tab-icon-spacing]
* the space in between the text and the close button
*
* @param {list} [$ui-tab-icon-background-position=$tab-icon-background-position]
* The background-position of Tab icons
*
* @param {color} [$ui-tab-glyph-color=$tab-glyph-color]
* The color of Tab glyph icons
*
* @param {color} [$ui-tab-glyph-color-focus=$tab-glyph-color-focus]
* The color of a Tab glyph icon when the Tab is focused
*
* @param {color} [$ui-tab-glyph-color-over=$tab-glyph-color-over]
* The color of a Tab glyph icon when the Tab is hovered
*
* @param {color} [$ui-tab-glyph-color-active=$tab-glyph-color-active]
* The color of a Tab glyph icon when the Tab is active
*
* @param {color} [$ui-tab-glyph-color-focus-over=$tab-glyph-color-focus-over]
* The color of a Tab glyph icon when the Tab is focused and hovered
*
* @param {color} [$ui-tab-glyph-color-focus-active=$tab-glyph-color-focus-active]
* The color of a Tab glyph icon when the Tab is focused and active
*
* @param {color} [$ui-tab-glyph-color-disabled=$tab-glyph-color-disabled]
* The color of a Tab glyph icon when the Tab is disabled
*
* @param {number} [$ui-tab-glyph-opacity=$tab-glyph-opacity]
* The opacity of a Tab glyph icon
*
* @param {number} [$ui-tab-glyph-opacity-disabled=$tab-glyph-opacity-disabled]
* The opacity of a Tab glyph icon when the Tab is disabled
*
* @param {number} [$ui-tab-opacity-disabled=$tab-opacity-disabled]
* opacity to apply to the tab's main element when the tab is disabled
*
* @param {number} [$ui-tab-text-opacity-disabled=$tab-text-opacity-disabled]
* opacity to apply to the tab's text element when the tab is disabled
*
* @param {number} [$ui-tab-icon-opacity-disabled=$tab-icon-opacity-disabled]
* opacity to apply to the tab's icon element when the tab is disabled
*
* @param {number} [$ui-strip-height=$tabbar-strip-height]
* The height of the Tab Bar strip
*
* @param {number/list} [$ui-strip-border-width=$tabbar-strip-border-width]
* The border-width of the Tab Bar strip
*
* @param {color} [$ui-strip-border-color=$tabbar-strip-border-color]
* The border-color of the Tab Bar strip
*
* @param {color} [$ui-strip-background-color=$tabbar-strip-background-color]
* The background-color of the Tab Bar strip
*
* @param {number/list} [$ui-bar-border-width=$tabbar-border-width]
* The border-width of the Tab Bar
*
* @param {color} [$ui-bar-border-color=$tabbar-border-color]
* The border-color of the Tab Bar
*
* @param {number/list} [$ui-bar-padding=$tabbar-padding]
* The padding of the Tab Bar
*
* @param {color} [$ui-bar-background-color=$tabbar-background-color]
* The background color of the Tab Bar
*
* @param {string/list} [$ui-bar-background-gradient=$tabbar-background-gradient]
* The background-gradient of the Tab Bar. Can be either the name of a predefined gradient
* or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {number} [$ui-bar-scroller-width=$tabbar-scroller-width]
* The width of the Tab Bar scrollers
*
* @param {string} [$ui-bar-scroller-cursor=$tabbar-scroller-cursor]
* The cursor of the Tab Bar scrollers
*
* @param {string} [$ui-bar-scroller-cursor-disabled=$tabbar-scroller-cursor-disabled]
* The cursor of disabled Tab Bar scrollers
*
* @param {number} [$ui-bar-scroller-opacity=$tabbar-scroller-opacity]
* The opacity of Tab Bar scrollers
*
* @param {number} [$ui-bar-scroller-opacity-over=$tabbar-scroller-opacity-over]
* The opacity of hovered Tab Bar scrollers
*
* @param {number} [$ui-bar-scroller-opacity-pressed=$tabbar-scroller-opacity-pressed]
* The opacity of pressed Tab Bar scrollers
*
* @param {number} [$ui-bar-scroller-opacity-disabled=$tabbar-scroller-opacity-disabled]
* The opacity of disabled Tab Bar scrollers
*
* @param {number} [$ui-tab-closable-icon-width=$tab-closable-icon-width]
* The width of the Tab close icon
*
* @param {number} [$ui-tab-closable-icon-height=$tab-closable-icon-height]
* The height of the Tab close icon
*
* @param {number} [$ui-tab-closable-icon-top=$tab-closable-icon-top]
* The distance to offset the Tab close icon from the top of the tab
*
* @param {number} [$ui-tab-closable-icon-right=$tab-closable-icon-right]
* The distance to offset the Tab close icon from the right of the tab
*
* @param {number} [$ui-tab-closable-icon-spacing=$tab-closable-icon-spacing]
* the space in between the text and the close button
*
* @member Ext.tab.Panel
*/
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: -ms-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%);
background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-mc {
background-image: url(images/tab/tab-default-top-fbg.gif);
background-position: 0 top;
background-color: #deecfd; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-tab-default-top {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-frameInfo {
font-family: th-4-4-0-4-1-1-0-1-3-9-3-9; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-tl {
background-position: 0 -8px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-tr {
background-position: right -12px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-bl {
background-position: 0 -16px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-br {
background-position: right -20px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-bc {
background-position: 0 -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-tr,
.x5-tab-default-top-br,
.x5-tab-default-top-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-tl,
.x5-tab-default-top-bl,
.x5-tab-default-top-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-bc {
height: 0; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-tl,
.x5-tab-default-top-bl,
.x5-tab-default-top-tr,
.x5-tab-default-top-br,
.x5-tab-default-top-tc,
.x5-tab-default-top-bc,
.x5-tab-default-top-ml,
.x5-tab-default-top-mr {
background-image: url(images/tab/tab-default-top-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-ml,
.x5-tab-default-top-mr {
background-image: url(images/tab/tab-default-top-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-top-mc {
padding: 0px 6px 3px 6px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-default-top:before {
display: none;
content: "x-slicer:stretch:bottom, frame:4px 4px 0 4px, frame-bg:url(images/tab/tab-default-top-fbg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 4px 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: -ms-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%);
background-image: linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-mc {
background-image: url(images/tab/tab-default-bottom-fbg.gif);
background-position: 0 bottom;
background-color: #deecfd; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-tab-default-bottom {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-frameInfo {
font-family: th-4-4-4-4-0-1-1-1-4-9-3-9; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-tl {
background-position: 0 -8px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-tr {
background-position: right -12px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-bl {
background-position: 0 -16px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-br {
background-position: right -20px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-ml {
background-position: 0 bottom; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-mr {
background-position: right bottom; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-bc {
background-position: 0 -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-tr,
.x5-tab-default-bottom-br,
.x5-tab-default-bottom-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-tl,
.x5-tab-default-bottom-bl,
.x5-tab-default-bottom-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-tl,
.x5-tab-default-bottom-bl,
.x5-tab-default-bottom-tr,
.x5-tab-default-bottom-br,
.x5-tab-default-bottom-tc,
.x5-tab-default-bottom-bc,
.x5-tab-default-bottom-ml,
.x5-tab-default-bottom-mr {
background-image: url(images/tab/tab-default-bottom-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-ml,
.x5-tab-default-bottom-mr {
background-image: url(images/tab/tab-default-bottom-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-bottom-mc {
padding: 0px 6px 0px 6px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-default-bottom:before {
display: none;
content: "x-slicer:stretch:top, frame:4px 4px 4px 4px, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left {
-moz-border-radius-topleft: 4px;
-webkit-border-top-left-radius: 4px;
border-top-left-radius: 4px;
-moz-border-radius-topright: 0;
-webkit-border-top-right-radius: 0;
border-top-right-radius: 0;
-moz-border-radius-bottomright: 0;
-webkit-border-bottom-right-radius: 0;
border-bottom-right-radius: 0;
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
padding: 3px 9px 3px 9px;
border-width: 1px 0 1px 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: -ms-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%);
background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-mc {
background-image: url(images/tab/tab-default-left-fbg.gif);
background-position: 0 top;
background-color: #deecfd; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-tab-default-left {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-frameInfo {
font-family: th-4-4-4-4-1-0-1-1-3-9-3-9; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-tl {
background-position: 0 -8px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-tr {
background-position: right -12px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-bl {
background-position: 0 -16px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-br {
background-position: right -20px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-bc {
background-position: 0 -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-tr,
.x5-tab-default-left-br,
.x5-tab-default-left-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-tl,
.x5-tab-default-left-bl,
.x5-tab-default-left-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-tl,
.x5-tab-default-left-bl,
.x5-tab-default-left-tr,
.x5-tab-default-left-br,
.x5-tab-default-left-tc,
.x5-tab-default-left-bc,
.x5-tab-default-left-ml,
.x5-tab-default-left-mr {
background-image: url(images/tab/tab-default-left-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-ml,
.x5-tab-default-left-mr {
background-image: url(images/tab/tab-default-left-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-left-mc {
padding: 0px 5px 0px 6px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-default-left:before {
display: none;
content: "x-slicer:stretch:bottom, frame:4px 4px 4px 4px, frame-bg:url(images/tab/tab-default-left-fbg.gif), corners:url(images/tab/tab-default-left-corners.gif), sides:url(images/tab/tab-default-left-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right {
-moz-border-radius-topleft: 0;
-webkit-border-top-left-radius: 0;
border-top-left-radius: 0;
-moz-border-radius-topright: 4px;
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
-moz-border-radius-bottomleft: 0;
-webkit-border-bottom-left-radius: 0;
border-bottom-left-radius: 0;
padding: 3px 9px 3px 9px;
border-width: 1px 1px 1px 0;
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: -ms-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%);
background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-mc {
background-image: url(images/tab/tab-default-right-fbg.gif);
background-position: 0 top;
background-color: #deecfd; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-tab-default-right {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-frameInfo {
font-family: th-4-4-4-4-1-1-1-0-3-9-3-9; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-tl {
background-position: 0 -8px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-tr {
background-position: right -12px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-bl {
background-position: 0 -16px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-br {
background-position: right -20px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-bc {
background-position: 0 -4px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-tr,
.x5-tab-default-right-br,
.x5-tab-default-right-mr {
padding-right: 4px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-tl,
.x5-tab-default-right-bl,
.x5-tab-default-right-ml {
padding-left: 4px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-tc {
height: 4px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-bc {
height: 4px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-tl,
.x5-tab-default-right-bl,
.x5-tab-default-right-tr,
.x5-tab-default-right-br,
.x5-tab-default-right-tc,
.x5-tab-default-right-bc,
.x5-tab-default-right-ml,
.x5-tab-default-right-mr {
background-image: url(images/tab/tab-default-right-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-ml,
.x5-tab-default-right-mr {
background-image: url(images/tab/tab-default-right-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tab-default-right-mc {
padding: 0px 6px 0px 5px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-default-right:before {
display: none;
content: "x-slicer:stretch:bottom, frame:4px 4px 4px 4px, frame-bg:url(images/tab/tab-default-right-fbg.gif), corners:url(images/tab/tab-default-right-corners.gif), sides:url(images/tab/tab-default-right-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 1073, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default {
border-color: #8db3e3;
cursor: pointer;
-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 1083, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-top {
margin: 0 0 0 2px;
-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 1092, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-top.x5-tab-rotate-left {
margin: 0 2px 0 0; }
/* line 1114, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-top.x5-tab-focus {
-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 1127, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-top.x5-tab-over {
-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 1156, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-top.x5-tab.x5-tab-active {
-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 1185, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-top.x5-tab.x5-tab-disabled {
-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 1198, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-right {
margin: 2px 0 0 0;
-webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset;
-moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset;
box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset; }
/* line 1207, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-right.x5-tab-rotate-right {
margin: 0 0 2px 0; }
/* line 1229, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-right.x5-tab-focus {
-webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset;
-moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset;
box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset; }
/* line 1242, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-right.x5-tab-over {
-webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset;
-moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset;
box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset; }
/* line 1271, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-right.x5-tab.x5-tab-active {
-webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset;
-moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset;
box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset; }
/* line 1300, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-right.x5-tab.x5-tab-disabled {
-webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset;
-moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset;
box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset; }
/* line 1313, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-bottom {
margin: 0 0 0 2px;
-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 1322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-bottom.x5-tab-rotate-left {
margin: 0 2px 0 0; }
/* line 1344, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-bottom.x5-tab-focus {
-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 1357, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-bottom.x5-tab-over {
-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 1386, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-bottom.x5-tab.x5-tab-active {
-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 1415, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-bottom.x5-tab.x5-tab-disabled {
-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 1428, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-left {
margin: 2px 0 0 0;
-webkit-box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset;
-moz-box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset;
box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset; }
/* line 1437, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-left.x5-tab-rotate-right {
margin: 0 0 2px 0; }
/* line 1459, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-left.x5-tab-focus {
-webkit-box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset;
-moz-box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset;
box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset; }
/* line 1472, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-left.x5-tab-over {
-webkit-box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset;
-moz-box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset;
box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset; }
/* line 1501, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-left.x5-tab.x5-tab-active {
-webkit-box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset;
-moz-box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset;
box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset; }
/* line 1530, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-left.x5-tab.x5-tab-disabled {
-webkit-box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset;
-moz-box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset;
box-shadow: white 0 1px 0px 0 inset, white 1px 0 0px 0 inset; }
/* line 1543, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-button-default {
height: 16px; }
/* line 1548, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-inner-default {
font: bold 11px/13px tahoma, arial, verdana, sans-serif;
color: #416da3;
max-width: 100%; }
/* line 1559, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-icon-right > .x5-tab-inner-default, .x5-tab-icon-left > .x5-tab-inner-default {
max-width: calc(100% - 16px); }
/* line 1566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-icon-el-default {
height: 16px;
line-height: 16px;
background-position: center center; }
/* line 1570, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-icon-left > .x5-tab-icon-el-default, .x5-tab-icon-right > .x5-tab-icon-el-default {
width: 16px; }
/* line 1575, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-icon-top > .x5-tab-icon-el-default, .x5-tab-icon-bottom > .x5-tab-icon-el-default {
min-width: 16px; }
/* line 1582, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-icon-el-default.x5-tab-glyph {
font-size: 16px;
line-height: 16px;
color: #416da3;
opacity: 0.5; }
/* line 1598, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-ie8 .x5-tab-icon-el-default.x5-tab-glyph {
color: #8facd0; }
/* line 1605, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-text.x5-tab-icon-left > .x5-tab-icon-el-default {
margin-right: 4px; }
/* line 1616, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-text.x5-tab-icon-right > .x5-tab-icon-el-default {
margin-left: 4px; }
/* line 1627, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-text.x5-tab-icon-top > .x5-tab-icon-el-default {
margin-bottom: 4px; }
/* line 1631, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-text.x5-tab-icon-bottom > .x5-tab-icon-el-default {
margin-top: 4px; }
/* line 1646, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-default .x5-tab-button:before {
position: absolute;
content: ' ';
top: 0;
right: 0;
bottom: 0;
left: 0;
pointer-events: none;
outline: 1px dotted #416da3; }
/* line 1663, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-default.x5-tab-closable .x5-tab-button:before {
right: 14px; }
/* line 1703, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over.x5-tab-default {
background-color: #e8f2ff; }
/* line 1747, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over.x5-tab-default-top, .x5-tab-over.x5-tab-default-left, .x5-tab-over.x5-tab-default-right {
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: -ms-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
/* line 1750, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over.x5-tab-default-bottom {
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: -ms-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
/* line 1814, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active.x5-tab-default {
background-color: #deecfd; }
/* line 1820, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active.x5-tab-default .x5-tab-inner-default {
color: #15498b; }
/* line 1835, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active.x5-tab-default .x5-tab-glyph {
color: #15498b; }
/* line 1843, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-ie8 .x5-tab.x5-tab-active.x5-tab-default .x5-tab-glyph {
color: #799ac4; }
/* line 1853, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active.x5-tab-default-top, .x5-tab.x5-tab-active.x5-tab-default-left, .x5-tab.x5-tab-active.x5-tab-default-right {
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: -ms-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); }
/* line 1857, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active.x5-tab-default-bottom {
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: -ms-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); }
/* line 1922, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled.x5-tab-default {
border-color: #bbd2ef;
background-color: #e1ecfa;
cursor: default; }
/* line 1939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled.x5-tab-default .x5-tab-inner-default {
color: #c3b3b3; }
/* line 1958, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled.x5-tab-default .x5-tab-icon-el-default {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5; }
/* line 1963, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled.x5-tab-default .x5-tab-glyph {
color: #c3b3b3;
opacity: 0.3;
filter: none; }
/* line 1978, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-ie8 .x5-tab.x5-tab-disabled.x5-tab-default .x5-tab-glyph {
color: #d8dae4; }
/* line 1987, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled.x5-tab-default-top, .x5-tab.x5-tab-disabled.x5-tab-default-left, .x5-tab.x5-tab-disabled.x5-tab-default-right {
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: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
/* line 1991, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled.x5-tab-default-bottom {
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: -ms-linear-gradient(bottom, #e1ecfa, #ecf4fe);
background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); }
/* line 1998, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-nbr .x5-tab-default {
background-image: none; }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-top-tl,
.x5-tab-over .x5-tab-default-top-bl,
.x5-tab-over .x5-tab-default-top-tr,
.x5-tab-over .x5-tab-default-top-br,
.x5-tab-over .x5-tab-default-top-tc,
.x5-tab-over .x5-tab-default-top-bc {
background-image: url(images/tab/tab-default-top-over-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-top-ml,
.x5-tab-over .x5-tab-default-top-mr {
background-image: url(images/tab/tab-default-top-over-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-top-mc {
background-color: #e8f2ff;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-top-over-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-top-tl,
.x5-tab-focus .x5-tab-default-top-bl,
.x5-tab-focus .x5-tab-default-top-tr,
.x5-tab-focus .x5-tab-default-top-br,
.x5-tab-focus .x5-tab-default-top-tc,
.x5-tab-focus .x5-tab-default-top-bc {
background-image: url(images/tab/tab-default-top-focus-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-top-ml,
.x5-tab-focus .x5-tab-default-top-mr {
background-image: url(images/tab/tab-default-top-focus-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-top-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-top-focus-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-top-tl,
.x5-tab-focus.x5-tab-over .x5-tab-default-top-bl,
.x5-tab-focus.x5-tab-over .x5-tab-default-top-tr,
.x5-tab-focus.x5-tab-over .x5-tab-default-top-br,
.x5-tab-focus.x5-tab-over .x5-tab-default-top-tc,
.x5-tab-focus.x5-tab-over .x5-tab-default-top-bc {
background-image: url(images/tab/tab-default-top-focus-over-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-top-ml,
.x5-tab-focus.x5-tab-over .x5-tab-default-top-mr {
background-image: url(images/tab/tab-default-top-focus-over-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-top-mc {
background-color: #e8f2ff;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-top-focus-over-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-top-tl,
.x5-tab.x5-tab-active .x5-tab-default-top-bl,
.x5-tab.x5-tab-active .x5-tab-default-top-tr,
.x5-tab.x5-tab-active .x5-tab-default-top-br,
.x5-tab.x5-tab-active .x5-tab-default-top-tc,
.x5-tab.x5-tab-active .x5-tab-default-top-bc {
background-image: url(images/tab/tab-default-top-active-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-top-ml,
.x5-tab.x5-tab-active .x5-tab-default-top-mr {
background-image: url(images/tab/tab-default-top-active-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-top-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-top-active-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-top-tl,
.x5-tab-focus.x5-tab-active .x5-tab-default-top-bl,
.x5-tab-focus.x5-tab-active .x5-tab-default-top-tr,
.x5-tab-focus.x5-tab-active .x5-tab-default-top-br,
.x5-tab-focus.x5-tab-active .x5-tab-default-top-tc,
.x5-tab-focus.x5-tab-active .x5-tab-default-top-bc {
background-image: url(images/tab/tab-default-top-focus-active-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-top-ml,
.x5-tab-focus.x5-tab-active .x5-tab-default-top-mr {
background-image: url(images/tab/tab-default-top-focus-active-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-top-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-top-focus-active-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-top-tl,
.x5-tab.x5-tab-disabled .x5-tab-default-top-bl,
.x5-tab.x5-tab-disabled .x5-tab-default-top-tr,
.x5-tab.x5-tab-disabled .x5-tab-default-top-br,
.x5-tab.x5-tab-disabled .x5-tab-default-top-tc,
.x5-tab.x5-tab-disabled .x5-tab-default-top-bc {
background-image: url(images/tab/tab-default-top-disabled-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-top-ml,
.x5-tab.x5-tab-disabled .x5-tab-default-top-mr {
background-image: url(images/tab/tab-default-top-disabled-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-top-mc {
background-color: #e1ecfa;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-top-disabled-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-right-tl,
.x5-tab-over .x5-tab-default-right-bl,
.x5-tab-over .x5-tab-default-right-tr,
.x5-tab-over .x5-tab-default-right-br,
.x5-tab-over .x5-tab-default-right-tc,
.x5-tab-over .x5-tab-default-right-bc {
background-image: url(images/tab/tab-default-right-over-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-right-ml,
.x5-tab-over .x5-tab-default-right-mr {
background-image: url(images/tab/tab-default-right-over-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-right-mc {
background-color: #e8f2ff;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-right-over-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-right-tl,
.x5-tab-focus .x5-tab-default-right-bl,
.x5-tab-focus .x5-tab-default-right-tr,
.x5-tab-focus .x5-tab-default-right-br,
.x5-tab-focus .x5-tab-default-right-tc,
.x5-tab-focus .x5-tab-default-right-bc {
background-image: url(images/tab/tab-default-right-focus-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-right-ml,
.x5-tab-focus .x5-tab-default-right-mr {
background-image: url(images/tab/tab-default-right-focus-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-right-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-right-focus-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-right-tl,
.x5-tab-focus.x5-tab-over .x5-tab-default-right-bl,
.x5-tab-focus.x5-tab-over .x5-tab-default-right-tr,
.x5-tab-focus.x5-tab-over .x5-tab-default-right-br,
.x5-tab-focus.x5-tab-over .x5-tab-default-right-tc,
.x5-tab-focus.x5-tab-over .x5-tab-default-right-bc {
background-image: url(images/tab/tab-default-right-focus-over-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-right-ml,
.x5-tab-focus.x5-tab-over .x5-tab-default-right-mr {
background-image: url(images/tab/tab-default-right-focus-over-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-right-mc {
background-color: #e8f2ff;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-right-focus-over-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-right-tl,
.x5-tab.x5-tab-active .x5-tab-default-right-bl,
.x5-tab.x5-tab-active .x5-tab-default-right-tr,
.x5-tab.x5-tab-active .x5-tab-default-right-br,
.x5-tab.x5-tab-active .x5-tab-default-right-tc,
.x5-tab.x5-tab-active .x5-tab-default-right-bc {
background-image: url(images/tab/tab-default-right-active-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-right-ml,
.x5-tab.x5-tab-active .x5-tab-default-right-mr {
background-image: url(images/tab/tab-default-right-active-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-right-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-right-active-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-right-tl,
.x5-tab-focus.x5-tab-active .x5-tab-default-right-bl,
.x5-tab-focus.x5-tab-active .x5-tab-default-right-tr,
.x5-tab-focus.x5-tab-active .x5-tab-default-right-br,
.x5-tab-focus.x5-tab-active .x5-tab-default-right-tc,
.x5-tab-focus.x5-tab-active .x5-tab-default-right-bc {
background-image: url(images/tab/tab-default-right-focus-active-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-right-ml,
.x5-tab-focus.x5-tab-active .x5-tab-default-right-mr {
background-image: url(images/tab/tab-default-right-focus-active-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-right-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-right-focus-active-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-right-tl,
.x5-tab.x5-tab-disabled .x5-tab-default-right-bl,
.x5-tab.x5-tab-disabled .x5-tab-default-right-tr,
.x5-tab.x5-tab-disabled .x5-tab-default-right-br,
.x5-tab.x5-tab-disabled .x5-tab-default-right-tc,
.x5-tab.x5-tab-disabled .x5-tab-default-right-bc {
background-image: url(images/tab/tab-default-right-disabled-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-right-ml,
.x5-tab.x5-tab-disabled .x5-tab-default-right-mr {
background-image: url(images/tab/tab-default-right-disabled-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-right-mc {
background-color: #e1ecfa;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-right-disabled-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-bottom-tl,
.x5-tab-over .x5-tab-default-bottom-bl,
.x5-tab-over .x5-tab-default-bottom-tr,
.x5-tab-over .x5-tab-default-bottom-br,
.x5-tab-over .x5-tab-default-bottom-tc,
.x5-tab-over .x5-tab-default-bottom-bc {
background-image: url(images/tab/tab-default-bottom-over-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-bottom-ml,
.x5-tab-over .x5-tab-default-bottom-mr {
background-image: url(images/tab/tab-default-bottom-over-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-bottom-mc {
background-color: #e8f2ff;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-bottom-over-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-bottom-tl,
.x5-tab-focus .x5-tab-default-bottom-bl,
.x5-tab-focus .x5-tab-default-bottom-tr,
.x5-tab-focus .x5-tab-default-bottom-br,
.x5-tab-focus .x5-tab-default-bottom-tc,
.x5-tab-focus .x5-tab-default-bottom-bc {
background-image: url(images/tab/tab-default-bottom-focus-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-bottom-ml,
.x5-tab-focus .x5-tab-default-bottom-mr {
background-image: url(images/tab/tab-default-bottom-focus-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-bottom-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-bottom-focus-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-bottom-tl,
.x5-tab-focus.x5-tab-over .x5-tab-default-bottom-bl,
.x5-tab-focus.x5-tab-over .x5-tab-default-bottom-tr,
.x5-tab-focus.x5-tab-over .x5-tab-default-bottom-br,
.x5-tab-focus.x5-tab-over .x5-tab-default-bottom-tc,
.x5-tab-focus.x5-tab-over .x5-tab-default-bottom-bc {
background-image: url(images/tab/tab-default-bottom-focus-over-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-bottom-ml,
.x5-tab-focus.x5-tab-over .x5-tab-default-bottom-mr {
background-image: url(images/tab/tab-default-bottom-focus-over-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-bottom-mc {
background-color: #e8f2ff;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-bottom-focus-over-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-bottom-tl,
.x5-tab.x5-tab-active .x5-tab-default-bottom-bl,
.x5-tab.x5-tab-active .x5-tab-default-bottom-tr,
.x5-tab.x5-tab-active .x5-tab-default-bottom-br,
.x5-tab.x5-tab-active .x5-tab-default-bottom-tc,
.x5-tab.x5-tab-active .x5-tab-default-bottom-bc {
background-image: url(images/tab/tab-default-bottom-active-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-bottom-ml,
.x5-tab.x5-tab-active .x5-tab-default-bottom-mr {
background-image: url(images/tab/tab-default-bottom-active-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-bottom-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-bottom-active-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-bottom-tl,
.x5-tab-focus.x5-tab-active .x5-tab-default-bottom-bl,
.x5-tab-focus.x5-tab-active .x5-tab-default-bottom-tr,
.x5-tab-focus.x5-tab-active .x5-tab-default-bottom-br,
.x5-tab-focus.x5-tab-active .x5-tab-default-bottom-tc,
.x5-tab-focus.x5-tab-active .x5-tab-default-bottom-bc {
background-image: url(images/tab/tab-default-bottom-focus-active-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-bottom-ml,
.x5-tab-focus.x5-tab-active .x5-tab-default-bottom-mr {
background-image: url(images/tab/tab-default-bottom-focus-active-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-bottom-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-bottom-focus-active-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-bottom-tl,
.x5-tab.x5-tab-disabled .x5-tab-default-bottom-bl,
.x5-tab.x5-tab-disabled .x5-tab-default-bottom-tr,
.x5-tab.x5-tab-disabled .x5-tab-default-bottom-br,
.x5-tab.x5-tab-disabled .x5-tab-default-bottom-tc,
.x5-tab.x5-tab-disabled .x5-tab-default-bottom-bc {
background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-bottom-ml,
.x5-tab.x5-tab-disabled .x5-tab-default-bottom-mr {
background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-bottom-mc {
background-color: #e1ecfa;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-bottom-disabled-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-left-tl,
.x5-tab-over .x5-tab-default-left-bl,
.x5-tab-over .x5-tab-default-left-tr,
.x5-tab-over .x5-tab-default-left-br,
.x5-tab-over .x5-tab-default-left-tc,
.x5-tab-over .x5-tab-default-left-bc {
background-image: url(images/tab/tab-default-left-over-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-left-ml,
.x5-tab-over .x5-tab-default-left-mr {
background-image: url(images/tab/tab-default-left-over-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-over .x5-tab-default-left-mc {
background-color: #e8f2ff;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-left-over-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-left-tl,
.x5-tab-focus .x5-tab-default-left-bl,
.x5-tab-focus .x5-tab-default-left-tr,
.x5-tab-focus .x5-tab-default-left-br,
.x5-tab-focus .x5-tab-default-left-tc,
.x5-tab-focus .x5-tab-default-left-bc {
background-image: url(images/tab/tab-default-left-focus-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-left-ml,
.x5-tab-focus .x5-tab-default-left-mr {
background-image: url(images/tab/tab-default-left-focus-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus .x5-tab-default-left-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-left-focus-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-left-tl,
.x5-tab-focus.x5-tab-over .x5-tab-default-left-bl,
.x5-tab-focus.x5-tab-over .x5-tab-default-left-tr,
.x5-tab-focus.x5-tab-over .x5-tab-default-left-br,
.x5-tab-focus.x5-tab-over .x5-tab-default-left-tc,
.x5-tab-focus.x5-tab-over .x5-tab-default-left-bc {
background-image: url(images/tab/tab-default-left-focus-over-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-left-ml,
.x5-tab-focus.x5-tab-over .x5-tab-default-left-mr {
background-image: url(images/tab/tab-default-left-focus-over-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-over .x5-tab-default-left-mc {
background-color: #e8f2ff;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-left-focus-over-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-left-tl,
.x5-tab.x5-tab-active .x5-tab-default-left-bl,
.x5-tab.x5-tab-active .x5-tab-default-left-tr,
.x5-tab.x5-tab-active .x5-tab-default-left-br,
.x5-tab.x5-tab-active .x5-tab-default-left-tc,
.x5-tab.x5-tab-active .x5-tab-default-left-bc {
background-image: url(images/tab/tab-default-left-active-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-left-ml,
.x5-tab.x5-tab-active .x5-tab-default-left-mr {
background-image: url(images/tab/tab-default-left-active-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-active .x5-tab-default-left-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-left-active-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-left-tl,
.x5-tab-focus.x5-tab-active .x5-tab-default-left-bl,
.x5-tab-focus.x5-tab-active .x5-tab-default-left-tr,
.x5-tab-focus.x5-tab-active .x5-tab-default-left-br,
.x5-tab-focus.x5-tab-active .x5-tab-default-left-tc,
.x5-tab-focus.x5-tab-active .x5-tab-default-left-bc {
background-image: url(images/tab/tab-default-left-focus-active-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-left-ml,
.x5-tab-focus.x5-tab-active .x5-tab-default-left-mr {
background-image: url(images/tab/tab-default-left-focus-active-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-focus.x5-tab-active .x5-tab-default-left-mc {
background-color: #deecfd;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-left-focus-active-fbg.gif); }
/* line 2023, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-left-tl,
.x5-tab.x5-tab-disabled .x5-tab-default-left-bl,
.x5-tab.x5-tab-disabled .x5-tab-default-left-tr,
.x5-tab.x5-tab-disabled .x5-tab-default-left-br,
.x5-tab.x5-tab-disabled .x5-tab-default-left-tc,
.x5-tab.x5-tab-disabled .x5-tab-default-left-bc {
background-image: url(images/tab/tab-default-left-disabled-corners.gif); }
/* line 2028, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-left-ml,
.x5-tab.x5-tab-disabled .x5-tab-default-left-mr {
background-image: url(images/tab/tab-default-left-disabled-sides.gif); }
/* line 2032, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab.x5-tab-disabled .x5-tab-default-left-mc {
background-color: #e1ecfa;
background-repeat: repeat-x;
background-image: url(images/tab/tab-default-left-disabled-fbg.gif); }
/* line 2046, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default-tl,
.x5-tab-default-bl,
.x5-tab-default-tr,
.x5-tab-default-br {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); }
/* line 2053, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default .x5-tab-close-btn {
top: 2px;
right: 2px;
width: 11px;
height: 11px;
background: url(images/tab/tab-default-close.gif) 0 0;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
opacity: 0.6; }
/* line 2064, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default .x5-tab-close-btn-over {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1; }
/* line 2080, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default.x5-tab-active .x5-tab-close-btn {
background-position: 0 -11px; }
/* line 2098, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-default.x5-tab-disabled .x5-tab-close-btn {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
opacity: 0.3; }
/* line 2116, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */
.x5-tab-closable.x5-tab-default .x5-tab-button {
padding-right: 14px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-default-top:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-top-focus-corners.gif), sides:url(images/tab/tab-default-top-focus-sides.gif), frame-bg:url(images/tab/tab-default-top-focus-fbg.gif), frame:4px 4px 4px 4px, stretch:bottom" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-default-right:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-right-focus-corners.gif), sides:url(images/tab/tab-default-right-focus-sides.gif), frame-bg:url(images/tab/tab-default-right-focus-fbg.gif), frame:4px 4px 4px 4px, stretch:left" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-default-bottom:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-bottom-focus-corners.gif), sides:url(images/tab/tab-default-bottom-focus-sides.gif), frame-bg:url(images/tab/tab-default-bottom-focus-fbg.gif), frame:4px 4px 4px 4px, stretch:top" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-default-left:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-left-focus-corners.gif), sides:url(images/tab/tab-default-left-focus-sides.gif), frame-bg:url(images/tab/tab-default-left-focus-fbg.gif), frame:4px 4px 4px 4px, stretch:right" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-over.x5-tab-default-top:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif), frame:4px 4px 4px 4px, stretch:bottom" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-over.x5-tab-default-right:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-right-over-corners.gif), sides:url(images/tab/tab-default-right-over-sides.gif), frame-bg:url(images/tab/tab-default-right-over-fbg.gif), frame:4px 4px 4px 4px, stretch:left" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-over.x5-tab-default-bottom:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif), frame:4px 4px 4px 4px, stretch:top" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-over.x5-tab-default-left:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-left-over-corners.gif), sides:url(images/tab/tab-default-left-over-sides.gif), frame-bg:url(images/tab/tab-default-left-over-fbg.gif), frame:4px 4px 4px 4px, stretch:right" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-active.x5-tab-default-top:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif), frame:4px 4px 4px 4px, stretch:bottom" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-active.x5-tab-default-right:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-right-active-corners.gif), sides:url(images/tab/tab-default-right-active-sides.gif), frame-bg:url(images/tab/tab-default-right-active-fbg.gif), frame:4px 4px 4px 4px, stretch:left" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-active.x5-tab-default-bottom:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif), frame:4px 4px 4px 4px, stretch:top" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-active.x5-tab-default-left:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-left-active-corners.gif), sides:url(images/tab/tab-default-left-active-sides.gif), frame-bg:url(images/tab/tab-default-left-active-fbg.gif), frame:4px 4px 4px 4px, stretch:right" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-over.x5-tab-default-top:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-top-focus-over-corners.gif), sides:url(images/tab/tab-default-top-focus-over-sides.gif), frame-bg:url(images/tab/tab-default-top-focus-over-fbg.gif), frame:4px 4px 4px 4px, stretch:bottom" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-over.x5-tab-default-right:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-right-focus-over-corners.gif), sides:url(images/tab/tab-default-right-focus-over-sides.gif), frame-bg:url(images/tab/tab-default-right-focus-over-fbg.gif), frame:4px 4px 4px 4px, stretch:left" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-over.x5-tab-default-bottom:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-bottom-focus-over-corners.gif), sides:url(images/tab/tab-default-bottom-focus-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-focus-over-fbg.gif), frame:4px 4px 4px 4px, stretch:top" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-over.x5-tab-default-left:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-left-focus-over-corners.gif), sides:url(images/tab/tab-default-left-focus-over-sides.gif), frame-bg:url(images/tab/tab-default-left-focus-over-fbg.gif), frame:4px 4px 4px 4px, stretch:right" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-active.x5-tab-default-top:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-top-focus-active-corners.gif), sides:url(images/tab/tab-default-top-focus-active-sides.gif), frame-bg:url(images/tab/tab-default-top-focus-active-fbg.gif), frame:4px 4px 4px 4px, stretch:bottom" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-active.x5-tab-default-right:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-right-focus-active-corners.gif), sides:url(images/tab/tab-default-right-focus-active-sides.gif), frame-bg:url(images/tab/tab-default-right-focus-active-fbg.gif), frame:4px 4px 4px 4px, stretch:left" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-active.x5-tab-default-bottom:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-bottom-focus-active-corners.gif), sides:url(images/tab/tab-default-bottom-focus-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-focus-active-fbg.gif), frame:4px 4px 4px 4px, stretch:top" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-focus.x5-tab-active.x5-tab-default-left:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-left-focus-active-corners.gif), sides:url(images/tab/tab-default-left-focus-active-sides.gif), frame-bg:url(images/tab/tab-default-left-focus-active-fbg.gif), frame:4px 4px 4px 4px, stretch:right" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-disabled.x5-tab-default-top:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif), frame:4px 4px 4px 4px, stretch:bottom" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-disabled.x5-tab-default-right:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-right-disabled-corners.gif), sides:url(images/tab/tab-default-right-disabled-sides.gif), frame-bg:url(images/tab/tab-default-right-disabled-fbg.gif), frame:4px 4px 4px 4px, stretch:left" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-disabled.x5-tab-default-bottom:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif), frame:4px 4px 4px 4px, stretch:top" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-disabled.x5-tab-default-left:before {
display: none;
content: "x-slicer:corners:url(images/tab/tab-default-left-disabled-corners.gif), sides:url(images/tab/tab-default-left-disabled-sides.gif), frame-bg:url(images/tab/tab-default-left-disabled-fbg.gif), frame:4px 4px 4px 4px, stretch:right" !important; }
/*</if slicer>*/
/* */
/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default {
background-color: #cbdbef;
border-style: solid;
border-color: #99bce8; }
/* line 139, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-top {
border-width: 1px 1px 0 1px; }
/* line 143, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-bottom {
border-width: 0 1px 1px 1px; }
/* line 147, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-left {
border-width: 1px 0 1px 1px; }
/* line 157, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-right {
border-width: 1px 1px 1px 0; }
/* line 169, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-top > .x5-tab-bar-body-default {
padding: 1px 0 0; }
/* line 173, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-bottom > .x5-tab-bar-body-default {
padding: 0 0 1px 0; }
/* line 177, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-left > .x5-tab-bar-body-default {
padding: 0 0 0 1px; }
/* line 187, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-right > .x5-tab-bar-body-default {
padding: 0 1px 0 0; }
/* line 199, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-plain.x5-tab-bar-default-horizontal {
border-top-color: transparent;
border-bottom-color: transparent;
border-left-width: 0;
border-right-width: 0; }
/* line 206, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-plain.x5-tab-bar-default-vertical {
border-right-color: transparent;
border-left-color: transparent;
border-top-width: 0;
border-bottom-width: 0; }
/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-top > .x5-tab-bar-body-default {
padding-bottom: 2px; }
/* line 222, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-bottom > .x5-tab-bar-body-default {
padding-top: 2px; }
/* line 226, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-left > .x5-tab-bar-body-default {
padding-right: 2px; }
/* line 237, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-right > .x5-tab-bar-body-default {
padding-left: 2px; }
/* line 249, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-strip-default {
border-style: solid;
border-color: #99bce8;
background-color: #deecfd; }
/* line 256, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-top > .x5-tab-bar-strip-default {
border-width: 1px 0 0 0;
height: 3px; }
/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-top.x5-tab-bar-plain > .x5-tab-bar-strip-default {
border-width: 1px 1px 0 1px; }
/* line 266, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-bottom > .x5-tab-bar-strip-default {
border-width: 0 0 1px 0;
height: 3px; }
/* line 270, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-bottom.x5-tab-bar-plain > .x5-tab-bar-strip-default {
border-width: 0 1px 1px 1px; }
/* line 276, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-left > .x5-tab-bar-strip-default {
border-width: 0 0 0 1px;
width: 3px; }
/* line 285, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-left.x5-tab-bar-plain > .x5-tab-bar-strip-default {
border-width: 1px 0 1px 1px; }
/* line 296, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-right > .x5-tab-bar-strip-default {
border-width: 0 1px 0 0;
width: 3px; }
/* line 305, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-right.x5-tab-bar-plain > .x5-tab-bar-strip-default {
border-width: 1px 1px 1px 0; }
/* line 320, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-horizontal > .x5-tab-bar-body-default {
min-height: 26px; }
/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-ie9m .x5-tab-bar-horizontal > .x5-tab-bar-body-default {
min-height: 22px; }
/* line 330, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-vertical > .x5-tab-bar-body-default {
min-width: 26px; }
/* line 333, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-ie9m .x5-tab-bar-vertical > .x5-tab-bar-body-default {
min-width: 22px; }
/* line 341, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-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: -ms-linear-gradient(top, #dde8f5, #cbdbef);
background-image: linear-gradient(top, #dde8f5, #cbdbef); }
/* line 345, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-nlg .x5-tab-bar-default-top {
background: url(images/tab-bar/tab-bar-default-top-bg.gif); }
/* line 351, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-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: -ms-linear-gradient(bottom, #dde8f5, #cbdbef);
background-image: linear-gradient(bottom, #dde8f5, #cbdbef); }
/* line 355, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-nlg .x5-tab-bar-default-bottom {
background: url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0; }
/* line 361, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-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: -ms-linear-gradient(left, #dde8f5, #cbdbef);
background-image: linear-gradient(left, #dde8f5, #cbdbef); }
/* line 365, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-nlg .x5-tab-bar-default-left {
background: url(images/tab-bar/tab-bar-default-left-bg.gif); }
/* line 371, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-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: -ms-linear-gradient(right, #dde8f5, #cbdbef);
background-image: linear-gradient(right, #dde8f5, #cbdbef); }
/* line 375, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-nlg .x5-tab-bar-default-right {
background: url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right; }
/* line 145, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-tab-bar-default-scroller .x5-box-scroller-body-horizontal {
margin-left: 18px; }
/* line 151, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-tab-bar-default-vertical-scroller .x5-box-scroller-body-vertical {
margin-top: 17px; }
/* line 156, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default {
cursor: pointer; }
/* line 177, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-disabled {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5;
cursor: default; }
/* line 188, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-left, .x5-box-scroller-tab-bar-default.x5-box-scroller-right {
width: 18px;
top: 0;
bottom: 0; }
/* line 214, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-left {
margin: 0;
background-position: -18px 0; }
/* line 231, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-left.x5-box-scroller-hover {
background-position: 0 0; }
/* line 237, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-right {
margin: 0;
background-position: 0 0; }
/* line 254, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-right.x5-box-scroller-hover {
background-position: -18px 0; }
/* line 263, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-top, .x5-box-scroller-tab-bar-default.x5-box-scroller-bottom {
height: 18px;
left: 0;
right: 0; }
/* line 289, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-top {
margin: 0;
background-position: 0 -18px; }
/* line 306, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-top.x5-box-scroller-hover {
background-position: 0 0; }
/* line 312, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-bottom {
margin: 0;
background-position: 0 0; }
/* line 329, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-tab-bar-default.x5-box-scroller-bottom.x5-box-scroller-hover {
background-position: 0 -18px; }
/* line 409, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-right .x5-box-scroller-top {
background-position: right -18px; }
/* line 412, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-right .x5-box-scroller-top.x5-box-scroller-hover {
background-position: right 0; }
/* line 417, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-right .x5-box-scroller-bottom {
background-position: right 0; }
/* line 420, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-right .x5-box-scroller-bottom.x5-box-scroller-hover {
background-position: right -18px; }
/* line 427, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-bottom .x5-box-scroller-left {
background-position: -18px bottom; }
/* line 430, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-bottom .x5-box-scroller-left.x5-box-scroller-hover {
background-position: 0 bottom; }
/* line 435, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-bottom .x5-box-scroller-right {
background-position: 0 bottom; }
/* line 438, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-bottom .x5-box-scroller-right.x5-box-scroller-hover {
background-position: -18px bottom; }
/* line 505, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-top .x5-box-scroller-left {
background-image: url(images/tab-bar/default-scroll-left-top.gif); }
/* line 508, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-top .x5-box-scroller-right {
background-image: url(images/tab-bar/default-scroll-right-top.gif); }
/* line 514, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-bottom .x5-box-scroller-left {
background-image: url(images/tab-bar/default-scroll-left-bottom.gif); }
/* line 517, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-bottom .x5-box-scroller-right {
background-image: url(images/tab-bar/default-scroll-right-bottom.gif); }
/* line 523, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-left .x5-box-scroller-top {
background-image: url(images/tab-bar/default-scroll-top-left.gif); }
/* line 526, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-left .x5-box-scroller-bottom {
background-image: url(images/tab-bar/default-scroll-bottom-left.gif); }
/* line 532, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-right .x5-box-scroller-top {
background-image: url(images/tab-bar/default-scroll-top-right.gif); }
/* line 535, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */
.x5-tab-bar-default-right .x5-box-scroller-bottom {
background-image: url(images/tab-bar/default-scroll-bottom-right.gif); }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-bar-default-top:before {
display: none;
content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-bar-default-bottom:before {
display: none;
content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-bar-default-left:before {
display: none;
content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tab-bar-default-right:before {
display: none;
content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left" !important; }
/*</if slicer>*/
/* */
/**
* Creates a visual theme for a Window
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$ui-padding=$window-padding]
* The padding of the Window
*
* @param {number} [$ui-border-radius=$window-border-radius]
* The border-radius of the Window
*
* @param {color} [$ui-border-color=$window-border-color]
* The border-color of the Window
*
* @param {number} [$ui-border-width=$window-border-width]
* The border-width of the Window
*
* @param {color} [$ui-inner-border-color=$window-inner-border-color]
* The inner border-color of the Window
*
* @param {number} [$ui-inner-border-width=$window-inner-border-width]
* The inner border-width of the Window
*
* @param {color} [$ui-header-color=$window-header-color]
* The text color of the Header
*
* @param {color} [$ui-header-background-color=$window-header-background-color]
* The background-color of the Header
*
* @param {number/list} [$ui-header-padding=$window-header-padding]
* The padding of the Header
*
* @param {string} [$ui-header-font-family=$window-header-font-family]
* The font-family of the Header
*
* @param {number} [$ui-header-font-size=$window-header-font-size]
* The font-size of the Header
*
* @param {string} [$ui-header-font-weight=$window-header-font-weight]
* The font-weight of the Header
*
* @param {number} [$ui-header-line-height=$window-header-line-height]
* The line-height of the Header
*
* @param {number/list} [$ui-header-text-padding=$window-header-text-padding]
* The padding of the Header's text element
*
* @param {string} [$ui-header-text-transform=$window-header-text-transform]
* The text-transform of the Header
*
* @param {color} [$ui-header-border-color=$ui-border-color]
* The border-color of the Header
*
* @param {number} [$ui-header-border-width=$window-header-border-width]
* The border-width of the Header
*
* @param {color} [$ui-header-inner-border-color=$window-header-inner-border-color]
* The inner border-color of the Header
*
* @param {number} [$ui-header-inner-border-width=$window-header-inner-border-width]
* The inner border-width of the Header
*
* @param {number} [$ui-header-icon-width=$window-header-icon-width]
* The width of the Header icon
*
* @param {number} [$ui-header-icon-height=$window-header-icon-height]
* The height of the Header icon
*
* @param {number} [$ui-header-icon-spacing=$window-header-icon-spacing]
* The space between the Header icon and text
*
* @param {list} [$ui-header-icon-background-position=$window-header-icon-background-position]
* The background-position of the Header icon
*
* @param {color} [$ui-header-glyph-color=$window-header-glyph-color]
* The color of the Header glyph icon
*
* @param {number} [$ui-header-glyph-opacity=$window-header-glyph-opacity]
* The opacity of the Header glyph icon
*
* @param {number} [$ui-tool-spacing=$window-tool-spacing]
* The space between the {@link Ext.panel.Tool Tools}
*
* @param {string} [$ui-tool-background-image=$window-tool-background-image]
* The background sprite to use for {@link Ext.panel.Tool Tools}
*
* @param {color} [$ui-body-border-color=$window-body-border-color]
* The border-color of the Window body
*
* @param {color} [$ui-body-background-color=$window-body-background-color]
* The background-color of the Window body
*
* @param {number} [$ui-body-border-width=$window-body-border-width]
* The border-width of the Window body
*
* @param {string} [$ui-body-border-style=$window-body-border-style]
* The border-style of the Window body
*
* @param {color} [$ui-body-color=$window-body-color]
* The color of text inside the Window body
*
* @param {color} [$ui-background-color=$window-background-color]
* The background-color of the Window
*
* @param {boolean} [$ui-force-header-border=$window-force-header-border]
* True to force the window header to have a border on the side facing
* the window body. Overrides dock layout's border management border
* removal rules.
*
* @param {boolean} [$ui-include-border-management-rules=$window-include-border-management-rules]
* True to include neptune style border management rules.
*
* @param {color} [$ui-wrap-border-color=$window-wrap-border-color]
* The color to apply to the border that wraps the body and docked items. The presence of
* the wrap border is controlled by the {@link #border} config. Only applicable when
* `$ui-include-border-management-rules` is `true`.
*
* @param {color} [$ui-wrap-border-width=$window-wrap-border-width]
* The width to apply to the border that wraps the body and docked items. The presence of
* the wrap border is controlled by the {@link #border} config. Only applicable when
* `$ui-include-border-management-rules` is `true`.
*
* @param {boolean} [$ui-ignore-frame-padding=$window-ignore-frame-padding]
* True to ignore the frame padding. By default, the frame mixin adds extra padding when
* border radius is larger than border width. This is intended to prevent the content
* from colliding with the rounded corners of the frame. Set this to true to prevent
* the window frame from adding this extra padding.
*
* @member Ext.window.Window
*/
/* line 665, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-ghost {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
opacity: 0.65; }
/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-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 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-mc {
background-color: #ced9e7; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-window-default {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-frameInfo {
font-family: dh-5-5-5-5-1-1-1-1-4-4-4-4; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-tr,
.x5-window-default-br,
.x5-window-default-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-tl,
.x5-window-default-bl,
.x5-window-default-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-tc {
height: 5px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-bc {
height: 5px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-tl,
.x5-window-default-bl,
.x5-window-default-tr,
.x5-window-default-br,
.x5-window-default-tc,
.x5-window-default-bc,
.x5-window-default-ml,
.x5-window-default-mr {
background-image: url(images/window/window-default-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-ml,
.x5-window-default-mr {
background-image: url(images/window/window-default-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-default-mc {
padding: 0px 0px 0px 0px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-window-default:before {
display: none;
content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 234, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-body-default {
border-color: #99bbe8;
border-width: 1px;
border-style: solid;
background: #dfe8f6;
color: black;
font-size: 12px;
font-weight: normal;
font-family: tahoma, arial, verdana, sans-serif; }
/* line 248, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-default {
font-size: 11px;
border-color: #a2b1c5;
background-color: #ced9e7; }
/* line 253, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-default .x5-tool-img {
background-color: #ced9e7; }
/* line 266, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-default-horizontal .x5-window-header-default-tab-bar {
margin-top: -5px;
margin-bottom: -5px; }
/* line 273, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-default-vertical .x5-window-header-default-tab-bar {
margin-right: -5px;
margin-left: -5px; }
/* line 289, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-title-default {
color: #04468c;
font-size: 11px;
font-weight: bold;
font-family: tahoma, arial, verdana, sans-serif;
line-height: 15px; }
/* line 298, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-title-default > .x5-title-text-default {
padding: 0 2px 1px;
text-transform: none; }
/* line 341, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-title-default > .x5-title-icon-wrap-default.x5-title-icon-top {
height: 18px;
padding-bottom: 2px; }
/* line 346, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-title-default > .x5-title-icon-wrap-default.x5-title-icon-right {
width: 18px;
padding-left: 2px; }
/* line 358, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-title-default > .x5-title-icon-wrap-default.x5-title-icon-bottom {
height: 18px;
padding-top: 2px; }
/* line 363, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-title-default > .x5-title-icon-wrap-default.x5-title-icon-left {
width: 18px;
padding-right: 2px; }
/* line 375, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-title-default > .x5-title-icon-wrap-default > .x5-title-icon-default {
width: 16px;
height: 16px;
background-position: center center; }
/* line 381, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-title-default > .x5-title-icon-wrap-default > .x5-title-glyph {
color: #04468c;
font-size: 16px;
line-height: 16px;
opacity: 0.5; }
/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-ie8 .x5-window-header-title-default > .x5-title-icon-wrap-default > .x5-title-glyph {
color: #698fb9; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 5px 5px 1px 5px;
border-width: 1px 1px 0 1px;
border-style: solid;
background-color: #ced9e7; }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-mc {
background-color: #ced9e7; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-window-header-default-top {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-frameInfo {
font-family: dh-5-5-0-5-1-1-0-1-5-5-1-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-tr,
.x5-window-header-default-top-br,
.x5-window-header-default-top-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-tl,
.x5-window-header-default-top-bl,
.x5-window-header-default-top-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-tc {
height: 5px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-bc {
height: 0; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-tl,
.x5-window-header-default-top-bl,
.x5-window-header-default-top-tr,
.x5-window-header-default-top-br,
.x5-window-header-default-top-tc,
.x5-window-header-default-top-bc,
.x5-window-header-default-top-ml,
.x5-window-header-default-top-mr {
background-image: url(images/window-header/window-header-default-top-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-ml,
.x5-window-header-default-top-mr {
background-image: url(images/window-header/window-header-default-top-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-top-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-window-header-default-top:before {
display: none;
content: "x-slicer:frame:5px 5px 0 5px, corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 5px 5px 1px;
border-width: 1px 1px 1px 0;
border-style: solid;
background-color: #ced9e7; }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-mc {
background-color: #ced9e7; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-window-header-default-right {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-frameInfo {
font-family: dh-5-5-5-0-1-1-1-0-5-5-5-1; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-tr,
.x5-window-header-default-right-br,
.x5-window-header-default-right-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-tl,
.x5-window-header-default-right-bl,
.x5-window-header-default-right-ml {
padding-left: 0; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-tc {
height: 5px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-bc {
height: 5px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-tl,
.x5-window-header-default-right-bl,
.x5-window-header-default-right-tr,
.x5-window-header-default-right-br,
.x5-window-header-default-right-tc,
.x5-window-header-default-right-bc,
.x5-window-header-default-right-ml,
.x5-window-header-default-right-mr {
background-image: url(images/window-header/window-header-default-right-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-ml,
.x5-window-header-default-right-mr {
background-image: url(images/window-header/window-header-default-right-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-right-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-window-header-default-right:before {
display: none;
content: "x-slicer:frame:5px 5px 5px 0, corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 1px 5px 5px 5px;
border-width: 0 1px 1px 1px;
border-style: solid;
background-color: #ced9e7; }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-mc {
background-color: #ced9e7; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-window-header-default-bottom {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-frameInfo {
font-family: dh-0-5-5-5-0-1-1-1-1-5-5-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-tr,
.x5-window-header-default-bottom-br,
.x5-window-header-default-bottom-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-tl,
.x5-window-header-default-bottom-bl,
.x5-window-header-default-bottom-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-tc {
height: 0; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-bc {
height: 5px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-tl,
.x5-window-header-default-bottom-bl,
.x5-window-header-default-bottom-tr,
.x5-window-header-default-bottom-br,
.x5-window-header-default-bottom-tc,
.x5-window-header-default-bottom-bc,
.x5-window-header-default-bottom-ml,
.x5-window-header-default-bottom-mr {
background-image: url(images/window-header/window-header-default-bottom-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-ml,
.x5-window-header-default-bottom-mr {
background-image: url(images/window-header/window-header-default-bottom-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-bottom-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-window-header-default-bottom:before {
display: none;
content: "x-slicer:frame:0 5px 5px 5px, corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 1px 5px 5px;
border-width: 1px 0 1px 1px;
border-style: solid;
background-color: #ced9e7; }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-mc {
background-color: #ced9e7; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-window-header-default-left {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-frameInfo {
font-family: dh-5-0-5-5-1-0-1-1-5-1-5-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-tr,
.x5-window-header-default-left-br,
.x5-window-header-default-left-mr {
padding-right: 0; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-tl,
.x5-window-header-default-left-bl,
.x5-window-header-default-left-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-tc {
height: 5px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-bc {
height: 5px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-tl,
.x5-window-header-default-left-bl,
.x5-window-header-default-left-tr,
.x5-window-header-default-left-br,
.x5-window-header-default-left-tc,
.x5-window-header-default-left-bc,
.x5-window-header-default-left-ml,
.x5-window-header-default-left-mr {
background-image: url(images/window-header/window-header-default-left-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-ml,
.x5-window-header-default-left-mr {
background-image: url(images/window-header/window-header-default-left-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-left-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-window-header-default-left:before {
display: none;
content: "x-slicer:frame:5px 0 5px 5px, corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 5px 5px 5px 5px;
border-width: 1px;
border-style: solid;
background-color: #ced9e7; }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-mc {
background-color: #ced9e7; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-window-header-default-collapsed-top {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-frameInfo {
font-family: dh-5-5-5-5-1-1-1-1-5-5-5-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-tr,
.x5-window-header-default-collapsed-top-br,
.x5-window-header-default-collapsed-top-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-tl,
.x5-window-header-default-collapsed-top-bl,
.x5-window-header-default-collapsed-top-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-tc {
height: 5px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-bc {
height: 5px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-tl,
.x5-window-header-default-collapsed-top-bl,
.x5-window-header-default-collapsed-top-tr,
.x5-window-header-default-collapsed-top-br,
.x5-window-header-default-collapsed-top-tc,
.x5-window-header-default-collapsed-top-bc,
.x5-window-header-default-collapsed-top-ml,
.x5-window-header-default-collapsed-top-mr {
background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-ml,
.x5-window-header-default-collapsed-top-mr {
background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-top-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-window-header-default-collapsed-top:before {
display: none;
content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 5px 5px 5px;
border-width: 1px;
border-style: solid;
background-color: #ced9e7; }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-mc {
background-color: #ced9e7; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-window-header-default-collapsed-right {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-frameInfo {
font-family: dh-5-5-5-5-1-1-1-1-5-5-5-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-tr,
.x5-window-header-default-collapsed-right-br,
.x5-window-header-default-collapsed-right-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-tl,
.x5-window-header-default-collapsed-right-bl,
.x5-window-header-default-collapsed-right-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-tc {
height: 5px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-bc {
height: 5px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-tl,
.x5-window-header-default-collapsed-right-bl,
.x5-window-header-default-collapsed-right-tr,
.x5-window-header-default-collapsed-right-br,
.x5-window-header-default-collapsed-right-tc,
.x5-window-header-default-collapsed-right-bc,
.x5-window-header-default-collapsed-right-ml,
.x5-window-header-default-collapsed-right-mr {
background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-ml,
.x5-window-header-default-collapsed-right-mr {
background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-right-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-window-header-default-collapsed-right:before {
display: none;
content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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: 5px 5px 5px 5px;
border-width: 1px;
border-style: solid;
background-color: #ced9e7; }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-mc {
background-color: #ced9e7; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-window-header-default-collapsed-bottom {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-frameInfo {
font-family: dh-5-5-5-5-1-1-1-1-5-5-5-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-tr,
.x5-window-header-default-collapsed-bottom-br,
.x5-window-header-default-collapsed-bottom-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-tl,
.x5-window-header-default-collapsed-bottom-bl,
.x5-window-header-default-collapsed-bottom-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-tc {
height: 5px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-bc {
height: 5px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-tl,
.x5-window-header-default-collapsed-bottom-bl,
.x5-window-header-default-collapsed-bottom-tr,
.x5-window-header-default-collapsed-bottom-br,
.x5-window-header-default-collapsed-bottom-tc,
.x5-window-header-default-collapsed-bottom-bc,
.x5-window-header-default-collapsed-bottom-ml,
.x5-window-header-default-collapsed-bottom-mr {
background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-ml,
.x5-window-header-default-collapsed-bottom-mr {
background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-bottom-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-window-header-default-collapsed-bottom:before {
display: none;
content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 5px 5px 5px;
border-width: 1px;
border-style: solid;
background-color: #ced9e7; }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-mc {
background-color: #ced9e7; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-window-header-default-collapsed-left {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-frameInfo {
font-family: dh-5-5-5-5-1-1-1-1-5-5-5-5; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-tr,
.x5-window-header-default-collapsed-left-br,
.x5-window-header-default-collapsed-left-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-tl,
.x5-window-header-default-collapsed-left-bl,
.x5-window-header-default-collapsed-left-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-tc {
height: 5px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-bc {
height: 5px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-tl,
.x5-window-header-default-collapsed-left-bl,
.x5-window-header-default-collapsed-left-tr,
.x5-window-header-default-collapsed-left-br,
.x5-window-header-default-collapsed-left-tc,
.x5-window-header-default-collapsed-left-bc,
.x5-window-header-default-collapsed-left-ml,
.x5-window-header-default-collapsed-left-mr {
background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-ml,
.x5-window-header-default-collapsed-left-mr {
background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-window-header-default-collapsed-left-mc {
padding: 1px 1px 1px 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-window-header-default-collapsed-left:before {
display: none;
content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 500, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-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 504, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-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 508, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-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 512, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-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 518, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-default .x5-window-header-icon {
width: 16px;
height: 16px;
color: #04468c;
font-size: 16px;
line-height: 16px;
background-position: center center; }
/* line 527, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-default .x5-window-header-glyph {
color: #04468c;
font-size: 16px;
line-height: 16px;
opacity: 0.5; }
/* line 544, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-ie8 .x5-window-header-default .x5-window-header-glyph {
color: #698fb9; }
/* line 553, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-default-horizontal .x5-tool-after-title {
margin: 0 0 0 2px; }
/* line 563, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-default-horizontal .x5-tool-before-title {
margin: 0 2px 0 0; }
/* line 575, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-default-vertical .x5-tool-after-title {
margin: 2px 0 0 0; }
/* line 585, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-header-default-vertical .x5-tool-before-title {
margin: 0 0 2px 0; }
/* line 603, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-default-collapsed .x5-window-header {
border-width: 1px !important; }
/* line 609, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-nbr .x5-window-default-collapsed .x5-window-header {
border-width: 0 !important; }
/* line 675, ../../../ext-theme-neutral/sass/src/window/Window.scss */
.x5-window-body-plain {
background-color: transparent; }
/**
* Creates a visual theme for a Ext.tip.Tip
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {color} [$ui-border-color=$tip-border-color]
* The border-color of the Tip
*
* @param {number} [$ui-border-width=$tip-border-width]
* The border-width of the Tip
*
* @param {number} [$ui-border-radius=$tip-border-radius]
* The border-radius of the Tip
*
* @param {color} [$ui-background-color=$tip-background-color]
* The background-color of the Tip
*
* @param {string/list} [$ui-background-gradient=$tip-background-gradient]
* The background-gradient of the Tip. Can be either the name of a predefined gradient or a
* list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
*
* @param {number} [$ui-tool-spacing=$tip-tool-spacing]
* The space between {@link Ext.panel.Tool Tools} in the header
*
* @param {string} [$ui-tool-background-image=$tip-tool-background-image]
* The sprite to use for the header {@link Ext.panel.Tool Tools}
*
* @param {number/list} [$ui-header-padding=$tip-header-padding]
* The padding of the Tip header's body element
*
* @param {color} [$ui-header-color=$tip-header-color]
* The text color of the Tip header
*
* @param {number} [$ui-header-font-size=$tip-header-font-size]
* The font-size of the Tip header
*
* @param {string} [$ui-header-font-weight=$tip-header-font-weight]
* The font-weight of the Tip header
*
* @param {number/list} [$ui-body-padding=$tip-body-padding]
* The padding of the Tip body
*
* @param {color} [$ui-body-color=$tip-body-color]
* The text color of the Tip body
*
* @param {number} [$ui-body-font-size=$tip-body-font-size]
* The font-size of the Tip body
*
* @param {string} [$ui-body-font-weight=$tip-body-font-weight]
* The font-weight of the Tip body
*
* @param {color} [$ui-body-link-color=$tip-body-link-color]
* The text color of any anchor tags inside the Tip body
*
* @param {number} [$ui-inner-border-width=0]
* The inner border-width of the Tip
*
* @param {color} [$ui-inner-border-color=#fff]
* The inner border-color of the Tip
*
* @member Ext.tip.Tip
*/
/* line 179, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-anchor {
position: absolute;
overflow: hidden;
height: 10px;
width: 10px;
border-style: solid;
border-width: 5px;
border-color: #8eaace; }
/* line 192, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-anchor-top {
border-top-color: transparent;
border-left-color: transparent;
border-right-color: transparent;
_border-top-color: pink;
_border-left-color: pink;
_border-right-color: pink;
_filter: chroma(color=pink); }
/* line 205, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-anchor-bottom {
border-bottom-color: transparent;
border-left-color: transparent;
border-right-color: transparent;
_border-bottom-color: pink;
_border-left-color: pink;
_border-right-color: pink;
_filter: chroma(color=pink); }
/* line 218, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-anchor-left {
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
_border-top-color: pink;
_border-bottom-color: pink;
_border-left-color: pink;
_filter: chroma(color=pink); }
/* line 231, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-anchor-right {
border-top-color: transparent;
border-bottom-color: transparent;
border-right-color: transparent;
_border-top-color: pink;
_border-bottom-color: pink;
_border-right-color: pink;
_filter: chroma(color=pink); }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-mc {
background-color: #e9f2ff; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-tip-default {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-frameInfo {
font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-tl {
background-position: 0 -6px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-tr {
background-position: right -9px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-bl {
background-position: 0 -12px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-br {
background-position: right -15px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-bc {
background-position: 0 -3px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-tr,
.x5-tip-default-br,
.x5-tip-default-mr {
padding-right: 3px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-tl,
.x5-tip-default-bl,
.x5-tip-default-ml {
padding-left: 3px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-tc {
height: 3px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-bc {
height: 3px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-tl,
.x5-tip-default-bl,
.x5-tip-default-tr,
.x5-tip-default-br,
.x5-tip-default-tc,
.x5-tip-default-bc,
.x5-tip-default-ml,
.x5-tip-default-mr {
background-image: url(images/tip/tip-default-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-ml,
.x5-tip-default-mr {
background-image: url(images/tip/tip-default-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-default-mc {
padding: 0px 0px 0px 0px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tip-default:before {
display: none;
content: "x-slicer:frame:3px 3px 3px 3px, corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 112, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-default {
border-color: #8eaace; }
/* line 121, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-default .x5-tool-img {
background-color: #e9f2ff; }
/* line 136, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-header-default .x5-tool-after-title {
margin: 0 0 0 6px; }
/* line 146, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-header-default .x5-tool-before-title {
margin: 0 6px 0 0; }
/* line 157, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-header-default {
padding: 3px 3px 0 3px; }
/* line 161, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-header-title-default {
color: #444444;
font-size: 11px;
font-weight: bold; }
/* line 167, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-body-default {
padding: 3px;
color: #444444;
font-size: 11px;
font-weight: normal; }
/* line 172, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-body-default a {
color: #2a2a2a; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-mc {
background-color: white; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-tip-form-invalid {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-frameInfo {
font-family: th-5-5-5-5-1-1-1-1-4-4-4-4; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-tr,
.x5-tip-form-invalid-br,
.x5-tip-form-invalid-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-tl,
.x5-tip-form-invalid-bl,
.x5-tip-form-invalid-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-tc {
height: 5px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-bc {
height: 5px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-tl,
.x5-tip-form-invalid-bl,
.x5-tip-form-invalid-tr,
.x5-tip-form-invalid-br,
.x5-tip-form-invalid-tc,
.x5-tip-form-invalid-bc,
.x5-tip-form-invalid-ml,
.x5-tip-form-invalid-mr {
background-image: url(images/tip/tip-form-invalid-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-ml,
.x5-tip-form-invalid-mr {
background-image: url(images/tip/tip-form-invalid-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-tip-form-invalid-mc {
padding: 0px 0px 0px 0px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-tip-form-invalid:before {
display: none;
content: "x-slicer:frame:5px 5px 5px 5px, corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 112, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-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 121, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-form-invalid .x5-tool-img {
background-color: white; }
/* line 136, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-header-form-invalid .x5-tool-after-title {
margin: 0 0 0 6px; }
/* line 146, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-header-form-invalid .x5-tool-before-title {
margin: 0 6px 0 0; }
/* line 157, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-header-form-invalid {
padding: 3px 3px 0 3px; }
/* line 161, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-header-title-form-invalid {
color: #444444;
font-size: 11px;
font-weight: bold; }
/* line 167, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-body-form-invalid {
padding: 3px 3px 3px 22px;
color: #444444;
font-size: 11px;
font-weight: normal; }
/* line 172, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-body-form-invalid a {
color: #2a2a2a; }
/* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-body-form-invalid {
background: 1px 1px no-repeat;
background-image: url(images/form/exclamation.gif); }
/* line 271, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-body-form-invalid li {
margin-bottom: 4px; }
/* line 273, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */
.x5-tip-body-form-invalid li.last {
margin-bottom: 0; }
/* COMMON */
/* line 2, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-container .x5-toolbar-default {
border-color: #CACACA;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+your_sha256_hashOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashZD0iciI/PjU1iboAAAAfSURBVHjaYvj//z8DDN+8eROVA6JROGABZA4IAwQYALYwMgX3eE7SAAAAAElFTkSuQmCC);
color: #555;
background-color: #F7F7F7;
font-weight: bold;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased; }
/* line 12, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-container .x5-docked-top {
border-bottom-width: 1px !important; }
/* line 16, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-container .x5-docked-bottom {
border-top-width: 1px !important; }
/* line 21, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-container .x5-tree-view,
.x5-bindinspector-container .x5-grid-view {
background-color: #F3F3F3;
box-shadow: inset 8px 0 8px 0 rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 8px 0 8px 0 rgba(0, 0, 0, 0.1);
-webkit-box-shadow: inset 8px 0 8px 0 rgba(0, 0, 0, 0.1); }
/* line 28, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-last-item td {
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1); }
/* line 34, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-unhighlighted.x5-bindinspector-last-item td {
box-shadow: 0 8px 8px black;
-moz-box-shadow: 0 8px 8px black;
-webkit-box-shadow: 0 8px 8px black; }
/* COMPONENT LIST */
/* line 41, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-vm-results-tb.x5-toolbar-default {
background-color: #FFE8BE; }
/* line 45, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-target-menu {
padding: 10px;
height: 0px;
overflow: hidden;
background: #3C3C3C;
color: #FFFFFF;
font-size: 15px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
/* line 56, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-target-menu hr {
border-color: #5A5A5A; }
/* line 60, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-picker-lbl {
width: 76px;
display: inline-block;
text-align: right;
padding-right: 19px; }
/* line 68, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-preview-bind,
.x5-bindinspector-open-bind {
padding: 4px;
background: #4D4D4D;
display: inline-block;
margin: 2px 12px 2px 4px;
color: #FFC154;
font-weight: bold;
border: 1px solid #695633;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px; }
/* line 84, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-preview-bind:hover,
.x5-bindinspector-open-bind:hover {
background-color: #646464;
color: white;
border-color: #A2A2A2; }
/* line 91, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-preview-vm,
.x5-bindinspector-open-vm {
padding: 4px;
background: #4D4D4D;
display: inline-block;
margin: 2px;
color: #54CFFF;
font-weight: bold;
border: 1px solid #4F5E64;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px; }
/* line 107, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-preview-vm:hover,
.x5-bindinspector-open-vm:hover {
background-color: #646464;
color: white;
border-color: #A2A2A2; }
/* line 113, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-filter-visible .x5-tree-node-text {
font-weight: bold;
background: #666666;
padding: 2px 12px 3px 12px;
margin-left: 5px;
color: #FFFFFF;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
border: 1px solid #444444; }
/* line 125, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindings-icon,
.x5-vm-icon {
padding-left: 7px;
vertical-align: bottom;
font-size: 18px; }
/* line 131, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindings-icon {
color: #F39061; }
/* line 135, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-vm-icon {
color: #67AAE9; }
/* line 139, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-filter-visible .x5-bindings-icon {
color: #F8A67F; }
/* line 143, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-filter-visible .x5-vm-icon {
color: #7BC8F3; }
/* data missing from binding */
/* line 148, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-missing-data .x5-tree-icon {
/*red*/
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABgUlEQVR42mNgwAGueUd43w6IunsrIOrBdd+wYAZSwBnPAGWgxm93A2P+g/At/6gfl70DNYk24LZ/5BKQRhB9wy9yFoh90zdyNVGar3iGat0OiP4LsvWMS6jcOVc/KZBr7vhH/bvsE6hPhO1Rq8C2+0VNgYnd8o/ohXplA17NIBtANoFsBNnMy8v7H4RPOPuJ3/KL+gqSu+YTboTTgJt+your_sha256_hashV7xDzTAMAJq8HRza/pHtMDFkA0Dghl9EK0RNxA5Uv3tHWIEl/KI+HrN0F8JlAEgOpAakFqQH4Xf/your_sha256_hashyour_sha256_hashTQxnHHxEgAGzHJiE3xJnECiTRb0F6QGlDQCUUiJb7CpB8QAAAABJRU5ErkJggg==); }
/* rowbody */
/* line 154, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-cmp-list-row-body {
display: none;
background: #4E4E4E;
padding: 7px 12px;
color: #FFC256;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 13px;
line-height: 21px;
border: 1px solid #222222; }
/* line 166, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-grid-item-selected .x5-cmp-list-row-body {
display: block; }
/* tips */
/* line 171, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-componentlist-tip {
background: #3C3C3C;
color: #C92424;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased; }
/* line 178, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-componentlist-tip hr {
border-color: #5A5A5A; }
/* line 182, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-componentlist-tip .x5-binding-tip-descriptor {
color: white;
font-weight: bold;
margin-left: 8px; }
/* line 188, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-componentlist-tip .x5-tip-body-default {
color: #FFFFFF;
font-size: 14px; }
/* line 193, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-binding-tip-value {
color: #FFC154;
font-size: 15px;
line-height: 28px; }
/* line 199, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-binding-missing-data {
color: #FF5E5E;
font-weight: bold; }
/* line 204, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-componentlist-tip .x5-tip-anchor {
position: absolute;
overflow: hidden;
border-style: solid;
border-width: 16px 16px 16px 0;
left: -15px !important;
top: 50% !important;
margin-top: -16px;
border-color: transparent #3C3C3C; }
/* BINDINGS PREVIEW */
/* line 218, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-prev-default {
background: white;
color: #6A8297;
font-size: 22px;
line-height: 31px;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-align: center; }
/* VIEW MODEL DETAIL */
/* line 231, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindindicator-vm-src {
background-image: url(data:image/png;base64,your_sha512_hash+rDUDxA///P1fAY8BzB6AB/0EYqOECiI9qAETu//+XDf//3xfAYcjLAKBNDxCKX00AKYZgEBsu/your_sha256_hashRU7AABzWObuSkN0egAAAABJRU5ErkJggg==);
background-position: center center;
background-repeat: no-repeat;
background-color: #FF5200; }
/* line 238, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-viewmodeldetail .x5-grid-item-over .x5-bindinspector-data-search-cell {
visibility: visible; }
/* line 242, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-viewmodeldetail .x5-grid-item-over .x5-bindinspector-data-search-cell:hover {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABNElEQVR42o2SLY6DUBSF2UHDBhCzDhSpI1gEO0BSgQI/G0CMqykSLGSWAggsogFFAuJOvyY0Q/kpJ3kJ4d1z7j3nPkXZga7rZ9/35Xq9ShRFEgTBr+u6qvIJp9Ppi+KmaWQcR+n7your_sha512_hash+your_sha256_hashCZgsLj4uKgABCENgGq+RBAcRppGmauiBPDwYyp+u61zf/98h3OlNUVdVzRRwyoSue+your_sha512_hash=);
background-color: #FF5200; }
/* line 247, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-data-search-cell {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/your_sha256_hashyour_sha256_hashyour_sha256_hash//EE4kY9M0cztlWZpRFP3oui54X7NIBYfDQeI4/your_sha256_hashQxDoWdLFn5pEEkQAWAajJKF4h1yhPq+N1/AamEAcyour_sha512_hash/jMnzbI73hMsAAAAASUVORK5CYII=);
background-position: center center;
background-repeat: no-repeat;
visibility: hidden; }
/* line 254, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-isloading .x5-tree-icon {
background-image: url(images/grid/loading.gif) !important;
vertical-align: middle;
width: 16px;
height: 16px; }
/* line 261, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-highlighted {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased; }
/* line 266, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-unhighlighted {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
opacity: 0.2;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased; }
/* line 272, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bi-zero-bind-count {
color: #CACACA; }
/* line 276, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-not-inherited .x5-bindinspector-indicator-col {
/*gray diag lines*/
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+your_sha256_hashOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashZD0iciI/PjU1iboAAAAfSURBVHjaYvj//z8DDN+8eROVA6JROGABZA4IAwQYALYwMgX3eE7SAAAAAElFTkSuQmCC);
border-right: 2px solid #CFCDCD;
font-size: 13px;
color: #8B8B8B;
background-color: #F7F7F7; }
/* line 285, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-indicator-col {
border-right: 2px solid #F3F3F3;
color: #414141; }
/* line 290, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-missing-data .x5-tree-node-text {
position: relative; }
/* line 294, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-data-only .x5-tree-icon {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
opacity: 0.7;
/*blue*/
/*background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABOklEQVR42mNgQANt8/ZodSw91Ne59PB1IP4Bwh3LD18DiYHkGHCB0PpVbB1LD0/pXHrkb9fyo/+xYZBcx5JDMwr7VnFiaO5aeng3TCHQoJntiw+Y1s/fzwHCIDZIDC6your_sha512_hash/uyQ/your_sha256_hashyour_sha256_hashyour_sha256_hash0Sg/sZCQAAbAWIYstl68AAAAAASUVORK5CYII=);*/
/*gray info*/
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABGElEQVR42qVTSwrCMBDNyg/oRVR0oZ6vN1ApCrrqvruurW2hvwuIFa+hCxVF34Ok1NIWrQNDkpf3pjOTqRA5s2275/v+your_sha256_hashOvfE1H0Yhjtq0gAAVlJ4chxnpHAlUGfc9cE5Su4yBRHgQRA1DrOZ5QNI/khm8aBWINJcpS2+your_sha256_hashw7WvbGJZgEwTF2zI4JdnJEc9I7WVg1SQejpI1FSN8pp1Esfcd7gnVjrKf/9MBWkumCq+dMd6YbeJpTVn7A1h4Ltw2AUeVgAAAABJRU5ErkJggg==); }
/* line 305, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-data-only .x5-tree-node-text,
.x5-bindinspector-data-only .x5-grid-cell-inner {
color: #CACACA; }
/* line 309, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-stub-only .x5-tree-icon {
/*blue*/
/*background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABOklEQVR42mNgQANt8/ZodSw91Ne59PB1IP4Bwh3LD18DiYHkGHCB0PpVbB1LD0/pXHrkb9fyo/+xYZBcx5JDMwr7VnFiaO5aeng3TCHQoJntiw+Y1s/fzwHCIDZIDC6your_sha512_hash/uyQ/your_sha256_hashyour_sha256_hashyour_sha256_hash0Sg/sZCQAAbAWIYstl68AAAAAASUVORK5CYII=);*/
/*yellow alert*/
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/your_sha256_hashEuKoEu+SWcg5baLCS7tNTx98IzyMWjXoeHe95/z3vODdzi2kdTvIo30fL1+your_sha256_hashyour_sha256_hashE5hJXI+AbUVvfVtwZzkHTECAGptel8cgisSnyJDk+8GRlZ8MdOwxITghoa9ArhlZmzB+/abDjwh+c8+LBgRnMLEBHnxKJYpBpfMFDbGjWcGPFD11gAAAABJRU5ErkJggg==); }
/* COMPONENT DETAIL */
/* line 319, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-stub-active {
border-bottom: 1px solid #DFDFDF; }
/* line 323, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-stub-active:hover {
color: #3DB5CC;
border-color: #3DB5CC; }
/* line 328, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-cmp-datasrc {
color: #2E2E2E;
background-color: #FAFAFA;
padding: 0px 10px;
/*gray diag lines*/
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+your_sha256_hashOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashZD0iciI/PjU1iboAAAAfSURBVHjaYvj//z8DDN+8eROVA6JROGABZA4IAwQYALYwMgX3eE7SAAAAAElFTkSuQmCC);
border-top: 1px solid #E0E0E0; }
/* line 338, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-compdetail-grid .x5-grid-cell-inner {
line-height: 31px;
font-size: 14px;
padding: 10px 16px;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased; }
/* line 347, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-compdetail-grid .x5-grid-item-selected,
.x5-bindinspector-compdetail-grid .x5-grid-item-focused {
background-color: white; }
/* line 352, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-compdetail-grid .x5-grid-item-selected .x5-grid-cell,
.x5-bindinspector-compdetail-grid .x5-grid-item-focused .x5-grid-cell {
border-left: 20px solid #FFC154; }
/* line 356, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-comp-key {
font-weight: bold;
color: #575656; }
/* line 362, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-comp-desc {
margin-left: 12px;
color: #919191; }
/* line 367, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-comp-val {
color: #318094;
font-weight: bold; }
/* line 372, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-bind-type {
color: #C4935F;
font-size: 12px;
line-height: 10px;
font-style: italic;
text-align: right; }
/* line 382, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-direct-val,
.x5-bindinspector-inherited-val,
.x5-bindinspector-mult-val {
position: relative; }
/* line 388, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-direct-val:after,
.x5-bindinspector-inherited-val:after,
.x5-bindinspector-mult-val-val:after {
position: absolute;
bottom: -13px;
width: 16px;
left: 50%;
margin-left: -8px;
text-align: center;
color: gray;
line-height: 14px; }
/* line 399, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-direct-val:after {
content: '\25CF'; }
/* line 403, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-inherited-val {
content: '\25CB'; }
/* line 407, ../../../ext-theme-neutral/sass/src/app/bindinspector/Inspector.scss */
.x5-bindinspector-mult-val {
content: '\25D3'; }
/**
* Creates a visual theme for a ButtonGroup.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {color} [$ui-background-color=$btn-group-background-color]
* The background-color of the button group
*
* @param {color} [$ui-border-color=$btn-group-border-color]
* The border-color of the button group
*
* @param {number} [$ui-border-width=$btn-group-border-width]
* The border-width of the button group
*
* @param {number} [$ui-border-radius=$btn-group-border-radius]
* The border-radius of the button group
*
* @param {color} [$ui-inner-border-color=$btn-group-inner-border-color]
* The inner border-color of the button group
*
* @param {color} [$ui-header-background-color=$btn-group-header-background-color]
* The background-color of the header
*
* @param {string} [$ui-header-font=$btn-group-header-font]
* The font of the header
*
* @param {color} [$ui-header-color=$btn-group-header-color]
* The text color of the header
*
* @param {number} [$ui-header-line-height=$btn-group-header-line-height]
* The line-height of the header
*
* @param {number} [$ui-header-padding=$btn-group-header-padding]
* The padding of the header
*
* @param {number} [$ui-body-padding=$btn-group-padding]
* The padding of the body element
*
* @param {string} [$ui-tool-background-image=$btn-group-tool-background-image]
* Sprite image to use for header {@link Ext.panel.Tool Tools}
*
* @member Ext.container.ButtonGroup
*/
/* line 101, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-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 110, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-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 121, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-btn-group-header-default .x5-tool-img {
background-color: #c2d8f0; }
/* line 132, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-btn-group-header-text-container-default {
font: normal 11px tahoma, arial, verdana, sans-serif;
line-height: 15px;
color: #3e6aaa; }
/* line 138, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-btn-group-body-default {
padding: 0 1px; }
/* line 140, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-btn-group-body-default .x5-table-layout {
border-spacing: 0; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-mc {
background-color: #d0def0; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-btn-group-default-framed {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-frameInfo {
font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-tl {
background-position: 0 -4px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-tr {
background-position: right -6px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-bl {
background-position: 0 -8px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-br {
background-position: right -10px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-bc {
background-position: 0 -2px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-tr,
.x5-btn-group-default-framed-br,
.x5-btn-group-default-framed-mr {
padding-right: 2px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-tl,
.x5-btn-group-default-framed-bl,
.x5-btn-group-default-framed-ml {
padding-left: 2px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-tc {
height: 2px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-bc {
height: 2px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-tl,
.x5-btn-group-default-framed-bl,
.x5-btn-group-default-framed-tr,
.x5-btn-group-default-framed-br,
.x5-btn-group-default-framed-tc,
.x5-btn-group-default-framed-bc,
.x5-btn-group-default-framed-ml,
.x5-btn-group-default-framed-mr {
background-image: url(images/btn-group/btn-group-default-framed-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-ml,
.x5-btn-group-default-framed-mr {
background-image: url(images/btn-group/btn-group-default-framed-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-mc {
padding: 0px 0px 0px 0px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-group-default-framed:before {
display: none;
content: "x-slicer:frame:2px 2px 2px 2px, corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-mc {
background-color: #d0def0; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-btn-group-default-framed-notitle {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-frameInfo {
font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-tl {
background-position: 0 -4px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-tr {
background-position: right -6px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-bl {
background-position: 0 -8px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-br {
background-position: right -10px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-bc {
background-position: 0 -2px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-tr,
.x5-btn-group-default-framed-notitle-br,
.x5-btn-group-default-framed-notitle-mr {
padding-right: 2px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-tl,
.x5-btn-group-default-framed-notitle-bl,
.x5-btn-group-default-framed-notitle-ml {
padding-left: 2px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-tc {
height: 2px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-bc {
height: 2px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-tl,
.x5-btn-group-default-framed-notitle-bl,
.x5-btn-group-default-framed-notitle-tr,
.x5-btn-group-default-framed-notitle-br,
.x5-btn-group-default-framed-notitle-tc,
.x5-btn-group-default-framed-notitle-bc,
.x5-btn-group-default-framed-notitle-ml,
.x5-btn-group-default-framed-notitle-mr {
background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-ml,
.x5-btn-group-default-framed-notitle-mr {
background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-group-default-framed-notitle-mc {
padding: 0px 0px 0px 0px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-group-default-framed-notitle:before {
display: none;
content: "x-slicer:frame:2px 2px 2px 2px, corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 101, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-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 110, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-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 121, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-btn-group-header-default-framed .x5-tool-img {
background-color: #c2d8f0; }
/* line 132, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-btn-group-header-text-container-default-framed {
font: normal 11px tahoma, arial, verdana, sans-serif;
line-height: 15px;
color: #3e6aaa; }
/* line 138, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-btn-group-body-default-framed {
padding: 0 1px 0 1px; }
/* line 140, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */
.x5-btn-group-body-default-framed .x5-table-layout {
border-spacing: 0; }
/* line 1, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
.x5-dashboard-column {
padding: 0 0 7px 0; }
/* line 5, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
.x5-dashboard-panel {
margin-top: 7px; }
/* line 9, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
.x5-dashboard-column-first {
padding-left: 7px;
clear: left; }
/* line 14, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
.x5-dashboard-column-last {
padding-right: 7px; }
/* line 18, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
.x5-dashboard .x5-panel-dd-spacer {
border: 2px dashed #99bbe8;
background: #f6f6f6;
border-radius: 4px;
-moz-border-radius: 4px;
margin-top: 7px; }
/* line 28, ../../../ext-theme-neutral/sass/src/dashboard/Dashboard.scss */
.x5-dashboard-dd-over {
overflow: hidden !important; }
/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x5-message-box .x5-window-body {
background-color: #ced9e7;
border-width: 0; }
/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x5-message-box-info,
.x5-message-box-warning,
.x5-message-box-question,
.x5-message-box-error {
background-position: left top;
background-repeat: no-repeat; }
/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x5-message-box-icon {
height: 32px;
width: 32px;
margin-right: 10px; }
/* line 35, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x5-message-box-info {
background-image: url(images/shared/icon-info.gif); }
/* line 39, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x5-message-box-warning {
background-image: url(images/shared/icon-warning.gif); }
/* line 43, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x5-message-box-question {
background-image: url(images/shared/icon-question.gif); }
/* line 47, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */
.x5-message-box-error {
background-image: url(images/shared/icon-error.gif); }
/**
* Creates a visual theme for a CheckboxGroup buttons. Note this mixin only provides
* styling for the CheckboxGroup body and its {@link Ext.form.field.Checkbox#boxLabel}, The {@link #fieldLabel}
* and error icon/message are styled by {@link #extjs-label-ui}.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number/list} [$ui-body-padding=$form-checkboxgroup-body-padding]
* The padding of the CheckboxGroup body element
*
* @param {color} [$ui-body-invalid-border-color=$form-checkboxgroup-body-invalid-border-color]
* The border color of the CheckboxGroup body element when in an invalid state.
*
* @param {string} [$ui-body-invalid-border-style=$form-checkboxgroup-body-invalid-border-style]
* The border style of the CheckboxGroup body element when in an invalid state.
*
* @param {number} [$ui-body-invalid-border-width=$form-checkboxgroup-body-invalid-border-width]
* The border width of the CheckboxGroup body element when in an invalid state.
*
* @param {string} [$ui-body-invalid-background-image=$form-checkboxgroup-body-invalid-background-image]
* The background image of the CheckboxGroup body element when in an invalid state.
*
* @param {string} [$form-checkboxgroup-body-invalid-background-repeat=$form-field-invalid-background-repeat]
* The background-repeat of the CheckboxGroup body element when in an invalid state.
*
* @param {string} [$ui-body-invalid-background-position=$form-checkboxgroup-body-invalid-background-position]
* The background-position of the CheckboxGroup body element when in an invalid state.
*
* @member Ext.form.CheckboxGroup
*/
/* line 44, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */
.x5-form-item-body-default.x5-form-checkboxgroup-body {
padding: 0 4px; }
/* line 47, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */
.x5-form-invalid .x5-form-item-body-default.x5-form-checkboxgroup-body {
border-width: 1px;
border-style: solid;
border-color: #cc3300;
background-image: url(images/grid/invalid_line.gif);
background-repeat: repeat-x;
background-position: bottom; }
/**
* Creates a visual theme for text fields. Note this mixin only provides styling
* For the form field body, The label and error are styled by
* {@link Ext.form.Labelable#css_mixin-extjs-label-ui}.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {number} [$ui-header-font-size=$fieldset-header-font-size]
* The font-size of the FieldSet header
*
* @param {string} [$ui-header-font-weight=$fieldset-header-font-weight]
* The font-weight of the FieldSet header
*
* @param {string} [$ui-header-font-family=$fieldset-header-font-family]
* The font-family of the FieldSet header
*
* @param {number/string} [$ui-header-line-height=$fieldset-header-line-height]
* The line-height of the FieldSet header
*
* @param {color} [$ui-header-color=$fieldset-header-color]
* The text color of the FieldSet header
*
* @param {number} [$ui-border-width=$fieldset-border-width]
* The border-width of the FieldSet
*
* @param {string} [$ui-border-style=$fieldset-border-style]
* The border-style of the FieldSet
*
* @param {color} [$ui-border-color=$fieldset=border-color]
* The border-color of the FieldSet
*
* @param {number} [$ui-border-radius=$fieldset=border-radius]
* The border radius of FieldSet elements.
*
* @param {number/list} [$ui-padding=$fieldset-padding]
* The FieldSet's padding
*
* @param {number/list} [$ui-margin=$fieldset-margin]
* The FieldSet's margin
*
* @param {number/list} [$ui-header-padding=$fieldset-header-padding]
* The padding to apply to the FieldSet's header
*
* @param {number} [$ui-collapse-tool-size=$fieldset-collapse-tool-size]
* The size of the FieldSet's collapse tool
*
* @param {number/list} [$ui-collapse-tool-margin=$fieldset-collapse-tool-margin]
* The margin to apply to the FieldSet's collapse tool
*
* @param {number/list} [$ui-collapse-tool-padding=$fieldset-collapse-tool-padding]
* The padding to apply to the FieldSet's collapse tool
*
* @param {string} [$ui-collapse-tool-background-image=$fieldset-collapse-tool-background-image]
* The background-image to use for the collapse tool. If 'none' the default tool
* sprite will be used. Defaults to 'none'.
*
* @param {number} [$ui-collapse-tool-opacity=$fieldset-collapse-tool-opacity]
* The opacity of the FieldSet's collapse tool
*
* @param {number} [$ui-collapse-tool-opacity-over=$fieldset-collapse-tool-opacity-over]
* The opacity of the FieldSet's collapse tool when hovered
*
* @param {number} [$ui-collapse-tool-opacity-pressed=$fieldset-collapse-tool-opacity-pressed]
* The opacity of the FieldSet's collapse tool when pressed
*
* @param {number/list} [$ui-checkbox-margin=$fieldset-checkbox-margin]
* The margin to apply to the FieldSet's checkbox (for FieldSets that use
* {@link #checkboxToggle})
*
* @member Ext.form.FieldSet
*/
/* line 110, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-default {
border: 1px solid #b5b8c8;
padding: 0 10px;
margin: 0 0 10px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px; }
/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-ie8 .x5-fieldset-default {
padding-top: 0; }
/* line 126, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-ie8 .x5-fieldset-body-default {
padding-top: 0; }
/* line 132, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-header-default {
padding: 0 3px 1px;
line-height: 14px; }
/* line 136, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-header-default > .x5-fieldset-header-text {
font: normal 11px/14px tahoma, arial, verdana, sans-serif;
color: #15428b;
padding: 1px 0; }
/* line 143, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-header-checkbox-default {
margin: 2px 3px 1px 0;
line-height: 14px; }
/* line 153, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-header-tool-default {
margin: 1px 3px 0 0;
padding: 0; }
/* line 162, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-header-tool-default > .x5-tool-img {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
height: 15px;
width: 15px; }
/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-header-tool-default > .x5-tool-toggle {
background-position: 0 -60px; }
/* line 187, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-header-tool-default.x5-tool-over > .x5-tool-toggle {
background-position: -15px -60px; }
/* line 194, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-default.x5-fieldset-collapsed {
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
border-width: 1px 1px 0 1px;
border-left-color: transparent;
border-right-color: transparent; }
/* line 202, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-default.x5-fieldset-collapsed .x5-tool-toggle {
background-position: 0 -75px; }
/* line 206, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */
.x5-fieldset-default.x5-fieldset-collapsed .x5-tool-over > .x5-tool-toggle {
background-position: -15px -75px; }
/**
* Creates a visual theme for spinner field triggers. Note this mixin only provides
* styling for the spinner trigger buttons. The text field portion of the styling must be
* created using {@link Ext.form.field.Text#css_mixin-extjs-text-field-ui}
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {boolean} [$ui-trigger-vertical=$spinner-trigger-vertical]
* `true` to align the up/down triggers vertically.
*
* @param {number} [$ui-trigger-width=$form-trigger-width]
* The width of the triggers.
*
* @param {number} [$ui-field-height=$form-text-field-height]
* The height of the text field that the trigger must fit within. This does not set the
* height of the field, only the height of the triggers. When {@link #css_mixin-extjs-spinner-trigger-ui $ui-trigger-vertical}
* is true, the available height within the field borders is divided evenly between the
* two triggers.
*
* @param {number/list} [$ui-field-border-width=$form-text-field-border-width]
* The border width of the text field that the trigger must fit within. This does not set
* the border of the field, it is only needed so that the border-width of the field can
* be subtracted from the trigger height.
*
* @param {string} [$ui-trigger-vertical-background-image=$spinner-trigger-vertical-background-image]
* The background image sprite for vertically aligned spinner triggers
*
* @param {string} [$ui-trigger-up-background-image='form/spinner-up']
* The background image for the "up" trigger when triggers are horizontally aligned
*
* @param {string} [$ui-trigger-down-background-image='form/spinner-down']
* The background image for the "down" trigger when triggers are horizontally aligned
*
* @param {color} [$ui-trigger-background-color=$form-text-field-background-color]
* The background color of the spinner triggers
*
* @param {boolean} [$ui-classic-border=$form-text-field-classic-border]
* `true` to use classic-theme styled border.
*
* @member Ext.form.trigger.Spinner
*/
/* line 59, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-trigger-spinner-default {
width: 17px;
border: 0; }
/* line 66, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-default {
background-image: url(images/form/spinner.gif);
background-color: white;
width: 17px;
height: 11px; }
/* line 102, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-default {
background-position: 0 0; }
/* line 105, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-default.x5-form-spinner-over {
background-position: -17px 0; }
/* line 107, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-default.x5-form-spinner-over.x5-form-spinner-focus {
background-position: -68px 0; }
/* line 112, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-default.x5-form-spinner-focus {
background-position: -51px 0; }
/* line 117, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-default.x5-form-spinner.x5-form-spinner-click {
background-position: -34px 0; }
/* line 122, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-default {
background-position: 0 -11px; }
/* line 125, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-default.x5-form-spinner-over {
background-position: -17px -11px; }
/* line 127, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-default.x5-form-spinner-over.x5-form-spinner-focus {
background-position: -68px -11px; }
/* line 132, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-default.x5-form-spinner-focus {
background-position: -51px -11px; }
/* line 137, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-default.x5-form-spinner.x5-form-spinner-click {
background-position: -34px -11px; }
/* line 59, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-trigger-spinner-toolbar {
width: 17px;
border: 0; }
/* line 66, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-toolbar {
background-image: url(images/form/spinner-small.gif);
background-color: white;
width: 17px;
height: 10px; }
/* line 102, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-toolbar {
background-position: 0 0; }
/* line 105, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-toolbar.x5-form-spinner-over {
background-position: -17px 0; }
/* line 107, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-toolbar.x5-form-spinner-over.x5-form-spinner-focus {
background-position: -68px 0; }
/* line 112, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-toolbar.x5-form-spinner-focus {
background-position: -51px 0; }
/* line 117, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-toolbar.x5-form-spinner.x5-form-spinner-click {
background-position: -34px 0; }
/* line 122, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-toolbar {
background-position: 0 -10px; }
/* line 125, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-toolbar.x5-form-spinner-over {
background-position: -17px -10px; }
/* line 127, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-toolbar.x5-form-spinner-over.x5-form-spinner-focus {
background-position: -68px -10px; }
/* line 132, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-toolbar.x5-form-spinner-focus {
background-position: -51px -10px; }
/* line 137, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-toolbar.x5-form-spinner.x5-form-spinner-click {
background-position: -34px -10px; }
/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-tbar-page-number {
width: 30px; }
/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-tbar-page-first {
background-image: url(images/grid/page-first.gif); }
/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-tbar-page-prev {
background-image: url(images/grid/page-prev.gif); }
/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-tbar-page-next {
background-image: url(images/grid/page-next.gif); }
/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-tbar-page-last {
background-image: url(images/grid/page-last.gif); }
/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-tbar-loading {
background-image: url(images/grid/refresh.gif); }
/* line 27, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-item-disabled .x5-tbar-page-first {
background-image: url(images/grid/page-first-disabled.gif); }
/* line 31, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-item-disabled .x5-tbar-page-prev {
background-image: url(images/grid/page-prev-disabled.gif); }
/* line 35, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-item-disabled .x5-tbar-page-next {
background-image: url(images/grid/page-next-disabled.gif); }
/* line 39, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-item-disabled .x5-tbar-page-last {
background-image: url(images/grid/page-last-disabled.gif); }
/* line 43, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */
.x5-item-disabled .x5-tbar-loading {
background-image: url(images/grid/refresh-disabled.gif); }
/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x5-boundlist {
border-width: 1px;
border-style: solid;
border-color: #98c0f4;
background: white; }
/* line 8, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x5-boundlist-item {
padding: 0 3px;
font: normal 12px tahoma, arial, verdana, sans-serif;
line-height: 20px;
cursor: pointer;
cursor: hand;
position: relative;
/*allow hover in IE on empty items*/
border-width: 1px;
border-style: dotted;
border-color: white; }
/* line 24, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x5-boundlist-selected {
background: #cbdaf0;
border-color: #8eabe4; }
/* line 29, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x5-boundlist-item-over {
background: #dfe8f6;
border-color: #a3bae9; }
/* line 34, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x5-boundlist-floating {
border-top-width: 0; }
/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */
.x5-boundlist-above {
border-top-width: 1px;
border-bottom-width: 1px; }
/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-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 */
.x5-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: -ms-linear-gradient(top, #264888, #1f3a6c);
background-image: linear-gradient(top, #264888, #1f3a6c); }
/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-arrow {
width: 15px;
height: 15px;
top: 6px;
cursor: pointer;
-webkit-touch-callout: none;
background-color: #23427c;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
opacity: 0.7; }
/* line 51, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
div.x5-datepicker-arrow:hover {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1; }
/* line 56, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-next {
right: 6px;
background: url(images/shared/right-btn.gif) no-repeat 0 0; }
/* line 61, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-prev {
left: 6px;
background: url(images/shared/left-btn.gif) no-repeat 0 0; }
/* line 77, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-month .x5-btn,
.x5-datepicker-month .x5-btn .x5-btn-tc,
.x5-datepicker-month .x5-btn .x5-btn-tl,
.x5-datepicker-month .x5-btn .x5-btn-tr,
.x5-datepicker-month .x5-btn .x5-btn-mc,
.x5-datepicker-month .x5-btn .x5-btn-ml,
.x5-datepicker-month .x5-btn .x5-btn-mr,
.x5-datepicker-month .x5-btn .x5-btn-bc,
.x5-datepicker-month .x5-btn .x5-btn-bl,
.x5-datepicker-month .x5-btn .x5-btn-br {
background: transparent;
border-width: 0 !important; }
/* line 84, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-month .x5-btn-inner {
color: white; }
/* line 89, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-month .x5-btn-split-right:after, .x5-datepicker-month .x5-btn-over .x5-btn-split-right:after {
background-image: url(images/button/s-arrow-light.gif);
padding-right: 8px; }
/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-month .x5-btn-over {
border-color: transparent; }
/* line 99, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-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: -ms-linear-gradient(top, #edf4fd, #cde1f9);
background-image: linear-gradient(top, #edf4fd, #cde1f9); }
/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-column-header-inner {
line-height: 19px;
padding: 0 7px 0 0; }
/* line 123, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-cell {
text-align: right;
border-width: 1px;
border-style: solid;
border-color: white; }
/* line 133, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-date {
padding: 0 4px 0 0;
font: normal 11px tahoma, arial, verdana, sans-serif;
color: black;
cursor: pointer;
line-height: 18px; }
/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
div.x5-datepicker-date:hover {
color: black;
background-color: #ddecfe; }
/* line 148, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-selected {
border-style: solid;
border-color: #8db2e3; }
/* line 151, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-selected .x5-datepicker-date {
background-color: #dae5f3;
font-weight: bold; }
/* line 157, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-today {
border-color: darkred;
border-style: solid; }
/* line 164, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-prevday .x5-datepicker-date,
.x5-datepicker-nextday .x5-datepicker-date {
color: #aaaaaa; }
/* line 171, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-disabled .x5-datepicker-date {
background-color: #eeeeee;
cursor: default;
color: #bbbbbb; }
/* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-disabled div.x5-datepicker-date:hover {
background-color: #eeeeee;
color: #bbbbbb; }
/* line 185, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-footer,
.x5-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: -ms-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
text-align: center; }
/* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-datepicker-footer .x5-btn,
.x5-monthpicker-buttons .x5-btn {
margin: 0 2px 0 2px; }
/* line 207, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker {
width: 177px;
border-width: 1px;
border-style: solid;
border-color: #1b376c;
background-color: white; }
/* line 217, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-months {
border-width: 0 1px 0 0;
border-color: #1b376c;
border-style: solid;
width: 87px; }
/* line 226, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-months .x5-monthpicker-item {
width: 43px; }
/* line 231, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-years {
width: 88px; }
/* line 234, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-years .x5-monthpicker-item {
width: 44px; }
/* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-item {
margin: 5px 0 4px;
font: normal 11px tahoma, arial, verdana, sans-serif;
text-align: center; }
/* line 245, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-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 260, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
a.x5-monthpicker-item-inner:hover {
background-color: #ddecfe; }
/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-selected {
background-color: #dae5f3;
border-style: solid;
border-color: #8db2e3; }
/* line 270, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-yearnav {
height: 27px; }
/* line 274, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-yearnav-button-ct {
width: 44px; }
/* line 278, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-yearnav-button {
height: 15px;
width: 15px;
cursor: pointer;
margin-top: 6px;
-webkit-touch-callout: none;
background-color: white; }
/* line 301, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-yearnav-next {
background: url(images/tools/tool-sprites.gif) no-repeat 0 -120px; }
/* line 305, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-yearnav-next-over {
background-position: -15px -120px; }
/* line 309, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-yearnav-prev {
background: url(images/tools/tool-sprites.gif) no-repeat 0 -105px; }
/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-yearnav-prev-over {
background-position: -15px -105px; }
/* line 318, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-small .x5-monthpicker-item {
margin: 2px 0 2px; }
/* line 322, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-small .x5-monthpicker-item-inner {
margin: 0 5px 0 5px; }
/* line 326, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-small .x5-monthpicker-yearnav {
height: 22px; }
/* line 330, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-monthpicker-small .x5-monthpicker-yearnav-button {
margin-top: 3px; }
/* line 339, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-nlg .x5-datepicker-header {
background-image: url(images/datepicker/datepicker-header-bg.gif);
background-repeat: repeat-x;
background-position: top left; }
/* line 348, ../../../ext-theme-neutral/sass/src/picker/Date.scss */
.x5-nlg .x5-datepicker-footer,
.x5-nlg .x5-monthpicker-buttons {
background-image: url(images/datepicker/datepicker-footer-bg.gif);
background-repeat: repeat-x;
background-position: top left; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-datepicker-header:before {
display: none;
content: "x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif), stretch:bottom" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-datepicker-footer:before {
display: none;
content: "x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif), stretch:bottom" !important; }
/*</if slicer>*/
/* */
/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */
.x5-form-date-trigger {
background-image: url(images/form/date-trigger.gif); }
/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */
.x5-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 */
.x5-color-picker-item {
width: 18px;
height: 18px;
border-width: 1px;
border-color: white;
border-style: solid;
background-color: white;
cursor: pointer;
padding: 2px; }
/* line 22, ../../../ext-theme-neutral/sass/src/picker/Color.scss */
a.x5-color-picker-item:hover {
border-color: #8bb8f3;
background-color: #deecfd; }
/* line 27, ../../../ext-theme-neutral/sass/src/picker/Color.scss */
.x5-color-picker-selected {
border-color: #8bb8f3;
background-color: #deecfd; }
/* line 32, ../../../ext-theme-neutral/sass/src/picker/Color.scss */
.x5-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 */
.x5-html-editor-tb .x5-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 */
.x5-html-editor-tb .x5-edit-bold,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-italic,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-underline,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-forecolor,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-backcolor,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-justifyleft,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-justifycenter,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-justifyright,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-insertorderedlist,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-insertunorderedlist,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-increasefontsize,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-decreasefontsize,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-sourceedit,
.x5-menu-item div.x5-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 */
.x5-html-editor-tb .x5-edit-createlink,
.x5-menu-item div.x5-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 */
.x5-html-editor-tip .x5-tip-bd .x5-tip-bd-inner {
padding: 5px;
padding-bottom: 1px; }
/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x5-html-editor-tb .x5-font-select {
font-size: 11px;
font-family: inherit; }
/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */
.x5-html-editor-wrap textarea {
font: normal 12px tahoma, arial, verdana, sans-serif;
background-color: white;
resize: none; }
/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */
.x5-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 */
.x5-grid-drop-indicator .x5-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 */
.x5-grid-drop-indicator .x5-grid-drop-indicator-right {
position: absolute;
top: -8px;
right: -11px;
background-image: url(images/grid/dd-insert-arrow-left.png);
height: 16px;
width: 16px; }
/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */
.x5-grid-cell-inner-action-col {
padding: 2px 2px 2px 2px; }
/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */
.x5-grid-no-row-lines .x5-grid-row-focused .x5-grid-cell-inner-action-col {
padding-top: 1px;
padding-bottom: 1px; }
/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */
.x5-action-col-cell .x5-item-disabled {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
opacity: 0.3; }
/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */
.x5-action-col-icon {
height: 16px;
width: 16px;
cursor: pointer; }
/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Check.scss */
.x5-grid-cell-inner-checkcolumn {
padding: 4px 6px 3px 6px; }
/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/Check.scss */
.x5-grid-no-row-lines .x5-grid-row-focused .x5-grid-cell-inner-checkcolumn {
padding-top: 3px;
padding-bottom: 2px; }
/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Check.scss */
.x5-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/Check.scss */
.x5-item-disabled .x5-grid-checkcolumn {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
opacity: 0.3; }
/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/Check.scss */
.x5-grid-checkcolumn-checked {
background-position: 0 -13px; }
/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */
.x5-grid-cell-inner-row-numberer {
padding: 3px 5px 4px 3px; }
/*
* Define UI for fields which are rendered to fit inside grid cells.
* This includes cell and row editor fields and fields in widget columns.
*/
/* line 193, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-field-body-grid-cell {
min-width: 150px;
max-width: 150px; }
/* line 232, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-wrap-grid-cell {
border-width: 1px;
border-style: solid;
border-color: #b5b8c8; }
/* line 239, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-wrap-grid-cell.x5-form-text-wrap-focus {
border-color: #7eadd9; }
/* line 243, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-wrap-grid-cell.x5-form-text-wrap-invalid {
border-color: #cc3300; }
/* line 250, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-grid-cell {
color: black;
padding: 1px 5px 2px 5px;
background-color: white;
background-image: url(images/form/text-bg.gif);
font: normal 11px/15px tahoma, arial, verdana, sans-serif;
min-height: 18px; }
/* line 264, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-ie8 .x5-form-text-grid-cell {
min-height: 15px; }
/* line 270, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-grid-cell.x5-form-textarea {
line-height: 14px;
min-height: 56px; }
/* line 275, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-ie8 .x5-form-text-grid-cell.x5-form-textarea {
min-height: 53px; }
/* line 282, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-text-grid-cell.x5-form-text-file {
color: gray; }
/* line 287, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-empty-field-grid-cell {
color: gray; }
/* line 291, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-invalid-field-grid-cell {
background-color: white;
background-image: url(images/grid/invalid_line.gif);
background-repeat: repeat-x;
background-position: bottom; }
/* line 302, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-grid-cell {
background: transparent url(images/form/trigger.gif) no-repeat;
background-position: 0 0;
width: 17px;
border-width: 0 0 1px;
border-color: #b5b8c8;
border-style: solid; }
/* line 319, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-grid-cell.x5-form-trigger-over {
background-position: -17px 0; }
/* line 325, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-grid-cell.x5-form-trigger-over.x5-form-trigger-focus {
background-position: -68px 0; }
/* line 330, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger-grid-cell.x5-form-trigger-focus {
background-position: -51px 0;
border-color: null; }
/* line 339, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-form-trigger.x5-form-trigger-grid-cell.x5-form-trigger-click {
background-position: -34px 0; }
/* line 348, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */
.x5-textfield-grid-cell-cell > .x5-grid-cell-inner {
padding-top: 0px;
padding-bottom: 0px; }
/* line 59, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-trigger-spinner-grid-cell {
width: 17px;
border: 0; }
/* line 66, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-grid-cell {
background-image: url(images/form/spinner-small.gif);
background-color: white;
width: 17px;
height: 10px; }
/* line 102, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-grid-cell {
background-position: 0 0; }
/* line 105, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-grid-cell.x5-form-spinner-over {
background-position: -17px 0; }
/* line 107, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-grid-cell.x5-form-spinner-over.x5-form-spinner-focus {
background-position: -68px 0; }
/* line 112, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-grid-cell.x5-form-spinner-focus {
background-position: -51px 0; }
/* line 117, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-up-grid-cell.x5-form-spinner.x5-form-spinner-click {
background-position: -34px 0; }
/* line 122, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-grid-cell {
background-position: 0 -10px; }
/* line 125, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-grid-cell.x5-form-spinner-over {
background-position: -17px -10px; }
/* line 127, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-grid-cell.x5-form-spinner-over.x5-form-spinner-focus {
background-position: -68px -10px; }
/* line 132, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-grid-cell.x5-form-spinner-focus {
background-position: -51px -10px; }
/* line 137, ../../../ext-theme-neutral/sass/src/form/trigger/Spinner.scss */
.x5-form-spinner-down-grid-cell.x5-form-spinner.x5-form-spinner-click {
background-position: -34px -10px; }
/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-wrap-grid-cell {
height: 20px; }
/* line 61, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-grid-cell {
margin-top: 4px; }
/* line 67, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-checkbox-grid-cell,
.x5-form-radio-grid-cell {
width: 13px;
height: 13px; }
/* line 72, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-radio-grid-cell {
background: url(images/form/radio.gif) no-repeat; }
/* line 75, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-checked .x5-form-radio-grid-cell {
background-position: 0 -13px; }
/* line 80, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-checkbox-grid-cell {
background: url(images/form/checkbox.gif) no-repeat; }
/* line 83, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-checked .x5-form-checkbox-grid-cell {
background-position: 0 -13px; }
/* line 88, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-field-grid-cell-form-checkbox-focus {
background-position: -13px 0; }
/* line 92, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-checked .x5-field-grid-cell-form-checkbox-focus {
background-position: -13px -13px; }
/* line 97, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-label-grid-cell {
margin-top: 3px;
font: normal tahoma, arial, verdana, sans-serif/14px tahoma, arial, verdana, sans-serif; }
/* line 101, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-label-grid-cell.x5-form-cb-label-before {
padding-right: 17px; }
/* line 112, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-form-cb-label-grid-cell.x5-form-cb-label-after {
padding-left: 17px; }
/* line 126, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */
.x5-checkbox-grid-cell-cell > .x5-grid-cell-inner {
padding-top: 0px;
padding-bottom: 0px; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-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: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); }
/* line 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-mc {
background-image: url(images/btn/btn-grid-cell-small-fbg.gif);
background-position: 0 top;
background-color: white; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-btn-grid-cell-small {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
background-image: none;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-frameInfo {
font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-tl {
background-position: 0 -6px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-tr {
background-position: right -9px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-bl {
background-position: 0 -12px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-br {
background-position: right -15px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-bc {
background-position: 0 -3px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-tr,
.x5-btn-grid-cell-small-br,
.x5-btn-grid-cell-small-mr {
padding-right: 3px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-tl,
.x5-btn-grid-cell-small-bl,
.x5-btn-grid-cell-small-ml {
padding-left: 3px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-tc {
height: 3px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-bc {
height: 3px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-tl,
.x5-btn-grid-cell-small-bl,
.x5-btn-grid-cell-small-tr,
.x5-btn-grid-cell-small-br,
.x5-btn-grid-cell-small-tc,
.x5-btn-grid-cell-small-bc,
.x5-btn-grid-cell-small-ml,
.x5-btn-grid-cell-small-mr {
background-image: url(images/btn/btn-grid-cell-small-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-ml,
.x5-btn-grid-cell-small-mr {
background-image: url(images/btn/btn-grid-cell-small-sides.gif); }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-btn-grid-cell-small-mc {
padding: 0px 0px 0px 0px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-grid-cell-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, frame-bg:url(images/btn/btn-grid-cell-small-fbg.gif), corners:url(images/btn/btn-grid-cell-small-corners.gif), sides:url(images/btn/btn-grid-cell-small-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 423, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-grid-cell-small {
border-color: #d1d1d1; }
/* line 430, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-button-grid-cell-small {
height: 12px; }
/* line 435, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-inner-grid-cell-small {
font: normal 11px/12px tahoma, arial, verdana, sans-serif;
color: #333333;
padding: 0 4px;
max-width: 100%; }
/* line 446, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-right > .x5-btn-inner-grid-cell-small, .x5-btn-icon-left > .x5-btn-inner-grid-cell-small {
max-width: calc(100% - 12px); }
/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-grid-cell-small {
height: 12px; }
/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-left > .x5-btn-icon-el-grid-cell-small, .x5-btn-icon-right > .x5-btn-icon-el-grid-cell-small {
width: 12px; }
/* line 462, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-top > .x5-btn-icon-el-grid-cell-small, .x5-btn-icon-bottom > .x5-btn-icon-el-grid-cell-small {
min-width: 12px; }
/* line 466, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-icon-el-grid-cell-small.x5-btn-glyph {
font-size: 12px;
line-height: 12px;
color: #333333;
opacity: 0.5; }
/* line 486, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-ie8 .x5-btn-icon-el-grid-cell-small.x5-btn-glyph {
color: #999999; }
/* line 493, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-left > .x5-btn-icon-el-grid-cell-small {
margin-right: 0px; }
/* line 504, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-grid-cell-small {
margin-left: 0px; }
/* line 515, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-top > .x5-btn-icon-el-grid-cell-small {
margin-bottom: 4px; }
/* line 519, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-text.x5-btn-icon-bottom > .x5-btn-icon-el-grid-cell-small {
margin-top: 4px; }
/* line 525, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-grid-cell-small {
padding-right: 4px; }
/* line 528, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-grid-cell-small {
margin-right: 4px; }
/* line 535, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-arrow-bottom > .x5-btn-button-grid-cell-small,
.x5-btn-split-bottom > .x5-btn-button-grid-cell-small {
padding-bottom: 2px; }
/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-grid-cell-small.x5-btn-arrow-right:after {
width: 8px;
padding-right: 8px;
background-image: url(images/button/arrow.gif); }
/* line 563, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-grid-cell-small.x5-btn-arrow-bottom:after {
height: 8px;
background-image: url(images/button/arrow.gif); }
/* line 583, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-grid-cell-small.x5-btn-split-right:after {
width: 14px;
padding-right: 14px;
background-image: url(images/button/s-arrow.gif); }
/* line 597, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-wrap-grid-cell-small.x5-btn-split-bottom:after {
height: 14px;
background-image: url(images/button/s-arrow-b.gif); }
/* line 606, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-grid-cell-small.x5-btn-split-right:after {
background-image: url(images/button/s-arrow-o.gif); }
/* line 616, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over > .x5-btn-wrap-grid-cell-small.x5-btn-split-bottom:after {
background-image: url(images/button/s-arrow-bo.gif); }
/* line 624, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-icon.x5-btn-no-text.x5-btn-button-grid-cell-small {
padding-right: 4px; }
/* line 627, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-split-right > .x5-btn-text.x5-btn-icon-right > .x5-btn-icon-el-grid-cell-small {
margin-right: 4px; }
/* line 632, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-grid-cell-small {
border-color: #ebebeb;
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%, #e7e7e7), color-stop(100%, #ececec));
background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec); }
/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-grid-cell-small .x5-btn-wrap {
outline: 1px dotted #333333; }
/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over.x5-btn-grid-cell-small {
border-color: #ebebeb;
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%, #e7e7e7), color-stop(100%, #ececec));
background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec);
background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e7e7e7 52%, #ececec); }
/* line 723, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active.x5-btn-grid-cell-small,
.x5-btn.x5-btn-pressed.x5-btn-grid-cell-small {
border-color: #b8b8b8;
background-image: none;
background-color: #e6e6e6;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(48%, #ebebeb), color-stop(52%, #e8cbcc), color-stop(100%, #ebd3d4));
background-image: -webkit-linear-gradient(top, #e6e6e6, #ebebeb 48%, #e8cbcc 52%, #ebd3d4);
background-image: -moz-linear-gradient(top, #e6e6e6, #ebebeb 48%, #e8cbcc 52%, #ebd3d4);
background-image: -o-linear-gradient(top, #e6e6e6, #ebebeb 48%, #e8cbcc 52%, #ebd3d4);
background-image: -ms-linear-gradient(top, #e6e6e6, #ebebeb 48%, #e8cbcc 52%, #ebd3d4);
background-image: linear-gradient(top, #e6e6e6, #ebebeb 48%, #e8cbcc 52%, #ebd3d4); }
/* line 779, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled.x5-btn-grid-cell-small {
border-color: white;
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: -ms-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7);
background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); }
/* line 816, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-grid-cell-small-tl,
.x5-btn-focus .x5-btn-grid-cell-small-bl,
.x5-btn-focus .x5-btn-grid-cell-small-tr,
.x5-btn-focus .x5-btn-grid-cell-small-br,
.x5-btn-focus .x5-btn-grid-cell-small-tc,
.x5-btn-focus .x5-btn-grid-cell-small-bc {
background-image: url(images/btn/btn-grid-cell-small-focus-corners.gif); }
/* line 820, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-grid-cell-small-ml,
.x5-btn-focus .x5-btn-grid-cell-small-mr {
background-image: url(images/btn/btn-grid-cell-small-focus-sides.gif); }
/* line 823, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus .x5-btn-grid-cell-small-mc {
background-color: white;
background-image: url(images/btn/btn-grid-cell-small-focus-fbg.gif); }
/* line 840, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-grid-cell-small-tl,
.x5-btn-over .x5-btn-grid-cell-small-bl,
.x5-btn-over .x5-btn-grid-cell-small-tr,
.x5-btn-over .x5-btn-grid-cell-small-br,
.x5-btn-over .x5-btn-grid-cell-small-tc,
.x5-btn-over .x5-btn-grid-cell-small-bc {
background-image: url(images/btn/btn-grid-cell-small-over-corners.gif); }
/* line 844, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-grid-cell-small-ml,
.x5-btn-over .x5-btn-grid-cell-small-mr {
background-image: url(images/btn/btn-grid-cell-small-over-sides.gif); }
/* line 847, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-over .x5-btn-grid-cell-small-mc {
background-color: white;
background-image: url(images/btn/btn-grid-cell-small-over-fbg.gif); }
/* line 864, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-grid-cell-small-tl,
.x5-btn-focus.x5-btn-over .x5-btn-grid-cell-small-bl,
.x5-btn-focus.x5-btn-over .x5-btn-grid-cell-small-tr,
.x5-btn-focus.x5-btn-over .x5-btn-grid-cell-small-br,
.x5-btn-focus.x5-btn-over .x5-btn-grid-cell-small-tc,
.x5-btn-focus.x5-btn-over .x5-btn-grid-cell-small-bc {
background-image: url(images/btn/btn-grid-cell-small-focus-over-corners.gif); }
/* line 868, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-grid-cell-small-ml,
.x5-btn-focus.x5-btn-over .x5-btn-grid-cell-small-mr {
background-image: url(images/btn/btn-grid-cell-small-focus-over-sides.gif); }
/* line 871, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-over .x5-btn-grid-cell-small-mc {
background-color: white;
background-image: url(images/btn/btn-grid-cell-small-focus-over-fbg.gif); }
/* line 890, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-grid-cell-small-tl,
.x5-btn.x5-btn-menu-active .x5-btn-grid-cell-small-bl,
.x5-btn.x5-btn-menu-active .x5-btn-grid-cell-small-tr,
.x5-btn.x5-btn-menu-active .x5-btn-grid-cell-small-br,
.x5-btn.x5-btn-menu-active .x5-btn-grid-cell-small-tc,
.x5-btn.x5-btn-menu-active .x5-btn-grid-cell-small-bc,
.x5-btn.x5-btn-pressed .x5-btn-grid-cell-small-tl,
.x5-btn.x5-btn-pressed .x5-btn-grid-cell-small-bl,
.x5-btn.x5-btn-pressed .x5-btn-grid-cell-small-tr,
.x5-btn.x5-btn-pressed .x5-btn-grid-cell-small-br,
.x5-btn.x5-btn-pressed .x5-btn-grid-cell-small-tc,
.x5-btn.x5-btn-pressed .x5-btn-grid-cell-small-bc {
background-image: url(images/btn/btn-grid-cell-small-pressed-corners.gif); }
/* line 894, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-grid-cell-small-ml,
.x5-btn.x5-btn-menu-active .x5-btn-grid-cell-small-mr,
.x5-btn.x5-btn-pressed .x5-btn-grid-cell-small-ml,
.x5-btn.x5-btn-pressed .x5-btn-grid-cell-small-mr {
background-image: url(images/btn/btn-grid-cell-small-pressed-sides.gif); }
/* line 897, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-menu-active .x5-btn-grid-cell-small-mc,
.x5-btn.x5-btn-pressed .x5-btn-grid-cell-small-mc {
background-color: #e6e6e6;
background-image: url(images/btn/btn-grid-cell-small-pressed-fbg.gif); }
/* line 915, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-grid-cell-small-tl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-grid-cell-small-bl,
.x5-btn-focus.x5-btn-menu-active .x5-btn-grid-cell-small-tr,
.x5-btn-focus.x5-btn-menu-active .x5-btn-grid-cell-small-br,
.x5-btn-focus.x5-btn-menu-active .x5-btn-grid-cell-small-tc,
.x5-btn-focus.x5-btn-menu-active .x5-btn-grid-cell-small-bc,
.x5-btn-focus.x5-btn-pressed .x5-btn-grid-cell-small-tl,
.x5-btn-focus.x5-btn-pressed .x5-btn-grid-cell-small-bl,
.x5-btn-focus.x5-btn-pressed .x5-btn-grid-cell-small-tr,
.x5-btn-focus.x5-btn-pressed .x5-btn-grid-cell-small-br,
.x5-btn-focus.x5-btn-pressed .x5-btn-grid-cell-small-tc,
.x5-btn-focus.x5-btn-pressed .x5-btn-grid-cell-small-bc {
background-image: url(images/btn/btn-grid-cell-small-focus-pressed-corners.gif); }
/* line 919, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-grid-cell-small-ml,
.x5-btn-focus.x5-btn-menu-active .x5-btn-grid-cell-small-mr,
.x5-btn-focus.x5-btn-pressed .x5-btn-grid-cell-small-ml,
.x5-btn-focus.x5-btn-pressed .x5-btn-grid-cell-small-mr {
background-image: url(images/btn/btn-grid-cell-small-focus-pressed-sides.gif); }
/* line 922, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-focus.x5-btn-menu-active .x5-btn-grid-cell-small-mc,
.x5-btn-focus.x5-btn-pressed .x5-btn-grid-cell-small-mc {
background-color: #e6e6e6;
background-image: url(images/btn/btn-grid-cell-small-focus-pressed-fbg.gif); }
/* line 940, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-grid-cell-small-tl,
.x5-btn.x5-btn-disabled .x5-btn-grid-cell-small-bl,
.x5-btn.x5-btn-disabled .x5-btn-grid-cell-small-tr,
.x5-btn.x5-btn-disabled .x5-btn-grid-cell-small-br,
.x5-btn.x5-btn-disabled .x5-btn-grid-cell-small-tc,
.x5-btn.x5-btn-disabled .x5-btn-grid-cell-small-bc {
background-image: url(images/btn/btn-grid-cell-small-disabled-corners.gif); }
/* line 944, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-grid-cell-small-ml,
.x5-btn.x5-btn-disabled .x5-btn-grid-cell-small-mr {
background-image: url(images/btn/btn-grid-cell-small-disabled-sides.gif); }
/* line 947, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn.x5-btn-disabled .x5-btn-grid-cell-small-mc {
background-color: white;
background-image: url(images/btn/btn-grid-cell-small-disabled-fbg.gif); }
/* line 957, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-btn-grid-cell-small {
background-image: none; }
/* line 971, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-btn-disabled.x5-btn-grid-cell-small .x5-btn-inner,
.x5-btn-disabled.x5-btn-grid-cell-small .x5-btn-icon-el {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5; }
/* line 982, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-grid-cell-small.x5-segmented-button-first {
border-right-width: 1px !important; }
/* line 984, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-grid-cell-small.x5-segmented-button-first .x5-btn-grid-cell-small-mc {
padding-right: 2px !important; }
/* line 988, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-grid-cell-small.x5-segmented-button-middle {
border-right-width: 1px !important; }
/* line 990, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-grid-cell-small.x5-segmented-button-middle .x5-btn-grid-cell-small-mc {
padding-right: 2px !important;
padding-left: 2px !important; }
/* line 996, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-grid-cell-small.x5-segmented-button-last .x5-btn-grid-cell-small-mc {
padding-left: 2px !important; }
/* line 1003, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-grid-cell-small.x5-segmented-button-first {
border-bottom-width: 1px !important; }
/* line 1005, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-grid-cell-small.x5-segmented-button-first .x5-btn-grid-cell-small-mc {
padding-bottom: 2px !important; }
/* line 1009, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-grid-cell-small.x5-segmented-button-middle {
border-bottom-width: 1px !important; }
/* line 1011, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-grid-cell-small.x5-segmented-button-middle .x5-btn-grid-cell-small-mc {
padding-top: 2px !important;
padding-bottom: 2px !important; }
/* line 1017, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-grid-cell-small.x5-segmented-button-last .x5-btn-grid-cell-small-mc {
padding-top: 2px !important; }
/* line 1023, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item.x5-btn-grid-cell-small:after {
content: ' ';
border-style: solid;
border-width: 0;
position: absolute; }
/* line 1041, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-grid-cell-small:after {
top: 1px;
right: 0;
bottom: 1px;
left: 0; }
/* line 1047, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-grid-cell-small.x5-segmented-button-first:after {
left: 1px; }
/* line 1050, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-horizontal.x5-btn-grid-cell-small.x5-segmented-button-last:after {
right: 1px; }
/* line 1056, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-grid-cell-small:after {
top: 0;
right: 1px;
bottom: 0;
left: 1px; }
/* line 1062, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-grid-cell-small.x5-segmented-button-first:after {
top: 1px; }
/* line 1065, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-nbr .x5-segmented-button-item-vertical.x5-btn-grid-cell-small.x5-segmented-button-last:after {
bottom: 1px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-grid-cell-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-focus-corners.gif), sides:url(images/btn/btn-grid-cell-small-focus-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-focus-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-over.x5-btn-grid-cell-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-over-corners.gif), sides:url(images/btn/btn-grid-cell-small-over-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-over.x5-btn-grid-cell-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-focus-over-corners.gif), sides:url(images/btn/btn-grid-cell-small-focus-over-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-focus-over-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-pressed.x5-btn-grid-cell-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-pressed-corners.gif), sides:url(images/btn/btn-grid-cell-small-pressed-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-focus.x5-btn-pressed.x5-btn-grid-cell-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-focus-pressed-corners.gif), sides:url(images/btn/btn-grid-cell-small-focus-pressed-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-focus-pressed-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-btn-disabled.x5-btn-grid-cell-small:before {
display: none;
content: "x-slicer:stretch:bottom, frame:3px 3px 3px 3px, corners:url(images/btn/btn-grid-cell-small-disabled-corners.gif), sides:url(images/btn/btn-grid-cell-small-disabled-sides.gif), frame-bg:url(images/btn/btn-grid-cell-small-disabled-fbg.gif)" !important; }
/*</if slicer>*/
/* */
/* line 1128, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-grid-cell-small-cell > .x5-grid-cell-inner {
padding-top: 1px;
padding-bottom: 1px; }
/* line 1133, ../../../ext-theme-neutral/sass/src/button/Button.scss */
.x5-button-grid-cell-small-cell > .x5-grid-cell-inner > .x5-btn-grid-cell-small {
vertical-align: top; }
/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x5-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 */
.x5-grid-group-hd-not-collapsible {
cursor: default; }
/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x5-grid-group-hd-collapsible .x5-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 */
.x5-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 */
.x5-grid-group-hd-collapsed .x5-grid-group-title {
background-image: url(images/grid/group-expand.gif); }
/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x5-grid-group-collapsed .x5-grid-group-title {
background-image: url(images/grid/group-expand.gif); }
/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x5-group-by-icon {
background-image: url(images/grid/group-by.gif); }
/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */
.x5-show-groups-icon {
background-image: url(images/grid/group-by.gif); }
/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */
.x5-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 */
.x5-grid-no-row-lines .x5-grid-row-focused .x5-grid-rowbody {
padding-top: 6px;
padding-bottom: 4px; }
/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */
.x5-docked-summary {
border-width: 1px;
border-color: #99bce8;
border-style: solid;
background: white !important; }
/* line 6, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */
.x5-docked-summary .x5-grid-table {
border: 0 none; }
/* line 16, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */
.x5-grid-row-summary .x5-grid-cell,
.x5-grid-row-summary .x5-grid-rowwrap,
.x5-grid-row-summary .x5-grid-cell-rowbody {
border-color: #ededed;
background-color: white !important;
border-top: 1px solid #ededed;
font: normal 11px/13px tahoma, arial, verdana, sans-serif; }
/* line 27, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */
.x5-docked-summary .x5-grid-item,
.x5-docked-summary .x5-grid-row-summary .x5-grid-cell {
border-bottom: 0 none;
border-top: 0 none; }
/* line 34, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */
.x5-grid-row-summary .x5-grid-cell-inner-row-expander {
display: none; }
/**
* Creates a visual theme for a Menu.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {color} [$ui-background-color=$menu-background-color]
* The background-color of the Menu
*
* @param {color} [$ui-border-color=$menu-border-color]
* The border-color of the Menu
*
* @param {string} [$ui-border-style=$menu-border-style]
* The border-style of the Menu
*
* @param {number} [$ui-border-width=$menu-border-width]
* The border-width of the Menu
*
* @param {number/list} [$ui-padding=$menu-padding]
* The padding to apply to the Menu body element
*
* @param {color} [$ui-text-color=$menu-text-color]
* The color of Menu Item text
*
* @param {string} [$ui-item-font-family=$menu-item-font-family]
* The font-family of {@link Ext.menu.Item Menu Items}
*
* @param {number} [$ui-item-font-size=$menu-item-font-size]
* The font-size of {@link Ext.menu.Item Menu Items}
*
* @param {string} [$ui-item-font-weight=$menu-item-font-weight]
* The font-weight of {@link Ext.menu.Item Menu Items}
*
* @param {number} [$ui-item-height=$menu-item-height]
* The height of {@link Ext.menu.Item Menu Items}
*
* @param {number} [$ui-item-border-width=$menu-item-border-width]
* The border-width of {@link Ext.menu.Item Menu Items}
*
* @param {string} [$ui-item-cursor=$menu-item-cursor]
* The style of cursor to display when the cursor is over a {@link Ext.menu.Item Menu Item}
*
* @param {string} [$ui-item-disabled-cursor=$menu-item-disabled-cursor]
* The style of cursor to display when the cursor is over a disabled {@link Ext.menu.Item Menu Item}
*
* @param {color} [$ui-item-active-background-color=$menu-item-active-background-color]
* The background-color of the active {@link Ext.menu.Item Menu Item}
*
* @param {color} [$ui-item-active-border-color=$menu-item-active-border-color]
* The border-color of the active {@link Ext.menu.Item Menu Item}
*
* @param {string/list} [$ui-item-background-gradient=$menu-item-background-gradient]
* The background-gradient for {@link Ext.menu.Item Menu Items}. Can be either the name
* of a predefined gradient or a list of color stops. Used as the `$type` parameter for
* {@link Global_CSS#background-gradient}.
*
* @param {number} [$ui-item-active-border-radius=$menu-item-active-border-radius]
* The border-radius of {@link Ext.menu.Item Menu Items}
*
* @param {number} [$ui-item-icon-size=$menu-item-icon-size]
* The size of {@link Ext.menu.Item Menu Item} icons
*
* @param {color} [$ui-glyph-color=$menu-glyph-color]
* The color to use for menu icons configured using {@link Ext.menu.Item#glyph glyph}
*
* @param {number} [$ui-glyph-opacity=$menu-glyph-opacity]
* The opacity to use for menu icons configured using {@link Ext.menu.Item#glyph glyph}
*
* @param {number} [$ui-item-checkbox-size=$menu-item-checkbox-size]
* The size of {@link Ext.menu.Item Menu Item} checkboxes
*
* @param {list} [$ui-item-icon-background-position=$menu-item-icon-background-position]
* The background-position of {@link Ext.menu.Item Menu Item} icons
*
* @param {number} [$ui-item-icon-vertical-offset=$menu-item-icon-vertical-offset]
* vertical offset for menu item icons/checkboxes. By default the icons are roughly
* vertically centered, but it may be necessary in some cases to make minor adjustments
* to the vertical position.
*
* @param {number} [$ui-item-text-vertical-offset=$menu-item-text-vertical-offset]
* vertical offset for menu item text. By default the text is given a line-height
* equal to the menu item's content-height, however, depending on the font this may not
* result in perfect vertical centering. Offset can be used to make small adjustments
* to the text's vertical position.
*
* @param {number/list} [$ui-item-text-horizontal-spacing=$menu-item-text-horizontal-spacing]
* The space to the left and right of {@link Ext.menu.Item Menu Item} text. Can be specified
* as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
*
* $menu-item-text-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
*
* @param {number} [$ui-item-icon-horizontal-spacing=$menu-item-icon-horizontal-spacing]
* The space to the left and right of {@link Ext.menu.Item Menu Item} icons. Can be specified
* as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
*
* $menu-item-icon-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
*
* @param {number} [$ui-item-arrow-horizontal-spacing=$menu-item-arrow-horizontal-spacing]
* The space to the left and right of {@link Ext.menu.Item Menu Item} arrows. Can be specified
* as a number (e.g. 5px) or as a list with 2 items for different left/right values. e.g.
*
* $menu-item-arrow-horizontal-spacing: 4px 8px !default; // 4px of space to the left, and 8px to the right
*
* @param {number/list} [$ui-item-separator-margin=$menu-item-separator-margin]
* The margin of {@link Ext.menu.Separator Menu Separators}
*
* @param {number} [$ui-item-arrow-height=$menu-item-arrow-height]
* The height of {@link Ext.menu.Item Menu Item} arrows
*
* @param {number} [$ui-item-arrow-width=$menu-item-arrow-width]
* The width of {@link Ext.menu.Item Menu Item} arrows
*
* @param {number} [$ui-item-disabled-opacity=$menu-item-disabled-opacity]
* The opacity of disabled {@link Ext.menu.Item Menu Items}
*
* @param {number/list} [$ui-component-margin=$menu-component-margin]
* The margin non-MenuItems placed in a Menu
*
* @param {color} [$ui-separator-border-color=$menu-separator-border-color]
* The border-color of {@link Ext.menu.Separator Menu Separators}
*
* @param {color} [$ui-separator-background-color=$menu-separator-background-color]
* The background-color of {@link Ext.menu.Separator Menu Separators}
*
* @param {number} [$ui-separator-size=$menu-separator-size]
* The size of {@link Ext.menu.Separator Menu Separators}
*
* @param {number} [$ui-scroller-width=$menu-scroller-width]
* The width of Menu scrollers
*
* @param {number} [$ui-scroller-height=$menu-scroller-height]
* The height of Menu scrollers
*
* @param {color} [$ui-scroller-border-color=$menu-scroller-border-color]
* The border-color of Menu scroller buttons
*
* @param {number} [$ui-scroller-border-width=$menu-scroller-border-width]
* The border-width of Menu scroller buttons
*
* @param {number/list} [$ui-scroller-top-margin=$menu-scroller-top-margin]
* The margin of "top" Menu scroller buttons
*
* @param {number/list} [$ui-scroller-bottom-margin=$menu-scroller-bottom-margin]
* The margin of "bottom" Menu scroller buttons
*
* @param {string} [$ui-scroller-cursor=$menu-scroller-cursor]
* The cursor of Menu scroller buttons
*
* @param {string} [$ui-scroller-cursor-disabled=$menu-scroller-cursor-disabled]
* The cursor of disabled Menu scroller buttons
*
* @param {number} [$ui-scroller-opacity=$menu-scroller-opacity]
* The opacity of Menu scroller buttons. Only applicable when
* {@link #$menu-classic-scrollers} is `false`.
*
* @param {number} [$ui-scroller-opacity-over=$menu-scroller-opacity-over]
* The opacity of hovered Menu scroller buttons. Only applicable when
* {@link #$menu-classic-scrollers} is `false`.
*
* @param {number} [$ui-scroller-opacity-pressed=$menu-scroller-opacity-pressed]
* The opacity of pressed Menu scroller buttons. Only applicable when
* {@link #$menu-classic-scrollers} is `false`.
*
* @param {number} [$ui-scroller-opacity-disabled=$menu-scroller-opacity-disabled]
* The opacity of disabled Menu scroller buttons.
*
* @param {boolean} [$ui-classic-scrollers=$menu-classic-scrollers]
* `true` to use classic-style scroller buttons. When `true` scroller buttons are given their
* hover state by changing their background-position, When `false` scroller buttons are
* given their hover state by applying opacity.
*
* @member Ext.menu.Menu
*/
/* line 236, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-default {
border-style: solid;
border-width: 1px;
border-color: #99bce8; }
/* line 242, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-body-default {
background: #f0f0f0;
padding: 2px; }
/* line 247, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-icon-separator-default {
left: 24px;
border-left: solid 1px #e0e0e0;
background-color: white;
width: 2px; }
/* line 261, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-default {
border-width: 1px;
cursor: pointer; }
/* line 265, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-default.x5-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: -ms-linear-gradient(top, #e7f0fc, #c7ddf9);
background-image: linear-gradient(top, #e7f0fc, #c7ddf9);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
border-color: #a9cbf5; }
/* line 277, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-nlg .x5-menu-item-default.x5-menu-item-active {
background: #d9e8fb repeat-x left top;
background-image: url(images/menu/menu-item-default-active-bg.gif); }
/* line 284, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-default.x5-menu-item-disabled {
cursor: default; }
/* line 287, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-default.x5-menu-item-disabled a {
cursor: default; }
/* line 292, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-default.x5-menu-item-separator {
height: 2px;
border-top: solid 1px #e0e0e0;
background-color: white;
margin: 2px 0;
padding: 0; }
/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-default.x5-menu-item-disabled {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5; }
/* line 305, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-ie9m .x5-menu-item-default.x5-menu-item-disabled .x5-menu-item-icon-ui {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5; }
/* line 309, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-ie9m .x5-menu-item-default.x5-menu-item-disabled .x5-menu-item-text-default {
background-color: transparent; }
/* line 319, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-default .x5-form-item-label {
font-size: 11px;
color: #222222; }
/* line 327, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-text-default,
.x5-menu-item-cmp-default {
margin: 0 4px 0 4px; }
/* line 331, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-text-default {
font: normal 11px tahoma, arial, verdana, sans-serif;
line-height: 21px;
padding-top: 1px;
color: #222222;
cursor: pointer; }
/* line 342, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-text-default.x5-menu-item-indent {
margin-left: 30px; }
/* line 346, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-text-default.x5-menu-item-indent-no-separator {
margin-left: 24px; }
/* line 350, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-text-default.x5-menu-item-indent-right-icon {
margin-right: 28px; }
/* line 354, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-text-default.x5-menu-item-indent-right-arrow {
margin-right: 21px; }
/* line 358, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-disabled .x5-menu-item-text-default {
cursor: default; }
/* line 390, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-indent-default {
margin-left: 30px; }
/* line 400, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-icon-default {
width: 16px;
height: 16px;
top: 4px;
left: 3px;
background-position: center center; }
/* line 418, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-icon-default.x5-menu-item-glyph {
font-size: 16px;
line-height: 16px;
color: #222222;
opacity: 0.5; }
/* line 435, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-ie8 .x5-menu-item-icon-default.x5-menu-item-glyph {
color: #898989; }
/* line 443, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-icon-default.x5-menu-item-icon-right {
width: 16px;
height: 16px;
top: 4px;
right: 5px;
left: auto;
background-position: center center; }
/* line 468, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-checked .x5-menu-item-icon-default.x5-menu-item-checkbox {
background-image: url(images/menu/default-checked.gif); }
/* line 472, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-unchecked .x5-menu-item-icon-default.x5-menu-item-checkbox {
background-image: url(images/menu/default-unchecked.gif); }
/* line 478, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-checked .x5-menu-item-icon-default.x5-menu-group-icon {
background-image: url(images/menu/default-group-checked.gif); }
/* line 482, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-unchecked .x5-menu-item-icon-default.x5-menu-group-icon {
background-image: none; }
/* line 488, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-arrow-default {
width: 12px;
height: 9px;
top: 7px;
right: 0;
background-image: url(images/menu/default-menu-parent.gif); }
/* line 495, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-menu-item-active .x5-menu-item-arrow-default {
top: 6px;
right: -1px; }
/* line 145, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-menu-default-scroller .x5-box-scroller-body-horizontal {
margin-left: 14px; }
/* line 151, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-menu-default-vertical-scroller .x5-box-scroller-body-vertical {
margin-top: 11px; }
/* line 156, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-menu-default {
cursor: pointer; }
/* line 177, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-menu-default.x5-box-scroller-disabled {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5;
cursor: default; }
/* line 263, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-menu-default.x5-box-scroller-top, .x5-box-scroller-menu-default.x5-box-scroller-bottom {
height: 5px;
width: 35px;
left: 50%;
margin-left: -17px; }
/* line 289, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-menu-default.x5-box-scroller-top {
margin-top: 4px;
margin-right: 0;
margin-bottom: 4px;
background-image: url(images/menu/default-scroll-top.gif);
background-position: 0 -5px; }
/* line 306, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-menu-default.x5-box-scroller-top.x5-box-scroller-hover {
background-position: 0 0; }
/* line 312, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-menu-default.x5-box-scroller-bottom {
margin-top: 4px;
margin-right: 0;
margin-bottom: 4px;
background-image: url(images/menu/default-scroll-bottom.gif);
background-position: 0 0; }
/* line 329, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-menu-default.x5-box-scroller-bottom.x5-box-scroller-hover {
background-position: 0 -5px; }
/* line 540, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */
.x5-ie8 .x5-box-scroller-menu-default {
background-color: #f0f0f0; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-menu-item-default-active:before {
display: none;
content: "x-slicer:bg:url(images/menu/menu-item-default-active-bg.gif), stretch:bottom" !important; }
/*</if slicer>*/
/* */
/* line 1, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */
.x5-grid-filters-filtered-column {
font-style: italic;
font-weight: bold;
text-decoration: inherit; }
/* line 7, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */
.x5-grid-filters-icon {
background-repeat: no-repeat;
background-position: center center; }
/* line 12, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */
.x5-grid-filters-find {
background-image: url(images/grid/filters/find.png); }
/* line 16, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */
.x5-grid-filters-gt {
background-image: url(images/grid/filters/greater_than.png); }
/* line 20, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */
.x5-grid-filters-lt {
background-image: url(images/grid/filters/less_than.png); }
/* line 24, ../../../ext-theme-neutral/sass/src/grid/filters/Filters.scss */
.x5-grid-filters-eq {
background-image: url(images/grid/filters/equals.png); }
/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
.x5-grid-locked .x5-grid-inner-locked {
border-width: 0 1px 0 0;
border-style: solid; }
/* line 12, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
.x5-grid-locked-split .x5-grid-inner-normal {
border-width: 0 0 0 1px;
border-style: solid; }
/* line 22, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
.x5-grid-inner-locked {
border-right-color: #99bce8; }
/* line 28, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
.x5-grid-inner-locked .x5-column-header-last,
.x5-grid-inner-locked .x5-grid-cell-last {
border-right-width: 0!important; }
/* line 57, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
.x5-hmenu-lock {
background-image: url(images/grid/hmenu-lock.gif); }
/* line 61, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */
.x5-hmenu-unlock {
background-image: url(images/grid/hmenu-unlock.gif); }
/*
* Define UI for fields which are rendered to fit inside grid cells.
* This includes cell and row editor fields and fields in widget columns.
*/
/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */
.x5-form-display-field-grid-cell {
min-height: 22px;
font: normal 12px/14px tahoma, arial, verdana, sans-serif;
color: black;
margin-top: 4px; }
/* line 17, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */
.x5-grid-editor .x5-form-display-field {
text-overflow: ellipsis; }
/* line 23, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */
.x5-grid-editor .x5-form-action-col-field {
padding: 2px 2px 2px 2px; }
/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */
.x5-tree-cell-editor .x5-form-text {
padding-left: 2px;
padding-right: 2px; }
/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor .x5-field {
margin: 0 1px 0 1px; }
/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor .x5-form-display-field {
padding: 2px 5px 3px 5px; }
/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor .x5-form-action-col-field {
padding: 2px 1px 2px 1px; }
/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor .x5-form-text {
padding: 1px 4px 2px 4px; }
/* line 31, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-gecko .x5-grid-row-editor .x5-form-text {
padding-left: 3px;
padding-right: 3px; }
/* line 40, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor .x5-panel-body {
border-top: 1px solid #99bce8 !important;
border-bottom: 1px solid #99bce8 !important;
padding: 4px 0 4px 0;
background-color: #eaf1fb; }
/* line 50, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-with-col-lines .x5-grid-row-editor .x5-form-cb {
margin-right: 1px; }
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-mc {
background-color: #eaf1fb; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-grid-row-editor-buttons-default-bottom {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-frameInfo {
font-family: th-0-5-5-5-0-1-1-1-4-4-4-4; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-tr,
.x5-grid-row-editor-buttons-default-bottom-br,
.x5-grid-row-editor-buttons-default-bottom-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-tl,
.x5-grid-row-editor-buttons-default-bottom-bl,
.x5-grid-row-editor-buttons-default-bottom-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-tc {
height: 0; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-bc {
height: 5px; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-tl,
.x5-grid-row-editor-buttons-default-bottom-bl,
.x5-grid-row-editor-buttons-default-bottom-tr,
.x5-grid-row-editor-buttons-default-bottom-br,
.x5-grid-row-editor-buttons-default-bottom-tc,
.x5-grid-row-editor-buttons-default-bottom-bc,
.x5-grid-row-editor-buttons-default-bottom-ml,
.x5-grid-row-editor-buttons-default-bottom-mr {
background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-ml,
.x5-grid-row-editor-buttons-default-bottom-mr {
background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-bottom-mc {
padding: 4px 0px 0px 0px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-grid-row-editor-buttons-default-bottom:before {
display: none;
content: "x-slicer:frame:0 5px 5px 5px, corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 187, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-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 237, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-mc {
background-color: #eaf1fb; }
/* line 264, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-nbr .x5-grid-row-editor-buttons-default-top {
padding: 0 !important;
border-width: 0 !important;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: transparent !important;
box-shadow: none !important; }
/* line 281, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-frameInfo {
font-family: th-5-5-0-5-1-1-0-1-4-4-4-4; }
/* line 347, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-tl {
background-position: 0 -10px; }
/* line 351, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-tr {
background-position: right -15px; }
/* line 355, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-bl {
background-position: 0 -20px; }
/* line 359, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-br {
background-position: right -25px; }
/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-ml {
background-position: 0 top; }
/* line 371, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-mr {
background-position: right top; }
/* line 379, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-tc {
background-position: 0 0; }
/* line 383, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-bc {
background-position: 0 -5px; }
/* line 390, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-tr,
.x5-grid-row-editor-buttons-default-top-br,
.x5-grid-row-editor-buttons-default-top-mr {
padding-right: 5px; }
/* line 396, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-tl,
.x5-grid-row-editor-buttons-default-top-bl,
.x5-grid-row-editor-buttons-default-top-ml {
padding-left: 5px; }
/* line 400, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-tc {
height: 5px; }
/* line 403, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-bc {
height: 0; }
/* line 414, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-tl,
.x5-grid-row-editor-buttons-default-top-bl,
.x5-grid-row-editor-buttons-default-top-tr,
.x5-grid-row-editor-buttons-default-top-br,
.x5-grid-row-editor-buttons-default-top-tc,
.x5-grid-row-editor-buttons-default-top-bc,
.x5-grid-row-editor-buttons-default-top-ml,
.x5-grid-row-editor-buttons-default-top-mr {
background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); }
/* line 454, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-ml,
.x5-grid-row-editor-buttons-default-top-mr {
background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);
background-repeat: repeat-y; }
/* line 464, ../../../ext-theme-base/sass/etc/mixins/frame.scss */
.x5-grid-row-editor-buttons-default-top-mc {
padding: 0px 0px 4px 0px; }
/*<if slicer>*/
/* line 83, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */
.x-cmd-slicer.x5-grid-row-editor-buttons-default-top:before {
display: none;
content: "x-slicer:frame:5px 5px 0 5px, corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)" !important; }
/*</if slicer>*/
/* */
/* line 98, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor-buttons {
border-color: #99bce8; }
/* line 102, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-row-editor-update-button {
margin-right: 2px; }
/* line 105, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-row-editor-cancel-button {
margin-left: 2px; }
/* line 121, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor-errors .x5-tip-body {
padding: 5px; }
/* line 126, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */
.x5-grid-row-editor-errors-item {
list-style: disc;
margin-left: 15px; }
/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */
.x5-grid-cell-inner-row-expander {
padding: 6px 7px 5px 7px; }
/* line 5, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */
.x5-grid-no-row-lines .x5-grid-row-focused .x5-grid-cell-inner-row-expander {
padding-top: 5px;
padding-bottom: 4px; }
/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */
.x5-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 */
.x5-grid-row-collapsed .x5-grid-row-expander {
background-image: url(images/grid/group-expand.gif); }
/* line 2, ../../../ext-theme-neutral/sass/src/grid/property/Grid.scss */
.x5-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 */
.x5-accordion-layout-ct {
background-color: white;
padding: 0; }
/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x5-accordion-hd .x5-panel-header-title {
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 */
.x5-accordion-item {
margin: 0; }
/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x5-accordion-item .x5-accordion-hd {
background: #d9e7f8;
border-width: 1px 0;
border-color: #f3f7fb #99bce8 #99bce8;
padding: 4px 5px 5px 5px; }
/* line 29, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x5-accordion-item .x5-accordion-hd-sibling-expanded {
border-top-color: #99bce8;
border-top-width: 1px; }
/* line 34, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x5-accordion-item .x5-accordion-hd-last-collapsed {
border-bottom-color: #d9e7f8; }
/* line 38, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x5-accordion-item .x5-accordion-body {
border-width: 0; }
/* line 45, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x5-accordion-hd .x5-tool-collapse-top,
.x5-accordion-hd .x5-tool-collapse-bottom {
background-position: 0 -255px; }
/* line 50, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x5-accordion-hd .x5-tool-expand-top,
.x5-accordion-hd .x5-tool-expand-bottom {
background-position: 0 -240px; }
/* line 58, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x5-accordion-hd .x5-tool-over .x5-tool-collapse-top,
.x5-accordion-hd .x5-tool-over .x5-tool-collapse-bottom {
background-position: -15px -255px; }
/* line 63, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x5-accordion-hd .x5-tool-over .x5-tool-expand-top,
.x5-accordion-hd .x5-tool-over .x5-tool-expand-bottom {
background-position: -15px -240px; }
/* line 69, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */
.x5-accordion-hd .x5-tool-img {
background-color: #d9e7f8; }
/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Form.scss */
.x5-form-layout-wrap {
border-spacing: 5px; }
/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle {
position: absolute;
z-index: 100;
font-size: 1px;
line-height: 6px;
overflow: hidden;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
background-color: #fff; }
/* line 17, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-collapsed .x5-resizable-handle {
display: none; }
/* line 21, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-north {
cursor: n-resize; }
/* line 24, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-south {
cursor: s-resize; }
/* line 27, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-east {
cursor: e-resize; }
/* line 30, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-west {
cursor: w-resize; }
/* line 33, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-southeast {
cursor: se-resize; }
/* line 36, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-northwest {
cursor: nw-resize; }
/* line 39, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-northeast {
cursor: ne-resize; }
/* line 42, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-southwest {
cursor: sw-resize; }
/* line 46, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-east {
width: 6px;
height: 100%;
right: 0;
top: 0; }
/* line 53, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-south {
width: 100%;
height: 6px;
left: 0;
bottom: 0; }
/* line 60, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-west {
width: 6px;
height: 100%;
left: 0;
top: 0; }
/* line 67, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-north {
width: 100%;
height: 6px;
left: 0;
top: 0; }
/* line 74, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-southeast {
width: 6px;
height: 6px;
right: 0;
bottom: 0;
z-index: 101; }
/* line 82, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-northwest {
width: 6px;
height: 6px;
left: 0;
top: 0;
z-index: 101; }
/* line 90, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-northeast {
width: 6px;
height: 6px;
right: 0;
top: 0;
z-index: 101; }
/* line 98, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-southwest {
width: 6px;
height: 6px;
left: 0;
bottom: 0;
z-index: 101; }
/* line 107, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-window .x5-window-handle {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0; }
/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-window-collapsed .x5-window-handle {
display: none; }
/* line 116, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-proxy {
border: 1px dashed #3b5a82;
position: absolute;
overflow: hidden;
z-index: 50000; }
/* line 125, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-over,
.x5-resizable-pinned .x5-resizable-handle {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1; }
/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-east-over,
.x5-resizable-handle-west-over {
background-image: url(images/sizer/e-handle.gif); }
/* line 137, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-south-over,
.x5-resizable-handle-north-over {
background-image: url(images/sizer/s-handle.gif); }
/* line 142, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-southeast-over {
background-position: top left;
background-image: url(images/sizer/se-handle.gif); }
/* line 147, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-northwest-over {
background-position: bottom right;
background-image: url(images/sizer/nw-handle.gif); }
/* line 152, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-northeast-over {
background-position: bottom left;
background-image: url(images/sizer/ne-handle.gif); }
/* line 157, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-southwest-over {
background-position: top right;
background-image: url(images/sizer/sw-handle.gif); }
/* line 165, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-east,
.x5-resizable-pinned .x5-resizable-handle-west {
background-image: url(images/sizer/e-handle.gif); }
/* line 171, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-south,
.x5-resizable-pinned .x5-resizable-handle-north {
background-image: url(images/sizer/s-handle.gif); }
/* line 176, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-southeast {
background-position: top left;
background-image: url(images/sizer/se-handle.gif); }
/* line 181, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-northwest {
background-position: bottom right;
background-image: url(images/sizer/nw-handle.gif); }
/* line 186, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-northeast {
background-position: bottom left;
background-image: url(images/sizer/ne-handle.gif); }
/* line 191, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-southwest {
background-position: top right;
background-image: url(images/sizer/sw-handle.gif); }
/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
.x5-column-header-checkbox {
border-color: #c5c5c5; }
/* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
.x5-grid-row-checker,
.x5-column-header-checkbox .x5-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 */
.x5-column-header-checkbox .x5-column-header-inner {
padding: 5px 5px 4px 5px; }
/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
.x5-grid-cell-row-checker .x5-grid-cell-inner {
padding: 4px 5px 3px 5px; }
/* line 23, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
.x5-grid-no-row-lines .x5-grid-row-focused .x5-grid-cell-row-checker .x5-grid-cell-inner {
padding-top: 3px;
padding-bottom: 2px; }
/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */
.x5-grid-hd-checker-on .x5-column-header-text,
.x5-grid-item-selected .x5-grid-row-checker,
.x5-grid-item-selected .x5-grid-row-checker {
background-position: 0 -13px; }
/* Horizontal styles */
/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-horz {
padding-left: 7px;
background: no-repeat 0 -15px; }
/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-horz .x5-slider-end {
padding-right: 7px;
background: no-repeat right -30px; }
/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-horz .x5-slider-inner {
height: 15px; }
/* line 16, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-horz .x5-slider-thumb {
width: 14px;
height: 15px;
margin-left: -7px;
background-image: url(images/slider/slider-thumb.png); }
/* line 23, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-horz.x5-slider-focus .x5-slider-thumb {
background-position: -42px -45px; }
/* line 27, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-horz .x5-slider-thumb-over {
background-position: -14px -15px; }
/* line 31, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-horz.x5-slider-focus .x5-slider-thumb-over {
background-position: -56px -60px; }
/* line 35, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-horz .x5-slider-thumb-drag {
background-position: -28px -30px; }
/* line 39, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-horz.x5-slider-focus .x5-slider-thumb-drag {
background-position: -70px -75px; }
/* Vertical styles */
/* line 62, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-ct-vert {
height: 100%; }
/* line 66, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert {
padding-top: 7px;
background: no-repeat -30px 0;
height: 100%; }
/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert > .x5-slider-end {
height: 100%; }
/* line 73, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert > .x5-slider-end > .x5-slider-inner {
height: 100%; }
/* line 79, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert .x5-slider-end {
padding-bottom: 7px;
background: no-repeat -15px bottom;
width: 15px; }
/* line 85, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert .x5-slider-inner {
width: 15px; }
/* line 89, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert .x5-slider-thumb {
width: 15px;
height: 14px;
margin-bottom: -7px;
background-image: url(images/slider/slider-v-thumb.png); }
/* line 96, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert.x5-slider-focus .x5-slider-thumb {
background-position: -45px -42px; }
/* line 100, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert .x5-slider-thumb-over {
background-position: -15px -14px; }
/* line 104, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert.x5-slider-focus .x5-slider-thumb-over {
background-position: -60px -56px; }
/* line 108, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert .x5-slider-thumb-drag {
background-position: -30px -28px; }
/* line 112, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert.x5-slider-focus .x5-slider-thumb-drag {
background-position: -75px -70px; }
/* line 118, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-horz,
.x5-slider-horz .x5-slider-end,
.x5-slider-horz .x5-slider-inner {
background-image: url(images/slider/slider-bg.png); }
/* line 124, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-vert,
.x5-slider-vert .x5-slider-end,
.x5-slider-vert .x5-slider-inner {
background-image: url(images/slider/slider-v-bg.png); }
/* line 129, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */
.x5-slider-default-cell > .x5-grid-cell-inner,
.x5-sliderwidget-default-cell > .x5-grid-cell-inner {
padding-top: 2px;
padding-bottom: 3px; }
/* line 1, ../../../ext-theme-neutral/sass/src/sparkline/Base.scss */
.x5-sparkline-cell .x5-grid-cell-inner {
padding-top: 1px;
padding-bottom: 1px;
line-height: 18px; }
/**
* Creates a visual theme for a Breadcrumb.
*
* @param {string} $ui
* The name of the UI being created. Can not included spaces or special punctuation
* (used in CSS class names).
*
* @param {string} [$ui-button-ui=$breadcrumb-button-ui]
* The name of the button UI that will be used with this breadcrumb UI. Used for overriding
* the button arrows for the given button UI when it is used inside a breadcrumb with this UI.
*
* @param {number} [$ui-button-spacing=$breadcrumb-button-spacing]
* The space between the breadcrumb buttons
*
* @param {number} [$ui-arrow-width=$breadcrumb-arrow-width]
* The width of the breadcrumb arrows when
* {@link Ext.toolbar.Breadcrumb#useSplitButtons} is `false`
*
* @param {number} [$ui-split-width=$breadcrumb-split-width]
* The width of breadcrumb arrows when {@link Ext.toolbar.Breadcrumb#useSplitButtons} is
* `true`
*
* @param {boolean} [$ui-include-menu-active-arrow=$breadcrumb-include-menu-active-arrow]
* `true` to include a separate background-image for menu arrows when a breadcrumb button's
* menu is open
*
* @param {boolean} [$ui-include-split-over-arrow=$breadcrumb-include-split-over-arrow
* `true` to include a separate background-image for split arrows when a breadcrumb button's
* arrow is hovered
*
* @param {string} [$ui-folder-icon=$breadcrumb-folder-icon]
* The background-image for the default "folder" icon
*
* @param {string} [$ui-leaf-icon=$breadcrumb-leaf-icon]
* The background-image for the default "leaf" icon
*
* @param {number} [$ui-scroller-width=$breadcrumb-scroller-width]
* The width of Breadcrumb scrollers
*
* @param {number} [$ui-scroller-height=$breadcrumb-scroller-height]
* The height of Breadcrumb scrollers
*
* @param {color} [$ui-scroller-border-color=$breadcrumb-scroller-border-color]
* The border-color of Breadcrumb scrollers
*
* @param {number} [$ui-scroller-border-width=$breadcrumb-scroller-border-width]
* The border-width of Breadcrumb scrollers
*
* @param {number/list} [$ui-scroller-top-margin=$breadcrumb-scroller-top-margin]
* The margin of "top" scroller buttons
*
* @param {number/list} [$ui-scroller-right-margin=$breadcrumb-scroller-right-margin]
* The margin of "right" scroller buttons
*
* @param {number/list} [$ui-scroller-bottom-margin=$breadcrumb-scroller-bottom-margin]
* The margin of "bottom" scroller buttons
*
* @param {number/list} [$ui-scroller-left-margin=$breadcrumb-scroller-left-margin]
* The margin of "left" scroller buttons
*
* @param {string} [$ui-scroller-cursor=$breadcrumb-scroller-cursor]
* The cursor of Breadcrumb scrollers
*
* @param {string} [$ui-scroller-cursor-disabled=$breadcrumb-scroller-cursor-disabled]
* The cursor of disabled Breadcrumb scrollers
*
* @param {number} [$ui-scroller-opacity=$breadcrumb-scroller-opacity]
* The opacity of Breadcrumb scroller buttons. Only applicable when
* `$ui-classic-scrollers` is `false`.
*
* @param {number} [$ui-scroller-opacity-over=$breadcrumb-scroller-opacity-over]
* The opacity of hovered Breadcrumb scroller buttons. Only applicable when
* `$ui-classic-scrollers` is `false`.
*
* @param {number} [$ui-scroller-opacity-pressed=$breadcrumb-scroller-opacity-pressed]
* The opacity of pressed Breadcrumb scroller buttons. Only applicable when
* `$ui-classic-scrollers` is `false`.
*
* @param {number} [$ui-scroller-opacity-disabled=$breadcrumb-scroller-opacity-disabled]
* The opacity of disabled Breadcrumb scroller buttons.
*
* @param {boolean} [$ui-classic-scrollers=$breadcrumb-classic-scrollers]
* `true` to use classic-style scroller buttons. When `true` scroller buttons are given
* their hover state by changing their background-position, When `false` scroller buttons
* are given their hover state by applying opacity.
*
* @member Ext.toolbar.Breadcrumb
*/
/* line 115, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
.x5-breadcrumb-btn-default {
margin: 0 0 0 0px; }
/* line 119, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
.x5-breadcrumb-icon-folder-default {
background-image: url(images/tree/folder.gif); }
/* line 123, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
.x5-breadcrumb-icon-leaf-default {
background-image: url(images/tree/leaf.gif); }
/* line 128, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
.x5-breadcrumb-btn > .x5-btn-wrap-default-toolbar-small.x5-btn-arrow:after {
width: 14px;
background-image: url(images/breadcrumb/default-arrow.gif); }
/* line 140, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
.x5-btn-menu-active.x5-breadcrumb-btn > .x5-btn-wrap-default-toolbar-small.x5-btn-arrow:after {
background-image: url(images/breadcrumb/default-arrow-open.gif); }
/* line 153, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
.x5-breadcrumb-btn > .x5-btn-wrap-default-toolbar-small.x5-btn-split:after {
width: 14px;
background-image: url(images/breadcrumb/default-split-arrow.gif); }
/* line 165, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
.x5-btn-over.x5-breadcrumb-btn > .x5-btn-wrap-default-toolbar-small.x5-btn-split:after {
background-image: url(images/breadcrumb/default-split-arrow-over.gif); }
/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Breadcrumb.scss */
.x5-btn-menu-active.x5-breadcrumb-btn > .x5-btn-wrap-default-toolbar-small.x5-btn-split:after {
background-image: url(images/breadcrumb/default-split-arrow-open.gif); }
/* line 145, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-breadcrumb-default-scroller .x5-box-scroller-body-horizontal {
margin-left: 14px; }
/* line 151, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-breadcrumb-default-vertical-scroller .x5-box-scroller-body-vertical {
margin-top: 26px; }
/* line 156, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-breadcrumb-default {
cursor: pointer; }
/* line 177, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-breadcrumb-default.x5-box-scroller-disabled {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5;
cursor: default; }
/* line 188, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-breadcrumb-default.x5-box-scroller-left, .x5-box-scroller-breadcrumb-default.x5-box-scroller-right {
width: 14px;
height: 22px;
border-style: solid;
border-color: #8db2e3;
border-width: 0 0 1px;
top: 50%;
margin-top: -11px; }
/* line 214, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-breadcrumb-default.x5-box-scroller-left {
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
background-image: url(images/breadcrumb/default-scroll-left.gif);
background-position: -14px 0; }
/* line 231, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-breadcrumb-default.x5-box-scroller-left.x5-box-scroller-hover {
background-position: 0 0; }
/* line 237, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-breadcrumb-default.x5-box-scroller-right {
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
background-image: url(images/breadcrumb/default-scroll-right.gif);
background-position: 0 0; }
/* line 254, ../../../ext-theme-neutral/sass/src/layout/container/Box.scss */
.x5-box-scroller-breadcrumb-default.x5-box-scroller-right.x5-box-scroller-hover {
background-position: -14px 0; }
/* line 1, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
.x5-tree-drop-ok-append .x5-dd-drop-icon {
background-image: url(images/tree/drop-append.gif); }
/* line 5, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
.x5-tree-drop-ok-above .x5-dd-drop-icon {
background-image: url(images/tree/drop-above.gif); }
/* line 9, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
.x5-tree-drop-ok-below .x5-dd-drop-icon {
background-image: url(images/tree/drop-below.gif); }
/* line 13, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
.x5-tree-drop-ok-between .x5-dd-drop-icon {
background-image: url(images/tree/drop-between.gif); }
/* line 17, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */
.x5-tree-ddindicator {
height: 1px;
border-width: 1px 0px 0px;
border-style: dotted;
border-color: green; }
/* line 1, ../../../ext-theme-neutral/sass/src/view/MultiSelector.scss */
.x5-multiselector-remove {
font-size: 100%;
color: #eeeeee;
cursor: pointer; }
/* line 6, ../../../ext-theme-neutral/sass/src/view/MultiSelector.scss */
.x5-multiselector-remove .x5-grid-cell-inner {
padding: 3px 6px 4px 6px; }
/* line 11, ../../../ext-theme-neutral/sass/src/view/MultiSelector.scss */
.x5-grid-item-over .x5-multiselector-remove {
color: red; }
/* line 1, ../../../ext-theme-neutral/sass/src/window/Toast.scss */
.x5-toast-icon-information {
background-image: url(images/window/toast/icon16_info.png); }
/* line 5, ../../../ext-theme-neutral/sass/src/window/Toast.scss */
.x5-toast-icon-error {
background-image: url(images/window/toast/icon16_error.png); }
/* Using standard theme */
/* line 11, ../../../ext-theme-neutral/sass/src/window/Toast.scss */
.x5-toast-window .x-window-body {
padding: 15px 5px 15px 5px; }
/* Custom styling */
/* line 17, ../../../ext-theme-neutral/sass/src/window/Toast.scss */
.x5-toast-light .x-window-header {
background-color: transparent; }
/* line 21, ../../../ext-theme-neutral/sass/src/window/Toast.scss */
.x5-toast-light .x-tool-img {
background-color: transparent; }
/* line 25, ../../../ext-theme-neutral/sass/src/window/Toast.scss */
.x5-toast-light {
background-image: url(images/window/toast/fader.png); }
/* line 29, ../../../ext-theme-neutral/sass/src/window/Toast.scss */
.x5-toast-light .x-window-body {
padding: 15px 5px 20px 5px;
background-color: transparent;
border: 0px solid white; }
/* including package ext-theme-classic */
/* line 2, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-tl {
background: transparent no-repeat 0 0; }
/* line 6, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-tc {
height: 8px;
background: transparent repeat-x 0 0;
overflow: hidden; }
/* line 12, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-tr {
background: transparent no-repeat right -8px; }
/* line 16, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-ml {
background: transparent repeat-y 0;
padding-left: 4px;
overflow: hidden; }
/* line 22, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-mc {
background: repeat-x 0 -16px;
padding: 4px 10px; }
/* line 27, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-mc h3 {
margin: 0 0 4px 0; }
/* line 31, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-mr {
background: transparent repeat-y right;
padding-right: 4px;
overflow: hidden; }
/* line 37, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-bl {
background: transparent no-repeat 0 -16px; }
/* line 41, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-bc {
background: transparent repeat-x 0 -8px;
height: 8px;
overflow: hidden; }
/* line 47, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-br {
background: transparent no-repeat right -24px; }
/* line 51, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-tl, .x5-box-bl {
padding-left: 8px;
overflow: hidden; }
/* line 56, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-tr, .x5-box-br {
padding-right: 8px;
overflow: hidden; }
/* line 61, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-tl {
background-image: url(images/box/corners.gif); }
/* line 65, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-tc {
background-image: url(images/box/tb.gif); }
/* line 69, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-tr {
background-image: url(images/box/corners.gif); }
/* line 73, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-ml {
background-image: url(images/box/l.gif); }
/* line 77, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-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 85, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-mc h3 {
font-size: 18px;
font-weight: bold; }
/* line 90, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-mr {
background-image: url(images/box/r.gif); }
/* line 94, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-bl {
background-image: url(images/box/corners.gif); }
/* line 98, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-bc {
background-image: url(images/box/tb.gif); }
/* line 102, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-br {
background-image: url(images/box/corners.gif); }
/* line 106, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-blue .x5-box-bl, .x5-box-blue .x5-box-br, .x5-box-blue .x5-box-tl, .x5-box-blue .x5-box-tr {
background-image: url(images/box/corners-blue.gif); }
/* line 110, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-blue .x5-box-bc, .x5-box-blue .x5-box-mc, .x5-box-blue .x5-box-tc {
background-image: url(images/box/tb-blue.gif); }
/* line 114, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-blue .x5-box-mc {
background-color: #c3daf9; }
/* line 118, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-blue .x5-box-mc h3 {
color: #17385b; }
/* line 122, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-blue .x5-box-ml {
background-image: url(images/box/l-blue.gif); }
/* line 126, ../../../ext-theme-classic/sass/src/dom/Element.scss */
.x5-box-blue .x5-box-mr {
background-image: url(images/box/r-blue.gif); }
/* line 1, ../../../ext-theme-classic/sass/src/grid/column/Column.scss */
.x5-column-header-trigger {
background-color: #c5c5c5;
background-image: url(images/grid/grid3-hd-btn.gif); }
/* line 2, ../../../ext-theme-classic/sass/src/window/MessageBox.scss */
.x5-message-box .x5-msg-box-wait {
background-image: url(images/shared/blue-loading.gif); }
/* line 2, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */
.x5-html-editor-wrap .x5-toolbar {
border-left-color: #b5b8c8;
border-top-color: #b5b8c8;
border-right-color: #b5b8c8; }
/* line 9, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */
.x5-html-editor-input {
border: 1px solid #b5b8c8;
border-top-width: 0; }
/* line 1, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */
.x5-accordion-hd {
-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 4, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */
.x5-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 3, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-east-over,
.x5-resizable-handle-west-over {
background-position: left; }
/* line 8, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-south-over,
.x5-resizable-handle-north-over {
background-position: top; }
/* line 12, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-southeast-over {
background-position: top left; }
/* line 16, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-northwest-over {
background-position: bottom right; }
/* line 20, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-northeast-over {
background-position: bottom left; }
/* line 24, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-handle-southwest-over {
background-position: top right; }
/* line 30, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-east,
.x5-resizable-pinned .x5-resizable-handle-west {
background-position: left; }
/* line 35, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-south,
.x5-resizable-pinned .x5-resizable-handle-north {
background-position: top; }
/* line 39, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-southeast {
background-position: top left; }
/* line 43, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-northwest {
background-position: bottom right; }
/* line 47, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-northeast {
background-position: bottom left; }
/* line 51, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */
.x5-resizable-pinned .x5-resizable-handle-southwest {
background-position: top right; }
/* line 1, ../../../ext-theme-classic/sass/src/slider/Multi.scss */
.x5-slider-focus .x5-slider-thumb {
outline: 1px dotted #333333; }
``` |
```objective-c
// Protocol Buffers - Google's data interchange format
// path_to_url
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Protocol Buffers - Google's data interchange format
// path_to_url
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Author: kenton@google.com (Kenton Varda)
#include <vector>
#include <google/protobuf/stubs/common.h>
#include <google/protobuf/io/zero_copy_stream.h>
namespace google {
namespace protobuf {
namespace compiler {
class ZipWriter {
public:
ZipWriter(io::ZeroCopyOutputStream* raw_output);
~ZipWriter();
bool Write(const string& filename, const string& contents);
bool WriteDirectory();
private:
struct FileInfo {
string name;
uint32 offset;
uint32 size;
uint32 crc32;
};
io::ZeroCopyOutputStream* raw_output_;
vector<FileInfo> files_;
};
} // namespace compiler
} // namespace protobuf
} // namespace google
``` |
Nawab Sir Shahnawaz Khan Mamdot (17 December 1883 – 28 March 1942) was a Punjabi landowner and politician of British India. He was a key supporter of the Pakistan movement and for some time, the largest landowner in undivided Punjab.
Early life and career
He was born in Mamdot, Kasur District, Punjab in 1883. In 1907, he left Punjab, British India and settled in Hyderabad State where he joined the state police. In 1928, Nawab Ghulam Qutbuddin Khan Mamdot, ruler on the Mamdot estate at that time, died without issue and childless, and the British Court of Law awarded Shahnawaz the jagirs and title of Nawab of Mamdot. In doing so, he became one of the largest landowners in the Punjab.
He returned to his ancestral land in 1934 and joined the Unionist Party (Punjab). Following the Jinnah-Sikandar Pact in 1937, Mamdot joined the All-India Muslim League and became President of the Punjab Muslim League in 1938. Then he became head of it and started structurally reorganisinig the Punjab Muslim League. He then played a key role in organizing the historic session of the All-India Muslim League in March 1940 in Lahore. He personally paid almost all its expenses. He also was the chairman of the reception committee. Jinnah usually stayed at his 'Mamdot Villa' whenever he was in Lahore.
He was knighted in the King's New Year's Honour List at the start of 1939. Later that year, he funded publication of a book by Mian Kifait Ali titled "Pakistan", which caused Mohammad Ali Jinnah to intervene and insist on a name change before publication for risk of antagonizing non-Muslims.
Mamdot was a staunch supporter of a separate Muslim nation, and held the belief that Muslims could never tolerate subjugation to a community with which they shared no common ground in religion, culture and civilisation.
At the Lahore Resolution session in 1940, he gave the welcome address as chairman of the local reception committee.
Commemorative postage stamp
Pakistan Post issued a commemorative postage stamp in his honor in 1990.
Death and legacy
He died of a heart attack in Lahore on 28 March 1942.
He was succeeded as the Nawab of Mamdot, and president of the Punjab Muslim League by his son Iftikhar Hussain Khan Mamdot.
References
1883 births
1942 deaths
History of Punjab
Indian landowners
People from British India
Indian Knights Bachelor
Mamdot family
20th-century landowners
Pakistan Movement activists
People from Lahore |
```c++
//
// SecureStreamSocketImpl.cpp
//
// Library: NetSSL_OpenSSL
// Package: SSLSockets
// Module: SecureStreamSocketImpl
//
// and Contributors.
//
//
#include "Poco/Net/SecureStreamSocketImpl.h"
#include "Poco/Net/SSLException.h"
#include "Poco/Thread.h"
namespace Poco {
namespace Net {
SecureStreamSocketImpl::SecureStreamSocketImpl(Context::Ptr pContext):
underlying_socket(new StreamSocketImpl),
_impl(underlying_socket, pContext),
_lazyHandshake(false)
{
}
SecureStreamSocketImpl::SecureStreamSocketImpl(StreamSocketImpl* pStreamSocket, Context::Ptr pContext):
underlying_socket(pStreamSocket),
_impl(underlying_socket, pContext),
_lazyHandshake(false)
{
pStreamSocket->duplicate();
reset(_impl.sockfd());
}
SecureStreamSocketImpl::~SecureStreamSocketImpl()
{
try
{
reset();
}
catch (...)
{
poco_unexpected();
}
}
void SecureStreamSocketImpl::setSendTimeout(const Poco::Timespan& timeout)
{
underlying_socket->setSendTimeout(timeout);
_sndTimeout = underlying_socket->getSendTimeout();
}
void SecureStreamSocketImpl::setReceiveTimeout(const Poco::Timespan& timeout)
{
underlying_socket->setReceiveTimeout(timeout);
_recvTimeout = underlying_socket->getReceiveTimeout();
}
SocketImpl* SecureStreamSocketImpl::acceptConnection(SocketAddress& clientAddr)
{
throw Poco::InvalidAccessException("Cannot acceptConnection() on a SecureStreamSocketImpl");
}
void SecureStreamSocketImpl::acceptSSL()
{
_impl.acceptSSL();
}
void SecureStreamSocketImpl::connect(const SocketAddress& address)
{
_impl.connect(address, !_lazyHandshake);
reset(_impl.sockfd());
}
void SecureStreamSocketImpl::connect(const SocketAddress& address, const Poco::Timespan& timeout)
{
_impl.connect(address, timeout, !_lazyHandshake);
reset(_impl.sockfd());
}
void SecureStreamSocketImpl::connectNB(const SocketAddress& address)
{
_impl.connectNB(address);
reset(_impl.sockfd());
}
void SecureStreamSocketImpl::connectSSL()
{
_impl.connectSSL(!_lazyHandshake);
}
void SecureStreamSocketImpl::bind(const SocketAddress& address, bool reuseAddress, bool reusePort)
{
throw Poco::InvalidAccessException("Cannot bind() a SecureStreamSocketImpl");
}
void SecureStreamSocketImpl::listen(int backlog)
{
throw Poco::InvalidAccessException("Cannot listen() on a SecureStreamSocketImpl");
}
void SecureStreamSocketImpl::close()
{
reset();
_impl.close();
}
void SecureStreamSocketImpl::abort()
{
reset();
_impl.abort();
}
int SecureStreamSocketImpl::sendBytes(const void* buffer, int length, int flags)
{
return _impl.sendBytes(buffer, length, flags);
}
int SecureStreamSocketImpl::receiveBytes(void* buffer, int length, int flags)
{
return _impl.receiveBytes(buffer, length, flags);
}
int SecureStreamSocketImpl::sendTo(const void* buffer, int length, const SocketAddress& address, int flags)
{
throw Poco::InvalidAccessException("Cannot sendTo() on a SecureStreamSocketImpl");
}
int SecureStreamSocketImpl::receiveFrom(void* buffer, int length, SocketAddress& address, int flags)
{
throw Poco::InvalidAccessException("Cannot receiveFrom() on a SecureStreamSocketImpl");
}
void SecureStreamSocketImpl::sendUrgent(unsigned char data)
{
throw Poco::InvalidAccessException("Cannot sendUrgent() on a SecureStreamSocketImpl");
}
int SecureStreamSocketImpl::available()
{
return _impl.available();
}
void SecureStreamSocketImpl::shutdownReceive()
{
}
void SecureStreamSocketImpl::shutdownSend()
{
}
void SecureStreamSocketImpl::shutdown()
{
_impl.shutdown();
}
bool SecureStreamSocketImpl::secure() const
{
return true;
}
bool SecureStreamSocketImpl::havePeerCertificate() const
{
X509* pCert = _impl.peerCertificate();
if (pCert)
{
X509_free(pCert);
return true;
}
else return false;
}
X509Certificate SecureStreamSocketImpl::peerCertificate() const
{
X509* pCert = _impl.peerCertificate();
if (pCert)
return X509Certificate(pCert);
else
throw SSLException("No certificate available");
}
void SecureStreamSocketImpl::setLazyHandshake(bool flag)
{
_lazyHandshake = flag;
}
bool SecureStreamSocketImpl::getLazyHandshake() const
{
return _lazyHandshake;
}
void SecureStreamSocketImpl::verifyPeerCertificate()
{
_impl.verifyPeerCertificate();
}
void SecureStreamSocketImpl::verifyPeerCertificate(const std::string& hostName)
{
_impl.verifyPeerCertificate(hostName);
}
int SecureStreamSocketImpl::completeHandshake()
{
return _impl.completeHandshake();
}
bool SecureStreamSocketImpl::getBlocking() const
{
return _impl.getBlocking();
}
void SecureStreamSocketImpl::setBlocking(bool flag)
{
_impl.setBlocking(flag);
}
} } // namespace Poco::Net
``` |
```c++
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
extern "C" {
#include <X11/Xlib.h>
}
#include "ui/gl/gl_context_glx.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "base/numerics/safe_conversions.h"
#include "base/trace_event/trace_event.h"
#include "ui/gl/GL/glextchromium.h"
#include "ui/gl/gl_bindings.h"
#include "ui/gl/gl_implementation.h"
#include "ui/gl/gl_surface_glx.h"
namespace gfx {
GLContextGLX::GLContextGLX(GLShareGroup* share_group)
: GLContextReal(share_group)
, context_(nullptr)
, display_(nullptr)
{
}
XDisplay* GLContextGLX::display()
{
return display_;
}
bool GLContextGLX::Initialize(
GLSurface* compatible_surface, GpuPreference gpu_preference)
{
display_ = static_cast<XDisplay*>(compatible_surface->GetDisplay());
GLXContext share_handle = static_cast<GLXContext>(
share_group() ? share_group()->GetHandle() : nullptr);
if (GLSurfaceGLX::IsCreateContextSupported()) {
DVLOG(1) << "GLX_ARB_create_context supported.";
std::vector<int> attribs;
if (GLSurfaceGLX::IsCreateContextRobustnessSupported()) {
DVLOG(1) << "GLX_ARB_create_context_robustness supported.";
attribs.push_back(GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB);
attribs.push_back(GLX_LOSE_CONTEXT_ON_RESET_ARB);
}
attribs.push_back(0);
context_ = glXCreateContextAttribsARB(
display_,
static_cast<GLXFBConfig>(compatible_surface->GetConfig()),
share_handle,
True,
&attribs.front());
if (!context_) {
LOG(ERROR) << "Failed to create GL context with "
<< "glXCreateContextAttribsARB.";
return false;
}
} else {
DVLOG(1) << "GLX_ARB_create_context not supported.";
context_ = glXCreateNewContext(
display_,
static_cast<GLXFBConfig>(compatible_surface->GetConfig()),
GLX_RGBA_TYPE,
share_handle,
True);
if (!context_) {
LOG(ERROR) << "Failed to create GL context with glXCreateNewContext.";
return false;
}
}
DCHECK(context_);
DVLOG(1) << " Successfully allocated "
<< (compatible_surface->IsOffscreen() ? "offscreen" : "onscreen")
<< " GL context with LOSE_CONTEXT_ON_RESET_ARB";
DVLOG(1) << (compatible_surface->IsOffscreen() ? "Offscreen" : "Onscreen")
<< " context was "
<< (glXIsDirect(display_,
static_cast<GLXContext>(context_))
? "direct"
: "indirect")
<< ".";
return true;
}
void GLContextGLX::Destroy()
{
if (context_) {
glXDestroyContext(display_,
static_cast<GLXContext>(context_));
context_ = nullptr;
}
}
bool GLContextGLX::MakeCurrent(GLSurface* surface)
{
DCHECK(context_);
if (IsCurrent(surface))
return true;
ScopedReleaseCurrent release_current;
TRACE_EVENT0("gpu", "GLContextGLX::MakeCurrent");
if (!glXMakeContextCurrent(
display_,
reinterpret_cast<GLXDrawable>(surface->GetHandle()),
reinterpret_cast<GLXDrawable>(surface->GetHandle()),
static_cast<GLXContext>(context_))) {
LOG(ERROR) << "Couldn't make context current with X drawable.";
Destroy();
return false;
}
// Set this as soon as the context is current, since we might call into GL.
SetRealGLApi();
SetCurrent(surface);
if (!InitializeDynamicBindings()) {
Destroy();
return false;
}
if (!surface->OnMakeCurrent(this)) {
LOG(ERROR) << "Could not make current.";
Destroy();
return false;
}
release_current.Cancel();
return true;
}
void GLContextGLX::ReleaseCurrent(GLSurface* surface)
{
if (!IsCurrent(surface))
return;
SetCurrent(nullptr);
if (!glXMakeContextCurrent(display_, 0, 0, 0))
LOG(ERROR) << "glXMakeCurrent failed in ReleaseCurrent";
}
bool GLContextGLX::IsCurrent(GLSurface* surface)
{
bool native_context_is_current = glXGetCurrentContext() == static_cast<GLXContext>(context_);
// If our context is current then our notion of which GLContext is
// current must be correct. On the other hand, third-party code
// using OpenGL might change the current context.
DCHECK(!native_context_is_current || (GetRealCurrent() == this));
if (!native_context_is_current)
return false;
if (surface) {
if (glXGetCurrentDrawable() != reinterpret_cast<GLXDrawable>(surface->GetHandle())) {
return false;
}
}
return true;
}
void* GLContextGLX::GetHandle()
{
return context_;
}
void GLContextGLX::OnSetSwapInterval(int interval)
{
DCHECK(IsCurrent(nullptr));
if (HasExtension("GLX_EXT_swap_control") && g_driver_glx.fn.glXSwapIntervalEXTFn) {
glXSwapIntervalEXT(
display_,
glXGetCurrentDrawable(),
interval);
} else if (HasExtension("GLX_MESA_swap_control") && g_driver_glx.fn.glXSwapIntervalMESAFn) {
glXSwapIntervalMESA(interval);
} else {
if (interval == 0)
LOG(WARNING) << "Could not disable vsync: driver does not "
"support GLX_EXT_swap_control";
}
}
std::string GLContextGLX::GetExtensions()
{
DCHECK(IsCurrent(nullptr));
const char* extensions = GLSurfaceGLX::GetGLXExtensions();
if (extensions) {
return GLContext::GetExtensions() + " " + extensions;
}
return GLContext::GetExtensions();
}
bool GLContextGLX::WasAllocatedUsingRobustnessExtension()
{
return GLSurfaceGLX::IsCreateContextRobustnessSupported();
}
GLContextGLX::~GLContextGLX()
{
Destroy();
}
} // namespace gfx
``` |
The Nations Cup is a rugby union competition that was first held in 2006 at Estádio Universitário in Lisbon with Argentina A, Italy A, Portugal and Russia taking part. The tournament is part of the International Rugby Board's US $50 million Strategic Investment programme, which also includes the Pacific Nations Cup, the Pacific Rugby Cup and the Americas Rugby Championship (as well as the ARC's predecessor, the North America 4).
History
The Nations Cup is aimed at providing more competition for tier one A sides, as well as offering opportunities for second and third tier nations such as Portugal, Russia, Namibia, Uruguay, Georgia and Romania. The Nations Cup is an important tournament for both Italy and Argentina; at the time of the inaugural competition in 2006, the two sides combined had only nine players that did not play in their respective domestic competitions. The inaugural tournament was won by Argentina A.
The Nations Cup was expanded in 2007, with six teams instead of four. Argentina A and Italy A returned, along with Namibia, Georgia, Romania and the Emerging Springboks. This was in part to allow Namibia, Georgia and Romania to warm up for the 2007 Rugby World Cup. Originally scheduled to take place in the Tineretului Stadium, Bucharest, Romania, in the event the matches took place at the city's Stadionul Arcul de Triumf. The Emerging Springboks were crowned champions and the Tournament has remained at Arcul de Triumf since then.
In 2008 Argentina A, soon to be rechristened as Argentina Jaguars, left the tournament to play in the Churchill Cup, Namibia also withdrew. Uruguay and Russia took their places. The Emerging Springboks were crowned champions for the second time with a 100% record.
2009 saw the addition of Scotland A and France A to the tournament at the expense of the Emerging Springboks and Georgia, which both had other commitments that year. The Emerging Springboks played the British & Irish Lions during the Lions' tour of South Africa, while Georgia accepted an invitation to the Churchill Cup. Scotland A won that year's edition.
For the 2010 edition, Romania and defending champions Scotland A returned from 2009, as did Italy A. France A, Russia, and Uruguay instead played in the 2010 Churchill Cup. Their places were taken by Georgia, returning after a one-year absence, and Namibia and Argentina Jaguars, returning for the first time since 2007. Namibia emerged as winners.
The 2011 edition effectively served as a 2011 Rugby World Cup warm-up for host Romania, defending Nations Cup champion Namibia, and Georgia. The Argentina Jaguars also returned from the 2010 edition. Portugal returned for the first time since the inaugural edition in 2006. South Africa made their first appearance since 2008 a successful one, with a team billed as the "South African Kings" — in reality, the Southern Kings, the country's planned future Super Rugby franchise — winning the event.
Southern Kings did not return to defend their title in 2012, nor did Namibia or Georgia return to take part. Instead, Italy A (missing for a year) and Russia and Uruguay (missing for two years) reappeared. For the first time in the competition's history, host nation Romania won. They went on to retain the title in 2013, this time in a four-team round robin.
Emerging Ireland made their first appearance in the competition in 2014, along with Uruguay, Russia, and host Romania. This edition is seen as important preparation for the 2015 Rugby World Cup.
In 2015, Namibia made their first appearance since 2011 as they began to prepare for the 2015 Rugby World Cup. They were joined by Spain who made their debut in the tournament, and the Argentina Jaguars, coached by Argentina's most capped and top point scorer Felipe Contepomi.
Teams
The teams that participated in the IRB Nations Cup and their finishing positions are as follows:
Statistics
Point scorers
Last updated: 21 June 2015
Try scorers
Last updated: 21 June 2015
Results
{| class="wikitable"
|-border=1 cellpadding=5 cellspacing=0
! bgcolor="#efefef" width="20"|Year
! bgcolor="#efefef" width="200"|Winner
! bgcolor="#efefef" width="90"|Host
|-
| 2006 || ||
|-
| 2007 || ||rowspan="10"|
|-
| 2008 ||
|-
| 2009 ||
|-
| 2010 ||
|-
| 2011 || South African Kings
|-
| 2012 ||
|-
| 2013 ||
|-
| 2014 || Emerging Ireland
|-
| 2015 ||
|-
| 2016 ||
|-
| 2017 || ||rowspan="3"|
|-
| 2018 ||
|-
| 2019 ||
|}
See also
IRB Pacific Nations Cup
IRB Tbilisi Cup
Americas Rugby Championship
Women's Nations Cup
References
External links
IRB Nations Cup Official site
Nations Cup |
Four-time defending champion Richard Sears defeated Godfrey M. Brinley in the challenge round, 6–3, 4–6, 6–0, 6–3 to win the men's singles tennis title at the 1885 U.S. National Championships. It was Sears' fifth title at the U.S. championships.
Draw
Challenge round
Finals
Earlier rounds
Section 1
Section 2
References
Men's singles
1885 |
In economics, non-accelerating inflation buffer employment ratio (NAIBER) refers to a systemic proposal for an in-built inflation control mechanism devised by economists Bill Mitchell and Warren Mosler, and advocated by Modern Money Theory as replacement for NAIRU (non-accelerating inflation rate of unemployment). The concept of NAIBER is related to the idea of a job guarantee aimed to create full employment and price stability, by having the state promise to hire unemployed workers as an employer of last resort (ELR).
Description
If the Phillips curve displays hysteresis—that is, if episodes of high unemployment raise the NAIRU—the NAIRU analysis is especially problematic. This could happen, for example, if unemployed workers lose skills so that employers prefer to bid up of the wages of existing workers when demand increases, rather than hiring the unemployed. Economists as Abba Lerner and Hyman Minsky have argued that a similar effect can be achieved without the human costs of unemployment via a Job Guarantee (JG), where rather than being unemployed, those who cannot find work in the private sector should be employed by the government. This theory, and the policy of the JG replaces the NAIRU with the NAIBER (non-accelerating inflation buffer employment ratio).
The buffer employment ratio (BER) is the ratio of JG employment to total employment. The BER conditions the overall rate of wage demands. When the BER is high, real wage demands will be correspondingly lower. If inflation exceeds the government's announced target, tighter fiscal and monetary policy would be triggered to increase the BER, which entails workers transferring from the inflating sector to the fixed price JG sector. Ultimately, this reduces the inflation spiral. So instead of a buffer stock of unemployed being used to discipline the distributional struggle, the JG policy achieves this via compositional shifts in employment. Replacing the current non-accelerating inflation rate of unemployment (NAIRU), the BER that results in stable inflation is called the non-accelerating inflation buffer employment ratio (NAIBER). It is a full employment steady state JG level, which is dependent on a range of factors, such as the path of the economy.
See also
Centre of Full Employment and Equity
Full Employment Abandoned
Job Guarantee
Employer of last resort
Involuntary unemployment
Natural rate of unemployment
Footnotes
References
. Introduction to modern (as of 2009) Chartalism.
Macroeconomic policy
Post-Keynesian economics
Public employment
Full employment
Right to work |
```php
<?php
/*
*
* File ini bagian dari:
*
* OpenSID
*
* Sistem informasi desa sumber terbuka untuk memajukan desa
*
* Aplikasi dan source code ini dirilis berdasarkan lisensi GPL V3
*
* Hak Cipta 2009 - 2015 Combine Resource Institution (path_to_url
* Hak Cipta 2016 - 2024 Perkumpulan Desa Digital Terbuka (path_to_url
*
* Dengan ini diberikan izin, secara gratis, kepada siapa pun yang mendapatkan salinan
* dari perangkat lunak ini dan file dokumentasi terkait ("Aplikasi Ini"), untuk diperlakukan
* tanpa batasan, termasuk hak untuk menggunakan, menyalin, mengubah dan/atau mendistribusikan,
* asal tunduk pada syarat berikut:
*
* Pemberitahuan hak cipta di atas dan pemberitahuan izin ini harus disertakan dalam
* setiap salinan atau bagian penting Aplikasi Ini. Barang siapa yang menghapus atau menghilangkan
* pemberitahuan ini melanggar ketentuan lisensi Aplikasi Ini.
*
* PERANGKAT LUNAK INI DISEDIAKAN "SEBAGAIMANA ADANYA", TANPA JAMINAN APA PUN, BAIK TERSURAT MAUPUN
* TERSIRAT. PENULIS ATAU PEMEGANG HAK CIPTA SAMA SEKALI TIDAK BERTANGGUNG JAWAB ATAS KLAIM, KERUSAKAN ATAU
* KEWAJIBAN APAPUN ATAS PENGGUNAAN ATAU LAINNYA TERKAIT APLIKASI INI.
*
* @package OpenSID
* @author Tim Pengembang OpenDesa
* @copyright Hak Cipta 2009 - 2015 Combine Resource Institution (path_to_url
* @copyright Hak Cipta 2016 - 2024 Perkumpulan Desa Digital Terbuka (path_to_url
* @license path_to_url GPL V3
* @link path_to_url
*
*/
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class () extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('keuangan_ta_spp', static function (Blueprint $table) {
$table->integer('id', true);
$table->integer('config_id')->nullable()->index('keuangan_ta_spp_config_fk');
$table->integer('id_keuangan_master')->index('id_keuangan_ta_spp_master_fk');
$table->string('Tahun', 100);
$table->string('No_SPP', 100);
$table->string('Tgl_SPP', 100);
$table->string('Jn_SPP', 100);
$table->string('Kd_Desa', 100);
$table->string('Keterangan', 250)->nullable();
$table->string('Jumlah', 100);
$table->string('Potongan', 100);
$table->string('Status', 100);
$table->string('F10', 10)->nullable();
$table->string('F11', 10)->nullable();
$table->string('FF12', 10)->nullable();
$table->string('FF13', 10)->nullable();
$table->string('FF14', 10)->nullable();
$table->string('Kd_Bank', 100)->nullable();
$table->string('Nm_Bank', 100)->nullable();
$table->string('Nm_Penerima', 100)->nullable();
$table->string('Ref_Bayar', 100)->nullable();
$table->string('Rek_Bank', 100)->nullable();
$table->string('Tgl_Bayar', 100)->nullable();
$table->string('Validasi', 100)->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('keuangan_ta_spp');
}
};
``` |
Laticraniini is a tribe of longhorn beetles of the subfamily Lamiinae.
Taxonomy
Amplitempora
Laticranium
References
Lamiinae |
Lascars () is a French animated series created by Boris Dolivet, aka El Diablo, it was aired on the French channel Canal + for the first time in 1998. This series spawned two seasons, the first one in 1998 and the second in 2007, a pilot for a project of a 20-minute series, a comic and a movie. The episodes follow the mishaps of young men living in an inner-city district. The series is rife with hip-hop culture, and most of the voice cast are French rappers.
See also
Lascars (film)
1990s French animated television series
2000s French animated television series
1998 French television series debuts
2007 French television series endings
French children's animated comedy television series
Canal+ original programming
Television shows adapted into films |
Siedenbrünzow is a municipality in the Mecklenburgische Seenplatte district, in Mecklenburg-Vorpommern, Germany.
References |
Jone Baledrokadroka is a Fijian academic and former soldier who served briefly as Republic of Fiji Military Forces Land Force Commander in January 2006. He was dismissed from the post after only four days after RFMF Commander Frank Bainimarama accused him of planning a mutiny. He is the son of former senator and Taukei ni Waluvu Ratu Alipate Baledrokadroka and the brother of Senator Adi Lagamu Vuiyasawa. He is also the uncle for New Zealand netballer Erikana Pedersen.
Early life
Baledrokadroka is from the village of Nairukuruku in Naitasiri Province. He was educated at the Marist Brothers High School in Suva and De La Salle College, Māngere East, before attending Auckland University of Technology, where he studied civil engineering.
Military career
Baledrokadroka joined the Army in 1981 and was commissioned after attending an Officers commissioning course in Fiji. Prior to his appointment as Acting Land Force Commander, Baledrokadroka had attended the Defence and Strategic Studies Course at the Australian Defence College, Canberra, in 2003.
On 10 January 2006 Baledrokadroka assumed the position of Land Force Commander. He was relieved of the position and sent on leave four days later after a disagreement with RFMF Commander Frank Bainimarama. Bainimarama subsequently accused him of planning a mutiny and of plotting with Home Affairs chief executive Lesi Korovavala to remove him; Baledrokadroka claimed that Bainimarama had given instructions for illegal and treasonous acts. Bainimarama subsequently appointed a board of inquiry to investigate the matter, but Baledrokadroka refused to cooperate.
In April 2006 the RFMF announced that Baledrokadroka would face a court-martial. Baledrokadroka fled to New Zealand. The lack of an extradition treaty between Fiji and New Zealand meant that he could not be extradited to face a court-martial.
In September 2006 Fiji's Public Service Commission shortlisted him for a job as Commissioner of Corrections, causing tensions with the military. The military repeatedly threatened to court-martial Baledrokadroka if he was appointed, and appointed a prosecutor. Ultimately the Commission was not satisfied with either candidate, and Baledrokadroka was not appointed. The army finally suspended its investigation in January 2007 in the aftermath of the 2006 Fijian coup d'état.
Post-military
In November 2007 he was arrested alongside his father-in-law Ratu Inoke Takiveikata and businessman Ballu Khan and accused of being part of a plot to assassinate Bainimarama. He was subsequently charged with inciting mutiny and conspiracy to murder. After being imprisoned for 40 days, he was granted bail. In November 2008, when granting a permanent stay of proceedings against Khan, the High Court of Fiji raised doubts about the evidence against Baledrokadroka. The charges were subsequently dropped in December 2008.
Following his acquittal, Baledrokadroka moved to Australia and applied for asylum. He studied for a PhD in politics at Australian National University. His thesis, completed in 2012, was on Sacred king and warrior chief : the role of the military in Fiji politics, and called for reform of the Fijian military and its ethos to ensure subservience to civilian authority. He also campaigned against the military regime from Australia, and was an organiser of the Fiji Democracy and Freedom movement. In 2012, in the leadup to the general elections scheduled for 2014, the first since the 2006 coup, he expressed scepticism about whether the Military would allow the vote to be free and fair. "The path in this progress towards democracy has been fraught with allegations of continuing military oversight and interference in the constitution-making process," he wrote in an Australian National University journal. "And it is possible that the new Constitution, once it has been finalised by Bainimarama’s handpicked Constituent Assembly, might become a setback to democracy by spawning a military backed one-party state."
In April 2023 he was appointed by Fiji's newly-elected coalition government to head a review into restoring the Great Council of Chiefs.
References
Fijian chiefs
Fijian soldiers
Year of birth missing (living people)
Living people
People from Naitasiri Province
Fijian expatriates in Australia
People educated at Marist Brothers High School, Fiji
People educated at De La Salle College, Māngere East
Auckland University of Technology alumni
Australian National University alumni |
Brazil national team may refer to:
Brazil national American football team
Brazil national baseball team
Brazil men's national basketball team
Brazil women's national basketball team
Brazil national football team
Brazil women's national football team
Brazil men's national handball team
Brazil women's national handball team
Brazil national rugby union team
Brazil women's national rugby union team
Brazil men's national volleyball team
Brazil women's national volleyball team |
```java
/*
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
package org.apache.shardingsphere.infra.database.sql92.metadata.database;
import org.apache.shardingsphere.infra.database.core.metadata.database.DialectDatabaseMetaData;
import org.apache.shardingsphere.infra.database.core.metadata.database.enums.NullsOrderType;
import org.apache.shardingsphere.infra.database.core.metadata.database.enums.QuoteCharacter;
/**
* Database meta data of SQL92.
*/
public final class SQL92DatabaseMetaData implements DialectDatabaseMetaData {
@Override
public QuoteCharacter getQuoteCharacter() {
return QuoteCharacter.QUOTE;
}
@Override
public NullsOrderType getDefaultNullsOrderType() {
return NullsOrderType.FIRST;
}
@Override
public String getDatabaseType() {
return "SQL92";
}
}
``` |
The 303rd Armored Cavalry Regiment (303rd ACR) was a New York-based reconnaissance unit of the United States Army Organized Reserve Corps that briefly existed after World War II.
It traced its history back to the 303rd Cavalry Regiment, a reserve unit that existed during World War I and the interwar period. It was activated in early 1918 but broken up in the middle of the year to form new artillery units. The unit was recreated as a New York Organized Reserve unit during the interwar period, and was disbanded after the United States entered World War II.
History
The 303rd Cavalry was constituted shortly after the United States entered World War I on 18 May 1917, part of the National Army. Organized on 4 February 1918 at Camp Stanley, Leon Springs, Texas. It was split into the 52nd and 53rd Field Artillery Regiments and the 18th Trench Mortar Battery on 14 August. The three artillery units were demobilized on 13 February 1919 at Camp Travis, Texas.
On 15 October 1921, the 52nd and 53rd Regiments and the 18th Battery were reconstituted in the Organized Reserve and consolidated as the 303rd Cavalry, part of the 61st Cavalry Division's 152nd Cavalry Brigade in the Second Corps Area. The 303rd was initiated (activated) on 17 January 1922 with its headquarters in Manhattan. The 1st Squadron was headquartered in Manhattan and the 2nd Squadron in White Plains. The regiment's first executive officer was future World War II general Terry de la Mesa Allen. On 2 July 1929, the regiment was reorganized to add a new 3rd Squadron in Manhattan.
The regiment conducted summer training with the 1st Squadron, 3rd Cavalry Regiment at Fort Ethan Allen, Vermont, and with the remainder of the 3rd Cavalry at Fort Belvoir, Virginia. It also conducted regular equestrian training using the horses of the 101st Cavalry Regiment in Manhattan. The 303rd's designated mobilization training station was the Syracuse Concentration Area in New York. After the United States entered World War II, it was disbanded on 18 October 1943 due to most of its officers being called up for active duty.
Postwar, the regiment was reconstituted on 21 October 1948 in the Organized Reserve Corps as the 303rd Armored Cavalry Regiment, and partially organized from existing units. On the same day, the Headquarters and Headquarters Troop (HHT) was redesignated from the HHT, 303rd Mechanized Cavalry Group, which had been reconstituted on 7 October 1946 in the Organized Reserves and activated on 1 November 1946 in New York City. The 303rd's 1st Battalion was redesignated on 10 November from the 461st Mechanized Cavalry Squadron, originally constituted on 15 October 1921 as the 151st Machine Gun Squadron in the 61st Cavalry Division and organized with headquarters at Albany in February 1922. It was reorganized and redesignated the 461st Armored Car Squadron on 1 July 1929, and became the 64th Tank Destroyer Battalion on 30 January 1942 before its disbandment on 11 November 1944. The 461st was reconstituted in the Organized Reserves and activated on 27 May 1947 in New York City. The 303rd ACR was inactivated on 31 July 1950 in New York City and disbanded on 10 March 1952.
Commanders
The following officers commanded the regiment between 1917 and 1941.
Lieutenant Colonel Charles S. Haight (26 January–4 February 1918)
Colonel Samuel McPherson Rutherford (4 February–13 August 1918)
Colonel Latham R. Reed (17 January 1922 – 13 February 1931)
Colonel Arthur M. Wolff (13 February 1931–June 1941)
Heraldry
The 303rd's distinctive unit insignia was approved on 23 October 1925, with the coat of arms following a day later. Both were rescinded on 2 March 1959. The distinctive unit insignia consisted of a circular blue garter with a gold edge depicting the regimental motto, Toujours Pret et Audacieux, meaning "Always Ready and Fearless". The wings of a windmill were placed over the garter and a red star with a gold border was in turn placed over the center of the windmill. The red star symbolized the regiment's initial organization in Texas and World War I artillery service and the windmill symbolized New York City.
The regiment's coat of arms included a yellow shield divided by a diagonal red stripe with the shield of the New York National Guard's 51st Machine Gun Squadron in the canton. The wings of a windmill were depicted in red in the lower left below the stripe, while a red star was located in the upper right above the stripe. The star represented the regiment's initial organization in Texas, the stripe symbolized its conversion to artillery, and the canton represented the regiment's initial composition, as more than half of its personnel in the interwar period were ex-members of the 51st Machine Gun Squadron. The Organized Reserve's Minuteman crest was located above the shield.
References
Citations
Bibliography
Armored cavalry regiments of the United States Army
Cavalry regiments of the United States Army
Military units and formations established in 1917
Military units and formations disestablished in 1952
Military units and formations in New York (state) |
Can Gerry Robinson Fix the NHS? is a three-part Open University BBC series shown on BBC2 from 8 to 10 January 2007. This is the second BBC series where Gerry Robinson works to turn around failing companies, but whereas his earlier series I'll Show Them Who's Boss had a commercial focus, this one deals with the public sector.
In order to explore the management culture at the NHS, Robinson is set the task of spending six months at Rotherham General Hospital to see if he could reduce waiting lists without any further spending. Robinson was convinced that he could bring commercial values to the public health sector and that his lessons could be applied nationwide:
"Any business, no matter how large, can be made to work well. I knew nothing about the medical profession but good management is good management – whether you’re running a corner shop or a large hospital. I was working in a hospital in Rotherham but the ideas we were trying could be applied across the NHS to any hospital, anywhere in the country".
After completing the series, Robinson gave an interview to the Open University explaining his conclusions and beliefs about what was needed in the NHS. Among his comments were: I do believe that whilst there is a great deal one can do in terms of training people who already have a natural aptitude, unless you’re recruiting the very best young people, the very best senior people as a starting point so that they start to recognise those young people and bring them through, until we start taking the management of these complex organisations seriously, in the way that management is taken seriously in commercial organisations, frankly we’re just going to be chipping away at the edges of the problem in the NHS....
I think what the NHS needs to learn is that actually you don’t solve problems by throwing money at it, and not every problem actually needs money to solve it. That’s the first lesson. Secondly, to get out of their heads the idea that things have to take three years to do and get into the idea that there is a series of objectives that we need to do now, and that we’ve got months, not years to do it. Those two things, I think, would have the biggest single impact on the way that the Health Service is managed.
References
External links
Open University companion site
2007 British television series debuts
2007 British television series endings
2000s British documentary television series
BBC television documentaries
English-language television shows |
The electoral district of Melton is an electoral district of the Victorian Legislative Assembly.
It contains the towns of Aintree, Bacchus Marsh, Balliang, Balliang East, Blackwood, Brookfield, Greendale, Kurunjang, Melton, Melton South, Melton West, Mount Cottrell, Sydenham West, and Toolern Vale as well as parts of Diggers Rest, Plumpton, Rockbank and Truganina.
Members for Melton
Election results
References
External links
District profile from the Victorian Electoral Commission
Electoral districts of Victoria (state)
1992 establishments in Australia
City of Melton
Shire of Moorabool
Electoral districts and divisions of Greater Melbourne |
Cave Junction is a city in Josephine County, Oregon, United States. As of the 2020 census, the city population was 1,995. Its motto is the "Gateway to the Oregon Caves", and the city got its name by virtue of its location at the junction of Redwood Highway (U.S. Route 199) and Caves Highway (Oregon Route 46).
Cave Junction is located in the Illinois Valley, where, starting in the 1850s, the non-native economy depended on gold mining. After World War II, timber became the main source of income for residents. As timber income has since declined, Cave Junction is attempting to compensate with tourism and as a haven for retirees. Tourists visit the Oregon Caves National Monument and Preserve, which includes the Oregon Caves Chateau, as well as the Out'n'About treehouse resort and the Great Cats World Park zoo.
History
For thousands of years, the Takelma Indians inhabited the Illinois Valley. Their culture was destroyed when gold was discovered in the early 1850s, causing the subsequent Rogue River Wars. After an 1853 treaty, most of the Takelmas lived on the Table Rock Reservation. In 1856, after the wars ended, they were forcibly removed to the Grand Ronde Reservation and the Siletz Reservation.
The first gold in Oregon history was found in the Illinois Valley, as well as the largest gold nugget (). In 1904, more than 50 years after prospectors had started combing the valley for gold, an 18-year-old named Ray Briggs discovered what newspapers at the time called "the most wonderful gold discovery ever reported in Oregon history." While hunting along Sucker Creek, he discovered gold lying on the ground. He staked a claim and called it the "Wounded Buck Mine," which produced of gold. The "mine" was a small vein of gold wide, long and deep.
As gold mining in the Illinois Valley became exhausted in the 1860s and 1870s, the residents diversified into ranching, fishing, logging, tourism and agriculture. In 1874, Elijah Davidson found a cave while on a hunting trip, and is now credited with discovering the Oregon Caves. In 1884, Walter C. Burch heard about the cave from Davidson, and staked a squatter's claim at the mouth of the caves. He and his brothers-in-law charged one dollar for a guided tour. According to their advertisement in the Grants Pass Courier, this included camping, plentiful pasture land and "medicinal" cave waters. They attempted to acquire title to the land, but as the land was unsurveyed, they abandoned the idea a few years later.
President William Howard Taft established the Oregon Caves National Monument on July 12, 1909, to be administered by the U.S. Forest Service. In 1923, the Forest Service subcontracted the building of a hotel and guide services to a group of Grants Pass businessmen. By 1926, the monument had a chalet and seven two-bedroom cabins. Traffic into the caves led to a community developing at the junction of the Redwood Highway and the branch highway to the caves (now known as Oregon Route 46). Cave Junction, originally known as Cave City, was established in 1926 on land donated by Elwood Hussey. In 1935, a post office was applied for and was named "Caves City", however postal authorities disapproved of the name, partly because "City" implied the place was incorporated. Among the other names suggested was "Cave Junction", which was adopted by the United States Board on Geographic Names in 1936 with the post office being renamed the same year. The locality was incorporated as Cave Junction in 1948, and is the only incorporated area in the Illinois Valley.
In 1950 Cave Junction had a population of 283, which decreased to 248 in 1960 and increased to 415 in 1970. Its growth was fast in the 1960s, increasing at an average of 6.8 percent annually. The city population's primary growth period occurred in the 1970s, with an average annual increase of 9.9 percent. Growth slowed in the 1980s when the population increase averaged only 1.7 percent annually. The rate fell further between 1990 and 1998, averaging 1.6 percent, which was less than the state and county averages.
Forest fires
A number of wildfires have threatened Cave Junction over the years. The Longwood Fire in 1987, part of the Silver Fire complex, was ignited by lightning strikes following a three-year drought. Numerous residents of Cave Junction evacuated.
In 2002, the Florence and Sour Biscuit fires converged, creating the Biscuit Fire. This fire threatened Cave Junction, Kerby, Selma and a number of Northern California communities. Ultimately, the Biscuit Fire lasted 120 days, burned in southern Oregon and northern California, and destroyed four homes and nine outbuildings in the Cave Junction area. In 2003, a wildfire destroyed a home in Cave Junction. In 2004, a downed power line caused a fire that briefly threatened over 100 homes and forced 200 people to evacuate. One person died, apparently of stress related to the fire.
Geography
Cave Junction is located on U.S. Route 199 at its junction with Oregon Route 46. It is about southwest of Grants Pass, Oregon and northeast of Crescent City, California. The city lies in the Illinois Valley, on the northwest slope of the Siskiyou Range, at an elevation of about above MSL. According to the United States Census Bureau, the city has a total area of , of which, is land and is water.
Climate
Cave Junction has a Mediterranean climate (Köppen Csb) with summers featuring cool mornings and hot afternoons, and chilly, rainy winters.
Cave Junction has an average low of in January and high of in July. The record hottest temperature is on August 14, 2008; however, the hottest morning on record is a mere on July 21, 1994 and July 3, 2013. The coldest temperature is on December 10, 1972, and the only other mornings below were on the adjacent mornings of December 8 and 10 that year. Only sixteen afternoons have ever failed to top freezing; the coldest afternoon being on the same day as the record cold minimum. The coldest month since 1962 has been December 2013 which averaged and had a mean maximum of only .
On average, there are 196 sunny days, and 108 days with precipitation. The city receives an average of of rain each year. The wettest "rain year" has been from July 1973 to June 1974 with , and the driest from July 1976 to June 1977 with . The wettest month has been December 1996 with , and the wettest day December 22, 1964 with .
Snowfall averages ; the most snowfall in one month has been in January 1982 and the most in one season from July 1981 to June 1982. The most snowfall in one day has been on January 3 and again on January 18 of 1982.
Demographics
2010 census
As of the census of 2010, there were 1,883 people, 815 households, and 469 families residing in the city. The population density was . There were 916 housing units at an average density of . The racial makeup of the city was 90.3% White, 0.4% African American, 2.0% Native American, 1.3% Asian, 0.1% Pacific Islander, 1.9% from other races, and 3.9% from two or more races. Hispanic or Latino of any race were 8.3% of the population.
There were 815 households, of which 26.9% had children under the age of 18 living with them, 38.9% were married couples living together, 13.3% had a female householder with no husband present, 5.4% had a male householder with no wife present, and 42.5% were non-families. 34.8% of all households were made up of individuals, and 15.8% had someone living alone who was 65 years of age or older. The average household size was 2.30 and the average family size was 2.94.
The median age in the city was 43 years. 23.7% of residents were under the age of 18; 8.8% were between the ages of 18 and 24; 19.1% were from 25 to 44; 27.4% were from 45 to 64; and 21% were 65 years of age or older. The gender makeup of the city was 46.0% male and 54.0% female.
2000 census
As of the census of 2000, there were 1,363 people, 603 households, and 356 families residing in the city. The population density was . There were 730 housing units at an average density of . The racial makeup of the city was 92.3% White, 0.3% African American, 2.1% Native American, 0.7% Asian, 0.4% Pacific Islander, 1.2% other races, and 3.2% from two or more races. Hispanic or Latino of any race were 5.6% of the population.
There were 603 households, out of which 28.7% had children under the age of 18 living with them, 39.8% were married couples living together, 14.3% had a female householder with no husband present, and 40.8% were non-families. 33.7% of all households were made up of individuals, and 20.6% had someone living alone who was 65 years of age or older. The average household size was 2.26 and the average family size was 2.87.
In the city, the age population was spread out, with 26.8% under the age of 18, 7.7% from 18 to 24, 21.9% from 25 to 44, 21.9% from 45 to 64, and 21.8% who were 65 years of age or older. The median age was 40 years. For every 100 females, there were 85.7 males. For every 100 females age 18 and over, there were 79.8 males.
The median income for a household in the city was $17,161, and the median income for a family was $22,500. Males had a median income of $20,893 versus $16,333 for females. The per capita income for the city was $10,556. About 23.6% of families and 28.7% of the population were below the poverty line, including 35.8% of those under age 18 and 11.9% of those age 65 or over.
Government and politics
Residents range from very liberal, to strongly right-wing to survivalists. As of 2002, the city has 13 employees, with an average wage of $35,799, the largest categories of employees are Sewerage and Water Supply, with four employees each. In total, Cave Junction's monthly employee outlay is $35,799, or $465,384 a year. As of 2007, Josephine County Sheriff volunteers man a sub station in Cave Junction, and the Sheriff's Office has plans to begin a pilot program in the City Hall building, staffed by volunteers, that will include three temporary holding cells and the ability to take incident reports.
Economy
Starting in the early 1850s, gold mining was the main source of income in the Illinois Valley. As gold mining dwindled in the 1860s and 1870s, the economy diversified into ranching, fishing, logging, tourism and agriculture. In the years after World War II, timber became an increasingly large part of the county's finances. There were 30 lumber mills operating in the valley after the war, but by the late 1980s the number had dwindled to just one.
Because of President Roosevelt's creation of the Siskiyou National Forest, and the reversion of Oregon and California Railroad lands to federal government control, by 1937 the U.S. Forest Service and the Bureau of Land Management were in charge of 70% of the land in Josephine county, and a large part of the Illinois Valley. Because this decreased the county's potential tax base, the government shared money earned from timber sales with the county, and payments in lieu of taxes from the federal government became a large part of its tax base. In 1989, Josephine County received $16,756,000 in various federal payments; by 1999, the payments had fallen to $9.6 million.
Because of these budget cutbacks, Southern Oregon has used tourism as a means of attracting small businesses and retirees. The movement of California retirees in particular has helped the economy grow. Although jobs have been created as a result, they are usually low-paying. Today the principal industries are tourism, timber and agriculture. Since about 1960, the community has evolved into a center for wine, retirement, tourism, and small businesses. In November 2007, Rough & Ready completed a $6 million biomass plant to replace their existing wood-fired boiler, as market forces have increased demand for dry timber. It finally closed in November, 2016.
The Illinois Valley Community Development Organization (IVCDO), formed in 1994, has attracted notice for its work directed at improving the Illinois Valley economy. In 2006, Cave Junction was awarded the Great Strides Award by the Northwest Area Foundation for the IVCDO's efforts to reduce long-term poverty. In 2004, the IVCDO began a partnership with the National Park Service that resulted in the assumption of 40 seasonal and year-around jobs managing the Oregon Caves Chateau. The project uses local produce, food products and wine at the Chateau, and the proceeds are directed back into the local community.
Culture
Cave Junction has a number of points of interest, including a museum, a zoo, and a resort consisting of treehouses. It also has a number of historic sites, many related to gold mining, as well as an Oregon state park and a national monument and preserve, all located in the greater Cave Junction area. A newspaper and one radio station.
Tourism
Cave Junction's main point of interest is the Oregon Caves National Monument and Preserve, which is a area of hiking trails and caverns. Located at the end of a "stomach churning" drive along State Route 46, there are limestone caves discovered in 1874 by a hunter and his dog. At the caves, there is a 23-room chateau that was built in 1932.
Each year Cave Junction features an ArtWalk on the second Friday of each month, except during the winter, with the city's businesses exhibiting various types of art such as pottery, iron art, music and fire dancing. The ArtWalk adds significantly to the Illinois Valley's positive image and increases tourism and adds to the local economy. According to surveys conducted in 2006 by the Arts Council of Southern Oregon, the city sees a 30–50 percent increase in sales and visitors during the event. Attendance is approximately 150–200 people, with roughly 15 percent coming from outside the community. Local artists, including students of Lorna Byrne Middle School in 2007, participate while local businesses, including thrift stores and art galleries, serve as hosts.
Located about southeast of Cave Junction, in Takilma, Oregon, is the home of the Out'n'About Treehouse Treesort, a multi-treehouse resort run by Michael Garnier using Garnier limbs. Garnier developed the Garnier limb, which is a one-and-a-half-inch-thick bolt surrounded by a cuff, both made of Grade 5 steel, and is able to support . As of 2007, the treesort has nine treehouses, three with bathrooms. Garnier had to fight local government ordinances for almost ten years before gaining the right to house guests in his nine treehouses.
Great Cats World Park is located a few miles south of Cave Junction. As of 2007, it has 32 cats, of 17 different species, including cougars, leopards, jaguars, lions, Siberian tiger cubs, a fishing cat, and an ocelot. Other attractions include the It's a Burl handcrafted wood gallery and the Kerbyville Museum, both in Kerby. Cave Junction's Wild River Brewery serves one of the smallest communities of any Oregon brewery. Founded in 1975 as the Pizza Deli, a microbrewery was added in 1989. In 1994, the name Wild River was adopted and a Wild River restaurant and pub was opened in Grants Pass.
Wine
The Illinois Valley is the coolest and wettest of the three valleys in the Rogue Valley American Viticultural Area. In the late 1960s and early 1970s a new group of Oregonians started experimenting with growing grapes and making wine. Initially this group was not very successful, but 40 years later, Oregon is considered a prestigious growing area. Southern Oregon is higher, and its climate is often warmer, than better known wine producing valleys such as Napa Valley to the south and Willamette Valley and Columbia Valley to the north. The Illinois Valley has dry warm summers and cold nights, which make it well suited for pinot noir, in contrast to the hotter and drier Rogue and Umpqua valleys. Several vineyards and wineries are located near Cave Junction, including Bridgeview Vineyards, Foris Vineyards Winery, and Bear Creek Winery which are all discussed in Fodor's 2004 book "Oregon Wine Country."
Cave Junction is the home of Bridgeview Vineyards, one of the largest wineries in Oregon. Bridgeview is noted for its chardonnay, pinot gris and pinot noir. At the 2000 American Wine Awards, Bridgeview's 1998 Bridgeview Oregon Blue Moon was selected as the best pinot noir under $15. Its estate in the Illinois Valley is planted in the European style of dense row and vine spacing. Bridgeview also has an vineyard in the Applegate Valley. Foris Vineyards Winery is also located in the Cave Junction area. Established in 1986, as of 2007, they produced 48,000 cases of wine, making it the 14th largest bonded winery in Oregon.
Historic sites
Cave Junction has a number of historic sites related to its early gold mining days, including various mines, ditches, and Logan Cut. The historic Osgood Ditch in Takilma provided water for early mining operations in the Illinois Valley. Although mining in the Illinois Valley started in the rivers, gold was soon discovered in gravel beds high up the slopes above the rivers. It had been deposited by ancient rivers that then eroded deep into the earth. To extract this gold, prospectors created ditches to bring the water to these areas. The water was then moved through piping to the desired location. The pressure the water built up as it dropped was used for hydraulic mining. Water cannons fired water over , and the debris was run through a sluice box. Gold was located within pockets in the gravel, and because the miners could not predict where the pockets were, almost every gravel deposit in the Illinois Valley was mined. The Illinois Valley's largest gold rush town, Waldo, Oregon, was located on a gravel deposit and was eventually destroyed when its gravel bed was run through a sluice box, along with most of the town. Today nothing of Waldo remains. The Osgood Ditch provided water for mining operations near Waldo. One building of note in the area is the Oregon Caves Chateau, which is a National Historic Landmark.
One of the well known mining communities AltHouse established the AltHouse Church in 1893 about a 1/4 mile down on Dick George Road. This church is one of the oldest building in the valley still standing and still in use. Between 1895–99 the church was moved down to its present site on Holland Loop Road where it has served the community till this day. It is currently known as Bridgeview Community Church since the 1920s). A newer building was built in 1986 where services are now being held every Sunday. The original church is currently under restoration and will continue to be as the builders back then said; "A place for us or children and grandchildren to worship".
Sports and recreation
Cave Junction has a golf course and a state park. The Illinois Valley Golf Course has 9 holes, and as of 2007 there are plans for an expansion to 18 holes. The Illinois River Forks State Park is located at the confluence of the east and west forks of the Illinois River. The park includes restrooms, picnic tables, and a variety of rare plants. In 2014 a new disc golf course was built at the Illinois River Forks State Park. There is also a skate park at Jubilee Park in Cave Junction, which was built largely by volunteers and money raised through fundraisers and community involvement.
Media
Cave Junction has one newspaper and two radio stations. The local paper, the Illinois Valley News, is a paper of record for all of Josephine County. Established in 1937 when Cave Junction was known as Cave City, and as of 2018 has a circulation of 2,280. The Valley's longest running business is published every Wednesday by Daniel J. Mancuso and edited by Laura M. Mancuso.
The city's only licensed radio station is KXCJ-LP (FM 105.7), a community powered station which went on-air in December 2016.
The Cave Junction area had a pirate radio station, Hope Mountain Radio. It broadcast out of Takilma until repeated interference from government agents caused them to shut down. The station then began broadcasting legally on the internet at TakilmaFM.com, although this caused their costs to go up and necessitated fundraising activities. As of January 2007, Hope Mountain Radio broadcasts 24 hours a day with an all volunteer staff.
Education
Cave Junction has three schools: Illinois Valley High School, Lorna Byrne Middle School, and Evergreen Elementary School. These schools are part of the Three Rivers School District, which also encompasses schools from Grants Pass and Applegate, Oregon.
Two individuals linked to Illinois Valley High School (IVHS) have been inducted into regional halls of fame. In 2004, Sam Hutchins became a member of the Wild Salmon Hall of Fame for creating the non-profit Oregon Stewardship Program. Begun in 1992 to teach Illinois Valley High School students about wild steelhead in the Illinois River, by 2004 the program had been expanded to 25 schools and 1,500 students. In 2007, IVHS wrestling coach Ursal "Jay" Miller was inducted into the Oregon Chapter of The National Wrestling Hall of Fame & Museum.
Transportation
The Illinois Valley Airport, also known as the Siskiyou Smokejumper Base, was built by the U.S. Forest Service. It operated from 1943 to 1981 as a smokejumper base, during which time the smokejumpers parachuted on 1445 fires for 5390 fire jumps. As of 2007, the airport had a fixed-base operator, aircraft rentals and instruction, hangar rentals, and a restaurant.
Notable people
Cave Junction has a number of notable residents and past residents. Actor John Wayne was a visitor to a ranch in Selma, Oregon, about north of town. He grew fond of the area after filming Rooster Cogburn along the Rogue River. This ranch has since become the Deer Creek Center which houses the Siskiyou Field Institute. Kristy Lee Cook, who was a contestant on American Idol 7, was also raised in Selma, where she used to live before joining the competition. Arthur B. Robinson is the head of the Oregon Institute of Science and Medicine, which is about from Cave Junction. He also represents the city in Oregon’s 2nd State Senate District.
References
External links
Entry for Cave Junction in the Oregon Blue Book
Illinois Valley Chamber of Commerce — Cave Junction
Cities in Oregon
Cities in Josephine County, Oregon
1926 establishments in Oregon |
The following events occurred in June 1973:
June 1, 1973 (Friday)
General Georgios Papadopoulos, who had served as Prime Minister of Greece since shortly after leading the overthrow of the government on April 21, 1967, proclaimed the abolition of the monarchy of Greece and the establishment of a republic with himself as President.
All 23 people on Cruzeiro do Sul Flight 109 were killed in Brazil when the Caravelle SE-210 jet crashed during its approach to São Luíz on a flight from Belém.
The colony of British Honduras in Central America was renamed Belize in anticipation of eventual independence from the United Kingdom, which would take place in 1981.
The U.S. town of Haw River, North Carolina, was incorporated.
Born: Heidi Klum, German model and actress; in Bergisch Gladbach, West Germany
Died:
Harvey S. Firestone Jr., 75, American businessman who developed the Firestone Tire and Rubber Company into an international manufacturer and seller of tires.
Father Joseph André, 65, Belgian Roman Catholic priest who rescued numerous Jewish children during the Nazi occupation in World War II.
Mary Kornman, 57, American child actress in the early Our Gang installments during the 1920s, died of cancer.
June 2, 1973 (Saturday)
Fifteen people died when the supertanker Esso Brussels was struck by the container ship Sea Witch in New York Harbor. The oil tanker ship fire killed 13 crew, and two crew were lost from the container ship.
The Semaphore state by-election for the South Australian House of Assembly, caused by the death of Reginald Hurst, was won by the Australian Labor Party, with 71.9% of the vote.
Born:
Carlos Acosta, Cuban ballet dancer; in Havana
Antonín Brabec, Czech Repbulci rugby union centre with 42 appearances for the national team; in Prague, Czechoslovakia
Died: U.S. Army Lieutenant Colonel Lewis Lee Hawkins, 42, the deputy chief of the U.S. military advisory group to the Iranian Armed Forces, was shot to death by terrorists while in Tehran.
June 3, 1973 (Sunday)
Russia's supersonic aircraft crashed at the Paris air show in front of 250,000 people, including designer Alexei Tupolev. All six people on board the Tupolev Tu-144 died, and eight more were killed when the airplane debris destroyed 15 houses in the village of Goussainville. Another 60 people on the ground were severely injured. The Tu-144 had been heavily modified compared to the initial prototype, featuring engine nacelles split on either side of the fuselage, landing gear that retracted into the nacelles, and retractable foreplanes. After passing over the runway at Le Bourget Airport, the jet made a steep climb and the engines failed at . As the aircraft pitched over and went into a steep dive, the crew's attempt to pull up overstressed the airfame and the Tu-144 broke up in mid-air, destroying 15 houses in Goussainville.
Israel and Syria repatriated several prisoners of war, with Syria releasing three Israeli Air Force pilots in exchange for 47 Syrian and 10 Lebanese POWs, including five high ranking Syrian officers and a former Syrian parliament member who had been in prison for espionage.
The championship of Bulgarian soccer football's "Cup of the Soviet Army" tournament was played in Sofia, with CSKA Sofia (the Bulgarian Army's team) defeating Beroe Stara Zagora, 2 to 1.
Born: Thérèse Kirongozi, Congolese engineer who designed the "traffic robots" unique to cities in the Democratic Republic of Congo (formerly Zaire) since 2013; in Kinshasa, Zaire
June 4, 1973 (Monday)
A United States patent for the first automated teller machine, the Docutel, was granted to Donald Wetzel, Tom Barnes and George Chastain.
Died: Murry Wilson, 55, American music publisher who was the initial manager of The Beach Boys rock music group as father of Brian Wilson, Dennis Wilson, and Carl Wilson, died of a heart attack. The three Wilson sons fired their father as manager in 1964, but Murry Wilson controlled their publishing company, Sea of Tunes, until selling it in 1969.
June 5, 1973 (Tuesday)
On his CFRB show in Toronto, Canadian radio commentator Gordon Sinclair delivered an editorial, "The Americans", that would become popular in North America, with two different versions becoming a "Top 40" hit on Billboard magazine's "Hot 100" after background music was added. The more popular of the two, recorded by Byron MacGregor of CKLW radio in Windsor, Ontario, would reach #4 on Billboard in 1974.
The Soviet satellite Kosmos 562 was successfully launched into low Earth orbit at 11:29:47 GMT, from Site 133/1 at the Plesetsk Cosmodrome,
Born:
Galilea Montijo, Mexican host of the Televisa talk show Hoy and the talent show Pequeños Gigantes; in Guadalajara
Filipe Duarte (stage name for Luís Filipe Duarte Ferreira da Silva), Angolan-born Portuguese film and TV actor; in Nova Lisboa (died of a heart attack, 2020)
June 6, 1973 (Wednesday)
West Germany's President Gustav Heinemann signed a treaty with East Germany, despite a legal challenge by the state of Bavaria to the constitutionality of the treaty. West Germany's Constitutional Court rejected the Bavarian challenge, and the treaty took effect on June 21.
The first Polski Fiat 126p was constructed from Italian parts. The official price was 69,000 Polish złotys with PKO Bank Polski accepting pre-payments on savings books starting 5 February 1973.
Born: Ahmad Al Shugairi, Saudi Arabian activist and media figure; in Jeddah
Died: Jimmy Clitheroe, 51, English entertainer, after having taken an overdose of sleeping pills on the day of his mother's funeral.
June 7, 1973 (Thursday)
During a spacewalk from the Skylab space station, Skylab 2 astronauts Pete Conrad and Joseph P. Kerwin successfully freed the station's one remaining solar panel, stuck closed since the station was damaged during launch on May 14.
June 8, 1973 (Friday)
Major B. Coxson of the Black Mafia, a drug kingpin in the U.S. city of Philadelphia and a former candidate for mayor of Camden, New Jersey, was shot along with his son, his girlfriend, and her daughter by four men whom he let into his home in Cherry Hill, New Jersey, in a crime that was never solved. Coxson and the daughter, Lita Luby, died of their wounds.
The owner of baseball's San Diego Padres, C. Arnholt Smith, confirmed that as part of his sale of the National League team and that the team would be moved to Washington D.C. Smith gave notice to the San Diego city council in a letter. The move never took place, and the Padres would still be in San Diego fifty years later. Smith had sold the team to Joseph Danzansky and two other Washington businessmen on May 28.
Born: Lexa Doig, Canadian TV and film actress known for the science fiction show Andromeda and as a co-star on The Aurora Teagarden Mysteries, as well as the film Halloween: Jason X; in Toronto
Died:
Emmy Göring, 80, German actress and widow of Hermann Göring
Marjery Bryce, 81, British suffragette
June 9, 1973 (Saturday)
Spanish Navy Admiral Luis Carrero Blanco became Prime Minister of Spain as Spain's dictator and head of state Francisco Franco relinquished the day-to-day management of the cabinet of ministers. Admiral Carrero would hold the post for only six months before his assassination by Basque terrorists on December 20.
Secretariat won the Belmont Stakes, becoming the first U.S. Triple Crown of Thoroughbred Racing winner since 1948.
The 1973 Giro d'Italia cycle race was won by Eddy Merckx.
The 1972–73 Fußball-Bundesliga season ended in West Germany, with defending champions FC Bayern Munich repeating with a first place finish (25 wins, 4 draws, 5 losses) well ahead of 1. FC Köln (16 wins, 11 draws).
Died:
John Creasey, 64, English mystery novelist
Janice Marie Young, 15, American teenager and runaway, was killed after being pushed in front of a moving truck. Designated as a "Jane Doe" by police in St. Petersburg, Florida, she would remain unidentified for almost 42 years until facial reconstruction photography and DNA testing of a sibling would confirm her identity.
June 10, 1973 (Sunday)
Explorer 49 was launched as the last American space probe, for more than 20 years, to orbit the Moon. The U.S. would not send another probe to the Moon until the launch of Clementine on January 25, 1994.
Born:
Faith Evans, American singer-songwriter, record producer, occasional actress and author; in Lakeland, Florida
Sarah-Jayne Mulvihill, British servicewoman, the first to be killed in action for 22 years (died 2006 in Iraq)
Died:
William Inge, 60, American playwright and screenwriter, committed suicide. Inge won a Pulitzer Prize in 1953 for the play Picnic, and an Academy Award for best screen play for Splendor in the Grass.
Erich von Manstein, 85, Nazi German field marshal and convicted war criminal who developed the blitzkrieg system for massive invasions in warfare
June 11, 1973 (Monday)
Libya's leader, Moammar Khadafy, announced the nationalization of U.S. multimillionaire Nelson Bunker Hunt's oil company in the North African nation, giving Libya full control of the Sareer oilfield that had once been owned by Hunt and by British Petroleum. In a speech, Khadafy said "The time has come for us to deal America a strong slap on its cool arrogant face," and added "The right to nationalize comes under our sovereignty over our land. We can do whatever we want with our oil." As one author would note later, the action against Hunt "demoted him from wealthiest man in the world to an ordinary multimillionaire, restoring his status as a rich man's son rather than wealthy in his own right."
Diplocardia meansi, also known as "Means's Giant Earthworm" (because of its length), was discovered by D. Bruce Means on June 11, 1973 in Polk County, Arkansas.
Died:
Sean Kenny, 43, Irish theatre designer, died of a brain hemorrhage
Lawson H. M. Sanderson, 77, U.S. Marine Corps Major General who developed the aerial technique of dive bombing
June 12, 1973 (Tuesday)
Six people were killed and 33 injured by a terrorist car bomb after the Provisional IRA had placed a time bomb in an automobile parked on a busy street in the Northern Ireland town of Coleraine in County Londonderry. All of the dead were retired Protestants ranging in age from 60 to 76, and several of the injured survived with lost limbs or crippling injuries. A second time bomb exploded five minutes later, but caused no injuries.
Italy's Prime Minister Giulio Andreotti and his cabinet of ministers announced their resignations after their coalition fell apart. Mariano Rumor would form a new government on July 8.
Three weeks of voting in the Solomon Islands were completed with a choice of 118 candidates competing for 24 available seats of the 33-seat Governing Council of the British protectorate. The Solomons would become an independent nation on July 7, 1978.
Film actor Marlon Brando punched controversial celebrity photographer Ron Galella after the paparazzo had followed Brando and talk show host Dick Cavett to a restaurant. Galella's jaw was broken and he had five teeth knocked out; Galella had already been in the news for having a restraining order against him against close pursuit of Jacqueline Onassis.
Born: Alyson Annan, Australian women's field hockey player who led the national team to two Olympic gold medals (1996 and 2000) and six world championships between 1993 and 1999, and was later the head coach of the Netherlands team; in Wentworthville, New South Wales
June 13, 1973 (Wednesday)
The collision of the Soviet Navy submarine K-56 killed 27 people after it moved into the path of a research vessel, the Academician Berg in the Petra Velikogo Gulf of the Sea of Japan. Those killed (16 officers, five warrant officers, five sailors and a civilian observer) died from chlorine gas that filled a compartment. The crew was able to steer K-56 to a sandbar, where the survivors were rescued.
U.S. President Richard Nixon ordered a 60-day freeze on prices for all groceries and for gasoline, to be increased to no more than the price they were on June 8. The measures were the last under "Phase III" of his price control measures authorized under the Economic Stabilization Act of 1970. Prices were allowed to rise again at 12:01 a.m. on August 13 with the beginning of "Phase IV".
The USC Trojans baseball team won the College World Series in Omaha, Nebraska, by a 4-3 score over the Arizona State Sun Devils.
Died: Viriato da Cruz, 55, Angolan poet and author of the MPLA manifesto, died in exile in Beijing in the People's Republic of China
June 14, 1973 (Thursday)
Connecticut became the first U.S. state to recognize Martin Luther King Jr.'s birthday as a state holiday as Governor Thomas Meskill signed a bill that had passed the state House of Representatives 124 to 17 and the state Senate unanimously. The law set aside the second Sunday in January, normally not a workday for most state employees, as the day of celebration.
Amin al-Hafez announced his resignation as Prime Minister of Lebanon after only seven weeks in office, after criticism that he wasn't providing enough government positions for the nation's Sunni Muslims, as well as the resignation of several members of his cabinet. He would remain until a Sunni politician, Takieddin el-Solh, was able to form a new government.
Born: Ceca (stage name for Svetlana Veličković Ražnatović), popular Serbian folk singer and TV personality; in Prokuplje, SR Serbia, Yugoslavia
June 15, 1973 (Friday)
The "Common Declaration on the Access of the Comoros to Independence", referred to as theAccords du 15 Juin 1973, was signed in Paris by representatives of the French government and by Chief Minister Ahmed Abdallah of the Comoro Islands, a French colony off of the coast of Africa, providing for independence within the next five years. With the exception of one of the islands, Mayotte, the Comoros would become independent on July 6, 1975, following a referendum on December 22, 1974.
The Soviet Union successfully launched an uncrewed Soyuz spacecraft into orbit, then brought it back to Earth two days later, designating it as Kosmos 573 to disguise its purpose. The Soyuz craft was not docked to the orbiting Salyut space station, but the results gave the Soviets reason to clear the launch of Soyuz 12, with a crew of two cosmonauts, on September 27.
June 16, 1973 (Saturday)
Benjamin Britten's final opera, Death in Venice, was performed for the first time, premièring at Snape Maltings in England near Aldeburgh.
Soviet Communist Party General Secretary Leonid Brezhnev arrived in the United States as an Ilyushin Il-62 brought him and his entourage to Andrews Air Force Base, where he was greeted by U.S. Secretary of State William P. Rogers. Brezhnev was then flown by helicopter to Camp David, the U.S. presidential retreat in Maryland.
Born:
Federica Mogherini, Italian Foreign Minister in 2014, Vice-President of the European Commission 2014-2019; in Rome
Aleksei Shaposhnikov, Russian politician and Chairman of the Moscow City Duma since 2014; in Moscow
June 17, 1973 (Sunday)
The submersible Johnson Sea Link research vessel became entangled on the wreckage of the destroyer , which had been scuttled to create an artificial reef off of Key West, Florida. The submarine was trapped below the surface of the waters off of the coast of the Florida Keys. The submersible was finally brought to the surface, but two of the four men aboard (E. Clayton Link and Albert Stover) had died of carbon dioxide poisoning. "2 on Trapped Minisub Saved but Hopes Fade for 2 Others— Vessel Raised From Depths but High Pressure in Aft Cabin Prevents Rescuers From Reaching Remaining Crewmen", Los Angeles Times, June 19, 1973, p. I-1
Bahamasair began operations as the official airline of the Bahamas and owned by the Bahamian government.
The finals of championship tournaments of the major soccer football leagues of several European nations were held on the same day, with the Cypriot Cup (APOEL FC over Pezoporikos Larnaca FC, 1-0 at Nicosia);Coupe de France (Olympique Lyonnais 2-1 over FC Nantes) at Paris; the Greek Cup (Olympiacos F.C., 1-0 over PAOK F.C.) at Piraeus.; the Polish Cup (Legia Warszawa 4 to 2 over Polonia Bytom on penalty kicks after a 0-0 after regular and extra time) at Poznan; the Taça de Portugal (Sporting CP 3-2 over Vitória F.C.) at Oeiras
The 1973 Swedish Grand Prix motor race was won by Denny Hulme.
Born: Leander Paes, Indian pro tennis player who won 18 doubles championships in Grand Slam events between 1999 and 2015; in Bombay (now Mumbai)
June 18, 1973 (Monday)
The Washington Summit, a meeting of the leaders of the United States (President Richard Nixon) and of the Soviet Union (Communist Party First Secretary Leonid Brezhnev) began at the White House in Washington D.C., and a state dinner took place in the evening.
Operation End Sweep, clearing by the United States of sea mines that had been placed in the harbors of North Vietnam, resumed after a joint communiqué had been signed in Paris on June 13. Minesweeping had been suspended on April 15 after the U.S. had accused North Vietnam of failing to abide by the January 18 peace accords. The U.S. Navy's Task Force 78 completed the clearing of mines out of Haiphong harbor, then followed with Hon Gai and Cam Pha and the coastal areas off of Vinh. No further mines were founded after July 5, and on July 28, Task Force 78 left North Vietnamese territorial waters.
Gordie Howe, who had played in the National Hockey League (NHL) until for more than 30 years before stepping down in 1971 to accept an office position for the Detroit Red Wings, signed with the rival World Hockey Association (WHA)'s Houston Aeros. Howe received an unprecedented one million dollar contract to play four seasons, while the Aeros also signed his sons, Mark Howe and Marty Howe to four-year player contracts for $400,000 apiece. The two sons, who were 19 and 18 years old, were prevented by NHL rules from being signed because of a rule that no amateur player would be eligible for the NHL draft until age 20.
Born:
Julie Depardieu, French actress, the daughter of Gérard Depardieu and Élisabeth Depardieu; in Paris
Ray LaMontagne, American singer-songwriter; in Nashua, New Hampshire
Died:
Roger Delgado, 55, British TV and film actor known for Doctor Who portraying the recurring villain, "The Master", was killed in an auto accident in Turkey when his car plunged into a ravine.
Fredrak Fraske, 101, German-born U.S. Army veteran and the last surviving participant in the American Indian Wars.
June 19, 1973 (Tuesday)
The Rocky Horror Show, a The successful musical by Richard O'Brien, premièred at the Royal Court Theatre in London for the first of 2,960 performances. It would be adapted to a cult film, The Rocky Horror Picture Show, in 1975.
The Autonomous University of Aguascalientes opened in the Mexican city of Aguascalientes.
Malcolm Williamson's "cassation", The Winter Star (1973), commissioned by the Arts Council of Great Britain, premièred at the Holm Cultram Festival.
Born: Semini Iddamalgoda, Sri Lankan film and TV actress; in Colombo
June 20, 1973 (Wednesday)
Former Argentine President Juan Perón made his triumphant return to Argentina after almost 18 years in exile, accompanied by his wife Isabel Martinez Perón and incumbent President Héctor Cámpora. Because of violence at the Ezeiza International Airport, Perón's plane landed instead at an Argentine Air Force base, and the Peróns made plans to run in the next presidential election.
All 27 people on Aeroméxico Flight 229 were killed when the DC-9 crashed into the side of a mountain while on approach to Puerto Vallarta in Mexico on a flight that originated in the U.S. at Houston.
Snipers killed 13 people and wounded more than 300 at a Peronist rally in the Ezeiza section of Buenos Aires. "13 Die as Extremist Violence Erupts at Peron Homecoming", by David F. Belnap, Los Angeles Times, June 21, 1973, p. I-1
Born:
Xin Baiqing, Chinese film actor; in Beijing
Camillo "Chino" Moreno, American musician; in Sacramento, California
Noah Z. Jones, American animator for the Disney Channel; in Fairport, New York
June 21, 1973 (Thursday)
The U.S. Supreme Court issued its landmark decision in Miller v. California, setting a three-prong standard for determining whether of not material is obscene (and thus not protected under the free speech guarantee of the First Amendment to the Constitution). Announcing a standard for acceptable free speech as a work that has "serious literary, artistic, political, or scientific value", the Court endorsed, 5 to 4, what is now called the "Miller test".
The United States Hockey Hall of Fame was opened in the village of Eveleth, Minnesota to honor American ice hockey players not enshrined in the Hockey Hall of Fame (which at the time had only two persons born outside of Canada as honorees (U.S. natives Hobey Baker and Frank Brimsek) In addition to Baker and Brimsek, 22 American players were inducted in the first group.
Born: Zuzana Čaputová, President of Slovakia since 2019; in Bratislava; Juliette Lewis, U.S. actress and singer, in Los Angeles
Died: Frank Leahy, 64, American college football coach for Boston College (1939-1940) and the University of Notre Dame (1941-1943, 1946-1953). With a career record of 107 wins, 13 losses and 9 ties, his winning percentage of .864 remains the second best in NCAA Division I football history, second to Notre Dame coach Knute Rockne.
June 22, 1973 (Friday)
The Agreement on the Prevention of Nuclear War was signed in Washington D.C. by U.S. President Nixon and Soviet General Secretary Brezhnev. Later in the day, Nixon and Brezhnev flew together on the Air Force One presidential jet plane from Andrews Air Force Base to the El Toro Marine Air Station, and then were driven together to the "Western White House", Nixon's private vacation home at San Clemente, California.
The United Nations Security Council voted unanimously in favor of UNSC Resolution 335, to recommend that the UN General Assembly admit both West Germany and East Germany, simultaneously, as voting members.
The Skylab 2 mission astronauts (Pete Conrad, Joseph P. Kerwin and Paul J. Weitz) returned to Earth after having spent four weeks as the first Americans on an orbiting space station.
Mark Felt resigned as Deputy Director of the FBI, after taking the job the day after the death of Director J. Edgar Hoover. During his time on the job, Felt had secretly informed Washington Post reporter Bob Woodward about the details of the Watergate scandal investigation, and had been identified by the Post only as "Deep Throat". He would not reveal the secret until 2005.
June 23, 1973 (Saturday)
The winner of East Germany's gliding championship, Ude Elke, escaped across the fortified border to West Germany by piloting his government-owned competition glider plane from a hill at Neustadt-Glewe. After fleeing the German Democratic Republic, landing well inside West Germany at a field in Soest.
The first votes were cast in the 1973 Ethiopian general election, which would continue until July 7. These would be the last elections to be held in the country under imperial rule.
Borussia Mönchengladbach defeated 1. FC Köln to win the DFB-Pokal, West Germany's soccer football playoffs. Köln had finished second in the Bundesliga regular season, and Mönchengladbach fifth. First place finisher FC Bayern Munich had been eliminated in the quarterfinals of the tournament.
June 24, 1973 (Sunday)
A fire killed 32 people and injured 15 at the UpStairs Lounge, a gay bar in New Orleans. Most of the persons killed had been trapped inside the building by bars across the three front windows. While the blaze was caused by arson and would remain the worst attack on a gay bar until the 2016 Pulse Night Club shooting in 2016, no evidence was ever found that the murder was a hate crime, and the person considered by police to be the most likely suspect was a gay man who had recently been made to leave the bar earlier.
Leonid Brezhnev became the first Soviet leader to address the American people on television. Brezhnev's 47-minute speech was pre-recorded the afternoon before at President Nixon's estate, and then broadcast the next evening at 6:00 p.m. in each of the U.S. time zones. Among other things, he declared that "Mankind has outgrown the rigid 'cold war' armor which it was once forced to wear. It wants to breathe freely and peacefully."
Died:
G. Raymond Rettew, 70, American biochemist who pioneered the mass production of the antibiotic penicillin during World War II and prevented tens of thousands of wounded U.S. troops from becoming fatally infected.
Bud Westmore, 55, American film makeup artist, died of a heart attack.
June 25, 1973 (Monday)
Former White House lawyer John Dean began his testimony before the Senate Watergate Committee. Granted immunity from prosecution by vote of the Committee, Dean implicated U.S. President Nixon in accusations of obstruction of justice. After some opening remarks, Dean began his testimony by reading aloud a 245-page statement "in a clipped monotone" over six hours.
The popular Latin American comic strip Mafalda was retired by its Argentine creator Joaquín Salvador Lavado Tejón (who wrote under the name of "Quino") after a run of almost nine years.
The sinking of the Indian ship Saudi killed 40 of the 98 passengers and crew on board. The passenger ship, which also carried freight, capsized in the Indian Ocean off of the coast of the African nation of Somalia, after a huge wave caused her cargo to shift. The U.S. Navy destroyer USS Jonas Ingram rescued 48 survivors, and recovered nine bodies; the other 31 were missing and presumed dead.
The Conference on Security and Cooperation in Europe (CSCE) began with the Meeting of Foreign Ministers in Helsinki, Finland.
Erskine Childers took office as the fourth President of Ireland but would die after a year in office.
June 26, 1973 (Tuesday)
The Kidwai Memorial Institute of Oncology was founded in Bangalore in India.
In the Soviet Union, the explosion of a Kosmos-3M rocket killed nine people at the Plesetsk Cosmodrome. The disaster would be revealed in 1989 when the Plesetsk center ended decades of secrecy and invited the Western press to visit.
Albania's leader, Enver Hoxha, announced that his Communist nation would move further from the "degenerated bourgeois culture" popular in North America and Western Europe. In his speech to the Central Committee of the Albanian Workers' Party (Partia e Punës e Shqipërisë), General Secretary Hoxha said that "the spread of certain vulgar, alien tastes in music and art is contrary to socialist ethics and the positive traditions of our people," and cited "degenerate importations such as long hair, extravagant dress, screaming jungle music, coarse language, shameless behavior and so on."
Died:
Henry Garrett, 79, American psychologist and white supremacist
Ernest Truex, 83, American stage, film and TV actor
June 27, 1973 (Wednesday)
Democratic rule in Uruguay was suspended as President Juan María Bordaberry closed parliament and imposed direct rule of the South American nation by a junta of military generals. In his Decree Number 464/1973, President Bordaberry announced that the General Assembly (the Senate and the Chamber of Representatives) were dissolved and replaced by the "Council of National Security" (Consejo de Seguridad Nacional or COSENA), with the president to be advised by the Junta de Oficiales Generales (JOG).
In testimony before the Senate Watergate Committee, John Dean revealed the existence of an "enemies list" of 20 people. The list had been maintained in the White House for the purpose of using "the available federal machinery to screw our political enemies," including the use of tax audits by the Internal Revenue Service and manipulating federal contracts and grants.
Born: Tom Tugendhat, British politician, Minister of State for Security; in Westminster, London
Died:
Earl Browder, 82, American Communist and Chairman of the Communist Party USA from 1934 to 1945 during the height of its membership
Arthur P. Jacobs, 51, American film producer known for the Planet of the Apes series of films and Goodbye, Mr. Chips, died of a sudden heart attack.
June 28, 1973 (Thursday)
Elections were held for the new, 78-member Northern Ireland Assembly, replacing the bicameral Stormont. The creation of the new N.I. Assembly would lead to the first power-sharing in Northern Ireland between unionists (who favored remaining part of the United Kingdom) and nationalists (who were in favor of becoming part of a reunited Ireland).
Algerian terrorist Mohamed Boudia, a senior member of the Popular Front for the Liberation of Palestine, was assassinated in Paris by Israel's intelligence agency, the Mossad. Boudia had parked his car outside the Faculty of Scientists building at the University of Paris early in the morning. At 11:00 a.m., the sat down in the driver's seat and started the car, triggering explosives under the seat were detonated.
Nine people involved in a conspiracy at the Santiago Army garrison in Chile were arrested. Government Minister José Tohá released news of the arrests to the media.
In Andover, Massachusetts, the 195-year-old Phillips Academy and the neighboring 144-year old Abbot Academy, two of the most prominent U.S. boarding schools for boys and girls, respectively, from wealthy families merged into a co-educational institution, becoming effective for the 1973-74 academic year.
Born: Galina Peneva Ivanova, Bulgarian pop singer who performs under the name "Gloria"; in Ruse
Died: Abd al-Rahman al-Bazzaz, 60, former prime minister of Iraq
June 29, 1973 (Friday)
Chilean Army Lieutenant Colonel Roberto Souper, having learned that he would be relieved of his command for his part in the conspiracy exposed on the previous day, failed in an attempted coup against the government of President Salvador Allende. Souper led 100 soldiers and four tanks from the 2nd Armored Regiment in an attack in Santiago on the Palacio de La Moneda, the presidential palace, shortly before 9:00 in the morning. Six civilians and a palace guard were killed, and 22 wounded before government troops put down the rebellion.
By a vote of 73 to 16, the U.S. Senate passed the Case–Church Amendment, an attachment to a funding bill for the U.S. Department of State, prohibiting any further U.S. military activity in Indochina (North Vietnam, South Vietnam, Laos or Cambodia) without advance Congressional approval. The bill had passed the U.S. House of Representatives, 325 to 86, on June 26. After Nixon had vetoed the initial measure and cited national security as a factor, the House and Senate reached a compromise with the White House, allowing bombing of Cambodia to continue until August 15, 1973, rather than to halt immediately. The compromise passed 236 to 169 in the House and 63 to 26 in the Senate. President Nixon signed the measure into law on July 1.
In Madrid, Athletic Bilbao won Spain's national championship playoff for soccer football, defeating CD Castellón, 2 to 0, to win the Copa del Generalísimo (now the Copa del Rey).
June 30, 1973 (Saturday)
After a little more than 117 days of drifting at sea for on a life raft, Britons Maurice and Maralyn Bailey were rescued by the crew of the South Korean fishing boat Weolmi 306. On March 4, 1973, the Baileys were forced to evacuate to the raft when their yacht, the Auralyn, sank in the Pacific Ocean after being damaged by a whale.
A very long total solar eclipse was seen over most of the continent of Africa, lasting seven minutes and four seconds, the longest since June 20, 1955 (7 minutes, 8 seconds). During the entire 2nd millennium (1001 CE to 2000 CE), only seven total solar eclipses exceeded 7 minutes of totality. Another total eclipse of more than seven minutes will not occur until June 25, 2150.
Iraq's Defense Minister, General Saadoun Ghaidan, was shot to death along with two other officers, Lieutenant Suleiman Mushed and police lieutenant Juhad Ahmed Duelmi, after being invited to a banquet by the nation's Director of Public Security, Nazem Kazzar.
Aeroflot Flight 512 crashed into a building after taking off from the Amman international airport in Jordan, killing seven people in the building and two members of the flight crew. The 78 passengers on board, and five of the seven crew, survived.
The 60th Tour de France began from Scheveningen in the Netherlands.
Born:
Chan Ho Park, South Korean baseball pitcher and the first Korean player in U.S. Major League Baseball; in Gongju. Between 1992 and 2010, Park played 19 MLB seasons.
Robert Bales, U.S. Army sniper and mass murderer who killed 16 civilians in the 2012 Kandahar massacre; in Norwood, Ohio
Died:
Nancy Mitford, 68, English novelist
Vasyl Velychkovsky, 70, Soviet Ukrainian priest who spent 13 years in prison for his religious activities, died one year after being allowed to emigrate, succumbing to complications from injuries sustained during his incarceration.
References
1973
1973-06
1973-06 |
Hedstroemia is a genus of trilobites in the order Proetida known from the Silurian period of Europe, Asia, and North America.
Taxonomic history
The genus Hedstroemia was named in 1978. The type species designated was Hedstroemia delicatus, which had originally been described as Proetus delicatus in 1923. In 1990 the subgenus Pachyproetus was proposed to accommodate a single species, P. pachydermata. In 1994, the genus Milesdavis was proposed based on incomplete fossils consisting of the pygidium (rear segment) of three individuals. The genus was named after musician Miles Davis, and the type species, Milesdavis eldredgei, was named in honor of the paleontologist Niles Eldredge. In 1997, Milesdavis and the subgenus Pachyproetus were recognized as junior synonyms of Hedstroemia, by paleontologist Jonathan Adrain, who regarded the type species of both as ingroup Hedstroemia.
Species
Several species of Hedstroemia are recognized, and other species are questionably assigned to the genus. Species names with the authority in parentheses were originally described as a different genus.
H. delicatus (Hedström, 1923)
H. eldredgei (Lieberman, 1994)
H. kulchini Ludvigsen & Tripp, 1990
H. pachydermata (Barret, 1878)
H. planedorsata (Schmidt, 1894)
H. sourdoughi Ludvigsen & Tripp, 1990
H. sugiharensis (Kobayashi & Hamada, 1974)
H. weedoni Adrain, 1997
Questionable species
?H. channahonensis (Weller, 1907)
?H. zlichovianus (Pribyl, 1966)
References
Proetidae
Proetida genera
Fossil taxa described in 1978
Silurian trilobites
Prehistoric life of Europe |
```php
<?php
/*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
*/
namespace Google\Service\Firebaseappcheck\Resource;
use Google\Service\Firebaseappcheck\GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesRequest;
use Google\Service\Firebaseappcheck\GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesResponse;
use Google\Service\Firebaseappcheck\GoogleFirebaseAppcheckV1ListResourcePoliciesResponse;
use Google\Service\Firebaseappcheck\GoogleFirebaseAppcheckV1ResourcePolicy;
use Google\Service\Firebaseappcheck\GoogleProtobufEmpty;
/**
* The "resourcePolicies" collection of methods.
* Typical usage is:
* <code>
* $firebaseappcheckService = new Google\Service\Firebaseappcheck(...);
* $resourcePolicies = $firebaseappcheckService->projects_services_resourcePolicies;
* </code>
*/
class ProjectsServicesResourcePolicies extends \Google\Service\Resource
{
/**
* Atomically updates the specified ResourcePolicy configurations.
* (resourcePolicies.batchUpdate)
*
* @param string $parent Required. The parent service name, in the format ```
* projects/{project_number}/services/{service_id} ``` The parent collection in
* the `name` field of any resource being updated must match this field, or the
* entire batch fails.
* @param GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesRequest $postBody
* @param array $optParams Optional parameters.
* @return GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesResponse
* @throws \Google\Service\Exception
*/
public function batchUpdate($parent, GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesRequest $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('batchUpdate', [$params], GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesResponse::class);
}
/**
* Creates the specified ResourcePolicy configuration. (resourcePolicies.create)
*
* @param string $parent Required. The relative resource name of the parent
* Service in which the specified ResourcePolicy will be created, in the format:
* ``` projects/{project_number}/services/{service_id} ``` Note that the
* `service_id` element must be a supported service ID. Currently, the following
* service IDs are supported: * `oauth2.googleapis.com` (Google Identity for
* iOS)
* @param GoogleFirebaseAppcheckV1ResourcePolicy $postBody
* @param array $optParams Optional parameters.
* @return GoogleFirebaseAppcheckV1ResourcePolicy
* @throws \Google\Service\Exception
*/
public function create($parent, GoogleFirebaseAppcheckV1ResourcePolicy $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], GoogleFirebaseAppcheckV1ResourcePolicy::class);
}
/**
* Deletes the specified ResourcePolicy configuration. (resourcePolicies.delete)
*
* @param string $name Required. The relative resource name of the
* ResourcePolicy to delete, in the format: ``` projects/{project_number}/servic
* es/{service_id}/resourcePolicies/{resource_policy_id} ```
* @param array $optParams Optional parameters.
*
* @opt_param string etag The checksum to be validated against the current
* ResourcePolicy, to ensure the client has an up-to-date value before
* proceeding. This checksum is computed by the server based on the values of
* fields in the ResourcePolicy object, and can be obtained from the
* ResourcePolicy object received from the last CreateResourcePolicy,
* GetResourcePolicy, ListResourcePolicies, UpdateResourcePolicy, or
* BatchUpdateResourcePolicies call. This etag is strongly validated as defined
* by RFC 7232.
* @return GoogleProtobufEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], GoogleProtobufEmpty::class);
}
/**
* Gets the requested ResourcePolicy configuration. (resourcePolicies.get)
*
* @param string $name Required. The relative resource name of the
* ResourcePolicy to retrieve, in the format: ``` projects/{project_number}/serv
* ices/{service_id}/resourcePolicies/{resource_policy_id} ``` Note that the
* `service_id` element must be a supported service ID. Currently, the following
* service IDs are supported: * `oauth2.googleapis.com` (Google Identity for
* iOS)
* @param array $optParams Optional parameters.
* @return GoogleFirebaseAppcheckV1ResourcePolicy
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], GoogleFirebaseAppcheckV1ResourcePolicy::class);
}
/**
* Lists all ResourcePolicy configurations for the specified project and
* service. (resourcePolicies.listProjectsServicesResourcePolicies)
*
* @param string $parent Required. The relative resource name of the parent
* Service for which to list each associated ResourcePolicy, in the format: ```
* projects/{project_number}/services/{service_id} ``` Note that the
* `service_id` element must be a supported service ID. Currently, the following
* service IDs are supported: * `oauth2.googleapis.com` (Google Identity for
* iOS)
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filters the results by the specified rule.
* For the exact syntax of this field, please consult the
* [AIP-160](path_to_url standard. Currently, since the only
* fields in the ResourcePolicy resource are the scalar fields
* `enforcement_mode` and `target_resource`, this method does not support the
* traversal operator (`.`) or the has operator (`:`). Here are some examples of
* valid filters: * `enforcement_mode = ENFORCED` * `target_resource =
* "//oauth2.googleapis.com/projects/12345/oauthClients/"` * `enforcement_mode =
* ENFORCED AND target_resource =
* "//oauth2.googleapis.com/projects/12345/oauthClients/"`
* @opt_param int pageSize The maximum number of ResourcePolicy objects to
* return in the response. The server may return fewer than this at its own
* discretion. If no value is specified (or too large a value is specified), the
* server will impose its own limit.
* @opt_param string pageToken Token returned from a previous call to
* ListResourcePolicies indicating where in the set of ResourcePolicy objects to
* resume listing. Provide this to retrieve the subsequent page. When
* paginating, all other parameters provided to ListResourcePolicies must match
* the call that provided the page token; if they do not match, the result is
* undefined.
* @return GoogleFirebaseAppcheckV1ListResourcePoliciesResponse
* @throws \Google\Service\Exception
*/
public function listProjectsServicesResourcePolicies($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], GoogleFirebaseAppcheckV1ListResourcePoliciesResponse::class);
}
/**
* Updates the specified ResourcePolicy configuration. (resourcePolicies.patch)
*
* @param string $name Required. Identifier. The relative name of the resource
* policy object, in the format: ``` projects/{project_number}/services/{service
* _id}/resourcePolicies/{resource_policy_id} ``` Note that the `service_id`
* element must be a supported service ID. Currently, the following service IDs
* are supported: * `oauth2.googleapis.com` (Google Identity for iOS)
* `resource_policy_id` is a system-generated UID.
* @param GoogleFirebaseAppcheckV1ResourcePolicy $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string updateMask Required. A comma-separated list of names of
* fields in the ResourcePolicy to update. Example: `enforcement_mode`.
* @return GoogleFirebaseAppcheckV1ResourcePolicy
* @throws \Google\Service\Exception
*/
public function patch($name, GoogleFirebaseAppcheckV1ResourcePolicy $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], GoogleFirebaseAppcheckV1ResourcePolicy::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsServicesResourcePolicies::class, your_sha256_hashePolicies');
``` |
In mathematics, specifically in group theory, the direct product is an operation that takes two groups and and constructs a new group, usually denoted . This operation is the group-theoretic analogue of the Cartesian product of sets and is one of several important notions of direct product in mathematics.
In the context of abelian groups, the direct product is sometimes referred to as the direct sum, and is denoted . Direct sums play an important role in the classification of abelian groups: according to the fundamental theorem of finite abelian groups, every finite abelian group can be expressed as the direct sum of cyclic groups.
Definition
Given groups (with operation ) and (with operation ), the direct product is defined as follows:
The resulting algebraic object satisfies the axioms for a group. Specifically:
Associativity The binary operation on is associative.
Identity The direct product has an identity element, namely , where is the identity element of and is the identity element of .
Inverses The inverse of an element of is the pair , where is the inverse of in , and is the inverse of in .
Examples
Let be the group of real numbers under addition. Then the direct product is the group of all two-component vectors under the operation of vector addition:
.
Let be the group of positive real numbers under multiplication. Then the direct product is the group of all vectors in the first quadrant under the operation of component-wise multiplication
.
Let and be cyclic groups with two elements each:
Then the direct product is isomorphic to the Klein four-group:
Elementary properties
Algebraic structure
Let and be groups, let , and consider the following two subsets of :
and .
Both of these are in fact subgroups of , the first being isomorphic to , and the second being isomorphic to . If we identify these with and , respectively, then we can think of the direct product as containing the original groups and as subgroups.
These subgroups of have the following three important properties:
(Saying again that we identify and with and , respectively.)
The intersection is trivial.
Every element of can be expressed uniquely as the product of an element of and an element of .
Every element of commutes with every element of .
Together, these three properties completely determine the algebraic structure of the direct product . That is, if is any group having subgroups and that satisfy the properties above, then is necessarily isomorphic to the direct product of and . In this situation, is sometimes referred to as the internal direct product of its subgroups and .
In some contexts, the third property above is replaced by the following:
3′. Both and are normal in .
This property is equivalent to property 3, since the elements of two normal subgroups with trivial intersection necessarily commute, a fact which can be deduced by considering the commutator of any in , in .
Examples
Presentations
The algebraic structure of can be used to give a presentation for the direct product in terms of the presentations of and . Specifically, suppose that
and
where and are (disjoint) generating sets and and are defining relations. Then
where is a set of relations specifying that each element of commutes with each element of .
For example if
and
then
Normal structure
As mentioned above, the subgroups and are normal in . Specifically, define functions and by
and .
Then and are homomorphisms, known as projection homomorphisms, whose kernels are and , respectively.
It follows that is an extension of by (or vice versa). In the case where is a finite group, it follows that the composition factors of are precisely the union of the composition factors of and the composition factors of .
Further properties
Universal property
The direct product can be characterized by the following universal property. Let and be the projection homomorphisms. Then for any group and any homomorphisms and , there exists a unique homomorphism making the following diagram commute:
Specifically, the homomorphism is given by the formula
.
This is a special case of the universal property for products in category theory.
Subgroups
If is a subgroup of and is a subgroup of , then the direct product is a subgroup of . For example, the isomorphic copy of in is the product , where is the trivial subgroup of .
If and are normal, then is a normal subgroup of . Moreover, the quotient of the direct products is isomorphic to the direct product of the quotients:
.
Note that it is not true in general that every subgroup of is the product of a subgroup of with a subgroup of . For example, if is any non-trivial group, then the product has a diagonal subgroup
which is not the direct product of two subgroups of .
The subgroups of direct products are described by Goursat's lemma. Other subgroups include fiber products of and .
Conjugacy and centralizers
Two elements and are conjugate in if and only if and are conjugate in and and are conjugate in . It follows that each conjugacy class in is simply the Cartesian product of a conjugacy class in and a conjugacy class in .
Along the same lines, if , the centralizer of is simply the product of the centralizers of and :
= .
Similarly, the center of is the product of the centers of and :
= .
Normalizers behave in a more complex manner since not all subgroups of direct products themselves decompose as direct products.
Automorphisms and endomorphisms
If is an automorphism of and is an automorphism of , then the product function defined by
is an automorphism of . It follows that has a subgroup isomorphic
to the direct product .
It is not true in general that every automorphism of has the above form. (That is, is often a proper subgroup of .) For example, if is any group, then there exists an automorphism of that switches the two factors, i.e.
.
For another example, the automorphism group of is , the group of all matrices with integer entries and determinant, . This automorphism group is infinite, but only finitely many of the automorphisms have the form given above.
In general, every endomorphism of can be written as a matrix
where is an endomorphism of , is an endomorphism of , and and are homomorphisms. Such a matrix must have the property that every element in the image of commutes with every element in the image of , and every element in the image of commutes with every element in the image of .
When G and H are indecomposable, centerless groups, then the automorphism group is relatively straightforward, being Aut(G) × Aut(H) if G and H are not isomorphic, and Aut(G) wr 2 if G ≅ H, wr denotes the wreath product. This is part of the Krull–Schmidt theorem, and holds more generally for finite direct products.
Generalizations
Finite direct products
It is possible to take the direct product of more than two groups at once. Given a finite sequence of groups, the direct product
is defined as follows:
This has many of the same properties as the direct product of two groups, and can be characterized algebraically in a similar way.
Infinite direct products
It is also possible to take the direct product of an infinite number of groups. For an infinite sequence of groups, this can be defined just like the finite direct product of above, with elements of the infinite direct product being infinite tuples.
More generally, given an indexed family { } of groups, the direct product is defined as follows:
Unlike a finite direct product, the infinite direct product is not generated by the elements of the isomorphic subgroups { }. Instead, these subgroups generate a subgroup of the direct product known as the infinite direct sum, which consists of all elements that have only finitely many non-identity components.
Other products
Semidirect products
Recall that a group with subgroups and is isomorphic to the direct product of and as long as it satisfies the following three conditions:
The intersection is trivial.
Every element of can be expressed uniquely as the product of an element of and an element of .
Both and are normal in .
A semidirect product of and is obtained by relaxing the third condition, so that only one of the two subgroups is required to be normal. The resulting product still consists of ordered pairs , but with a slightly more complicated rule for multiplication.
It is also possible to relax the third condition entirely, requiring neither of the two subgroups to be normal. In this case, the group is referred to as a Zappa–Szép product of and .
Free products
The free product of and , usually denoted , is similar to the direct product, except that the subgroups and of are not required to commute. That is, if
= | and = |,
are presentations for and , then
= |.
Unlike the direct product, elements of the free product cannot be represented by ordered pairs. In fact, the free product of any two nontrivial groups is infinite. The free product is actually the coproduct in the category of groups.
Subdirect products
If and are groups, a subdirect product of and is any subgroup of which maps surjectively onto and under the projection homomorphisms. By Goursat's lemma, every subdirect product is a fiber product.
Fiber products
Let , , and be groups, and let and be homomorphisms. The fiber product of and over , also known as a pullback, is the following subgroup of :
If and are epimorphisms, then this is a subdirect product.
References
.
.
.
.
Group products |
Skrzypki Duże is a village in the administrative district of Gmina Bielsk Podlaski, within Bielsk County, Podlaskie Voivodeship, in north-eastern Poland. It lies approximately west of Bielsk Podlaski and south of the regional capital Białystok.
References
Villages in Bielsk County |
Askham is a village and civil parish in the Bassetlaw district of Nottinghamshire, England, about six miles south-east of East Retford. According to the 2001 census it had a population of 183, decreasing slightly to 181 at the 2011 Census.
St Nicholas' Church is Norman, restored in 1906–07.
See also
Listed buildings in Askham, Nottinghamshire
References
External links
Aerial photo of Askham with notes
Photos of Askham
Villages in Nottinghamshire
Civil parishes in Nottinghamshire
Bassetlaw District |
FK506-binding protein 9 is a protein that in humans is encoded by the FKBP9 gene.
References
Further reading
EC 5.2.1
EF-hand-containing proteins |
Oslo Concert Hall (Oslo Konserthus) is a concert hall located in Vika, a part of Oslo city centre in Norway. It is the base of the Oslo Philharmonic Orchestra (Oslo-Filharmonien), but it also aims to be one of the premier music venues for the general musical and cultural life of Norway, offering a broad variety of musical styles from classical, world music, and popular entertainment by both Norwegian and international artists and groups. It presents more than 300 events yearly and receives more than 200,000 visitors.
History
For a long time, Oslo lacked a proper concert hall, and the Oslo Philharmonic did not have a regular hall for their rehearsals. Sometimes the rehearsals could be on different locations every day through the same project.
Construction
After decades of debate and delay, an architectal competition was arranged in 1955 and final drafts for the concert hall were presented in 1965, based on Gösta Åbergh’s winning proposal. Oslo Konserthus AS was founded in October 1966 and, on 22 March 1977, the concert hall was finally opened. In September the same year, a specially build organ (with 7000 pipes) from Göttingen, Germany was installed. It was the largest organ in Norway until 2014.
Building
The building consists of two concert halls, several meeting and practise rooms, large foyers and bars, a box office and an office wing. The main hall has a maximum capacity of more than 1,600 and the small hall has 266.
The foyers can be used as exhibition areas, and the bars have a capacity of serving up to 1,400 people.
Also the open area in front of the hall and the premises below belong to Oslo Konserthus AS. The Stenersen Museum (Stenersenmuseet), with its café Diorama, are located in the latter.
In 2000 Mariss Jansons, then conductor of the Oslo Philharmonic Orchestra, resigned his position after disputes with the city over the poor acoustics of the hall.
References
External links
Oslo Concert Hall
The Stenersen Museum
The History of the Oslo Philharmonic Orchestra
Music venues in Oslo
Concert halls in Norway
1966 establishments in Norway
1977 establishments in Norway
Music venues completed in 1977 |
Nilu (, also Romanized as Nīlū) is a village in Eshkevar-e Sofla Rural District, Rahimabad District, Rudsar County, Gilan Province, Iran. At the 2006 census, its population was 271, in 76 families.
References
Populated places in Rudsar County |
Statistics of Portuguese Liga in the 1981–82 season.
Overview
It was contested by 16 teams, and Sporting Clube de Portugal won the championship.
C.F. Os Belenenses, who had co-founded the league in 1934 with Sporting, S.L. Benfica and F.C. Porto, was relegated for the first time.
League standings
Results
Season statistics
Top goalscorers
Footnotes
External links
Portugal 1981-82 - RSSSF (Jorge Miguel Teixeira)
Portuguese League 1981/82 - footballzz.co.uk
Portugal - Table of Honor - Soccer Library
Portuguese Wikipedia - Campeonato Português de Futebol - I Divisão 1981/1982
Primeira Liga seasons
1981–82 in Portuguese football
Portugal |
Iberian schematic art is the name given to a series of prehistoric representations (almost always cave paintings) that appear in the Iberian peninsula, which are associated with the first metallurgical cultures (the Copper Age, the Bronze Age and even the start of the Iron Age). Its chronology is still a matter for debate, but it could span from the fourth up to the first millennium BC, overlapping, at its start, with Levantine Art and surviving marginally in some isolated regions during much later stages.
Its main characteristic, and that which gives it its name, is the schematic, that is, a figurative style in which only the basic fragments of each figure are represented (eliminating all the rest); what's more, the representation is so basic that the graphic elements are converted into mere outlines, but without losing the minimal identifying features. In fact, the schematic phenomenon is considered somewhat more precise and problematic, and it is integrated in a wide movement which affects almost all of Europe and the Mediterranean.
It could be said that the schematic phenomenon has global dimensions, although each region, including the Hispanic, has its own, differentiating aspects.
The schematic phenomenon in the Iberian peninsula
Schematics in art is a concept linked to realism (a figurative representation more or less faithful to nature, with concrete details which allow the easy identification of the figures), stylization (also figurative, but which accentuates certain details considered arbitrarily important, repeating and distorting them until they lose their real shapes), and abstraction (representations completely unconnected with reality which are associated with a philosophical symbolism and which, although they may unconsciously contain some real elements, such a link is not possible to prove).
Even if one only takes the peninsular ambit into account, schematic art lacks uniformity, it spans quite a wide chronology and its geography is too wide, which makes its study difficult and makes it almost impossible to establish cultural phases or regions.
See also
Rock Art of the Mediterranean Basin on the Iberian Peninsula
Prehistoric art
Neolithic Spain
Spanish art |
```c++
#include "distance_closeness_fixture.h"
#include <vespa/eval/eval/simple_value.h>
#include <vespa/eval/eval/value.h>
#include <vespa/eval/eval/value_codec.h>
#include <vespa/eval/eval/value_type.h>
#include <vespa/searchcommon/attribute/config.h>
#include <vespa/searchlib/tensor/dense_tensor_attribute.h>
#include <vespa/searchlib/tensor/direct_tensor_attribute.h>
#include <vespa/searchlib/tensor/serialized_fast_value_attribute.h>
#include <vespa/vespalib/objects/nbostream.h>
using search::attribute::BasicType;
using search::attribute::CollectionType;
using search::attribute::Config;
using search::attribute::DistanceMetric;
using search::fef::test::IndexEnvironment;
using search::fef::test::QueryEnvironment;
using search::tensor::DenseTensorAttribute;
using search::tensor::DirectTensorAttribute;
using search::tensor::SerializedFastValueAttribute;
using search::tensor::TensorAttribute;
using vespalib::eval::SimpleValue;
using vespalib::eval::TensorSpec;
using vespalib::eval::Value;
using vespalib::eval::ValueType;
namespace search::features::test {
namespace {
std::shared_ptr<TensorAttribute>
create_tensor_attribute(const std::string& attr_name,
const std::string& tensor_type,
DistanceMetric distance_metric,
bool direct_tensor,
uint32_t docid_limit)
{
Config cfg(BasicType::TENSOR, CollectionType::SINGLE);
cfg.setTensorType(ValueType::from_spec(tensor_type));
cfg.set_distance_metric(distance_metric);
std::shared_ptr<TensorAttribute> result;
if (cfg.tensorType().is_dense()) {
result = std::make_shared<DenseTensorAttribute>(attr_name, cfg);
} else if (direct_tensor) {
result = std::make_shared<DirectTensorAttribute>(attr_name, cfg);
} else {
result = std::make_shared<SerializedFastValueAttribute>(attr_name, cfg);
}
result->addReservedDoc();
result->addDocs(docid_limit-1);
result->commit();
return result;
}
}
FeatureDumpFixture::~FeatureDumpFixture() = default;
DistanceClosenessFixture::DistanceClosenessFixture(size_t fooCnt, size_t barCnt,
const Labels& labels,
const std::string& featureName,
const std::string& query_tensor,
DistanceMetric distance_metric)
: DistanceClosenessFixture("tensor(x[2])", false, fooCnt, barCnt, labels, featureName, query_tensor, distance_metric)
{
}
DistanceClosenessFixture::DistanceClosenessFixture(const std::string& tensor_type,
bool direct_tensor,
size_t fooCnt, size_t barCnt,
const Labels& labels,
const std::string& featureName,
const std::string& query_tensor,
DistanceMetric distance_metric)
: queryEnv(&indexEnv), rankSetup(factory, indexEnv),
mdl(), match_data(), rankProgram(), fooHandles(), barHandles(),
tensor_attr(),
docid_limit(11),
_failed(false)
{
for (size_t i = 0; i < fooCnt; ++i) {
uint32_t fieldId = indexEnv.getFieldByName("foo")->id();
fooHandles.push_back(mdl.allocTermField(fieldId));
SimpleTermData term;
term.setUniqueId(i + 1);
term.addField(fieldId).setHandle(fooHandles.back());
queryEnv.getTerms().push_back(term);
}
for (size_t i = 0; i < barCnt; ++i) {
uint32_t fieldId = indexEnv.getFieldByName("bar")->id();
barHandles.push_back(mdl.allocTermField(fieldId));
SimpleTermData term;
term.setUniqueId(fooCnt + i + 1);
term.addField(fieldId).setHandle(barHandles.back());
if (!query_tensor.empty()) {
term.set_query_tensor_name("qbar");
}
queryEnv.getTerms().push_back(term);
}
if (!query_tensor.empty()) {
tensor_attr = create_tensor_attribute("bar", tensor_type, distance_metric, direct_tensor, docid_limit);
indexEnv.getAttributeMap().add(tensor_attr);
search::fef::indexproperties::type::Attribute::set(indexEnv.getProperties(), "bar", tensor_type);
set_query_tensor("qbar", "tensor(x[2])", TensorSpec::from_expr(query_tensor));
}
labels.inject(queryEnv.getProperties());
rankSetup.setFirstPhaseRank(featureName);
rankSetup.setIgnoreDefaultRankFeatures(true);
EXPECT_TRUE(rankSetup.compile()) << (_failed = true, "");
if (_failed) {
return;
}
rankSetup.prepareSharedState(queryEnv, queryEnv.getObjectStore());
match_data = mdl.createMatchData();
rankProgram = rankSetup.create_first_phase_program();
rankProgram->setup(*match_data, queryEnv);
}
DistanceClosenessFixture::~DistanceClosenessFixture() = default;
void
DistanceClosenessFixture::set_attribute_tensor(uint32_t docid, const vespalib::eval::TensorSpec& spec)
{
auto tensor = SimpleValue::from_spec(spec);
tensor_attr->setTensor(docid, *tensor);
tensor_attr->commit();
}
void
DistanceClosenessFixture::set_query_tensor(const std::string& query_tensor_name,
const std::string& tensor_type,
const TensorSpec& spec)
{
search::fef::indexproperties::type::QueryFeature::set(indexEnv.getProperties(), query_tensor_name, tensor_type);
auto tensor = SimpleValue::from_spec(spec);
vespalib::nbostream stream;
vespalib::eval::encode_value(*tensor, stream);
queryEnv.getProperties().add(query_tensor_name, std::string_view(stream.peek(), stream.size()));
}
}
``` |
```yaml
category: IT Services
commonfields:
id: Google Cloud Storage
version: -1
configuration:
- display: Service Account Private Key file contents (JSON)
name: service_account_json
type: 4
hidden: true
required: false
- displaypassword: Service Account Private Key file contents (JSON)
name: credentials_service_account_json
hiddenusername: true
type: 9
required: false
display: ""
- display: Default Bucket
name: default_bucket
type: 0
required: false
- display: Use system proxy settings
name: proxy
type: 8
required: false
- display: Trust any certificate (not secure)
name: insecure
type: 8
required: false
description: Google Cloud Storage is a RESTful online file storage web service for storing and accessing data on Google Cloud Platform infrastructure.
display: Google Cloud Storage
name: Google Cloud Storage
script:
commands:
- description: Retrieves the list of buckets.
name: gcs-list-buckets
outputs:
- contextPath: GCS.Bucket.Name
description: Bucket name (also ID).
type: String
- contextPath: GCS.Bucket.TimeCreated
description: Bucket creation time.
type: Date
- contextPath: GCS.Bucket.TimeUpdated
description: Last time bucket was modified.
type: Date
- contextPath: GCS.Bucket.OwnerID
description: Bucket owner ID.
type: String
arguments: []
- arguments:
- default: true
description: Name of the bucket to retrieve. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
description: Retrieves bucket information.
name: gcs-get-bucket
outputs:
- contextPath: GCS.Bucket.Name
description: Bucket name (also ID).
type: String
- contextPath: GCS.Bucket.TimeCreated
description: Bucket creation time.
type: Date
- contextPath: GCS.Bucket.TimeUpdated
description: Last time bucket was modified.
type: Date
- contextPath: GCS.Bucket.OwnerID
description: Bucket owner ID.
type: String
- arguments:
- default: true
description: Name of the bucket to create.
name: bucket_name
required: true
- auto: PREDEFINED
description: Access Control List for the bucket.
name: bucket_acl
predefined:
- authenticatedRead
- private
- projectPrivate
- publicRead
- publicReadWrite
- auto: PREDEFINED
description: Default Access Control List for the object.
name: default_object_acl
predefined:
- authenticatedRead
- bucketOwnerFullControl
- bucketOwnerRead
- private
- projectPrivate
- publicRead
- defaultValue: US
description: The location of the bucket, The default value is US.
name: location
- auto: PREDEFINED
description: Whether the bucket is configured to allow only IAM, The default value is false.
name: uniform_bucket_level_access
defaultValue: 'false'
predefined:
- 'false'
- 'true'
description: Creates a new bucket.
name: gcs-create-bucket
- arguments:
- default: true
description: Name of the bucket to delete.
name: bucket_name
required: true
- auto: PREDEFINED
defaultValue: 'false'
description: Forces the bucket to delete (if not empty).
name: force
predefined:
- 'true'
- 'false'
required: true
description: Deletes a bucket.
name: gcs-delete-bucket
- arguments:
- default: true
description: Name of the bucket in which to list objects. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
- description: Specify to limit blobs within a "folder" i.e., "folder-1/" if blob is "folder-1/file.txt".
name: prefix
- description: Use a delimiter if you want to limit results within a specific "folder" and without any nested blobs i.e., "/".
name: delimiter
description: Retrieves the list of objects in a bucket.
name: gcs-list-bucket-objects
outputs:
- contextPath: GCS.BucketObject.Name
description: Object name.
type: String
- contextPath: GCS.BucketObject.Bucket
description: Name of the bucket containing the object.
type: String
- contextPath: GCS.BucketObject.ContentType
description: Content-Type of the object data.
type: String
- contextPath: GCS.BucketObject.TimeCreated
description: Object creation time.
type: Date
- contextPath: GCS.BucketObject.TimeUpdated
description: Last time object was modified.
type: Date
- contextPath: GCS.BucketObject.TimeDeleted
description: Object deletion time (available if the object is archived).
type: Date
- contextPath: GCS.BucketObject.Size
description: Object size in bytes.
type: Number
- contextPath: GCS.BucketObject.MD5
description: MD5 hash of the data in Base64.
type: String
- contextPath: GCS.BucketObject.OwnerID
description: Object owner ID.
type: String
- contextPath: GCS.BucketObject.CRC32c
description: CRC32c checksum (as described in RFC 4960, Appendix B path_to_url ), encoded using Base64 in big-endian byte order.
type: String
- contextPath: GCS.BucketObject.EncryptionAlgorithm
description: The encryption algorithm.
type: String
- contextPath: GCS.BucketObject.EncryptionKeySHA256
description: SHA256 hash value of the encryption key.
type: String
- arguments:
- description: Name of the bucket in which the object resides. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
- default: true
description: Name of the object to download.
name: object_name
required: true
- description: Name of the file in which the object is downloaded (if not specified, the name is derived from the object name, but this may fail if the object contains invalid filename characters).
name: saved_file_name
description: Retrieves object data into a file.
name: gcs-download-file
- arguments:
- default: true
description: ID of a context entry containing the file to upload.
name: entry_id
required: true
- description: Name of the bucket in which to upload the object. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
- description: Name of the uploaded object within the bucket.
name: object_name
required: true
- auto: PREDEFINED
description: Access Control List for the uploaded object.
name: object_acl
predefined:
- authenticatedRead
- bucketOwnerFullControl
- bucketOwnerRead
- private
- projectPrivate
- publicRead
description: Uploads a file (object) into a bucket.
name: gcs-upload-file
- arguments:
- default: true
description: Name of the bucket for the Access Control List. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
description: Retrieves the Access Control List of a bucket.
name: gcs-list-bucket-policy
outputs:
- contextPath: GCS.BucketPolicy.Bucket
description: Name of the bucket holding the Access Control List.
type: String
- contextPath: GCS.BucketPolicy.Entity
description: The entity holding the permission.
type: String
- contextPath: GCS.BucketPolicy.Email
description: Email address associated with the entity (if any).
type: String
- contextPath: GCS.BucketPolicy.Role
description: The access permission for the entity.
type: String
- contextPath: GCS.BucketPolicy.Team
description: Project team associated with the entity (if any).
type: String
- arguments:
- description: Name of the bucket in which to modify the Access Control List. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
- default: true
description: "Entity to add into the Access Control List.\nCommon entity formats are:\n* user-<userId or email>\n* group-<groupId or email>\n* allUsers\n* allAuthenticatedUsers\nFor more options and details, see: path_to_url "
name: entity
required: true
- auto: PREDEFINED
description: The access permission for the entity.
name: role
predefined:
- Reader
- Writer
- Owner
required: true
description: |-
Adds a new entity to a bucket's Access Control List.
Note: use the gcs-put-bucket-policy command to update an existing entry.
name: gcs-create-bucket-policy
- arguments:
- description: Name of the bucket in which to modify the Access Control List. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
- default: true
description: "The entity to update in the Access Control List.\nCommon entity formats are:\n* user-<userId or email>\n* group-<groupId or email>\n* allUsers\n* allAuthenticatedUsers\nFor more options and details, see: path_to_url "
name: entity
required: true
- auto: PREDEFINED
description: The access permissions for the entity.
name: role
predefined:
- Reader
- Writer
- Owner
required: true
description: |-
Updates an existing entity in a bucket's Access Control List.
Note: use the gcs-create-bucket-policy command to create a new entry.
name: gcs-put-bucket-policy
- arguments:
- description: Name of the bucket in which to modify the Access Control List. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
- default: true
description: "Entity to remove from the Access Control List.\nCommon entity formats are:\n* user-<userId or email>\n* group-<groupId or email>\n* allUsers\n* allAuthenticatedUsers\nFor more options and details, see: path_to_url "
name: entity
required: true
description: Removes an entity from a bucket's Access Control List.
name: gcs-delete-bucket-policy
- arguments:
- description: Name of the bucket in which the object resides. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
- default: true
description: Name of the object in which to list access controls.
name: object_name
required: true
description: Retrieves the Access Control List of an object.
name: gcs-list-bucket-object-policy
outputs:
- contextPath: GCS.BucketObjectPolicy.Bucket
description: Name of the bucket in which the object resides.
type: String
- contextPath: GCS.BucketObjectPolicy.Object
description: Name of the object holding the Access Control List.
type: String
- contextPath: GCS.BucketObjectPolicy.Entity
description: The entity holding the permission.
type: String
- contextPath: GCS.BucketObjectPolicy.Email
description: Email address associated with the entity (if any).
type: String
- contextPath: GCS.BucketObjectPolicy.Role
description: The access permission for the entity.
type: String
- contextPath: GCS.BucketObjectPolicy.Team
description: Project team associated with the entity (if any).
type: String
- arguments:
- description: Name of the bucket in which the object resides. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
- description: Name of the object in which to modify the Access control List.
name: object_name
required: true
- default: true
description: "Entity to add into the Access Control List.\nCommon entity formats are:\n* user-<userId or email>\n* group-<groupId or email>\n* allUsers\n* allAuthenticatedUsers\nFor more options and details, see: path_to_url "
name: entity
required: true
- auto: PREDEFINED
description: The access permission for the entity.
name: role
predefined:
- Reader
- Owner
required: true
description: |-
Adds a new entity to an object's Access Control List.
Note: use the gcs-put-bucket-object-policy command to update an existing entry.
name: gcs-create-bucket-object-policy
- arguments:
- description: Name of the bucket in which the object resides. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
- description: Name of the object in which to modify access controls.
name: object_name
required: true
- default: true
description: "The entity to update in the Access Control List.\nCommon entity formats are:\n* user-<userId or email>\n* group-<groupId or email>\n* allUsers\n* allAuthenticatedUsers\nFor more options and details, see: path_to_url "
name: entity
required: true
- auto: PREDEFINED
description: The access permissions for the entity.
name: role
predefined:
- Reader
- Owner
required: true
description: |-
Updates an existing entity in an object's Access Control List.
Note: use gcs-create-bucket-object-policy command to create a new entry.
name: gcs-put-bucket-object-policy
- arguments:
- description: Name of the bucket in which the object resides. If not specified, operation will be performed on the default bucket parameter.
name: bucket_name
- description: Name of the object in which to modify access controls.
name: object_name
required: true
- default: true
description: "Entity to remove from the Access Control List.\nCommon entity formats are:\n* user-<userId or email>\n* group-<groupId or email>\n* allUsers\n* allAuthenticatedUsers\nFor more options and details, see: path_to_url "
name: entity
required: true
description: Removes an entity from an object's Access Control List.
name: gcs-delete-bucket-object-policy
- arguments:
- description: Name of the Bucket to copy the object from. If not specified, operation will be performed on the default bucket parameter.
name: source_bucket_name
- description: Name of the Bucket to copy the object to.
name: destination_bucket_name
required: true
- description: Name of the object to copy.
name: source_object_name
required: true
- description: Name of the object in the destination bucket. If not specified, operation will be performed with the source_object_name parameter.
name: destination_object_name
description: Copies a file (object) from one bucket to another.
name: gcs-copy-file
dockerimage: demisto/google-cloud-storage:1.0.0.89308
runonce: false
script: ''
type: python
subtype: python3
tests:
- GCS - Test
fromversion: 5.0.0
``` |
The men's decathlon at the 1966 European Athletics Championships was held in Budapest, Hungary, at Népstadion on 30 August and 1 September 1966.
Medalists
Results
Final
30 August/1 September
Participation
According to an unofficial count, 28 athletes from 14 countries participated in the event.
(1)
(3)
(1)
(1)
(2)
(2)
(2)
(1)
(2)
(2)
(3)
(3)
(2)
(3)
References
Decathlon
Combined events at the European Athletics Championships |
Jacob Rodney Candelaria (born 1987) is an American politician and attorney who served as a member of the New Mexico Senate for the 26th district from 2013 to 2022. First elected in 2012 as a Democrat, he later left the party in 2021 to become an independent.
On December 6, 2021, Candelaria announced that he was changing his party affiliation from "Democrat" to "Decline to State".
Candelaria was the first openly gay man elected to the New Mexico Legislature.
Early life and career
Candelaria was born in Albuquerque, and brought up by his grandmother Elodia Gloria Candelaria. Candelaria attended St. Pius X High School, and went on to earn an A.B. from the Woodrow Wilson School of Public and International Affairs at Princeton University in 2009 after completing a 102-page long senior thesis, titled "Contemporary Venezuelan Oil Policy: An Institutional Analysis", under the supervision of Stanley Katz. At Princeton, Candelaria was a member of The Ivy Club and St. Anthony Hall.
Career
Candelaria returned to Albuquerque after graduating from Princeton, working for Think New Mexico, the New Mexico Legislative Finance Committee and Ben Luján, the speaker of the New Mexico House of Representatives. In August 2011, he was appointed president and CEO of Equality New Mexico, the state's largest gay rights organization.
Candelaria is the owner and managing partner of his own law firm, Candelaria Law LLC., which opened in October 2019. Candelaria’s law firm focuses in the areas of civil rights, workers compensation, criminal defense, cannabis law, and complex civil litigation. Candelaria Law LLC counts New Mexico Top Organics-Ultra Health LLC, New Mexico’s largest vertically integrated cannabis company, among its clients.
New Mexico Senate
On March 5, 2012, Candelaria announced his candidacy for the New Mexico Senate, seeking the Democratic nomination in the 26th district. He was initially one of four Democrats to have filed for the seat, including incumbent Sen. Bernadette Sanchez. However, Sanchez abandoned her re-election bid on March 23, citing a desire to concentrate on her health. Three days later, Steve D. Gallegos, a former Albuquerque City Councilman and Bernalillo County Commissioner, dropped his bid for the seat and endorsed Candelaria.
The Democratic primary election held on June 5, 2012 was therefore a two-way fight between Candelaria and opponent Carlos Jose Villanueva. Candelaria took 69% of the vote, winning 1,835 votes to Villanueva's 828.
In 2017, Candelaria sponsored legislation to ban Gay conversion therapy in New Mexico. The legislation passed both the state House and Senate with substantial bi-partisan margins. The bill was ultimately signed into law by Republican Governor Susana Martinez.
Candelaria was the lead sponsor and chief legislative architect of the 2019 New Mexico Energy Transition Act. The ETA amended New Mexico’s renewable energy portfolio standards to require that all investor owned utilities and rural electric collaboratives transition to one-hundred percent renewable electricity generation by 2045.
The ETA also authorized the Public Service Compant of New Mexico or PNM, the state’s largest investor owned utility, to issue securitized bonds to retire the utility’s remaining assets in the San Juan Generating Station, a coal fire plant, and it’s affiliated coal mine. The law appropriates savings that result from lower interest rates on a utility’s securitized bonds into three state administered funds for economic development, worker re training, and environmental remediation in communities effected by the closure of the San Juan Generating Station.
On October 24, 2020, Candelaria denounced an anti-lockdown protest held at the New Mexico Capitol Building in a television appearance. Following this, he received a number of anonymous threats via phone calls, with one including homophobic slurs and another saying that “we’re going to get you out one way or another", according to Candelaria. In response to these threats, Candelaria left his Albuquerque apartment and sought police protection.
Candelaria announced on December 6, 2021, that he was switching his party affiliation from "Democrat" to "Decline to State" following dissatisfaction with the "extreme partisanship" of the Democratic controlled redistricting process in New Mexico.
During the 2022 regular session of the New Mexico Legislature, Candelaria successfully added an amendment to a piece of omnibus criminal justice reform legislation passed that year and later signed into law by Governor Michelle Lujan Grisham which prohibits the use of the Gay Panic Defense in criminal cases in the state.
Candelaria retired from the Senate on October 19, 2022.
In his retirement letter to Maggie Toulouse Oliver, the New Mexico Secretary of State, Candelaria said that he could no longer balance the demands of his private law practice, and a desire to start a family with his husband, with volunteer service in the Senate. New Mexico is the last U.S. State with a volunteer Legislature. Members receive a per-diem for days they are in session or attending legislative interim committee meetings, but are not paid a salary or other benefits.
Personal life
Candelaria is openly gay. He is the first gay man to serve in the New Mexico Legislature and only the second LGBT person, after state Senator Liz Stefanics.
Candelaria's campaign won the support of the Gay & Lesbian Victory Fund.
Candelaria married his husband, a resident physician at the University of New Mexico Hospital specializing in infectious diseases, in May 2019 at a ceremony in Santa Fe officiated by Governor Michelle Lujan Grisham. Candelaria’s husband is a member of the Tillery family of New Mexico car dealers.
See also
Third-party members of state legislatures of the United States
List of first minority male lawyers and judges in New Mexico
References
External links
Senator Jacob R. Candelaria - (D) at New Mexico Legislature
Campaign website
Living people
Hispanic and Latino American state legislators in New Mexico
Democratic Party New Mexico state senators
Politicians from Albuquerque, New Mexico
Princeton School of Public and International Affairs alumni
Gay politicians
LGBT Hispanic and Latino American people
LGBT state legislators in New Mexico
21st-century American politicians
1987 births |
```cmake
# Try to find the Gloo library and headers.
# Gloo_FOUND - system has Gloo lib
# Gloo_INCLUDE_DIRS - the Gloo include directory
# Gloo_LIBRARY/Gloo_NATIVE_LIBRARY - libraries needed to use Gloo
find_path(Gloo_INCLUDE_DIR
NAMES gloo/common/common.h
DOC "The directory where Gloo includes reside"
)
find_library(Gloo_NATIVE_LIBRARY
NAMES gloo
DOC "The Gloo library (without CUDA)"
)
find_library(Gloo_CUDA_LIBRARY
NAMES gloo_cuda
DOC "The Gloo library (with CUDA)"
)
set(Gloo_INCLUDE_DIRS ${Gloo_INCLUDE_DIR})
# use the CUDA library depending on the Gloo_USE_CUDA variable
if (DEFINED Gloo_USE_CUDA)
if (${Gloo_USE_CUDA})
set(Gloo_LIBRARY ${Gloo_CUDA_LIBRARY})
set(Gloo_NATIVE_LIBRARY ${Gloo_NATIVE_LIBRARY})
else()
set(Gloo_LIBRARY ${Gloo_NATIVE_LIBRARY})
set(Gloo_NATIVE_LIBRARY ${Gloo_NATIVE_LIBRARY})
endif()
else()
# else try to use the CUDA library if found
if (${Gloo_CUDA_LIBRARY} STREQUAL "Gloo_CUDA_LIBRARY-NOTFOUND")
set(Gloo_LIBRARY ${Gloo_NATIVE_LIBRARY})
set(Gloo_NATIVE_LIBRARY ${Gloo_NATIVE_LIBRARY})
else()
set(Gloo_LIBRARY ${Gloo_CUDA_LIBRARY})
set(Gloo_NATIVE_LIBRARY ${Gloo_NATIVE_LIBRARY})
endif()
endif()
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Gloo
FOUND_VAR Gloo_FOUND
REQUIRED_VARS Gloo_INCLUDE_DIR Gloo_LIBRARY
)
mark_as_advanced(Gloo_FOUND)
``` |
```c
Written by Jean-Marc Valin */
/**
@file mathops.h
@brief Various math functions
*/
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
- Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "mathops.h"
/*Compute floor(sqrt(_val)) with exact arithmetic.
_val must be greater than 0.
This has been tested on all possible 32-bit inputs greater than 0.*/
unsigned isqrt32(opus_uint32 _val){
unsigned b;
unsigned g;
int bshift;
/*Uses the second method from
path_to_url
The main idea is to search for the largest binary digit b such that
(g+b)*(g+b) <= _val, and add it to the solution g.*/
g=0;
bshift=(EC_ILOG(_val)-1)>>1;
b=1U<<bshift;
do{
opus_uint32 t;
t=(((opus_uint32)g<<1)+b)<<bshift;
if(t<=_val){
g+=b;
_val-=t;
}
b>>=1;
bshift--;
}
while(bshift>=0);
return g;
}
#ifdef FIXED_POINT
opus_val32 frac_div32(opus_val32 a, opus_val32 b)
{
opus_val16 rcp;
opus_val32 result, rem;
int shift = celt_ilog2(b)-29;
a = VSHR32(a,shift);
b = VSHR32(b,shift);
/* 16-bit reciprocal */
rcp = ROUND16(celt_rcp(ROUND16(b,16)),3);
result = MULT16_32_Q15(rcp, a);
rem = PSHR32(a,2)-MULT32_32_Q31(result, b);
result = ADD32(result, SHL32(MULT16_32_Q15(rcp, rem),2));
if (result >= 536870912) /* 2^29 */
return 2147483647; /* 2^31 - 1 */
else if (result <= -536870912) /* -2^29 */
return -2147483647; /* -2^31 */
else
return SHL32(result, 2);
}
/** Reciprocal sqrt approximation in the range [0.25,1) (Q16 in, Q14 out) */
opus_val16 celt_rsqrt_norm(opus_val32 x)
{
opus_val16 n;
opus_val16 r;
opus_val16 r2;
opus_val16 y;
/* Range of n is [-16384,32767] ([-0.5,1) in Q15). */
n = x-32768;
/* Get a rough initial guess for the root.
The optimal minimax quadratic approximation (using relative error) is
r = 1.437799046117536+n*(-0.823394375837328+n*0.4096419668459485).
Coefficients here, and the final result r, are Q14.*/
r = ADD16(23557, MULT16_16_Q15(n, ADD16(-13490, MULT16_16_Q15(n, 6713))));
/* We want y = x*r*r-1 in Q15, but x is 32-bit Q16 and r is Q14.
We can compute the result from n and r using Q15 multiplies with some
adjustment, carefully done to avoid overflow.
Range of y is [-1564,1594]. */
r2 = MULT16_16_Q15(r, r);
y = SHL16(SUB16(ADD16(MULT16_16_Q15(r2, n), r2), 16384), 1);
/* Apply a 2nd-order Householder iteration: r += r*y*(y*0.375-0.5).
This yields the Q14 reciprocal square root of the Q16 x, with a maximum
relative error of 1.04956E-4, a (relative) RMSE of 2.80979E-5, and a
peak absolute error of 2.26591/16384. */
return ADD16(r, MULT16_16_Q15(r, MULT16_16_Q15(y,
SUB16(MULT16_16_Q15(y, 12288), 16384))));
}
/** Sqrt approximation (QX input, QX/2 output) */
opus_val32 celt_sqrt(opus_val32 x)
{
int k;
opus_val16 n;
opus_val32 rt;
static const opus_val16 C[5] = {23175, 11561, -3011, 1699, -664};
if (x==0)
return 0;
else if (x>=1073741824)
return 32767;
k = (celt_ilog2(x)>>1)-7;
x = VSHR32(x, 2*k);
n = x-32768;
rt = ADD16(C[0], MULT16_16_Q15(n, ADD16(C[1], MULT16_16_Q15(n, ADD16(C[2],
MULT16_16_Q15(n, ADD16(C[3], MULT16_16_Q15(n, (C[4])))))))));
rt = VSHR32(rt,7-k);
return rt;
}
#define L1 32767
#define L2 -7651
#define L3 8277
#define L4 -626
static OPUS_INLINE opus_val16 _celt_cos_pi_2(opus_val16 x)
{
opus_val16 x2;
x2 = MULT16_16_P15(x,x);
return ADD16(1,MIN16(32766,ADD32(SUB16(L1,x2), MULT16_16_P15(x2, ADD32(L2, MULT16_16_P15(x2, ADD32(L3, MULT16_16_P15(L4, x2
))))))));
}
#undef L1
#undef L2
#undef L3
#undef L4
opus_val16 celt_cos_norm(opus_val32 x)
{
x = x&0x0001ffff;
if (x>SHL32(EXTEND32(1), 16))
x = SUB32(SHL32(EXTEND32(1), 17),x);
if (x&0x00007fff)
{
if (x<SHL32(EXTEND32(1), 15))
{
return _celt_cos_pi_2(EXTRACT16(x));
} else {
return NEG16(_celt_cos_pi_2(EXTRACT16(65536-x)));
}
} else {
if (x&0x0000ffff)
return 0;
else if (x&0x0001ffff)
return -32767;
else
return 32767;
}
}
/** Reciprocal approximation (Q15 input, Q16 output) */
opus_val32 celt_rcp(opus_val32 x)
{
int i;
opus_val16 n;
opus_val16 r;
celt_sig_assert(x>0);
i = celt_ilog2(x);
/* n is Q15 with range [0,1). */
n = VSHR32(x,i-15)-32768;
/* Start with a linear approximation:
r = 1.8823529411764706-0.9411764705882353*n.
The coefficients and the result are Q14 in the range [15420,30840].*/
r = ADD16(30840, MULT16_16_Q15(-15420, n));
/* Perform two Newton iterations:
r -= r*((r*n)-1.Q15)
= r*((r*n)+(r-1.Q15)). */
r = SUB16(r, MULT16_16_Q15(r,
ADD16(MULT16_16_Q15(r, n), ADD16(r, -32768))));
/* We subtract an extra 1 in the second iteration to avoid overflow; it also
neatly compensates for truncation error in the rest of the process. */
r = SUB16(r, ADD16(1, MULT16_16_Q15(r,
ADD16(MULT16_16_Q15(r, n), ADD16(r, -32768)))));
/* r is now the Q15 solution to 2/(n+1), with a maximum relative error
of 7.05346E-5, a (relative) RMSE of 2.14418E-5, and a peak absolute
error of 1.24665/32768. */
return VSHR32(EXTEND32(r),i-16);
}
#endif
``` |
Cow vigilante violence is a pattern of mob-based collective vigilante violence seen in India perpetuated "by Hindu nationalists against non-Hindus (mostly Muslims) to protect cows, which is considered sacred in Hindu religion".
Since 2014, mob attacks targeting mostly illegal cow smugglers, but in some cases even licensed cow traders, have become prominent.
There is a debate on whether there has actually been any change in the number of such incidences, as government data points out to reduced communal tensions post 2014. Cattle slaughter is banned in most states of India. Recently emerged cow vigilante groups, claiming to be protecting cattle, have been violent leading to a number of deaths. Cow-protection groups see themselves as preventing cattle theft and smuggling, protecting the cow or upholding the law in an Indian state which bans cow slaughter. According to a Reuters report, a total of 63 cow vigilante attacks had occurred in India between 2010 and mid 2017, most after Prime Minister Narendra Modi came to power in 2014. In these attacks between 2010 and June 2017, "28 Indians – 24 of them Muslims – were killed and 124 injured", states the Reuter's report.
There has been a rise in the number of incidents of cow vigilantism since the election of a Bharatiya Janata Party (BJP) majority in the Parliament of India in 2014. The frequency and severity of cow vigilante violence has been described as "unprecedented". Human Rights Watch has reported that there has been a surge in cow vigilante violence since 2015. The surge is attributed to the recent rise in Hindu nationalism in India. Many vigilante groups say they feel "empowered" by the victory of the Hindu nationalist BJP in the 2014 election. The Supreme Court of India in September 2017 ruled that each state should appoint a police officer in each district to take strict action against cow vigilantism. The court also expressed its concerns that animals were being illegally slaughtered such as the case of 200 slaughtered cattle found floating in a Bihar river.
Background and history
The BJP has run the Indian central government since its election victory in 2014. Following Narendra Modi's rise to power, extremist Hindu groups have led attacks across the country that have targeted Muslim and Dalit communities. These attacks have been carried out with the stated intention of protecting cows. Dalit groups are particularly vulnerable to such attacks, as they are frequently responsible for disposing cattle carcasses and skins. The perpetrators of these attacks, described as "vigilantism" by Human Rights Watch, have stated that they are protecting the rights of Hindus, and that the police do not adequately deal with cow slaughter. Scholar Radha Sarkar has argued that "cow vigilantism itself is not new in India, and violence over the protection of cows has occurred in the past. However, the frequency, impunity, and flagrance of the current instances of cow-related violence are unprecedented." In 2015 Business Insider reported that vigilante attacks on trucks carrying cattle had increased in Maharastra. In 2017, Bloomberg reported that according to the meat industry representatives, cow vigilantes have been stopping vehicles, extorting money and stealing valuable livestock. Cow vigilante activity also increased during the run up to 2015 Bihar Legislative Assembly election. BJP leader Sushil Kumar Modi said the election was "a fight between those who eat beef and those who are against cow slaughter". The Economist argued in 2016 that cow vigilantism can sometimes be a profitable business. It pointed to an Indian Express investigation that found that vigilantes in Punjab charge cattle transporters 200 rupees ($3) per cow in exchange for not harassing their trucks.
Analysing the reasons for the vigilantism, academic Christophe Jaffrelot has said that the RSS is attempting to transform society from within through a sense of discipline which it believes is needed for defending Hindus more effectively. He also has stated that the Hindu nationalists do not want the state to prevail over the society, and want the society to regulate itself, with an importance on social order and hierarchy, that is part of Hindutva ideology. According to him, this Hindu nationalist approach gives the act of policing a greater legitimacy and it is clearly synonymous with the populist behaviour, since for the populist leader, the people and their will prevail over the law and institutions. Jaffrelot further remarks:"The fact that the vigilantes "do the job" is very convenient for the rulers. The state is not guilty of violence since this violence is allegedly spontaneous and if the followers of Hinduism are taking the law into their hands, it is for a good reason—for defending their religion. The moral and political economies of this arrangement are even more sophisticated: The state cannot harass the minorities openly, but by letting vigilantes do so, it keeps majoritarian feelings satisfied. The private armies, which may be useful for polarising society before elections are also kept happy—not only can they flex their muscles, but they usually extort money (violence mostly occurs when they cannot do so, as is evident from the recent cases of lynching)."
Groups
As of 2016, cow protection movement groups were estimated to have sprung up in "hundreds, perhaps thousands" of towns and villages in northern India. There were an estimated 200 such groups in Delhi-National Capital Region alone. Some of the larger groups claim to have up to 5,000 members.
One kind of cow protection groups are gangs who patrol highways and roads at night, looking for trucks that might be "smuggling" cows across the state borders. These gangs are sometimes armed; they justify this by claiming that cow smugglers themselves are also often armed. The Haryana branch of Bhartiya Gau Raksha Dal described to The Guardian that it had exchanged gunfire with alleged smugglers, killed several of them and lost several of its members too. The gangs have been described as "unorganized", and gang leaders admit that their members can be hard to control.
The gangs consist of volunteers, many of whom are poor laborers. The volunteers often tend to be young. According to a gang leader, "it's easy to motivate a youth". Often the youth are given "emotional" motivation by being shown graphic videos of animals being tortured. One member said that cow vigilantism had given him a "purpose in life".
The vigilantes often have a network of informers consisting of cobblers, rickshaw drivers, vegetable vendors etc., who alert them to supposed incidents of cow slaughter. The group members and their network often use social media to circulate information. Their relationship with the police is disputed; some vigilantes claim to work with the police, while others claim that the police are corrupt and incompetent, and that they are forced to take matters into their own hands.
Laws, state support, and legal issues
The BJP government have introduced some restrictions on the slaughter of cattle. The slaughter of cattle for export was banned in May 2017. This restriction threatened an Indian beef export industry worth $4 billion annually. Several Indian states further restricted the slaughter of cows. For example, Maharashtra passed stricter legislation banning the possession, sale, and consumption of beef in March 2015. Cow vigilantes have also been emboldened by these laws, and attack Muslims suspected of smuggling cattle for slaughter.
Some Indian states have been accused of having laws that enable cow protection groups. In April 2017 the governments of six states: Rajasthan, Maharashtra, Gujarat, Jharkhand, Karnataka, and Uttar Pradesh were asked by the Supreme Court to answer a request to ban cow-protection related vigilantism. Many vigilantes believe their actions are approved by the government and Hindus of the country. For example, the vigilante group "Gau Rakshak Dal", formed in Haryana in 2012, believes it is acting on government mandate. Scholar Radha Sarkar has stated that the bans on beef "tacitly legitimize vigilante activity." Cow protection groups formed in Haryana in 2012 see themselves to now be "acting upon the mandate of the government." Such groups across the country have "[taken] it upon themselves to punish those they believe to be harming the cow." Such incidents of violence have occurred even in situations in which no illegal actions have occurred, such as in the handling of dead cattle. According to Sarkar, cow protection groups have taken actions that they know to be illegal, because they believe that they have the support of the government.
In November 2016, the BJP-led Haryana government said it would provide ID cards for cow vigilantes. They were not issued after the government collected many vigilantes' details. According to Human Rights Watch, many cow protection vigilante groups are allied with the BJP. According to BBC News, many cow-protection vigilantes attend training camps organized by Rashtriya Swayamsevak Sangh, which is the BJP's parent organization. Mukul Kesavan, in The Telegraph, accused BJP officials of justifying vigilantism. He pointed out that after some vigilante attacks, the BJP officials attempted to convince the police to charge the victims (or their family) for provoking the assault.
In 2018, a three judge panel of the Supreme Court made observations that such incidents of vigilantism was mob violence and a crime. In addition, it placed the responsibility to prevent such crimes on the states.
Incidents
A number of incidents of violence have occurred. According to a June 2017 Reuters report, citing a data journalism website, a total of "28 Indians – 24 of them Muslims – have been killed and 124 injured since 2010 in cow-related violence". The frequency and severity of cow-related violence have been described as "unprecedented". The report stated that "Almost all of the 63 attacks since 2010 involving cow-related violence were recorded after Modi and his Hindu nationalist government came to power in 2014".
Before 1800s
Cow slaughter has been punishable by death in many instances in Indian history. Under the Scindia of Gwalior state and the Sikh Empire, people were executed for killing cows.
The "Holi Riot" of 1714 in Gujarat was in part cow-related. A Hindu had attempted to start the spring festivities of Holi by burning a public Holika bonfire, a celebration that his Muslim neighbors objected to. The Muslims retaliated by slaughtering a cow in front of Hindu's house. The Hindus gathered, attacked the Muslims, seized the Muslim butcher's son and killed him. The Muslims, aided by the Afghan army, sacked the neighborhood, which led Hindus across the city to retaliate. Markets and homes were burnt down. Many Hindus and Muslims died during the Holi riot. The cycle of violence continued for a few days devastating the neighborhoods in Ahmedabad. The cow-related violence and riots repeated in the years that followed, though the only documented 18th-century riots in Ahmedabad are of 1714.
1800s
According to Mark Doyle, the first cow protection societies on the Indian subcontinent were started by Kukas of Sikhism, a reformist group seeking to purify Sikhism. The Sikh Kukas or Namdharis were agitating for cow protection after the British annexed Punjab. In 1871, states Peter van der Veer, Sikhs killed Muslim butchers of cows in Amritsar and Ludhiana, and viewed cow protection as a "sign of the moral quality of the state". According to Barbara Metcalf and Thomas Metcalf, Sikhs were agitating for the well-being of cows in the 1860s, and their ideas spread to Hindu reform movements.
According to Judith Walsh, widespread cow protection riots occurred repeatedly in British India in the 1880s and 1890s. These were observed in regions of Punjab, United Provinces, Bihar, Bengal, Bombay Presidency and in parts of South Myanmar (Rangoon). The anti-Cow Killing riots of 1893 in Punjab caused the death of at least 100 people. The 1893 cow killing riots started during the Muslim festival of Bakr-Id, the riot repeated in 1894, and they were the largest riots in British India after the 1857 revolt.
Riots triggered by cow-killings erupted in Lahore, Ambala, Delhi, United Provinces, Bihar and other places in the late 19th century. In Bombay alone, several hundred people were killed or injured in cow-related violence in 1893, according to Hardy. One of the issues, states Walsh, in these riots was "the Muslim slaughter of cows for meat, particularly as part of religious festivals such as Bakr-Id". The cow protection-related violence were a part of larger communal riots, religious disputes, and class conflicts during the colonial era.
Elsewhere, in 1893 there were riots in Azamgarh and Mau, in eastern Uttar Pradesh. The Azamgarh riots were born out of administrative disputes regarding cow slaughter. Reportedly an inexperienced British officer (Henry Dupernex) ordered Muslims to register with the police, if they wished to slaughter cows for Eid al-Adha. Many of the Muslims interpreted the order as an invitation to sacrifice.
In the town of Mau, there were riots in 1806, states John McLane, that had led to Sadar Nizamat Adawlat to prohibit cow sacrifices in 1808. The Hindus had interpreted this to mean a prohibition to all cattle slaughter. In early 19th-century the prohibition was enforced in a manner Hindu interpreted it. In the 1860s, the interpretation changed to Muslim version wherein cattle sacrifice was banned in 1808, but not cattle slaughter. This, states McLane, triggered intense dissatisfaction among Hindus. Mau, with nearly half of its population being Muslim, resisted Hindu interpretation. When a "local Muslim zamindar (landowner) insisted on sacrificing an animal for his daughter's wedding", a group of local Hindus gathered to object, according to McLane. Four thousand men from Ballia district and two thousand from Ghazipur district joined the Hindus in Mau to stop the sacrifice in 1893. They were apparently motivated by the belief that cows had not been killed in Mau since Akbar's time, but the British were now changing the rules to allow cow killing in new locations. The cow-protecting Hindus attacked the Muslims and looted a bazaar in Mau. The British officials estimated seven Muslims were killed in the riots, while locals placed the toll at 200.
1900–1947
Cattle protection-related violence continued in the first half of the 20th century. Examples of serious cow protection agitation and riots include the 1909 Calcutta riot after Muslims sacrificed a cow in public, the 1912 Faizabad riots after a Maulvi taunted a group of Hindus about a cow he was with, the 1911 Muzaffarpur riot when in retribution for cow slaughter by Muslims, the Hindus threatened to desecrate a mosque. In 1916 and 1917, over the Muslim festival of Eid-ul-Adha, two riots broke out in Patna with widespread rioting, looting and murders in major cities of Bihar. The British officials banned cow slaughter during Muslim Id festival of sacrifice. According to British colonial records, Hindu crowds as large as 25,000 attacked Muslims on Id day, violence broke out at multiple sites simultaneously, and civil authorities were unable to cope with. Many serious anti cow slaughter and cow protection-related riots broke out between 1917 and 1928 across India particularly on Muslim festival of sacrifice, from Punjab through Delhi to Orissa, leading to the arrests of hundreds.
In the 1920s, over 100 riots, 450 deaths and 5,000 injuries were recorded in Bengal which was divided in 1947 into East Pakistan and West Bengal. Two primary causes of the violence, states Nitish Sengupta, were Hindus Durga Puja processions playing music which continued as they passed near Muslim mosques, and Muslims killing cows in open during Eid-ul-Adha.
In 1946, rumors spread in Bengal that Hindus had secretly conspired to stop cow sacrifice on Eid-ul-Adha by bringing in Sikhs and arms into their homes. On the day of Islamic festival of sacrifice (September 1946), states Batabyal, the rumor spread among the Bengali Muslims congregated in mosques. The crowd coming out of the mosques then raided a large number of Hindu homes trying to find the arms and the Sikhs. Violence continued for about a week with "frequent instances of stray killings" and looting.
1947–2011
After the 1947 Partition of the Indian subcontinent into Pakistan and India, frequent riots and fatal violence broke in newly created India over cow slaughter. Between 1948 and 1951, cow slaughter led to a spate of riots broke out in Azamgarh, Akola, Pilbhit, Katni, Nagpur, Aligarh, Dhubri, Delhi and Calcutta. Riots triggered by slaughter of cows continued in rural and urban locations of India in the 1950s and 1960s. According to Ian Copland and other scholars, it was the practical stop of cow sacrifice ritual as Islamic festivals after 1947 that largely led to a reduction in riots from the peak observed just before India's independence. The riots, the add, re-emerged in the 1960s, when a new generation of Muslims born after the independence reached adolescence, who were less aware of the trauma of religious violence in India of the 1940s, began to assert their rights.
In 1966, 100 members of Indian parliament signed a petition for a nationwide ban on cow slaughter. Hindu sadhus (monks) gathered in Delhi to protest against cow slaughter, launched go-raksha (cow protection) agitation and demanded a ban. During a huge procession that was walking towards the parliament to press their demand, before they could reach the parliament, some people began a disturbance and rioting started. These riots killed eight people. Indira Gandhi, the newly nominated Prime Minister, continued her father's policy of no national ban on cow slaughter.
In 2002, five Dalit youths were killed by a mob in Jhajjar district, Haryana after accusations of cow slaughter. The mob were reportedly led by members of the Vishva Hindu Parishad, according to Human Rights Watch. According to People's Union for Democratic Rights, the Vishva Hindu Parishad and the Gauraksha Samiti have defended violent vigilantism around cow protection as sentiments against the "sin of cow-slaughter" and not related to "the social identity of the victims". Various groups, such as the families of the Dalits victims of cow-related violence in 2002, did not question the legitimacy of cow protection but questioned instead the false allegations.
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2023
Statistics
Responses
After an attack on four Dalits in Gujarat in July 2016, thousands of members of the Dalit community took to the streets to protest what they saw was "government inaction". The protests spread across the state. In clashes with the police, one policeman was killed and dozens of protesters were arrested. At least five Dalit youth attempted suicide, one of whom died.
A campaign, Not In My Name was conducted by film-maker Saba Dewan through a Facebook post against the violence. Many people protested at Jantar Mantar in Delhi and more 16 cities across the country, including Mumbai, against forming lynch mobs in the name of cow vigilantism.
Post 2014, the Documentation of the Oppressed (DOTO Database), an independent, non-profit documentation center, have created an online platform that compiles the instances of violence, with particular emphasis on marginalized groups and issues. The database aims to provide a repository of the instances of hate violence and giving a wholesome narrative of the same; providing reports that add and supplement media provided information, done for the purpose of aiding in intervention i.e., by advocacy or litigation. DOTO aims to tackle the issue with a right and community-based approach to increase all round vigilance on the issues.
The international organization Human Rights Watch in April 2017 reported that Indian authorities should promptly investigate and take action against the self-appointed "cow protectors", many linked to extremist Hindu groups, who have carried out attacks against Muslims and Dalits over rumors of selling, buying or killing of cows for beef.
Members of the BJP have denied supporting cow slaughter vigilantism. In May 2017, Union Minister and BJP leader Smriti Irani said that the BJP does not support cow protection vigilantes. An editorial in The New York Times stated that BJP is partly to blame, as they have stoked inflammatory rhetoric over cow slaughter. Siddharth Nath Singh has denied allegations that the BJP administration condones vigilantism and said that illegal attacks would be punished.
In August 2016, India's Prime Minister Narendra Modi expressed his displeasure at rising incidences of cow vigilantism and condemned the practice. Several observers such as Prem Shankar Jha and Zafarul Islam Khan remarked that Modi has selectively condemned vigilante attacks on Dalits but not on Muslims, since while condemning this vigilantism, Modi did not specifically mention 'Muslims', who have been the major victims of the vigilante violence, despite mentioning 'Dalits'.
Media
The documentary The Hour of Lynching is centred on the attack and murder of dairy farmer Rakbar Khan in July 2018.
See also
Cattle slaughter in India
Cattle theft in India
Saffron terror
Hindutva
Hate crime
References
Further reading
Vigilantism
Religiously motivated violence in India
Hinduism-related controversies
Hinduism and cattle
Hinduism-motivated violence in India |
```objective-c
/* author : admin
* date : 2015.01.15
* description :
*/
#ifndef ISRV_MSG_COMM_H
#define ISRV_MSG_COMM_H
#include "base/CCfg.h"
using namespace NCommon;
namespace NMsgComm
{
//
class ISrvMsgComm
{
public:
virtual ~ISrvMsgComm() {};
public:
//
virtual int init() = 0;
virtual void unInit() = 0;
virtual CCfg* getCfg() = 0;
virtual void reLoadCfg() = 0;
public:
// ID
virtual const char* getSrvName() = 0;
virtual unsigned int getSrvId(const char* srvName) = 0;
public:
//
virtual int send(const unsigned int srvId, const char* data, const unsigned int len) = 0;
virtual int recv(char* data, unsigned int& len) = 0;
public:
//
virtual int beginRecv(char*& data, int& len, void*& cb) = 0;
virtual void endRecv(const char* data, const int len, void* cb) = 0;
};
// &ISrvMsgComm
// srvMsgCommCfgFile :
// srvName :
ISrvMsgComm* createSrvMsgComm(const char* srvMsgCommCfgFile, const char* srvName);
void destroySrvMsgComm(ISrvMsgComm*& instance);
}
#endif // ISRV_MSG_COMM_H
``` |
Scenes of Malaysian Life (also known as Lat & Easy from 2002 to 2014) is a comic strip series by Malaysian cartoonist, Mohammad Nor Khalid, better known as Lat and published in the Malaysian English-language daily newspaper, the New Straits Times. The comic strip, which ran for 40 years, from 1974 to 2014, illustrated the common way of life of the multicultural Malaysia. Some of his cartoons in the series also compiled in his comic books.
Background
In 1973, Lat, who was then a crime reporter at the New Straits Times, submitted his comic strip for the Hong Kong-based Asia Magazine with the traditional life culture as the main subject where he drews a cartoon and provide the dialogues about a traditional Malay Muslim ritual, the circumcision. It drews attention from the-then New Straits Times editor-in-chief, Lee Siew Yee, who later offered him a permanent column cartoonist role in the newspaper. Lat then taking that position specially created for him by the newspaper's then editor, Abdul Samad Ismail. This gave birth to the Scenes of Malaysian Life comic strip where his first job is to highlighted the daily lives of Malaysian multiracial culture and current affairs. He described it as a "something very innovative at the time".
The first cartoon that Lat drew in the series is the "Perak Wedding", which was published in March 1974. After returned to Malaysia from his 4-month study at the St Martin's School of Art in London, Lat changed the format of Scenes of Malaysian Life into an editorial cartoon series. In 1984, partly from a desire to step away from the public limelight, Lat resigned from the New Straits Times to become a freelancer, but continued to draw Scenes of Malaysian Life for the newspaper. In 1995, Scenes of Malaysian Life absent briefly from the New Straits Times as Lat decided to take a sabbatical for a year. The series resumed publication the following year until it finally ended in 2014.
Reception
The comic strip was well-received and propelled Lat's work to a greater heights. In the 2000s, the series ran three times per week in the New Straits Times.
Ilham Gallery describe the series as "a truly Malaysian narrative and perfectly pictured the life of a nation".
References
Bibliography
Interviews/self-introspectives
News sources
Books
Academic sources
Journalistic sources
Online sites
External links
Malaysian comics titles
Malaysian comics
1974 comics debuts
2014 comics endings |
Nirmon is a Goan Konkani film produced in 1966. It was directed by A. Salam and produced by Frank Fernand. The film features C. Alvares, Shalini, Anthony D’Sa, Ophelia, Souza Ferrao, Antonette and Jacinto Vaz.
Cast and crew
Nirmonn was Frank Fernand's second production. It had story and direction of A. Salam and music by Frank Fernand himself, dialogues by C. Alvares, screenplay and editing by R. V. Shirkhande. The film stars Shalini Mardolkar, C. Alvares, Anthony D'Sa, Jacint Vaz, Antonette Mendes, Ophelia, Jack Souza Ferrao and J. P. Souzalin.
Inspiration
Nirmonn is based on Lord Tennyson's character from the 1864 poem Enoch Arden.
Remake
In 1967, it was remade into the Bollywood movie Taqdeer, in which Shalini Mardolkar acted the lead role as in the original film. Taqdeer, produced by Rajshri Productions was dubbed into seven other languages. The Hindi film was also directed by A. Salam.
Awards
The film won two National Awards at the hands of India’s then Prime Minister Indira Gandhi. C. Alvares (Celestino Alvares), known as the "King of Duets" received the award for best actor in the Konkani film Nirmon. This film had a powerful story and won the Certificate of Merit for regional films at the 13th National Film Awards, the first of its kind for Konkani.
Music
The songs of Nirmon have also become immortal. The music was released on Angel Records under EMI of The Gramophone Company of India, and also manufactured and distributed by The Gramophone Company.
References
External links
1966 films
Films based on Enoch Arden
1960s Konkani-language films |
```c
/**
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "stdlib/stats/base/dsmeanpn.h"
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <time.h>
#include <sys/time.h>
#define NAME "dsmeanpn"
#define ITERATIONS 1000000
#define REPEATS 3
#define MIN 1
#define MAX 6
/**
* Prints the TAP version.
*/
static void print_version( void ) {
printf( "TAP version 13\n" );
}
/**
* Prints the TAP summary.
*
* @param total total number of tests
* @param passing total number of passing tests
*/
static void print_summary( int total, int passing ) {
printf( "#\n" );
printf( "1..%d\n", total ); // TAP plan
printf( "# total %d\n", total );
printf( "# pass %d\n", passing );
printf( "#\n" );
printf( "# ok\n" );
}
/**
* Prints benchmarks results.
*
* @param iterations number of iterations
* @param elapsed elapsed time in seconds
*/
static void print_results( int iterations, double elapsed ) {
double rate = (double)iterations / elapsed;
printf( " ---\n" );
printf( " iterations: %d\n", iterations );
printf( " elapsed: %0.9f\n", elapsed );
printf( " rate: %0.9f\n", rate );
printf( " ...\n" );
}
/**
* Returns a clock time.
*
* @return clock time
*/
static double tic( void ) {
struct timeval now;
gettimeofday( &now, NULL );
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
}
/**
* Generates a random number on the interval [0,1).
*
* @return random number
*/
static float rand_float( void ) {
int r = rand();
return (float)r / ( (float)RAND_MAX + 1.0f );
}
/**
* Runs a benchmark.
*
* @param iterations number of iterations
* @param len array length
* @return elapsed time in seconds
*/
static double benchmark( int iterations, int len ) {
double elapsed;
float x[ len ];
double v;
double t;
int i;
for ( i = 0; i < len; i++ ) {
x[ i ] = ( rand_float()*20000.0f ) - 10000.0f;
}
v = 0.0;
t = tic();
for ( i = 0; i < iterations; i++ ) {
v = stdlib_strided_dsmeanpn( len, x, 1 );
if ( v != v ) {
printf( "should not return NaN\n" );
break;
}
}
elapsed = tic() - t;
if ( v != v ) {
printf( "should not return NaN\n" );
}
return elapsed;
}
/**
* Main execution sequence.
*/
int main( void ) {
double elapsed;
int count;
int iter;
int len;
int i;
int j;
// Use the current time to seed the random number generator:
srand( time( NULL ) );
print_version();
count = 0;
for ( i = MIN; i <= MAX; i++ ) {
len = pow( 10, i );
iter = ITERATIONS / pow( 10, i-1 );
for ( j = 0; j < REPEATS; j++ ) {
count += 1;
printf( "# c::%s:len=%d\n", NAME, len );
elapsed = benchmark( iter, len );
print_results( iter, elapsed );
printf( "ok %d benchmark finished\n", count );
}
}
print_summary( count, count );
}
``` |
Driven by fresh-market use, the consumption of spinach (Spinacia oleracea) has been on the rise in the United States. Per capita use of fresh-market spinach averaged during 2004–06, the highest since the mid-1940s. The fresh market now accounts for about three-fourths of all US spinach consumed. Much of the growth over the past decade has been due to sales of triple-washed, cello-packed spinach and, more recently, baby spinach. These packaged products have been one of the fastest-growing segments of the packaged salad industry.
Production
The United States is the world’s second-largest producer of spinach, with 3% of world output, following China (PRC), which accounts for 85% of output.
California (73% of 2004–06 U.S. output), Arizona (12%), and New Jersey (3%) are the top producing states, with 12 other states reporting production of at least 100 acres (2002 census). Over the 2004–06 period, U.S. growers produced an average of 867 million pounds of spinach for all uses, with about three-fourths sold into the fresh market (includes fresh-cut/processed). According to the 2002 Census of Agriculture, spinach was grown on 1,109 U.S. farms—down 17% from 1997, but about the same number as in 1987.
The farm value of U.S. spinach crops (fresh and processed) averaged $175 million during 2004–06, with fresh-market spinach accounting for 94%. The value of fresh-market spinach has more than doubled over the past decade as stronger demand has boosted production, while inflation-adjusted prices largely remained constant. California accounts for about three-fourths of the value of both the fresh and processing spinach crops.
Consumption
Like other cool-season leafy crops, most (about 96%) of the fresh spinach consumed in the United States is produced domestically. Although rising, imports (largely from Mexico) totaled about 23 million pounds in 2004–06, compared with 3 million pounds in 1994–06. During the last 10 years, exports (largely to Canada) have jumped 70 percent to 47 million pounds (2004–06), with much of the growth occurring earlier this decade.
Per capita spinach consumption is greatest in the Northeast and Western US. About 80% of fresh-market spinach is purchased at retail and consumed at home, while 91% of processed spinach is consumed at home. Per capita spinach use is strongest among Asians, highest among women 40 and older, and weakest among teenage girls.
Food poisoning outbreaks
E. coli, 2006
In September 2006, an outbreak of disease caused by the E. coli strain O157:H7 occurred in 21 US states. Over 100 cases were reported, including five deaths. The E. coli was linked to bags of fresh organic spinach, after which the FDA issued a warning not to eat uncooked fresh spinach or products containing it. The U.S. Food and Drug Administration (FDA) issued a press release updating the available information. According to the FDA release on 2006-10-4, 192 cases of E. coli O157:H7 infection have been reported to the Centers for Disease Control and Prevention, including 30 cases of hemolytic uremic syndrome; there was one death and 98 hospitalizations. The infection affected 26 states. By early 2007, there were 206 illnesses and three deaths attributed to E. coli-tainted spinach.
Based on epidemiological and laboratory evidence, the FDA determined the implicated spinach originated from an organic spinach field grown by Mission Organics and processed by Natural Selection Foods LLC of San Juan Bautista, California. The FDA speculated the spinach had been tainted by irrigation water contaminated with pig feces because feral pigs were seen in the vicinity of the implicated ranch.
Salmonella, 2007
On August 30, 2007, 8,000 cartons of spinach (from Metz Fresh, a King City-based grower and shipper, Salinas Valley, California) were recalled after Salmonella was discovered upon routine testing. Consumer advocates and some lawmakers complained it exposed significant gaps in food safety, even if 90% of suspect vegetables did not reach the shelves.
See also
Agriculture in the United States
Popeye the Sailor Man, a fictional cartoon character created by the American cartoonist Elzie Crisler Segar
Stockton Cannery Strike of 1937, known as the Spinach Riot
References
External links
Fresh-Market Spinach: Background Information and Statistics USDA 2007
Factors Affecting Spinach Consumption in the United States USDA 2004
US import/export data
Agriculture in the United States
Food and drink in the United States
Agricultural production in the United States
Spinach |
Little Box of Horrors is a box set released by North Carolina horror punk band Frankenstein Drag Queens from Planet 13 on May 9, 2006, on Restless Records in the USA and People Like You Records in Europe on May 29, 2006. However, the Europe version feature different artwork, and comes with an exclusive keychain, poster, and 26-page booklet, in a limited edition of 2666 and the first time The Late, Late, Late Show was reissued by People Like You.
The American box art for the box set was drawn by Eric Pigors.
The box set contains all four full-length releases by the band, all with their original artwork (American version). It also contains a fifth disc, entitled Rare Treats, which features demo versions of many songs, as well as other rare songs by the band. The American release is accompanied by a DVD, entitled The Transvestite Chainsaw Massacre: Live '98, which features footage of 9 songs performed live at Ground Zero, in Spartanburg, South Carolina, in 1998.
Track listing
Disc One
See The Late, Late, Late Show
Disc Two
See Night of the Living Drag Queens
Disc Three
See Songs from the Recently Deceased
Disc Four
See Viva Las Violence
Disc Five: Rare Treats
"Bride of Frankenstein" ('97 demo version)
"Whoop D God Damn Da Doo" ('97 demo version)
"Snotty Nose" ('97 demo version)
"Break Her Teeth" ('97 demo version)
"Natalie (You're Really Not That Cool)" ('97 demo version)
"Hello Hooray" ('97 demo version) (originally performed by Alice Cooper)
"Nobody" (acoustic radio performance, 1997)
"Hit and Rape" (acoustic radio performance, 1997)
"Kill Miss America" (acoustic radio performance, 1997)
"197666" (acoustic radio performance, 1997)
"Graverobbing USA"
"Rock N Roll"
"197666"
"Fox on the Run" (originally performed by Sweet)
"Anti-You"
"Dawn of the Dead"
"Levity Ball" (originally performed by Alice Cooper)
"I Wanna Be Your Dog" (originally performed by The Stooges)
"Shoot to Thrill" (originally performed by AC/DC)
"Love at First Fright"
"I Wanna Rot" (with alternative lyrics)
DVD: The Transvestite Chainsaw Massacre (USA only)
"Motel Killafornia"
"Mr. Motherfucker"
"Kill Miss America"
"Let's Go to War"
"Scary Song"
"Graverobbing USA"
"Twist My Sister"
"STDs"
"Going to Hell"
The band line-up at the time of the concert filmed for this DVD was as follows:
Wednesday 13: vocals, lead guitar
Seaweed: bass, vocals
Sicko Zero: drums
Sydney: rhythm guitar, vocals
Frankenstein Drag Queens from Planet 13 albums
2006 compilation albums
2006 live albums
Live video albums
2006 video albums
Horror punk compilation albums |
Esclarmonde is an 1889 French opera by Jules Massenet.
Esclarmonde may also refer to :
Esclarmonde of Foix (1151–1215), lady of L'Isle-Jourdain and prominent figure in Catharism in France
Esclaramunda of Foix (1255–1315), Queen consort of Majorca island, grand niece of the first one
Esclarmonde de Foix, daughter of Roger-Bernard II, Count of Foix
Esclarmonde de Babylone, a fictional character of the 13th-century French epic Huon of Bordeaux |
Hypotia difformis is a species of snout moth in the genus Hypotia. It was described by Mark I. Falkovitsh in 1976 and is known from Kyzyl Kum in Central Asia.
References
Moths described in 1976
Hypotiini |
```scss
@import 'colors';
@import 'layout';
.error-container {
text-align: center;
padding-top: 48px;
.error-container__message {
@if not $UIRefresh2022 {
width: 60%;
display: inline-block;
}
@if $UIRefresh2022 {
p:first-child {
color: $error-text;
}
p {
margin: 0;
}
}
}
.error-title {
font-weight: 400;
}
.error-subtitle {
margin-top: -10px;
}
.switch-account-button {
margin: 0 0 35px 0;
}
.switch-account-button-newui {
background-color: $button-normal;
color: $white;
font-size: 20px;
font-family: $baseFontFamily;
line-height: 24px;
font-weight: bold;
padding-left: 30px;
padding-right: 30px;
margin-top: 10px;
margin-bottom: 18px;
border: none;
text-transform: none;
cursor: pointer;
&:focus {
outline: auto;
}
}
}
.input-sheet {
.page-not-found {
font-size: 40px;
font-weight: 900;
margin-bottom: 20px;
}
.message p {
font-size: 25px;
}
}
.support {
margin-top: 20px;
p {
font-weight: 500;
font-size: 30px;
margin-bottom: 1px;
}
}
.support-link {
font-size: 26px;
padding: 20px;
span {
padding: 0 40px;
display: table-cell;
}
}
``` |
Karl Foster Dean (born September 20, 1955) is an American politician who served as the 6th Mayor of Nashville, Tennessee from 2007 to 2015. A member of the Democratic Party, he previously served as Nashville's Director of Law under Mayor Bill Purcell from 1999 to 2007. In 1990, 1994 and 1998, he was elected the city's public defender. Dean, an attorney by occupation, is currently an adjunct professor of law at Vanderbilt University Law School.
He graduated with a Bachelor of Arts degree from Columbia University in 1978 and a Juris Doctor from Vanderbilt University in 1981. His campaign message for Mayor of Nashville focused on improving education, public safety and economic development saying "it's all connected." During Dean's first year in office, he reworked the arrangement between Metro and the Nashville Predators in order to keep the team in Nashville. During Dean's first term, he faced two major challenges: the Great Recession and the 2010 Tennessee floods. During his two terms in office, Dean transformed Downtown Nashville by adding a new minor league baseball stadium, a riverfront amphitheater and park and a new convention center dubbed Music City Center. Dean was friendly towards business and often used tax incentives to lure companies to Nashville. He is also involved in conservationist efforts of historical areas such as Music Row through his involvement with Music Industry Coalition. He helped preserve historic sites such as RCA Studio A.
In 2017, Dean declared his candidacy for Governor of Tennessee in the 2018 election. In the first three months of the campaign, Dean raised $1.2 million and spent $200,000; he went on to win the Democratic nomination on August 2, 2018 and advanced to the general election. Dean lost the election to businessman Bill Lee.
Legal opinions as Metro Law Director
In March 2005, Karl Dean wrote that Mayor Bill Purcell could seek a third term, despite a 1994 referendum on "any elected office authorized or created by the [Metro] charter." This was because the 1963 charter states that there is a three-term limit for mayors, the 1994 amendment took place against a backdrop of a push for congressional term limits, and local public discussion focused on the Metro Council. In January 2003, he said a proposed law to ban job discrimination on the basis of sexual orientation was not unconstitutional.
When Metro Council members' health-care benefits came under scrutiny in September 2004, because the Metro Charter does not allow pension benefits for Council members, Dean said that a health-care benefit wouldn't legally fall under a pension benefit, and therefore wouldn't be against the Charter.
When asked if an amendment to the Metropolitan Charter requiring raises in the maximum property tax rates approved by the Metro Council to also be approved by Metro voters, Dean believed that a court was likely to find that provision of the Metro Charter invalid. He claimed this is because the Tennessee General Assembly has not authorized the charter of the consolidated government to restrict the authority of a legislative body to levy an ad valorem tax on property.
Mayor of Nashville
Elections
Dean announced his mayoral candidacy on December 19, 2006. His campaign message focused on improving education, public safety, and economic development saying "it's all connected." In the general election on August 2, 2007, he placed first with 24.6% of the vote. This advanced him to a run-off election against Bob Clement. On September 11, 2007 Dean won the run-off election with 52.2% of the vote.
Dean easily won re-election in August 2011 with 79.2% of the vote.
Dean left office on September 25, 2015. He was succeeded by Megan Barry, the first woman to be Mayor of Nashville.
Education policy
During Dean's two terms, the budget for Metro Nashville schools increased by $218 million (37 percent) and Nashville schools saw increased graduation rates, reduced dropout rates, and improved test scores. He created the Limitless Libraries program, which connects Nashville Public Libraries to Metro Nashville Schools, part of a greater push to enable opportunities for under-served schools in the city.
Dean also improved school choice by recruiting charter schools to the city and augmented teaching talent by partnering with Teach for America. As a part of this partnership, summer academies were created.
Economic development
Dean's tenure as Mayor marked sales taxes revenue increased by over $100 million (36 percent), indicative of the growth of Nashville as a major city. One of the marquee projects of Dean's mayoral career was overseeing the creation of Music City Center, a massive convention center that has generated over $735 million in revenue for the city. Other projects included the construction of Ascend Amphitheater and First Tennessee Park, public venues that bring in millions of dollars of revenue to the city and have been instrumental in the expansion of downtown Nashville. Finally, Dean incentivized businesses to relocate to Nashville, including Bridgestone Americas and HCA.
Great Recession
Dean led Nashville during the Great Recession. At that time, the city experiencing 7 years of GDP growth and an increase of $35 billion (45 percent) in that time. Nashville has had one of the most successful recoveries from the recession. By the end of Dean's mayoral term, Nashville had added the third highest percentage employment since its lowest point in the recession out of all cities in the US, adding over 144,300 jobs (19.3 percent employment growth).
Crime and safety
With public safety as one of Dean's primary campaign promises, Dean increased the size of the Nashville police force by 13.5 percent. In conjunction with this, Dean opened two new precincts to more equally distribute areas of coverage and started Nashville's first DNA crime lab. By 2013, Nashville had reached the lowest crime numbers and homicide rate in its history.
Environment
Dean's time as Mayor was accompanied by increased construction of greenway and bike paths around the city of Nashville. He added over 4,000 acres of park land and created the city's Office of Environment and Sustainability. As a result of his efforts, curbside recycling was expanded around the Metro area and the city moved in a more green direction.
2018 gubernatorial campaign
On February 26, 2017, Dean announced he would run for Governor of Tennessee in the 2018 election as a Democrat. He cast himself as a pro-business moderate running on a message of education, jobs, and healthcare in Tennessee.
In the first three months of the campaign, Dean raised $1.2 million and spent $200,000, making him the third most funded candidate for governor behind Republicans Randy Boyd & Bill Lee.
Dean easily won the primary election over long-time state representative Craig Fitzhugh, earning over 75% of the primary vote.
In the general election, Dean was defeated handily by Bill Lee, a native Tennessean who inherited his father's plumbing and contracting business and won victory as a first-time candidate who has never held elective office.
Lee defeated Dean in the November 6 general election, receiving 1,336,106 votes (59.5%) to Dean's 864,863 votes (38.5%).
Personal life
Dean has been married to Anne Davis, a prominent Tennessee lawyer, since August 6, 1983. Anne Davis is a relative of Joe C. Davis Jr. and Rascoe Davis and is a proprietor of the Joe C. Davis Foundation in Nashville. Both Anne and Karl are Catholic. Dean and his wife have three children, Roscoe, Frances, and Wallen.
Dean was born in Sioux Falls, South Dakota, was raised primarily in Gardner, Massachusetts, and graduated from Gardner High School in 1974.
References
External links
Karl Dean for Governor - campaign website
|-
1955 births
20th-century American lawyers
21st-century American politicians
20th-century Roman Catholics
21st-century Roman Catholics
Catholics from South Dakota
Columbia College (New York) alumni
Heads of county government in Tennessee
Living people
People from Gardner, Massachusetts
Mayors of Nashville, Tennessee
People from Sioux Falls, South Dakota
Public defenders
Tennessee Democrats
Vanderbilt University Law School alumni
Candidates in the 2018 United States elections
Vanderbilt University Law School faculty |
The Siachen Muztagh is a remote subrange of the eastern Karakoram Range. Close to 60% is in area controlled by China, 40% in area controlled by India. Pakistan claims the Indian-controlled portion as part of the Siachen Conflict. India claims the Chinese-controlled portion. India administers its portion as part of the Union Territory of Ladakh. China administers its portion as part of Xinjiang province.
All available maps and atlases (including a detailed delineation of the Siachen Muztagh's limits on the 1990 Swiss Foundation for Alpine Research "Karakoram Sheet 2" map) define the range as between the Shaksgam River on the north, the Urdok Glacier on the northwest (Urdok in Uyghur meaning duck), the Siachen Glacier on the southwest, the Teram Shehr Glacier and Rimo Glacier, and Indira Col on the south, and the uppermost Yarkand River on the east.
Its highest peak is Teram Kangri I, 7,462 metres (24,482 feet).
Selected peaks of the Siachen Muztagh
The following is a table of the peaks in the Siachen Muztagh which are over 7,200 meters (23,622 feet) in elevation and have over 500 meters (1,524 feet) of topographic prominence.
(This is a common criterion for peaks of this stature to be independent.)
References
External links
Blankonthemap The Northern Kashmir WebSite
Mountain ranges of the Karakoram
Mountain ranges of Xinjiang
Mountain ranges of India
Landforms of Jammu and Kashmir |
Michael Chasen is an American businessman. He is a co-founder and former CEO of Blackboard Inc., a position he held from 1999 to 2012. In April 2013, Chasen co-founded SocialRadar, a technology startup company developing a location-based social app. In 2020, he co-founded ClassEDU, the maker of Class For Zoom, which aims to improve the effectiveness of Zoom-based remote learning.
Early life
Michael Chasen grew up in Cheshire, Connecticut. He developed an interest in computers at age 10, and he began writing programs on his father's Radio Shack TRS Model III. He later used his skills to offer local businesses computer consulting while still in school. Also during high school, he was an active member of BBYO (B'nai B'rith Youth Organization).
Chasen attended American University and completed a degree in computer science in three years, graduating in 1993. While at American, Chasen worked part-time doing technology work for the FBI. He met future Blackboard co-founder Matthew Pittinsky in the American University dorms when Pittinsky wanted to borrow Chasen's laser printer.
Following his undergraduate degree, Chasen earned an MBA with a focus in accounting from Georgetown University's McDonough School of Business in 1995.
Career
Early career
While still at Georgetown, Chasen was inspired by the application process to multiple undergraduate and MBA programs to start Search and Apply Group, a company that offered a computer application allowing colleges to accept online applications. After hearing about Search and Apply Group, Greg Baroni, who was Matthew Pittinsky's manager at KPMG Peat Marwick (now KPMG Consulting), offered Chasen a job. In 1996, Chasen left law school after completing one year to join KPMG as a consultant in the Higher Education Group.
During their time at KPMG, Chasen and Pittinsky observed that colleges were investing in connecting classrooms and dormitories to the Internet, but there was a gap in the adoption of software to aid learning.
Chasen and Pittinsky left KPMG in 1997 to launch their e-learning business. In an oft-cited anecdote, Baroni allowed them to borrow their computers while they got themselves set-up, a situation that Chasen and Pittinsky used to then steal their office chairs.
Blackboard
Chasen and Pittinsky founded Blackboard LLC, a consulting company developing IMS (Instructional Management System) standards for elearning based on a contract from EDUCOM and the National Learning Infrastructure Initiative, in 1997. In 1998, the company merged with CourseInfo LLC, a software provider which had developed a platform for internet and networked learning, which they called a "Course Management System" platform. The combined company became known as Blackboard Inc.
Chasen became chief executive officer (CEO) of Blackboard in 1999, as one of the youngest CEOs of a publicly traded company when he orchestrated Blackboard's initial public offering in 2004.
By 2012 Blackboard had grown to more than 3,000 employees with 20,000 clients in over 65 countries, and earning $600 million in revenue, and Chasen announced he would be stepping down as the CEO of Blackboard. Jay Bhatt was named as his successor.
SocialRadar
In 2013, Chasen founded SocialRadar, a D.C.-based mobile startup focused on building a social location app for smartphones and Google Glass. He is the CEO of the new company.
In June 2013, it was reported that Chasen had secured $12.75 million in a first round of investments. SocialRadar's app was planned to enter beta testing in July 2013 and was initially developed for iPhone, followed by Android and Glass. On January 30, 2014, SocialRadar was released to the Apple AppStore.
Awards and recognition
Chasen was included in Forbes’ list of “America's 15 Most Powerful CEOs 40 And Under” and Washington SmartCEO named Chasen as its first CEO of the Year in 2006. Other recognition received by Chasen includes being named Ernst & Young's "Entrepreneur of the Year for Emerging Companies in Washington, D.C." and being honored as a "Young Innovator" by the Kilby Foundation. Chasen was listed by Washington Techway Magazine as one of D.C.'s "most-admired bosses" and was featured in Washington Business Forward's list of the Washington, D.C. area's "rising stars".
Investments
Chasen is an active angel investor. His portfolio includes Parchment, EverFi, and several others. After announcing his departure from Blackboard, it was reported that Chasen would be pursuing additional investment opportunities.
Personal life
Chasen lives in Bethesda, Maryland with his wife Randi and three children.
See also
History of virtual learning environments
References
External links
SocialRadar website
ClassEDU website
American technology chief executives
American University alumni
Angel investors
Living people
McDonough School of Business alumni
Businesspeople from Washington, D.C.
Businesspeople from Connecticut
Year of birth missing (living people)
People from Cheshire, Connecticut |
```javascript
/**
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
'use strict';
// MODULES //
var writeFile = require( 'fs' ).writeFileSync; // eslint-disable-line node/no-sync
// MAIN //
/**
* Synchronously writes data to a file.
*
* @param {(string|Buffer|integer)} file - file path or file descriptor
* @param {(string|Buffer)} data - data to write
* @param {(Object|string)} [options] - options
* @returns {(Error|null)} error object or null
*
* @example
* var err = writeFileSync( './beep/boop.txt', 'beep boop\n' );
* if ( err instanceof Error ) {
* throw err;
* }
*/
function writeFileSync( file, data, options ) {
try {
if ( arguments.length > 2 ) {
writeFile( file, data, options );
} else {
writeFile( file, data );
}
} catch ( err ) {
return err;
}
return null;
}
// EXPORTS //
module.exports = writeFileSync;
``` |
```go
//
//
// path_to_url
//
// or in the "license" file accompanying this file. This file is distributed
// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
//go:build darwin
// +build darwin
package network
import (
"crypto/x509"
"github.com/aws/amazon-ssm-agent/agent/appconfig"
)
func getSystemCertPool() (*x509.CertPool, error) {
return x509.SystemCertPool()
}
func getCustomCertificate(appConfig appconfig.SsmagentConfig) ([]byte, error) {
// Custom Certificates not supported on darwin
return nil, nil
}
``` |
The 1996 Colonial Athletic Association baseball tournament was held at Grainger Stadium in Kinston, North Carolina, from May 14 through 18. The event determined the champion of the Colonial Athletic Association for the 1996 season. Defending champion and top-seeded won the tournament for the third consecutive, and third overall, time and earned the CAA's automatic bid to the 1996 NCAA Division I baseball tournament.
Entering the event, East Carolina had won the most championships, with five. George Mason and had Old Dominion each won two, while Richmond had won once.
Format and seeding
The CAA's teams were seeded one to eight based on winning percentage from the conference's round robin regular season. They played a double-elimination tournament.
Bracket and results
Most Valuable Player
Ron Walker was named Tournament Most Valuable Player. Walker was a third baseman and pitcher for Old Dominion.
References
Tournament
Coastal Athletic Association baseball tournament
Colonial Athletic Association baseball tournament
Colonial Athletic Association baseball tournament
Baseball competitions in North Carolina
College sports in North Carolina
Tourist attractions in Lenoir County, North Carolina |
```go
//
//
// path_to_url
//
// Unless required by applicable law or agreed to in writing, software
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
package ldap
import (
"context"
"github.com/goharbor/harbor/src/common"
"github.com/goharbor/harbor/src/lib/config"
"github.com/goharbor/harbor/src/lib/config/models"
"github.com/goharbor/harbor/src/lib/log"
"github.com/goharbor/harbor/src/pkg/ldap"
"github.com/goharbor/harbor/src/pkg/ldap/model"
)
var (
// Ctl Global instance of the LDAP controller
Ctl = NewController()
)
// Controller define the operations related to LDAP
type Controller interface {
// Ping test the ldap config
Ping(ctx context.Context, cfg models.LdapConf) (bool, error)
// SearchUser search ldap user with name
SearchUser(ctx context.Context, username string) ([]model.User, error)
// ImportUser import ldap users to harbor
ImportUser(ctx context.Context, importUsers []string) ([]model.FailedImportUser, error)
// SearchGroup search ldap group by name or by dn
SearchGroup(ctx context.Context, groupName, groupDN string) ([]model.Group, error)
// Create ldap session with system config
Session(ctx context.Context) (*ldap.Session, error)
}
type controller struct {
mgr ldap.Manager
}
// NewController ...
func NewController() Controller {
return &controller{mgr: ldap.Mgr}
}
func (c *controller) Session(ctx context.Context) (*ldap.Session, error) {
cfg, groupCfg, err := c.ldapConfigs(ctx)
if err != nil {
return nil, err
}
return ldap.NewSession(*cfg, *groupCfg), nil
}
func (c *controller) Ping(ctx context.Context, cfg models.LdapConf) (bool, error) {
if len(cfg.SearchPassword) == 0 {
pwd, err := defaultPassword(ctx)
if err != nil {
return false, err
}
if len(pwd) == 0 {
return false, ldap.ErrEmptyPassword
}
cfg.SearchPassword = pwd
}
return c.mgr.Ping(ctx, cfg)
}
func (c *controller) ldapConfigs(ctx context.Context) (*models.LdapConf, *models.GroupConf, error) {
cfg, err := config.LDAPConf(ctx)
if err != nil {
return nil, nil, err
}
groupCfg, err := config.LDAPGroupConf(ctx)
if err != nil {
log.Warningf("failed to get the ldap group config, error %v", err)
groupCfg = &models.GroupConf{}
}
return cfg, groupCfg, nil
}
func (c *controller) SearchUser(ctx context.Context, username string) ([]model.User, error) {
cfg, groupCfg, err := c.ldapConfigs(ctx)
if err != nil {
return nil, err
}
return c.mgr.SearchUser(ctx, ldap.NewSession(*cfg, *groupCfg), username)
}
func defaultPassword(ctx context.Context) (string, error) {
mod, err := config.AuthMode(ctx)
if err != nil {
return "", err
}
if mod == common.LDAPAuth {
conf, err := config.LDAPConf(ctx)
if err != nil {
return "", err
}
if len(conf.SearchPassword) == 0 {
return "", ldap.ErrEmptyPassword
}
return conf.SearchPassword, nil
}
return "", ldap.ErrEmptyPassword
}
func (c *controller) ImportUser(ctx context.Context, ldapImportUsers []string) ([]model.FailedImportUser, error) {
cfg, groupCfg, err := c.ldapConfigs(ctx)
if err != nil {
return nil, err
}
return c.mgr.ImportUser(ctx, ldap.NewSession(*cfg, *groupCfg), ldapImportUsers)
}
func (c *controller) SearchGroup(ctx context.Context, groupName, groupDN string) ([]model.Group, error) {
cfg, groupCfg, err := c.ldapConfigs(ctx)
if err != nil {
return nil, err
}
return c.mgr.SearchGroup(ctx, ldap.NewSession(*cfg, *groupCfg), groupName, groupDN)
}
``` |
Los Gemelos Diablo, previously known as Los Gemelos Pantera, are a Mexican professional wrestling tag team consisting of twin brothers Gemelo Diablo I and Gemelo Diablo II (Spanish for "Devil Twin I" and "Devil Twin II"; born May 23, 1999), previously known by their ring names as Gemelo Pantera I and Gemelo Pantera II respectively. They current work for the Mexican professional wrestling promotion Consejo Mundial de Lucha Libre (CMLL), portraying rudo ("Bad guy") wrestling characters. Their real names are not a matter of public record, as is often the case with masked wrestlers in Mexico, where their private lives are kept a secret from the wrestling fans.
Professional wrestling career
Personal lives
The wrestlers known as "Gemelo Diablo I" (Spanish for "Devil Twin I") and Gemelos Diablo II ("Devil Twin II") were both born and raised in Matamoros, Tamaulipas, Mexico, the twin sons of Pantera Blanca Jr and grandsons of Pantera Blanca.
Championships and accomplishments
Consejo Mundial de Lucha Libre
CMLL World Trios Championship (1 time) - with El Sagrado
References
1999 births
Consejo Mundial de Lucha Libre teams and stables
Identical twins
Living people
People from Matamoros, Tamaulipas
Professional wrestlers from Tamaulipas
Mexican promotions teams and stables
Mexican male professional wrestlers
Mexican twins
Unidentified wrestlers
Masked tag teams
21st-century professional wrestlers |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.