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_ ```
```xml /* * @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. */ // TypeScript Version: 4.1 /// <reference types="@stdlib/types"/> import { ArrayLike } from '@stdlib/types/array'; /** * Interface describing `ceil`. */ interface Routine { /** * Rounds each element in a strided array `x` toward positive infinity and assigns the results to elements in a strided array `y`. * * @param N - number of indexed elements * @param dtypeX - `x` data type * @param x - input array * @param strideX - `x` stride length * @param dtypeY - `y` data type * @param y - destination array * @param strideY - `y` stride length * @throws third argument has insufficient elements based on the associated stride and the number of indexed elements * @throws sixth argument has insufficient elements based on the associated stride and the number of indexed elements * @throws unable to resolve a strided array function supporting the provided array argument data types * @returns `y` * * @example * var Float64Array = require( '@stdlib/array/float64' ); * * var x = new Float64Array( [ 1.1, 2.5, -3.5, 4.0, -5.9 ] ); * var y = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0 ] ); * * ceil( x.length, 'float64', x, 1, 'float64', y, 1 ); * // y => <Float64Array>[ 2.0, 3.0, -3.0, 4.0, -5.0 ] */ ( N: number, dtypeX: any, x: ArrayLike<number>, strideX: number, dtypeY: any, y: ArrayLike<number>, strideY: number ): ArrayLike<number>; /** * Rounds each element in a strided array `x` toward positive infinity and assigns the results to elements in a strided array `y` using alternative indexing semantics. * * @param N - number of indexed elements * @param dtypeX - `x` data type * @param x - input array * @param strideX - `x` stride length * @param offsetX - starting index for `x` * @param dtypeY - `y` data type * @param y - destination array * @param strideY - `y` stride length * @param offsetY - starting index for `y` * @throws third argument has insufficient elements based on the associated stride and the number of indexed elements * @throws seventh argument has insufficient elements based on the associated stride and the number of indexed elements * @throws unable to resolve a strided array function supporting the provided array argument data types * @returns `y` * * @example * var Float64Array = require( '@stdlib/array/float64' ); * * var x = new Float64Array( [ 1.1, 2.5, -3.5, 4.0, -5.9] ); * var y = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0 ] ); * * ceil.ndarray( x.length, 'float64', x, 1, 0, 'float64', y, 1, 0 ); * // y => <Float64Array>[ 2.0, 3.0, -3.0, 4.0, -5.0 ] */ ndarray( N: number, dtypeX: any, x: ArrayLike<number>, strideX: number, offsetX: number, dtypeY: any, y: ArrayLike<number>, strideY: number, offsetY: number ): ArrayLike<number>; } /** * Rounds each element in a strided array `x` toward positive infinity and assigns the results to elements in a strided array `y`. * * @param N - number of indexed elements * @param dtypeX - `x` data type * @param x - input array * @param strideX - `x` stride length * @param dtypeY - `y` data type * @param y - destination array * @param strideY - `y` stride length * @throws third argument has insufficient elements based on the associated stride and the number of indexed elements * @throws sixth argument has insufficient elements based on the associated stride and the number of indexed elements * @throws unable to resolve a strided array function supporting the provided array argument data types * @returns `y` * * @example * var Float64Array = require( '@stdlib/array/float64' ); * * var x = new Float64Array( [ 1.1, 2.5, -3.5, 4.0, -5.9] ); * var y = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0 ] ); * * ceil( x.length, 'float64', x, 1, 'float64', y, 1 ); * // y => <Float64Array>[ 2.0, 3.0, -3.0, 4.0, -5.0 ] * * @example * var Float64Array = require( '@stdlib/array/float64' ); * * var x = new Float64Array( [ 1.1, 2.5, -3.5, 4.0, -5.9] ); * var y = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0 ] ); * * ceil.ndarray( x.length, 'float64', x, 1, 0, 'float64', y, 1, 0 ); * // y => <Float64Array>[ 2.0, 3.0, -3.0, 4.0, -5.0 ] */ declare var ceil: Routine; // EXPORTS // export = ceil; ```
```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; } ```
```xml import React, { ReactElement, useRef, useState } from 'react'; import { convertFromRaw, EditorState } from 'draft-js'; import Editor from '@draft-js-plugins/editor'; import createImagePlugin from '@draft-js-plugins/image'; import editorStyles from './editorStyles.css'; const imagePlugin = createImagePlugin(); const plugins = [imagePlugin]; /* eslint-disable */ const initialState = { entityMap: { '0': { type: 'IMAGE', mutability: 'IMMUTABLE', data: { src: '/images/canada-landscape-small.jpg', }, }, }, blocks: [ { key: '9gm3s', text: 'You can have images in your text field. This is a very rudimentary example, but you can enhance the image plugin with resizing, focus or alignment plugins.', type: 'unstyled', depth: 0, inlineStyleRanges: [], entityRanges: [], data: {}, }, { key: 'ov7r', text: ' ', type: 'atomic', depth: 0, inlineStyleRanges: [], entityRanges: [ { offset: 0, length: 1, key: 0, }, ], data: {}, }, { key: 'e23a8', text: 'See advanced examples further down ', type: 'unstyled', depth: 0, inlineStyleRanges: [], entityRanges: [], data: {}, }, ], }; /* eslint-enable */ const SimpleImageEditor = (): ReactElement => { const [editorState, setEditorState] = useState( EditorState.createWithContent(convertFromRaw(initialState)) ); const editor = useRef<Editor>(); const onChange = (value): void => { setEditorState(value); }; const focus = (): void => { editor.current.focus(); }; return ( <div> <div className={editorStyles.editor} onClick={focus}> <Editor editorState={editorState} onChange={onChange} plugins={plugins} ref={(element) => { editor.current = element; }} /> </div> </div> ); }; export default SimpleImageEditor; ```
The 2018 Women's Baseball World Cup was the 8th edition of the WBSC Women's Baseball World Cup, the biennial international women's baseball world championship tournament. The competition was held in Viera, Florida in the United States from August 22 to August 31, 2018. The 2018 tournament was the first time that the United States hosted the event. Qualification In September 2017, the Baseball Federation of Asia held the first Women’s Baseball Asian Cup, a biennial tournament to be held in odd years and serve as a qualifying tournament for the Women’s Baseball World Cup. Six teams competed in the 2017 tournament, from Chinese Taipei, Hong Kong, India, Japan, Pakistan, and South Korea. Japan won all five of their games to win the tournament and qualify for the World Cup. Chinese Taipei (2nd place), South Korea (3rd place), and Hong Kong (4th place) also qualified. Teams For 2016, the number of qualifying teams grew from eight for its 6th edition in 2014 to twelve teams. The following 12 teams qualified for the tournament. Round 1 Group A TPE wins tiebreak over USA (H2H) VEN wins tiebreak over PUR (H2H) QUAL = Qualified for the Super Round Group B DOM wins tiebreak over AUS (H2H) QUAL = Qualified for the Super Round Schedule Round 1 *Completion of 8/22/18 suspended game **Reschedule of 8/24/18 cancelled game Standings Round 2 Each team comes into Round 2 carrying the record earned in Round 1 against teams that qualified for Round 2 USA wins tiebreak over CAN (H2H) Schedule Round 2 Super Round Round 3 Bronze Medal Gold Medal Final standings References External links Official site Women's Baseball World Cup 2010s in women's baseball 2018 in baseball Women's Baseball Women's Baseball World Cup Baseball competitions in Florida Sports in Brevard County, Florida International baseball competitions hosted by the United States International sports competitions in Florida Women's Baseball World Cup Women's sports in Florida
Hyssna IF is a Swedish football club located in Hyssna. Background Hyssna IF currently plays in Division 4 Västergötland Södra which is the sixth tier of Swedish football. They play their home matches at the Ekäng in Hyssna. The club is affiliated to Västergötlands Fotbollförbund. Season to season Footnotes External links Hyssna IF – Official website Hyssna IF on Facebook Football clubs in Västra Götaland County Association football clubs established in 1948 1948 establishments in Sweden
The Communist Party of the Workers of Spain (, abbreviated PCTE) is a Marxist–Leninist communist party in Spain. The PCTE was founded on March 3, 2019 as the result of a split in the Communist Party of the Peoples of Spain (PCPE). The youth organization of the PCTE is called the Collectives of Communist Youth. History The PCTE contested both the April 2019 Spanish general election (14,189 votes, 0.05%) and the election for the European Parliament (19,081, 0.09%). On the same day of the European parliament election the PCTE competed in five regional elections and in sixteen municipalities. The party won in total 4,368 votes and two seats in the former mining municipality of Degaña in southwestern Asturias. It also supported the local list (ACPT), which also won two seats. At the November 2019 election the PCTE is fielding candidates in 37 provinces, compared to the 27 provinces the party contested at the previous election. At the 2023 Spanish regional and local elections the party has fielded candidates in four autonomies and twenty-one municipalities. Despite winning more votes than in 2019 (7,186 votes overall), the party lost both seats in Degaña. The party only obtained one seat in the Mallorcan town of Bunyola through the broad leftist coalition "Esquerra Oberta de Bunyola". Election results References External links Party website 2019 establishments in Spain Communist parties in Spain Far-left politics in Spain Political parties established in 2019 International Meeting of Communist and Workers Parties
```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}})(); ```
HMS Porpoise (S01) was a Porpoise-class submarine of the Royal Navy. She was launched on 25 April 1956, commissioned on 17 April 1958, and was decommissioned in 1982. Finally, she was sunk as a target in 1985 in torpedo trials, for which purpose she was painted bright red. She had been used as a training target while still serving with the Navy; in 1979 her casing, ballast tanks and vents were reinforced so that unarmed torpedoes could be fired at her without the risk of sinking. In 2000, a glacier in East Greenland was named after her Commanding officers Accidents and incidents Notable accidents involving HMS Porpoise 18 October 1963: Suffers superficial damage departing Portsmouth harbor after colliding with the aircraft carrier HMS Centaur. 1 January 1969 - Entangled in the nets of the French trawler Belle Poule. 18 April 1982 - HMS Porpoise became entangled in the fishing nets of the Irish trawler Sharelga. The Sharelga, after travelling backwards two miles for twenty minutes, capsized and sank. References British Porpoise-class submarines Ships built in Barrow-in-Furness 1956 ships Ships sunk as targets Maritime incidents in 1985
```shell #! /usr/bin/env bats load '/bats-support/load.bash' load '/bats-assert/load.bash' load '/getssl/test/test_helper.bash' # This is run for every test setup() { [ ! -f $BATS_RUN_TMPDIR/failed.skip ] || skip "skipping tests after first failure" export CURL_CA_BUNDLE=/root/pebble-ca-bundle.crt if [ -n "${VSFTPD_CONF}" ]; then if [ ! -f "${VSFTPD_CONF}.getssl" ]; then cp $VSFTPD_CONF ${VSFTPD_CONF}.getssl else cp ${VSFTPD_CONF}.getssl $VSFTPD_CONF fi # enable passive and disable active mode # path_to_url cat <<- _FTP >> $VSFTPD_CONF pasv_enable=YES pasv_max_port=10100 pasv_min_port=10090 _FTP fi } teardown() { [ -n "$BATS_TEST_COMPLETED" ] || touch $BATS_RUN_TMPDIR/failed.skip if [ -n "${VSFTPD_CONF}" ]; then cp ${VSFTPD_CONF}.getssl $VSFTPD_CONF ${CODE_DIR}/test/restart-ftpd stop fi } @test "Use Passive FTP to create challenge file (FTP_OPTIONS)" { if [ -n "$STAGING" ]; then skip "Using staging server, skipping internal test" fi if [[ ! -d /var/www/html/.well-known/acme-challenge ]]; then mkdir -p /var/www/html/.well-known/acme-challenge fi ${CODE_DIR}/test/restart-ftpd start NEW_FTP="false" if [[ "$(ftp -? 2>&1 | head -1 | cut -c-6)" == "usage:" ]]; then NEW_FTP="true" fi # Always change ownership and permissions in case previous tests created the directories as root chgrp -R www-data /var/www/html/.well-known chmod -R g+w /var/www/html/.well-known CONFIG_FILE="getssl-http01.cfg" setup_environment init_getssl # The DOMAIN_PEM_LOCATION creates a *signed* certificate for the ftps/ftpes tests cat <<- EOF > ${INSTALL_DIR}/.getssl/${GETSSL_CMD_HOST}/getssl_test_specific.cfg ACL="ftp:ftpuser:ftpuser:${GETSSL_CMD_HOST}:/var/www/html/.well-known/acme-challenge" DOMAIN_PEM_LOCATION=/etc/vsftpd.pem CA_CERT_LOCATION=/etc/cacert.pem EOF if [[ "$FTP_PASSIVE_DEFAULT" == "false" ]]; then if [[ "$NEW_FTP" == "true" ]]; then # Newer version of ftp, needs "passive on" instead of "passive" cat <<- EOF3 >> ${INSTALL_DIR}/.getssl/${GETSSL_CMD_HOST}/getssl_test_specific.cfg FTP_OPTIONS="passive on" EOF3 else cat <<- EOF4 >> ${INSTALL_DIR}/.getssl/${GETSSL_CMD_HOST}/getssl_test_specific.cfg FTP_OPTIONS="passive" EOF4 fi fi create_certificate assert_success assert_line --partial "ftp:ftpuser:ftpuser:" if [[ "$FTP_PASSIVE_DEFAULT" == "false" ]]; then if [[ "$NEW_FTP" == "true" ]]; then assert_line --partial "Passive mode: on" else assert_line --partial "Passive mode on" fi else refute_line --partial "Passive mode off" fi check_output_for_errors } @test "Use Passive FTP to create challenge file (FTP_ARGS)" { if [ -n "$STAGING" ]; then skip "Using staging server, skipping internal test" fi if [[ ! -d /var/www/html/.well-known/acme-challenge ]]; then mkdir -p /var/www/html/.well-known/acme-challenge fi ${CODE_DIR}/test/restart-ftpd start NEW_FTP="false" if [[ "$(ftp -? 2>&1 | head -1 | cut -c-6)" == "usage:" ]]; then NEW_FTP="true" fi if [[ -n "$(command -v ftp 2>/dev/null)" ]]; then FTP_COMMAND="ftp" elif [[ -n "$(command -v lftp 2>/dev/null)" ]]; then FTP_COMMAND="lftp" else echo "host doesn't have ftp or lftp installed" exit 1 fi # Always change ownership and permissions in case previous tests created the directories as root chgrp -R www-data /var/www/html/.well-known chmod -R g+w /var/www/html/.well-known CONFIG_FILE="getssl-http01.cfg" setup_environment init_getssl if [[ "$FTP_COMMAND" == "ftp" ]]; then cat <<- EOF > ${INSTALL_DIR}/.getssl/${GETSSL_CMD_HOST}/getssl_test_specific.cfg ACL="ftp:ftpuser:ftpuser:${GETSSL_CMD_HOST}:/var/www/html/.well-known/acme-challenge" FTP_ARGS="-p -v" EOF else cat <<- EOF3 > ${INSTALL_DIR}/.getssl/${GETSSL_CMD_HOST}/getssl_test_specific.cfg ACL="ftp:ftpuser:ftpuser:${GETSSL_CMD_HOST}:/var/www/html/.well-known/acme-challenge" FTP_ARGS="-d -e 'set ftp:passive-mode true'" EOF3 fi create_certificate assert_success assert_line --partial "ftp:ftpuser:ftpuser:" if [[ "$NEW_FTP" == "true" ]]; then assert_line --partial "Entering Extended Passive Mode" else assert_line --partial "Entering Passive Mode" fi check_output_for_errors } @test "Use ftpes (explicit ssl, port 21) to create challenge file" { if [ -n "$STAGING" ]; then skip "Using staging server, skipping internal test" fi if [[ ! -f /etc/vsftpd.pem ]]; then echo "FAILED: This test requires the previous test to succeed" exit 1 fi if [[ ! -d /var/www/html/.well-known/acme-challenge ]]; then mkdir -p /var/www/html/.well-known/acme-challenge fi # Restart vsftpd with ssl enabled cat <<- _FTP >> $VSFTPD_CONF connect_from_port_20=NO ssl_enable=YES allow_anon_ssl=NO force_local_data_ssl=NO force_local_logins_ssl=NO ssl_tlsv1=YES ssl_sslv2=NO ssl_sslv3=NO require_ssl_reuse=NO ssl_ciphers=HIGH rsa_cert_file=/etc/vsftpd.pem rsa_private_key_file=/etc/vsftpd.pem _FTP ${CODE_DIR}/test/restart-ftpd start # Always change ownership and permissions in case previous tests created the directories as root chgrp -R www-data /var/www/html/.well-known chmod -R g+w /var/www/html/.well-known CONFIG_FILE="getssl-http01.cfg" setup_environment init_getssl # Verbose output is needed so the test assertion passes # On Ubuntu 14 and 18 curl errors with "unable to get issuer certificate" so disable cert check using "-k" if [[ "$GETSSL_OS" == "ubuntu14" || "$GETSSL_OS" == "ubuntu18" ]]; then cat <<- EOF > ${INSTALL_DIR}/.getssl/${GETSSL_CMD_HOST}/getssl_test_specific.cfg ACL="ftpes:ftpuser:ftpuser:${GETSSL_CMD_HOST}:/var/www/html/.well-known/acme-challenge" FTPS_OPTIONS="--cacert /etc/cacert.pem -v -k" EOF else cat <<- EOF > ${INSTALL_DIR}/.getssl/${GETSSL_CMD_HOST}/getssl_test_specific.cfg ACL="ftpes:ftpuser:ftpuser:${GETSSL_CMD_HOST}:/var/www/html/.well-known/acme-challenge" FTPS_OPTIONS="--cacert /etc/cacert.pem -v" EOF fi create_certificate assert_success # assert_line --partial "SSL connection using TLSv1.3" assert_line --partial "200 PROT now Private" check_output_for_errors } @test "Use ftps (implicit ssl, port 990) to create challenge file" { if [ -n "$STAGING" ]; then skip "Using staging server, skipping internal test" fi if [[ ! -f /etc/vsftpd.pem ]]; then echo "FAILED: This test requires the previous test to succeed" exit 1 fi # Restart vsftpd listening on port 990 cat <<- _FTP >> $VSFTPD_CONF implicit_ssl=YES listen_port=990 connect_from_port_20=NO ssl_enable=YES allow_anon_ssl=NO force_local_data_ssl=NO force_local_logins_ssl=NO ssl_tlsv1=YES ssl_sslv2=NO ssl_sslv3=NO require_ssl_reuse=NO ssl_ciphers=HIGH rsa_cert_file=/etc/vsftpd.pem rsa_private_key_file=/etc/vsftpd.pem _FTP ${CODE_DIR}/test/restart-ftpd start if [[ ! -d /var/www/html/.well-known/acme-challenge ]]; then mkdir -p /var/www/html/.well-known/acme-challenge fi # Always change ownership and permissions in case previous tests created the directories as root chgrp -R www-data /var/www/html/.well-known chmod -R g+w /var/www/html/.well-known CONFIG_FILE="getssl-http01.cfg" setup_environment init_getssl # Verbose output is needed so the test assertion passes # On Ubuntu 14 and 18 curl errors with "unable to get issuer certificate" so disable cert check using "-k" # as I don't have time to fix if [[ "$GETSSL_OS" == "ubuntu14" || "$GETSSL_OS" == "ubuntu18" ]]; then cat <<- EOF > ${INSTALL_DIR}/.getssl/${GETSSL_CMD_HOST}/getssl_test_specific.cfg ACL="ftps:ftpuser:ftpuser:${GETSSL_CMD_HOST}:/var/www/html/.well-known/acme-challenge" FTPS_OPTIONS="--cacert /etc/cacert.pem -v -k" EOF else cat <<- EOF > ${INSTALL_DIR}/.getssl/${GETSSL_CMD_HOST}/getssl_test_specific.cfg ACL="ftps:ftpuser:ftpuser:${GETSSL_CMD_HOST}:/var/www/html/.well-known/acme-challenge" FTPS_OPTIONS="--cacert /etc/cacert.pem -v" EOF fi create_certificate assert_success assert_line --partial "200 PROT now Private" check_output_for_errors } ```
```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); ```
In Greek mythology, Haero or Aëro (Ancient Greek: Αἱρὼ means 'to take up, raise, lift up') was a Chian princess as the daughter of King Oenopion and the nymph Helice. She was also called Merope and was loved by Orion. Mythology Orion, the son of Hyrieus, fell in love with Aero, and asked her father for her hand. For her sake, the giant rendered the island Chios where they lived habitable (it was formerly full of wild beasts), and he also gathered together much booty from the folk who lived there and brought it as a bridal-gift for her. Oenopion however constantly kept putting off the time of the wedding, for he hated the idea of having such a man as his daughter’s husband. Then Orion, maddened by strong drink, broke in the doors of the chamber where the girl was lying asleep, and as he was offering violence to her Oenopion attacked him and put out his eyes with a burning brand. Notes References Bell, Robert E., Women of Classical Mythology: A Biographical Dictionary. ABC-Clio. 1991. . Parthenius, Love Romances translated by Sir Stephen Gaselee (1882-1943), S. Loeb Classical Library Volume 69. Cambridge, MA. Harvard University Press. 1916. Online version at the Topos Text Project. Parthenius, Erotici Scriptores Graeci, Vol. 1. Rudolf Hercher. in aedibus B. G. Teubneri. Leipzig. 1858. Greek text available at the Perseus Digital Library. Princesses in Greek mythology
Craig Mervyn Morkel (born 10 November 1967) is a South African businessman and former politician. He served in the National Assembly from 1999 to 2009, representing the Western Cape constituency, before embarking on his career in business. In 2006, he was convicted of defrauding Parliament in the Travelgate scandal. Labelled a "serial floor-crosser", Morkel represented four different parties during his decade in Parliament, taking advantage of each of the three floor-crossing windows that took place during that period. He entered the National Assembly as a member of the New National Party before he crossed to the Democratic Alliance in March 2003; formed his own party, the Progressive Independent Movement, in September 2005; and finally crossed to the African National Congress in September 2007. Early life and family Morkel was born on 10 November 1967 and was designated as Coloured under apartheid. His father, Gerald Morkel, represented the Labour Party in the apartheid-era House of Representatives but joined the National Party, later restyled as the New National Party (NNP), during the democratic transition. One of his brothers, Kent, is also a politician, and another, Garth, is a government official. Legislative career New National Party: 1999–2003 Morkel joined the National Assembly in the 1999 general election as a representative of the NNP in the Western Cape constituency. Midway through the term, in 2001, Morkel's father fell out with the NNP over the NNP's withdrawal from the multi-party Democratic Alliance (DA) that it had formed the previous year with the Democratic Party (DP). In November of that year, his father resigned from the NNP and as Premier of the Western Cape in order to defect to the DA. Though Morkel said that he did not yet have plans to follow his father to the DA, observers expected him to do so. Democratic Alliance: 2003–2005 In March 2003, during the first floor-crossing window, Morkel indeed resigned from NNP and joined a contingent of his colleagues, led by Sheila Camerer, in registering as a DA member. He served the rest of the legislative term under the DA's banner. The defection greatly increased the public profile of Morkel, who had been "barely visible" as an NNP member. In the 2004 general election, he was highly ranked on the DA's provincial party list for the Western Cape, and he secured re-election to his seat. During this period, he was viewed as a member of the DA's "old NNP camp", largely comprising former NNP and Labour Party members and de facto led by Morkel's father, in opposition to another camp largely comprising former DP members. Travelgate In August 2004, shortly after Morkel's election to a second term, the Scorpions announced that he was among the many MPs under investigation for possible abuse of parliamentary air-travel vouchers, in what became known as the Travelgate scandal. Later the same month, Morkel became the only MP to publicly acknowledge that he had signed an acknowledgement of debt with one of the travel agencies involved in the scandal; he said that he would repay about R33,000 to ITC Travel. Similarly, in January 2005, when the Scorpions announced that 40 MPs would face criminal charges for their role in Travelgate, Morkel stepped forward to identify himself as one of them. Media reports suggested that Morkel, while an NNP representative, had allowed friends to use his parliamentary travel vouchers – which were supposed to be used only to cover work expenses – and had used other vouchers to hire an Audi TT. The DA announced that Morkel had offered to accept a suspension from all parliamentary and party business, pending the outcome of the trial, although the Mail & Guardian noted that the party continued to list Morkel as its spokesman on youth affairs. In December 2006, Morkel accepted a plea bargain with the Scorpions; he was sentenced to pay a fine of R25,000 or serve three years' imprisonment. He and other convicted MPs received a formal reprimand from the Speaker of the National Assembly, Baleka Mbete, the following year. Progressive Independent Movement: 2005–2007 While Morkel's criminal charges were still pending, the second floor-crossing window was held in September 2005, and Morkel resigned from the DA to form his own party, the Progressive Independent Movement (PIM). He was the party's sole representative. He said that he would not return to the DA until its leadership changed, though he hoped that the party would become a platform to lobby for change in his former party DA: It is my way of registering a conscientious objection to the leadership style and organisational culture that presently dominates the DA. I hope after leadership of the DA has changed to go back to my political home.The Mail & Guardian suggested that Morkel had "outsmarted" the DA, since the Travelgate scandal had weakened his position in the party and would likely have led to his expulsion if he was convicted. The DA launched an unsuccessful court challenge in an attempt to block his move. African National Congress: 2007–2009 During the September 2007 floor-crossing window, Morkel announced that he had resigned from the PIM – which thus became effectively defunct – in order to join the governing African National Congress (ANC). His brother, Kent, had recently announced his own defection from the DA to the ANC, and their brother Garth was apparently a longstanding ANC member, leading the Mail & Guardian to quip that the ANC "has at last secured a clear two-thirds majority in the Morkel family". The newspaper suspected that Morkel had decided to leave the PIM because, in the minor party, "he stood no chance at all of being re-elected at the next general election in 2009". However, even as an ANC member, Morkel left the National Assembly after the 2009 election. Later career After 2009, Morkel worked as a business consultant, advising multinational companies on energy deals. In 2014, he founded iKapa Energy with his father, who died in 2018. References Living people 1967 births 21st-century South African businesspeople 21st-century South African politicians 20th-century South African politicians Members of the National Assembly of South Africa African National Congress politicians Democratic Alliance (South Africa) politicians South African politicians convicted of fraud
```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); } } ```
```c++ /* * * 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. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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. */ #include "config.h" #include "public/web/WebDateTimeSuggestion.h" #include "core/html/forms/DateTimeChooser.h" namespace blink { WebDateTimeSuggestion::WebDateTimeSuggestion(const DateTimeSuggestion& suggestion) : value(suggestion.value) , localizedValue(suggestion.localizedValue) , label(suggestion.label) { } WebDateTimeSuggestion& WebDateTimeSuggestion::operator=(const DateTimeSuggestion& suggestion) { value = suggestion.value; localizedValue = suggestion.localizedValue; label = suggestion.label; return *this; } } // namespace blink ```
```c++ // your_sha256_hash------------ // - Open3D: www.open3d.org - // your_sha256_hash------------ // your_sha256_hash------------ #include "open3d/visualization/gui/Layout.h" #include <imgui.h> #include <algorithm> #include <cmath> #include <iostream> #include "open3d/visualization/gui/Application.h" #include "open3d/visualization/gui/Theme.h" #include "open3d/visualization/gui/Util.h" namespace open3d { namespace visualization { namespace gui { namespace { std::vector<int> CalcMajor(const LayoutContext& context, const Widget::Constraints& constraints, Layout1D::Dir dir, const std::vector<std::shared_ptr<Widget>>& children, int* minor = nullptr) { std::vector<Size> preferred_sizes; preferred_sizes.reserve(children.size()); for (auto& child : children) { preferred_sizes.push_back( child->CalcPreferredSize(context, constraints)); } // Preferred size in the minor direction is the maximum preferred size, // not including the items that want to be as big as possible (unless they // are the only items). int other = 0; int num_other_maxgrow_items = 0; std::vector<int> major; major.reserve(preferred_sizes.size()); if (dir == Layout1D::VERT) { for (auto& preferred : preferred_sizes) { major.push_back(preferred.height); if (preferred.width >= Widget::DIM_GROW) { num_other_maxgrow_items += 1; } else { other = std::max(other, preferred.width); } } } else { for (auto& preferred : preferred_sizes) { major.push_back(preferred.width); if (preferred.height >= Widget::DIM_GROW) { num_other_maxgrow_items += 1; } else { other = std::max(other, preferred.height); } } } if (other == 0 && num_other_maxgrow_items > 0) { other = Widget::DIM_GROW; } if (minor) { *minor = other; } return major; } std::vector<std::vector<std::shared_ptr<Widget>>> CalcColumns( int num_cols, const std::vector<std::shared_ptr<Widget>>& children) { std::vector<std::vector<std::shared_ptr<Widget>>> columns(num_cols); int col = 0; for (auto& child : children) { columns[col++].push_back(child); if (col >= num_cols) { col = 0; } } return columns; } std::vector<Size> CalcColumnSizes( const std::vector<std::vector<std::shared_ptr<Widget>>>& columns, const LayoutContext& context, const Widget::Constraints& constraints) { std::vector<Size> sizes; sizes.reserve(columns.size()); for (auto& col : columns) { int w = 0, h = 0; for (auto& widget : col) { auto preferred = widget->CalcPreferredSize(context, constraints); w = std::max(w, preferred.width); h += preferred.height; } sizes.push_back(Size(w, h)); } return sizes; } } // namespace // your_sha256_hash------------ Margins::Margins() : left(0), top(0), right(0), bottom(0) {} Margins::Margins(int px) : left(px), top(px), right(px), bottom(px) {} Margins::Margins(int horiz_px, int vert_px) : left(horiz_px), top(vert_px), right(horiz_px), bottom(vert_px) {} Margins::Margins(int left_px, int top_px, int right_px, int bottom_px) : left(left_px), top(top_px), right(right_px), bottom(bottom_px) {} int Margins::GetHoriz() const { return this->left + this->right; } int Margins::GetVert() const { return this->top + this->bottom; } // your_sha256_hash------------ struct Layout1D::Impl { Layout1D::Dir dir_; int spacing_; Margins margins_; int minor_axis_size_ = Widget::DIM_GROW; }; void Layout1D::debug_PrintPreferredSizes(Layout1D* layout, const LayoutContext& context, const Constraints& constraints, int depth /*= 0*/) { static const char spaces[21] = " "; const char* indent = spaces + (20 - 3 * depth); auto pref_total = layout->CalcPreferredSize(context, constraints); std::cout << "[debug] " << indent << "Layout1D (" << (layout->impl_->dir_ == Layout1D::VERT ? "VERT" : "HORIZ") << "): pref: (" << pref_total.width << ", " << pref_total.height << ")" << std::endl; std::cout << "[debug] " << indent << "spacing: " << layout->impl_->spacing_ << ", margins: (l:" << layout->impl_->margins_.left << ", t:" << layout->impl_->margins_.top << ", r:" << layout->impl_->margins_.right << ", b:" << layout->impl_->margins_.bottom << ")" << std::endl; for (size_t i = 0; i < layout->GetChildren().size(); ++i) { auto child = layout->GetChildren()[i]; auto pref = child->CalcPreferredSize(context, constraints); std::cout << "[debug] " << indent << "i: " << i << " (" << pref.width << ", " << pref.height << ")" << std::endl; Layout1D* child_layout = dynamic_cast<Layout1D*>(child.get()); if (child_layout) { debug_PrintPreferredSizes(child_layout, context, constraints, depth + 1); } VGrid* vgrid = dynamic_cast<VGrid*>(child.get()); if (vgrid) { const char* grid_indent = spaces + (20 - 3 * (depth + 1)); std::cout << "[debug] " << grid_indent << "VGrid: spacing: " << vgrid->GetSpacing() << ", margins: (l:" << vgrid->GetMargins().left << ", t:" << vgrid->GetMargins().top << ", r:" << vgrid->GetMargins().right << ", b:" << vgrid->GetMargins().bottom << ")" << std::endl; for (size_t i = 0; i < vgrid->GetChildren().size(); ++i) { auto e = vgrid->GetChildren()[i]; auto pref = e->CalcPreferredSize(context, constraints); std::cout << "[debug] " << grid_indent << "i: " << i << " (" << pref.width << ", " << pref.height << ")" << std::endl; } } } } Layout1D::Fixed::Fixed(int size, Dir dir) : size_(size), dir_(dir) {} Size Layout1D::Fixed::CalcPreferredSize(const LayoutContext& context, const Constraints& constraints) const { if (dir_ == VERT) { return {0, size_}; } return {size_, 0}; } Size Layout1D::Stretch::CalcPreferredSize( const LayoutContext& context, const Constraints& constraints) const { return Size(0, 0); } Layout1D::Layout1D(Dir dir, int spacing, const Margins& margins, const std::vector<std::shared_ptr<Widget>>& children) : Super(children), impl_(new Layout1D::Impl()) { impl_->dir_ = dir; impl_->spacing_ = spacing; impl_->margins_ = margins; } Layout1D::~Layout1D() {} int Layout1D::GetSpacing() const { return impl_->spacing_; } const Margins& Layout1D::GetMargins() const { return impl_->margins_; } Margins& Layout1D::GetMutableMargins() { return impl_->margins_; } std::vector<std::shared_ptr<Widget>> Layout1D::GetVisibleChildren() const { std::vector<std::shared_ptr<Widget>> visChildren; auto& children = GetChildren(); std::copy_if( children.cbegin(), children.cend(), std::back_inserter(visChildren), [](const std::shared_ptr<Widget>& w) { return w->IsVisible(); }); return visChildren; } void Layout1D::SetSpacing(int spacing) { impl_->spacing_ = spacing; } void Layout1D::SetMargins(const Margins& margins) { impl_->margins_ = margins; } void Layout1D::AddFixed(int size) { AddChild(std::make_shared<Fixed>(size, impl_->dir_)); } int Layout1D::GetMinorAxisPreferredSize() const { return impl_->minor_axis_size_; } void Layout1D::SetMinorAxisPreferredSize(int size) { impl_->minor_axis_size_ = size; } void Layout1D::AddStretch() { AddChild(std::make_shared<Stretch>()); } Size Layout1D::CalcPreferredSize(const LayoutContext& context, const Constraints& constraints) const { int minor; std::vector<int> major = CalcMajor(context, constraints, impl_->dir_, GetVisibleChildren(), &minor); if (impl_->minor_axis_size_ < Widget::DIM_GROW) { minor = impl_->minor_axis_size_; } int total_spacing = impl_->spacing_ * std::max(0, int(major.size()) - 1); int major_size = 0; for (auto& size : major) { major_size += size; } if (impl_->dir_ == VERT) { return Size(minor + impl_->margins_.GetHoriz(), major_size + impl_->margins_.GetVert() + total_spacing); } else { return Size(major_size + impl_->margins_.GetHoriz() + total_spacing, minor + impl_->margins_.GetVert()); } } void Layout1D::Layout(const LayoutContext& context) { auto frame = GetFrame(); Constraints constraints; if (impl_->dir_ == VERT) { constraints.width = frame.width - impl_->margins_.left - impl_->margins_.right; } else { constraints.height = frame.height - impl_->margins_.top - impl_->margins_.bottom; } auto children = GetVisibleChildren(); std::vector<int> major = CalcMajor(context, constraints, impl_->dir_, children, nullptr); int total = 0, num_stretch = 0, num_grow = 0; for (auto& mj : major) { total += mj; if (mj <= 0) { num_stretch += 1; } if (mj >= Widget::DIM_GROW) { num_grow += 1; } } int frame_size; if (impl_->dir_ == VERT) { frame_size = frame.height - impl_->margins_.GetVert(); } else { frame_size = frame.width - impl_->margins_.GetHoriz(); } int total_spacing = impl_->spacing_ * std::max(0, int(major.size()) - 1); auto total_extra = frame_size - total - total_spacing; if (num_stretch > 0 && frame_size > total) { auto stretch = total_extra / num_stretch; auto leftover_stretch = total_extra - stretch * num_stretch; for (size_t i = 0; i < major.size(); ++i) { if (major[i] <= 0) { major[i] = stretch; if (leftover_stretch > 0) { major[i] += 1; leftover_stretch -= 1; } } } } else if (frame_size < total) { int n_shrinkable = num_grow; if (impl_->dir_ == VERT) { for (auto& child : children) { if (std::dynamic_pointer_cast<ScrollableVert>(child)) { n_shrinkable++; } } } if (n_shrinkable > 0) { auto total_excess = total - (frame_size - total_spacing); auto excess = total_excess / n_shrinkable; auto leftover = total_excess - excess * num_stretch; for (size_t i = 0; i < major.size(); ++i) { if (major[i] >= Widget::DIM_GROW || (impl_->dir_ == VERT && std::dynamic_pointer_cast<ScrollableVert>(children[i]) != nullptr)) { major[i] -= excess; if (leftover > 0) { major[i] -= 1; leftover -= 1; } } } } } int x = frame.GetLeft() + impl_->margins_.left; int y = frame.GetTop() + impl_->margins_.top; if (impl_->dir_ == VERT) { int minor = frame.width - impl_->margins_.GetHoriz(); for (size_t i = 0; i < children.size(); ++i) { int h = std::max(children[i]->CalcMinimumSize(context).height, major[i]); children[i]->SetFrame(Rect(x, y, minor, h)); y += major[i] + impl_->spacing_; } } else { int minor = frame.height - impl_->margins_.GetVert(); for (size_t i = 0; i < children.size(); ++i) { children[i]->SetFrame(Rect(x, y, major[i], minor)); x += major[i] + impl_->spacing_; } } Super::Layout(context); } // your_sha256_hash------------ std::shared_ptr<Layout1D::Fixed> Vert::MakeFixed(int size) { return std::make_shared<Layout1D::Fixed>(size, VERT); } std::shared_ptr<Layout1D::Stretch> Vert::MakeStretch() { return std::make_shared<Layout1D::Stretch>(); } Vert::Vert() : Layout1D(VERT, 0, Margins(), {}) {} Vert::Vert(int spacing /*= 0*/, const Margins& margins /*= Margins()*/) : Layout1D(VERT, spacing, margins, {}) {} Vert::Vert(int spacing, const Margins& margins, const std::vector<std::shared_ptr<Widget>>& children) : Layout1D(VERT, spacing, margins, children) {} Vert::~Vert() {} int Vert::GetPreferredWidth() const { return GetMinorAxisPreferredSize(); } void Vert::SetPreferredWidth(int w) { SetMinorAxisPreferredSize(w); } // your_sha256_hash------------ struct CollapsableVert::Impl { std::string id_; std::string text_; FontId font_id_ = Application::DEFAULT_FONT_ID; bool is_open_ = true; }; CollapsableVert::CollapsableVert(const char* text) : CollapsableVert(text, 0, Margins()) {} CollapsableVert::CollapsableVert(const char* text, int spacing, const Margins& margins /*= Margins()*/) : Vert(spacing, margins), impl_(new CollapsableVert::Impl()) { SetText(text); } CollapsableVert::~CollapsableVert() {} void CollapsableVert::SetIsOpen(bool is_open) { impl_->is_open_ = is_open; } bool CollapsableVert::GetIsOpen() { return impl_->is_open_; } void CollapsableVert::SetText(const char* text) { static int g_next_id = 1; impl_->text_ = text; impl_->id_ = impl_->text_ + "##collapsing_" + std::to_string(g_next_id++); } std::string CollapsableVert::GetText() const { return impl_->text_; }; FontId CollapsableVert::GetFontId() const { return impl_->font_id_; } void CollapsableVert::SetFontId(FontId font_id) { impl_->font_id_ = font_id; } Size CollapsableVert::CalcPreferredSize(const LayoutContext& context, const Constraints& constraints) const { // Only push the font for the label ImGui::PushFont((ImFont*)context.fonts.GetFont(impl_->font_id_)); auto* font = ImGui::GetFont(); auto padding = ImGui::GetStyle().FramePadding; int text_height = int( std::ceil(ImGui::GetTextLineHeightWithSpacing() + 2 * padding.y)); int text_width = int(std::ceil(font->CalcTextSizeA(font->FontSize, FLT_MAX, FLT_MAX, impl_->text_.c_str()) .x)); ImGui::PopFont(); // back to default font for layout sizing auto pref = Super::CalcPreferredSize(context, constraints); if (!impl_->is_open_) { pref.height = 0; } auto& margins = GetMargins(); return Size(std::max(text_width, pref.width) + margins.GetHoriz(), text_height + pref.height + margins.GetVert()); } void CollapsableVert::Layout(const LayoutContext& context) { ImGui::PushFont((ImFont*)context.fonts.GetFont(impl_->font_id_)); auto padding = ImGui::GetStyle().FramePadding; int text_height = int( std::ceil(ImGui::GetTextLineHeightWithSpacing() + 2 * padding.y)); auto& margins = GetMutableMargins(); auto orig_top = margins.top; margins.top = orig_top + text_height; ImGui::PopFont(); Super::Layout(context); margins.top = orig_top; } Widget::DrawResult CollapsableVert::Draw(const DrawContext& context) { auto result = Widget::DrawResult::NONE; bool was_open = impl_->is_open_; auto& frame = GetFrame(); ImGui::SetCursorScreenPos( ImVec2(float(frame.x), float(frame.y) - ImGui::GetScrollY())); ImGui::PushItemWidth(float(frame.width)); auto padding = ImGui::GetStyle().FramePadding; ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(0, padding.y)); ImGui::PushStyleColor(ImGuiCol_HeaderHovered, colorToImgui(context.theme.button_hover_color)); ImGui::PushStyleColor(ImGuiCol_HeaderActive, colorToImgui(context.theme.button_active_color)); ImGui::SetNextItemOpen(impl_->is_open_); ImGui::PushFont((ImFont*)context.fonts.GetFont(impl_->font_id_)); bool node_clicked = ImGui::TreeNode(impl_->id_.c_str()); ImGui::PopFont(); if (node_clicked) { result = Super::Draw(context); ImGui::TreePop(); impl_->is_open_ = true; } else { impl_->is_open_ = false; } ImGui::PopStyleColor(2); ImGui::PopStyleVar(); ImGui::PopItemWidth(); if (impl_->is_open_ != was_open) { return DrawResult::RELAYOUT; } return result; } // your_sha256_hash------------ struct ScrollableVert::Impl { ImGuiID id_; }; ScrollableVert::ScrollableVert() : ScrollableVert(0, Margins(), {}) {} ScrollableVert::ScrollableVert(int spacing /*= 0*/, const Margins& margins /*= Margins()*/) : ScrollableVert(spacing, margins, {}) {} ScrollableVert::ScrollableVert( int spacing, const Margins& margins, const std::vector<std::shared_ptr<Widget>>& children) : Vert(spacing, margins, children), impl_(new ScrollableVert::Impl) { static int g_next_id = 1; impl_->id_ = g_next_id++; } ScrollableVert::~ScrollableVert() {} Widget::DrawResult ScrollableVert::Draw(const DrawContext& context) { auto& frame = GetFrame(); ImGui::SetCursorScreenPos( ImVec2(float(frame.x), float(frame.y) - ImGui::GetScrollY())); ImGui::PushStyleColor(ImGuiCol_FrameBg, ImGui::GetStyleColorVec4(ImGuiCol_WindowBg)); ImGui::PushStyleColor(ImGuiCol_Border, colorToImgui(Color(0.0f, 0.0f, 0.0f, 0.0f))); ImGui::PushStyleColor(ImGuiCol_BorderShadow, colorToImgui(Color(0.0f, 0.0f, 0.0f, 0.0f))); ImGui::BeginChildFrame(impl_->id_, ImVec2(frame.width, frame.height)); auto result = Super::Draw(context); ImGui::EndChildFrame(); ImGui::PopStyleColor(3); return result; } // your_sha256_hash------------ std::shared_ptr<Layout1D::Fixed> Horiz::MakeFixed(int size) { return std::make_shared<Layout1D::Fixed>(size, HORIZ); } std::shared_ptr<Layout1D::Stretch> Horiz::MakeStretch() { return std::make_shared<Layout1D::Stretch>(); } std::shared_ptr<Horiz> Horiz::MakeCentered(std::shared_ptr<Widget> w) { return std::make_shared<Horiz>( 0, Margins(), std::vector<std::shared_ptr<Widget>>( {Horiz::MakeStretch(), w, Horiz::MakeStretch()})); } Horiz::Horiz() : Layout1D(HORIZ, 0, Margins(), {}) {} Horiz::Horiz(int spacing /*= 0*/, const Margins& margins /*= Margins()*/) : Layout1D(HORIZ, spacing, margins, {}) {} Horiz::Horiz(int spacing, const Margins& margins, const std::vector<std::shared_ptr<Widget>>& children) : Layout1D(HORIZ, spacing, margins, children) {} Horiz::~Horiz() {} int Horiz::GetPreferredHeight() const { return GetMinorAxisPreferredSize(); } void Horiz::SetPreferredHeight(int h) { SetMinorAxisPreferredSize(h); } // your_sha256_hash------------ struct VGrid::Impl { int num_cols_; int spacing_; Margins margins_; int preferred_width_ = Widget::DIM_GROW; }; VGrid::VGrid(int num_cols, int spacing /*= 0*/, const Margins& margins /*= Margins()*/) : impl_(new VGrid::Impl()) { impl_->num_cols_ = num_cols; impl_->spacing_ = spacing; impl_->margins_ = margins; } VGrid::~VGrid() {} int VGrid::GetSpacing() const { return impl_->spacing_; } const Margins& VGrid::GetMargins() const { return impl_->margins_; } int VGrid::GetPreferredWidth() const { return impl_->preferred_width_; } void VGrid::SetPreferredWidth(int w) { impl_->preferred_width_ = w; } Size VGrid::CalcPreferredSize(const LayoutContext& context, const Constraints& constraints) const { auto columns = CalcColumns(impl_->num_cols_, GetChildren()); auto column_sizes = CalcColumnSizes(columns, context, constraints); int width = 0, height = 0; for (size_t i = 0; i < column_sizes.size(); ++i) { auto& sz = column_sizes[i]; width += sz.width; auto v_spacing = (int(columns[i].size()) - 1) * impl_->spacing_; height = std::max(height, sz.height) + v_spacing; } width += (int(column_sizes.size()) - 1) * impl_->spacing_; width = std::max(width, 0); // in case width or height has no items height = std::max(height, 0); if (impl_->preferred_width_ < Widget::DIM_GROW) { width = impl_->preferred_width_; } else { width = width + impl_->margins_.left + impl_->margins_.right; } return Size(width, height + impl_->margins_.top + impl_->margins_.bottom); } void VGrid::Layout(const LayoutContext& context) { auto& frame = GetFrame(); const int layout_width = frame.width - impl_->margins_.left - impl_->margins_.right; Constraints constraints; constraints.width = layout_width; auto columns = CalcColumns(impl_->num_cols_, GetChildren()); auto column_sizes = CalcColumnSizes(columns, context, constraints); // Shrink columns that are too big. // TODO: right now this only handles DIM_GROW columns; extend to // proportionally shrink columns that together add up to too much. // Probably should figure out how to reuse for other layouts. int grow_size = constraints.width; int wanted_width = 0; int total_not_growing_width = 0; int num_growing = 0; for (auto& sz : column_sizes) { wanted_width += sz.width; if (sz.width < grow_size) { total_not_growing_width += sz.width; } else { num_growing += 1; } } if (wanted_width > layout_width && num_growing > 0) { int total_spacing = (int(columns.size()) - 1) * impl_->spacing_; int growing_size = (layout_width - total_spacing - total_not_growing_width) / num_growing; if (growing_size < 0) { growing_size = layout_width / num_growing; } for (auto& sz : column_sizes) { if (sz.width >= grow_size) { sz.width = growing_size; } } } else { // Just adjust the columns for spacing. int leftHalf = int(std::floor(float(impl_->spacing_) / 2.0)); int rightHalf = int(std::ceil(float(impl_->spacing_) / 2.0)); for (size_t i = 0; i < column_sizes.size() - 1; ++i) { column_sizes[i].width -= leftHalf; column_sizes[i + 1].width -= rightHalf; } } // Do the layout int x = frame.GetLeft() + impl_->margins_.left; for (size_t i = 0; i < columns.size(); ++i) { Constraints constraints; constraints.width = column_sizes[i].width; int y = frame.GetTop() + impl_->margins_.top; for (auto& w : columns[i]) { auto preferred = w->CalcPreferredSize(context, constraints); w->SetFrame(Rect(x, y, column_sizes[i].width, preferred.height)); y += preferred.height + impl_->spacing_; } x += column_sizes[i].width + impl_->spacing_; } Super::Layout(context); } } // namespace gui } // namespace visualization } // namespace open3d ```
```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); } } } ```
Senior warden may refer to: one of the churchwardens in the vestry of an Anglican church one of the officers of a Masonic lodge See also Junior Warden (disambiguation) Disambiguation pages
James Schwebach (August 15, 1847 – June 6, 1921) was a Luxembourgian-born prelate of the Roman Catholic Church who served as Bishop of the Diocese of La Crosse in Wisconsin from 1892 until his death in 1921. Biography Early life and education James Schwebach was born on August 15, 1847, at Platen in the Préizerdaul commune of the Grand Duchy of Luxembourg, to Nicholas Joseph and Margaret (née Busch) Schwebach. He received his early education from private tutors, and afterwards studied at the college of Diekirch for two years. In 1864, Schwebach immigrated to the United States, where he entered St. Francis Seminary in Milwaukee, Wisconsin. He there completed his studies in philosophy and theology in five years. At age 21, being too young for ordination to the priesthood, Schwebach was called to La Crosse and was there ordained a deacon by Bishop Michael Heiss on July 24, 1869. He then served at St. Mary's Parish in La Crosse, where he preached in English, French, and German and taught at the parochial school. Priesthood and ministry Schwebach was ordained a priest for the Diocese of La Crosse by Bishop Thomas Grace on June 16, 1870. He then served as pastor of St. Mary's for 22 years, during which time he erected a new church, school, and rectory. He also built St. James the Less Parish in 1887. In addition to his pastoral duties, Schwebach served as vicar general of the diocese from 1882 to 1892. Bishop of La Crosse On December 14, 1891, Schwebach was appointed the third bishop of the Diocese of La Crosse by Pope Leo XIII. He received his episcopal consecration on February 25, 1892, from Archbishop Frederick Katzer, with Bishops John Janssen and Joseph Cotter serving as co-consecrators. During his 29-year tenure, he became known as a builder and founded St. Michael's Home for orphans. James Schwebach died in La Crosse on June 6, 1921, at age 73. He is buried at the Cathedral of St. Joseph the Workman in La Crosse. See also Catholic Church hierarchy Catholic Church in the United States Historical list of the Catholic bishops of the United States List of Catholic bishops of the United States Lists of patriarchs, archbishops, and bishops References External links Roman Catholic Diocese of La Crosse Roman Catholic bishops of La Crosse Luxembourgian Roman Catholic priests Luxembourgian emigrants to the United States 19th-century Roman Catholic bishops in the United States 20th-century Roman Catholic bishops in the United States 1847 births 1921 deaths
González Padín was a high-end department store based in San Juan, Puerto Rico. The chain which operated in Puerto Rico at its peak had 10 stores. The chain closed in 1995, and at the time of closure it was the biggest and oldest department store on the island. History Origins In October 1884, José González Padín, an enterprising merchant, Spanish by birth, opened a jewelry store in a location on Calle Fortaleza at Old San Juan. Ladies in crinoline skirts and men with curling mustaches came in horse-drawn carriages to visit this great new bazaar of novelties. Fortaleza Street was considered the commercial center of Old San Juan. A few years later, Don Jose González Padín became associated with his brother, Don Anselmo González Padín, who joined the business with the Padin brothers' nephews. They were these, Don Anselmo Lores and Don Fernando Fernández, together with Don Manuel Alvarez Santos and Don Angel Rolan, who gave great impetus to the business. As the business continued to grow, the original facade was modernized and was expanded to the top floor of the building it occupied. Thus becoming the first González Padín store featuring large glass windows: in those days it was considered a revolution in the construction of commercial facades. For this reason it was baptized by the public as "the glass corner.” Cash registers were added, and it now had, its main attraction, the first electrical advertisement in any store in Puerto Rico. This advertisement became so popular that people also called Padín "the store of 300 light bulbs". In 1912, the firm became González Padín y Co., Incorporated, and then Mr. Anselmo González Padin withdrew from the company, remaining, however, on the Island with his relatives. Don Jose González Padin then assumed the primary presidency of the firm. As the store had grown so much, it was necessary to make an extension to the premises, and the store extended to the Matienzo passage, to the three-story building next to the one it occupied. The first elevator for commercial use inside a store in San Juan was installed there. A soda fountain was also installed, the first in an establishment of its kind. The company would also later on open stores in Mayagüez and Ponce. In 1923, at a cost of $750,000, González Padín would move to a new building which was built in the Main Plaza of San Juan, and would open their flagship store which became the "First Commercial Skyscraper" in Puerto Rico. San Juan finally had a large department store, facing the Plaza de Armas. The company continued its pioneering work in many details that were later on commonly used by businesses on the island. It was the first store to offer the home delivery service, and to have "a price for everyone", as the fixed price system that later on governed commerce on the island. In 1949, a large display case was decorated for Christmas for the first time, inspired by the Adoration of the Magi. It caused a tremendous impact, as human-sized mannequins were used dressed in allegorical clothing. With this, a tradition began: every year, during the Christmas season, thousands of people, especially children, would wait for the Christmas decorations by González Padín, in Old San Juan. Expanding and Acquisitions: 1950s - early 1990s On October 8, 1958, González Padín announced that it had plans for the following year to build a new store at the stop 20 in Santurce, where once again they would be the first to offer the public, according to company directors, escalators like in some stores in New York. They also said that the new store would have ample parking space in its surroundings, and a canopy through which people could enter the store without getting wet or enduring the sun. In addition, they promised a modern cafeteria. On November 18, 1960, a 69,000 square foot store at a cost of $1,500,000 million dollars, would open at the stop 20 on Ponce de León avenue in Santurce. The new store consisted of 20 departments where you could get from a screw to valuable objects, everything a person could want. There were about 150 employees. Facilities included a parking area for 100 cars, a background music system on all three floors, a soda fountain, and rest rooms. On October 28, 1967, it was announced that González Padín had signed a multi-million dollar lease for a 2-story, 76,500 square foot building in Plaza Las Américas shopping mall. On September 12, 1968, the biggest store at the time in the chain would open at the Plaza las Américas shopping mall in San Juan, with 2-levels of 78,000 square feet. It would be the first store in the chain at a shopping mall. On November 9, 1976, it was reported that González Padín was to return to Ponce. That week the contract was signed between the well-known department store González Padín, Inc., and the gigantic Plaza del Caribe Shopping Center, which was scheduled to begin construction in Ponce by January 1977. This was jointly announced by the owners of Plaza del Caribe, González Padín and the Kislak Realty Corporation, the firm in charge of commercial contracts in the regional shopping center at the time. On October 4, 1972, a new store would open at the Mayagüez Mall in Mayagüez. On November 26, 1976, a new store would open at the Plaza del Carmen Mall in Caguas. It was mentioned as one of the most modern stores in the chain at the time. On October 9, 1978, at a cost of $8 million, the 7th store at the time in the chain would open at the Plaza Carolina shopping mall in Carolina. The architect of the project, Alfredo M. González, pointed out that although Plaza Carolina was in charge of the construction of the building, it was built and designed following the specifications of his firm, who was assigned by González Padin & Co., to take charge of the project. The structure of the new building, was a stand out for its solid construction with reinforced concrete walls and its modern and extensive facilities. Among the singularities of the new store you could point out the reflective glass panels on the facade of the second floor of the store, that would allow the customer to have a panoramic view from inside, giving the store a sense of spaciousness and a different facade; "escalators" spacious interiors; extensive rest areas for employees and a green area that would give a tropical atmosphere and great color to the new store. The store was on the center of the Plaza Carolina shopping mall and opened to it on two levels, allowing the public access to both, the first floor, as for the second. The store facilities covered an area of 88,000 square feet, of which 60,000 square feet would be destined for sales, 20,000 to a warehouse, and 8,000 for the other office facilities, beauty salon and rest areas for the public and employees. On November 3, 1981, González Padin, always concerned with providing a complete and quality service to its clientele, acquired the prestigious Los Muchachos hardware store chain, dedicating 5,000 square feet to it on the first floor of its store in the Plaza Carolina shopping mall. This was the most complete hardware store that existed at the Plaza Carolina shopping mall, offering its prestigious products to the public, such as: Sherwin Williams paints, Kohler bathroom pieces, and the Schlage locks. On November 27, 1981, a new store would open at the Arecibo Mall in Arecibo. On December 28, 1983, a new store would be announced to be at the Santa Rosa Mall in Bayamón. The building would occupy 20,000 square feet with some additional 4,000 square feet of office space. It would take up a space once occupied by Belk-Lindsey at the shopping mall. On September 6, 1984, it was reported that González Padín's decision to move its advertising account of nearly $2 million to a completely new agency was made based on the complexity of the agency and not with the intention of establishing his own agency. Ricardo González, then president of the chain of stores, which included Los Muchachos hardware stores, said the day earlier. On August 11th of that year, Enrique Marti-Coll, president of Marti, Flores, Prieto, Comunicaciones, Inc., announced that González Padín had decided to end relations with the agency effective October 15 of that year, after 12 years, "to establish his own agency and do publicity of González Padín and Los Muchachos". González Padín was leaving with "another agency that is being formed and that comes from New York," said Ricardo González at the time rejecting Martí's allegations. He did not want to identify it but pointed out that he was doing work for the company. He admitted that González Padín would have a stake in the new agency and that for now the stores would be his main clients, but he insisted that it would be open to accepting new clients. He also rejected information indicating that the change was made for economic reasons. On November 2, 1984, it was reported that a new agency was officially operating under the name of Carabiner, Inc., the new agency that had replaced Martí, Flores, Prieto in managing González Padín's advertising account, would offer complete services but with greater emphasis on the "retail" phase. The announcement was made in a press release issued by the then president of the new agency, Richard Serrano, who insisted that the agency is independent and was not owned by González Padín. "Carabiner will be in charge of the vast campaigns of González Padín, as well as other accounts and is currently located in the González Padín building," Serrano said in the press release. "Although our agency has been established with the cooperation of González Padín, Carabiner is a totally separate entity from its own guidelines and personality, not an in-house agency (own agency)," he added. In 1988, General Gases & Supplies Corp., suppliers of industrial gases and related products, purchased four Los Muchachos hardware stores from González Padín, in a commercial transaction of more than $2,000,000. On November 24, 1989, Axxents was inaugurated in the Plaza Las Américas shopping mall, a new store of the González Padín & Co., which specialized in the sale of fragrances, beauty supplies and accessories - for both women and men - along with a skin care treatment center. A large group of personalities from the community gathered for the ribbon cutting by Eva Marie González, daughter of Pepe González and who was accompanied by her father, her uncle and Pepe's twin brother, Paco González and Ricardo F. González., president of González Padín. The blessing of the new premises was in charge of Father Jaime Vázquez, from the Cathedral of San Juan and personal friend of Ricardo F. González. The elegant architectural design. ultra-modern, by the way - gave a certain air of exclusivity to this store where products from renowned companies such as Elizabeth Arden, Estée Lauder, Clinique, Lancôme, and Erno Laszlo were sold. On December 12, 1989, it was reported that Ernő László would arrive at the González Padín location in Plaza las Américas. At the time the brand had a limited number of 400 institutions in the most prestigious stores in the world. In December 1991, González Padín would acquire the Velasco chain of high-end department stores on the island, which had been a competitor to González Padín for decades. On November 9, 1992, a new store opened at the Plaza del Caribe shopping mall in Ponce. Which had been in development since 1976. Dissolution On July 14, 1995, it was announced that Dillard Department Stores had agreed to acquire the González Padín & Co. department store chain for an undisclosed price. The acquisition of González Padín, which had 1994 sales of $65 million, represented Dillard's entry into Puerto Rico. The closing of the acquisition was contingent on government approvals and satisfaction of other conditions, Dillard’s had said in a statement. A Dillard’s spokesman said that there were no plans to change the name of the stores to Dillard’s, although Dillard’s usually quickly renamed acquisitions and converted them to its own merchandising formulas and systems. In addition to acquiring the seven stores in the chain at the time, Dillard's had also agreed to build a new 250,000 square foot store in the Plaza las Américas shopping mall. On September 16, 1995, Dillard Department Stores, which had announced in July it would buy the Gonzalez Padin department stores in Puerto Rico, said the deal was off. Dillard's said the parties couldn't reach a final agreement. The Dillard-González Padín deal had implications for South Florida, because Dillard's had expressed interest in entering Dade County, where Federated Department Stores dominated malls with its Burdines, Bloomingdale's, and Macy's stores. In mall politics, powerful anchor stores, could essentially block the entry of a competitor. Dillard's entry in Puerto Rico would have given the Arkansas retailer more leverage to enter Federated-dominated malls by becoming a major anchor at the coveted Plaza las Américas mall in Puerto Rico, where Burdines had also expressed an interest. On October 31, 1995, it was finally reported that the over hundred-year-old Puerto Rican department store chain González Padín had announced, the total cessation of its operations, due to economic problems. The chain of stores had recently celebrated the 112th anniversary of its foundation. The president at the time of González Padín, Ricardo F. González, informed on the 30th, about the liquidation of the merchandise and the closure of all its establishments. González indicated that the company could not overcome the serious economic problems that it had faced for several years, due to the competition of other stores on the island. "As you know, we have explored every possible alternative and undertaken every remedy to avoid this outcome," González said. "In the middle of this year we thought we would save the situation by selling to the Dillard's chain, but these efforts failed for reasons beyond our control," González said. The closure which began on the 30th started with the closure of its main store at the time, in the Plaza las Américas shopping mall, causing the layoff of the numerous employees who worked there. In total, it was estimated that some 1,000 people that worked in González Padín would be unemployed by the end of December of that year. Under its umbrella it had other stores such as Velasco another high-end department store chain of Puerto Rico, Zona Libre, Axxents, Home Store, and Los Muchachos hardware store, which all closed with the chain by December of that year. Gallery References Economic history of Puerto Rico Defunct companies of Puerto Rico Retail companies of Puerto Rico Puerto Rican brands Companies based in San Juan, Puerto Rico Retail companies established in 1883 Retail companies disestablished in 1995
The Boston mayoral election of 2017 was held on Tuesday, November 7, 2017, to elect the mayor of Boston, Massachusetts. Incumbent Democratic mayor Marty J. Walsh won re-election to a second term, defeating District 7 City Councilor Tito Jackson, and two long-shot candidates, Robert Cappucci and Joseph Wiley. A non-partisan preliminary election was held on Tuesday, September 26, 2017, with Walsh and Jackson advancing into a November runoff election. In the November election, Walsh secured a landslide victory, winning by a two-to-one margin. A total of 109,034 of the city's approximately 392,000 registered voters cast a ballot in the November election. The voter turnout of 27.80% was down ten percentage points from the 2013 mayoral election, which generated more excitement as the first Boston mayoral race in a generation without an incumbent. Candidates Candidates who advanced to general election Candidates eliminated in the primary Primary election Polling General election Endorsements By October 2017, ten of the 13 Boston City Council members endorsed Walsh for re-election. Ayanna Pressley remained neutral due to her husband being employed by the mayor, and Andrea Campbell declined to comment on her preference. The editorial boards of both of Boston's major daily newspapers endorsed Walsh, with The Boston Globe editorial board endorsing Whim for a second time, citing his success in handling housing and the city's vibrancy during his first term. The Boston Herald editorial board also endorsed Walsh, saying the newspaper was wrong not to give their endorsement to Walsh in 2013. Polling Results See also List of mayors of Boston, Massachusetts References External links Boston Mayor Race – Nov 07, 2017 at ourcampaigns.com Mayoral election Boston mayoral Boston Mayoral elections in Boston Non-partisan elections Boston mayoral election Marty Walsh
```c /* $OpenBSD: signbitl.c,v 1.1 2008/12/09 19:52:34 martynas Exp $ */ /* * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include <sys/types.h> #include <machine/ieee.h> #include <math.h> int __signbitl(long double e) { struct ieee_ext *p = (struct ieee_ext *)&e; return p->ext_sign; } ```
Brussels Cemetery (, ) is a cemetery belonging to the City of Brussels in Brussels, Belgium. Located in the neighbouring municipality of Evere, rather than in the City of Brussels proper, it is adjacent to Schaerbeek Cemetery and Evere Cemetery, but should not be confused with either. The grounds include many war memorials, including a large monument to the soldiers of the Battle of Waterloo by the sculptor Jacques de Lalaing. Notable interments Personalities buried there include: Jules Anspach (1829–1879), mayor of the City of Brussels Charles de Brouckère (1796–1860), mayor of the City of Brussels Charles Buls (1837–1914), mayor of the City of Brussels Johnny Claes (1916–1956), racing driver Jacques-Louis David (1748–1825), French painter César De Paepe (1841–1890), physician and political figure Adrien de Gerlache (1866–1934), explorer William Howe De Lancey (1778–1815), British Army officer Robert Goldschmidt (1877–1935), scientist Marcellin Jobard (1792–1861), lithographer, photographer, journalist and inventor Adolphe Max (1869–1939), mayor of the City of Brussels Adolphe Quetelet (1796–1874), astronomer and mathematician George Thompson VC (1920–1945), Royal Air Force aviator François van Campenhout (1779–1848), composer and violinist Henri Van Dievoet (1869–1931), architect Jules Van Dievoet (1844–1917), barrister at the Court de Cassation of Belgium Charles van Lerberghe (1861–1907), symbolist author Pierre-Théodore Verhaegen (1796–1862), founder of the Free University of Brussels British Waterloo Campaign Monument The idea of bringing together the remains of British officers that had been killed during the Waterloo Campaign of 1815, was first suggested in 1861. In 1882, the City Council of Brussels approved a suggestion to donate of the cemetery to re-bury British officers whose graves were in Brussels or around the battlefields of Waterloo and Quatre Bras. In 1888, a public subscription was launched by Queen Victoria in the United Kingdom to finance a suitable monument. The resulting sculpture by Jacques de Lalaing is a large edifice of bronze figures on a plinth of rusticated stone blocks. It depicts Britannia with lowered helmet and trident, surrounded by discarded British weapons, uniforms and equipment. Three lions lie at her feet; one is sleeping. Attached to the sides of the plinth are circular shields bearing the names of the regiments that fought in the campaign. Amongst the inscriptions is ("I remember the country of the dead"). The monument was unveiled by the Duke of Cambridge on 26 August 1890. Below the monument is a crypt with 16 niches containing 17 bodies, which were transferred there between 1890 and 1894. Four of these were killed at Quatre Bras, the remainder at Waterloo, including Captain John Lucie Blackman of the Coldstream Regiment of Foot Guards, who was killed at Hougomont on the day of the battle. The exception, and the only Non-Commissioned Officer, is Sergeant-Major Edward Cotton (7th Hussars), who survived the battle to become a guide for tourists to the battlefield and was buried at Hougomont after his death in 1849. The remainder are all British Army officers and include Colonel Sir William Howe De Lancey (Deputy Quartermaster-General of the British Army in Belgium), Colonel Edward Stables and Lieutenant-Colonel William Henry Milnes (both 1st Foot Guards), Lieutenant-Colonel Sir Alexander Gordon (3rd Foot Guards) and Major William Lloyd (Royal Artillery). British Commonwealth War Graves (20th Century) The cemetery contains the war graves of 53 British Commonwealth service personnel of World War I and 587 from World War II. Most of the graves from the former war, all within Plot X, are of bodies of prisoners of war exhumed from Germany and reburied here by the Canadian Corps in April 1919. Those of the latter war are of troops of the British Expeditionary Force in Belgium in May 1940 before the retreat to Dunkirk, aircrew crashed or shot down over Belgium, and, predominately, those on lines of communication duties after the liberation of Brussels in September 1944. The Commonwealth War Graves Commission are responsible for these graves as well as for 35 Foreign National service burials and 5 non-World War service burials. Belgian Airmen's Field of Honour This Field of Honour, located within the cemetery, was created to inter Belgian airmen who died in World War II. It is administered and maintained by the Belgian Ministry of Defence, although the Commonwealth War Graves Commission commemoratively lists 84 of the airmen buried here who died serving in British Commonwealth air forces following the fall of Belgium to Nazi German occupation in 1940. In all, over 200 airmen are commemorated there with headstones. Around 30 of those, whose headstones are marked as disparu (i.e. missing), have no known grave. See also List of cemeteries in Belgium Ixelles Cemetery Laeken Cemetery Molenbeek-Saint-Jean Cemetery Saint-Josse-ten-Noode Cemetery Schaerbeek Cemetery References Notes External links Brussels City Cemeteries Park of the Brussels Cemetery Cemeteries in Belgium Buildings and structures in Brussels Tourist attractions in Brussels Geography of Brussels Culture in Brussels Evere Burials at Brussels Cemetery Commonwealth War Graves Commission cemeteries in Belgium
Hans Bo Berglund (born 26 March 1948) is a Swedish sprint canoeist who competed in the early 1970s. He was eliminated in the semifinals of the K-2 1000 m event at the 1972 Summer Olympics in Munich. Berglund's father, Hans, won gold in the K-2 1000 m event at the 1948 Summer Olympics in London. References Sports-reference.com profile 1948 births Canoeists at the 1972 Summer Olympics Living people Olympic canoeists for Sweden Swedish male canoeists Place of birth missing (living people)
```xml export { default as InteractWithContractsFlow } from './InteractWithContractsFlow'; ```
Darbandikhan () is a town in the governorate of Sulaimaniyah in Kurdistan Region, Iraq. It is situated within the area of autonomy for the Kurdistan region of Iraq, inhabited by the majority of the Kurds. Darbandikhan is located close to Darbandikhan Lake (), and on the border with Diyala Province. It has a population of 45,500 as of 2018. See also Darbandikhan Dam Diyala River References External links Map and Photos of Darbandikhan at mapcarta.com Populated places in Sulaymaniyah Province Kurdish settlements in Iraq
Ochocice is a village in the administrative district of Gmina Kamieńsk, within Radomsko County, Łódź Voivodeship, in central Poland. It lies approximately north of Kamieńsk, north of Radomsko, and south of the regional capital Łódź. References Ochocice
```xml export const ReleaseNotesUri = __RELEASE_CHANNEL__ === 'beta' ? 'path_to_url : 'path_to_url ```
```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_ ```
```java package com.kiminonawa.mydiary.entries.diary; import android.app.Dialog; import android.os.Bundle; import android.support.annotation.Nullable; import android.view.View; import com.kiminonawa.mydiary.R; import com.kiminonawa.mydiary.shared.gui.CommonDialogFragment; /** * Created by daxia on 2016/11/14. */ public class ClearDialogFragment extends CommonDialogFragment { /** * Callback */ public interface ClearDialogCallback { void onClear(); } private ClearDialogCallback callback; @Override public Dialog onCreateDialog(Bundle savedInstanceState) { try { callback = (ClearDialogCallback) getTargetFragment(); } catch (Exception e) { e.printStackTrace(); } return super.onCreateDialog(savedInstanceState); } @Override public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { this.getDialog().setCanceledOnTouchOutside(true); super.onViewCreated(view, savedInstanceState); this.TV_common_content.setText(getString(R.string.diary_clear_message)); } @Override protected void okButtonEvent() { callback.onClear(); dismiss(); } @Override protected void cancelButtonEvent() { dismiss(); } } ```
```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 ```
Joseph Smothers was a Baptist minister and state legislator in Mississippi. He represented Claiborne County in the Mississippi House of Representatives from 1872 to 1875. He was born in Kentucky. He lived in Port Gibson, Mississippi. See also African-American officeholders during and following the Reconstruction era References People from Port Gibson, Mississippi Year of birth missing Year of death missing African-American politicians during the Reconstruction Era African-American state legislators in Mississippi Members of the Mississippi House of Representatives Baptist ministers from the United States Baptists from Mississippi
Ferdinando Mattei (24 July 1761 – 14 July 1829) was a Maltese prelate who was appointed bishop of Malta in 1807 and Archbishop of Rhodes (before the year 1823). Mattei was born in Senglea Malta on 24 July 1761. After being ordained priest, Mattei was appointed as one of the knights of St John's Conventual Chaplains because of the high regard they had for him. After the knights were expelled from the island by the French, Mattei worked with the Maltese and avoided any contact with the French. After the French left Malta the British looked with favor upon him. In 1803 Mattei was appointed as a Monsignor of the Cathedral and on 23 December 1805 Pope Pius VIII appointed him as titular Bishop of Paphos. This entitled the new bishop to help Bishop Labini in running the diocese. In 1818 he ordained bishop Publio Maria Sant the Titular Bishop of Laranda. On 18 September 1807, Bishop Mattei was himself appointed as the new bishop of Malta after the death of Bishop Labini. He was opposed by Francesco Saverio Caruana who himself wanted to be bishop of Malta. Mattei died on 14 July 1829, ten days before his 68th birthday, and Caruana would eventually succeed him. References External links Catholic Hierarchy SENGLEA THROUGH THE AGES – 69 & 70 M M M M
```javascript /* Use of this source code is governed by an MIT-style license that can be found in the LICENSE file or at path_to_url */ const {expect} = require('chai'); const fse = require('fs-extra'); const glob = require('glob'); const upath = require('path'); const {docs_build} = require('../../../gulp-tasks/docs.js'); describe('[all] JSDocs', function () { it('should run JSDocs and have no unexpected results', async function () { // Windows is super unhappy with the JSDocs build pipeline. // With gulp.cmd in spawn, the query string used by the baseline template // causes issues. if (process.platform === 'win32') { this.skip(); return; } this.timeout(60 * 1000); const projectRoot = upath.join(__dirname, '..', '..', '..'); const docsPath = upath.join(projectRoot, 'docs'); await docs_build(); const docs = glob.sync('*.html', { cwd: docsPath, }); // global.html is only added when the docs have stray global values. expect( docs.includes('global.html'), `'global.html' should not be present in ${docsPath}`, ).to.be.false; // On some occasions, module.exports can leak into JSDocs, and breaks // into the final template. const indexAllHTML = await fse.readFile( upath.join(docsPath, 'index-all.html'), 'utf8', ); expect( indexAllHTML.includes( '<a href="module.html#.exports">module.exports</a>', ), `'module.exports' was found in index-all.html`, ).to.be.false; // We document this private method because we expect developers to // override it in their extending classes. const privateMethodAllowlist = ['_handle']; // string.matchAll() isn't supported before node v12... const regexp = /<a href="([^"]+)">/g; let match; while ((match = regexp.exec(indexAllHTML)) !== null) { const href = match[1]; if ( href.includes('#_') && !privateMethodAllowlist.some((allow) => href.endsWith(allow)) ) { throw new Error(`Private method found in JSDocs: ${href}`); } } }); }); ```
Stéphane Fontaine is a French cinematographer. He graduated from the École nationale supérieure Louis-Lumière in 1985, and began his career as first assistant camera on films directed by Arnaud Desplechin, Jim Jarmusch, Leos Carax and Olivier Assayas, among others. He won the César Award for Best Cinematography in 2006 for The Beat That My Heart Skipped and in 2010 for A Prophet. Filmography Short film Feature film Documentary works Short film Television Decorations Chevalier of the Order of Arts and Letters (2015) References External links Living people French cinematographers Date of birth missing (living people) Place of birth missing (living people) Chevaliers of the Ordre des Arts et des Lettres Year of birth missing (living people)
```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 } } ```
The Nest (released 2003 in Oslo, Norway on the Emarcy (067 153-2) label) is an album by Norwegian pianist Ketil Bjørnstad, with special guest artist Anneli Drecker, presenting lyrics by the poet Hart Crane (1899–1932). Reception The Dagbladet review awarded the album 4 stars, and Amazon.de review 4.5 stars. Track listing «The Nest» (2:40) - Preludium «In Shadow» (4:20) «The Window» (3:07) «The Bridge I» (5:07) «The Bathers» (4:06) «The Hope I» (1:36) «Exile» (3:14) «The Circle» (4:34) «Darkland» (2:37) «Forgetfulness» (4:00) «The Joy» (3:41) «The Bridge II» (5:04) «Old Song» (3:48) «The Hope II» (5:04) «The Memory» (4:30) «Fear» (3:28) «The Nest» (4:01) - Postludium Personnel Ketil Bjørnstad – piano & synthesizers Anneli Drecker – vocals Nora Taksdal – viola Eivind Aarset – guitars Kjetil Bjerkestrand – synthesizers, samples & percussion Credits All compositions by Ketil Bjørnstad Words from the poetry of Hart Crane (1899–1932) Produced by Ketil Bjørnstad Recorded at Rainbow Studio, Oslo, Norway, August–December 2002 Engineer – Jan Erik Kongshaug Additional recordings by Kjetil Bjerkestrand and Peer Espen Ursfjord Mixed by Jan Erik Konshaug and Ketil Bjørnstad Mastering by Bjørn Engelmann, Cutting Room, Stockholm, Sweden Cover Photo – «The Nest», from the series «In the Feminine» by Eva-Maria Riegler Artist photos – Stian Andersen Cover design – Deville Anneli Drecker appears courtesy of EMI Records, Norway References External links Ketil Bjørnstad Official Website 2003 albums Ketil Bjørnstad albums
```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 ```
Denis of Hungary (, , , , ; c. 1210 – 1268/72), was a Hungarian-born Aragonese knight and nobleman in the 13th century. Born into a prominent family in the Kingdom of Hungary, he escorted Queen Violant of Hungary to the Kingdom of Aragon in 1235, where he settled down and faithfully served James I of Aragon during the Reconquista. Integrating into the local elite, Denis was the eponymous ancestor of the prominent Dionís (Dionisii) noble family. In Canals, Valencia, a street is named after him. Theories of origin Hungarian genealogist Mór Wertner was the first scholar in the late 19th century, who connected "Denis of Hungary" with the prominent lord Denis, son of Ampud, who was responsible for the economy policy and acted as key architect of the large-scale financial reforms during the reign of Andrew II of Hungary. He identified them with each other. According to Wertner, after Andrew's son and main opponent, Béla IV ascended the Hungarian throne in 1235, Denis, who fell out of favor in the royal court, escorted his "relative" Violant (also Yolanda), Andrew's youngest daughter, to the Kingdom of Aragon in 1235, where she became the queen consort of King James I of Aragon. However, according to the contemporaneous Roger of Torre Maggiore's Carmen Miserabile, Denis, son of Ampud was blinded by Béla IV immediately after his coronation, and he died in captivity in the next year. That Denis, who served the Aragonese royal couple, was alive even in 1268, which is also made impossible to identify him with Denis, son of Ampud. Therefore, historian Szabolcs de Vajay claimed Denis had a namesake son, who served as ispán of Szepes County, possibly sometime between 1231 and 1234 or 1235, like previously his father (based on the inscription on the tombstone of his daughter Elizabeth, where Denis was styled as "comes de Cepeз"), who was the first known office-holder of that dignity in Hungary. Vajay refused the former compliance efforts of "Cepeз" with the Csepel Island, a major royal residence and hunting forest. Accordingly he expatriated to Aragon with his queen in 1235, and after his father became a victim of King Béla's political purges, there was no hope for him to return to Hungary. This "Comes Dionysius" was referred to as Queen Violant's relative () in contemporary Aragonese documents. His alleged father Denis, son of Ampud was indeed a relative of the Hungarian royal family: he was a son of Ampud II and an unidentified daughter of Count Berthold III of Andechs, Margrave of Istria. Through the maternal lineage, Denis was the first cousin of Gertrude of Merania, a daughter of Berthold IV and the first spouse of Andrew II of Hungary. Although Violant was born from the second marriage of Andrew (her mother was Yolanda of Courtenay), thus there was no blood relationship between the queen and Denis of Hungary according to this theory, but the knight clearly belonged to a wider kinship of the royal family. Hungarian and Catalan historiography overall accepted Vajay's theory. In his 2018 study, Hungarian historian Dániel Bácsatyai disputed the above identification based on archival research. A certain cleric Charles, who attended the University of Bologna, was referred to as a nephew of Cardinal Stephen Báncsa in 1264, then a son of "Count Denis of Hungary" in 1269. Consequently, Bácsatyai considered this Denis belonged to the gens (clan) Báncsa and was not related to Denis, son of Ampud. Accordingly, Denis was the brother of Cardinal Stephen Báncsa and was also a son of Orbász Báncsa. Bácsatyai argued the inscription on the tombstone of his daughter Elizabeth, where Denis was styled as "comes de Cepeз" is not necessarily identifiable with Szepes County. He also claimed the mention of kinship relations between Violant and Denis first appear only in the works of 16th-century historian Jerónimo Zurita y Castro. Historian Gergely Kiss, who had previously written the biography of Cardinal Báncsa, accepted Bácsatyai's argument. Kiss analyzed the composition of Báncsa's household (familia) in the Roman Curia, and observed an unusually large proportion of clergy of Spanish nationality, which is due in part to the fraternal relationship with Denis, according to the historian. Career in Aragon The wedding of James I and Violant took place in the Saint Eulalia Cathedral in Barcelona on 8 September 1235. Vajay considered Denis was entrusted by the elderly king Andrew II shortly before his death to escort and protect his youngest daughter in the Iberian Peninsula. Denis is appeared as leader of that Hungarian contingent, consisted of knights and young nobles, which escorted the queen to the Kingdom of Aragon. According to the records of the Llibre del Repartiment, several Hungarian knights served faithfully the royal couple beside "Count Denis", including certain Andreas Ungarus, Martinus Ungarus, R. Dungria, Johannes de Ongría, Egidius de Hungaria, Jacobus de Pilis and Simon de Stregonia [Esztergom], who all belonged to the queenly court. Queen Violant had an important political role and was one of the most valuable advisors of the king, on whom she had a strong influence. Shortly after the wedding, James I granted fiefdoms in "Beo" and "Ayn" to Denis. Historians identified these lands with Alcudia de Veo and Aín (present-day in the Province of Castellón) which laid on the northern slope of the Serra d'Espadà, and both lordships functioned as the king's preparations for the war along the borders of Aragon and Valencia. Denis and the other Hungarian knights actively participated in the reconquest of Valencia and the surrounding areas after 1235. Finally, Valencia capitulated to Aragonese rule on 28 September 1238, following an extensive campaign against the Moors. James triumphantly entered the city with his wife Violant on 9 October 1238. Denis' fiefdoms were confirmed in a perpetual and inheritance right (with tax exemption and free usage of local furnace and mill) on 24 January 1244. After the reconquest, several members of the Hungarian contingent were granted landholdings, houses and orange groves in Valencia and the surrounding settlements, according to the Llibre del Repartiment. Most of them married Aragonese lady-in-waitings, integrating into the local nobility. After the capture of Valencia, Denis himself was granted a palace opening onto two streets in the city, near the residence of the Bishop of Valencia. On 24 March 1249, King James donated the estate Canals, receiving the local tower and the small village, while the king created a new lordship, the Señorío de Torre de Canals for Denis and his kinship. Denis also became the lord of Crespins and owner of some estates in Xàtiva, in exchange for Alcudia de Veo and Aín, which the king took back for the Crown of Aragon, as it was recorded in the Llibre del Repartiment. Canals and Crespins laid in the fertile valley of the river Cànyoles. In the latter place, Denis built a fortified turreted mansion. Vajay considered the repossessed estates were of strategic importance in military terms, but were less profitable after the end of the war, thus, the exchange occurred in Denis' favor, and his new lordships were not mere compensation. The historian argued since then the signs of royal benevolence in favor of Denis continue to multiply, the beneficiary being designated for the most part as the "Count of Hungary", as he also names, very often, the many documents which, in the Crown Archives of Aragon, reflects his power and influence in the Aragonese royal court. Despite Denis pursued a successful court and military career in Aragon, he did not renounce his old titles which referred to his former homeland, and still adorned himself more frequently as "count [...] from Hungary" than his new fiefdoms in the kingdoms of Valencia and Aragon. Denis outlived his patron and lady, Queen Violant for decades, who died in 1251. He was still alive in 1265 and 1268, but was mentioned as a deceased person in 1272. The issue of agreements concerning his inheritance with his widow and children appeared in contemporary records in 1276. Descendants Denis married Margarida de Cabrera, a lady-in-waiting of Queen Violant and a member of the influential House of Cabrera in Catalonia. She was the daughter of Guerau V, Viscount of Cabrera and Ramona de Montcada. Through this marriage, Denis instantly elevated into the upper class of the Catalan nobility. For instance, he became a brother-in-law of the reigning viscount Guerau VI and Ramon de Cabrera, the lord of the castle of Anglès. His sister-in-law Gueraua married William II (Guillem), the Baron of Montclús. Margarida's uncle was Ponce I, Count of Urgell and her cousins were counts Ermengol IX and Álvaro. The marriage produced four sons and four daughters, they adopted the Dionís (Dionisii) surname after their father, which goes back to Hungarian tradition. According to Szabolcs de Vajay, the Dionís family became extinct on male branch on 31 January 1974. The last member of the family, Angel Dionis Cormán was employed as a provincial officer of the Renfe Operadora. Denis' eldest son was Amor. He visited Italy in June 1274 when traded with merchants from Pistoia. Peter III of Aragon confirmed his fiefdoms of Canals and Crespins on 3 February 1276. According to a document from 25 April 1278, Amor obtained 30,000 Valencian sous for his personal needs and to keep 40 knights in the service of the king, which reflects his high social status. He was among the nobles of the realm, who renewed their oath of fidelity to Peter III in 1283 in Tarazona. Amor and his younger brother, Gabriel accompanied King Alfonso III during the conquest of Majorca and Ibiza in 1286. However, shortly after they were active members of the Union of Aragon in 1287, which prompted the monarch to guarantee the nobles' right and freedom. Nevertheless, Amor participated in the war against the Kingdom of Majorca for Empordà in 1288. Amor was referred among the king's advisers in 1289. In the course of a diplomatic mission, Amor was sent to the Kingdom of Hungary – his late father's homeland – in 1291, where he negotiated with Andrew III of Hungary on behalf of the new monarch James II. The luxurious journey plunged Amor into serious debt, despite the financial support of the Hungarian king. He was obliged, on the way back to Padua, to contract debts with Hungarian students in the university, which were not settled, based on complaints, even in 1296. At the end of his life, Amor fully indebted in several directions, creditors in many cases applied for royal intervention. He was still alive on 23 May 1301, when sent a letter of supplication written in Catalan language to James II from his residence Canals. His son was James, who sold the lordship of Canals for 105,000 Valencian sous to Jaspert V de Castellnou on 13 October 1309, with the permission of James II, thus Amor was deceased by then. It is plausible that James inherited his father's huge debts and was therefore forced to take this step. The second son, Gabriel was styled as the lord of Navarrés in 1279. He was involved in lawsuits over his lands in 1280. He participated in the aforementioned conquest of Ibiza and Majorca in 1286, then was involved in the political movement of the Union of Aragon in 1287. The union commissioned him to keep the Castle of Biar, which was later taken over by King James II and handed to his uncle Pedro Fernández de Híjar, the natural son of James I, in 1291. Thereafter, Gabriel disappears from sources and he was mentioned as a deceased person in 1309. Gabriel had unidentified daughters, who benefited from the sale of Canals in that year, and a natural son named Peter Lodomer, who was born from an extramarital relationship with Urraca Ximénez de Martes. Despite his illegitimate origin, Pope Clement V permitted him to become a member of one of the chivalric orders. He successfully petitioned to the court of James II in order to his legitimization in September 1327. Denis' another son was Charles, according to Dániel Bácsatyai (see above). He was already a canon of Esztergom in March 1264, when Pope Urban IV appointed him a canon of Verona, upon the request of his uncle Cardinal Stephen Báncsa. He attended the University of Bologna in 1268. He was styled as provost of the collegiate chapter of Hájszentlőrinc in 1270, but it is possible he actually never occupied this church position. It is plausible he died before 1280. Denis' fourth (?) son was Peter Lodomer (not to be confused with his namesake nephew, see above). His double name perhaps indicates his extramarital origin. He attended the University of Bologna from 1268 to 1270, and belonged to the Spanish entourage of Pedro Laurencio, Bishop of Cuenca. He was a canon of the Girona Cathedral in January 1270. He died in this capacity on 24 January 1275. The marriage of Denis and Margarida also produced four daughters. The eldest one, Gracia married Ximeno d'Urrea. The second daughter was Elizabeth, who married Bernat de Cruïlles i de Peratallada. She died on 27 December 1293, without children. Her husband Bernat married for the second time to Gueraua de Cabrera in 1305. Elizabeth's tomb was erected by her husband, and still can be found within the monastery of Sant Miquel in Cruïlles. The inscription of the monument preserved the title of Denis ("Comes de Cepeз"). The tomb depicts two heraldic shields: the right one represents the coat-of-arms of the de Cruïlles i de Peratallada family, while the left one was left blank, indicating that heraldry was not yet widespread in Hungary in the first third of the 13th century, and the Dionís family still had no coat-of-arms at the time of Elizabeth's death. The third daughter was Margaret, who married Pedro Martínez de Luna, the Elder. The fourth daughter was Jordana, who became the wife of Bernat de Penyafort, the nephew of Saint Raymond of Penyafort. References Sources 13th-century Hungarian people 13th-century people from the Kingdom of Aragon Hungarian emigrants to Spain Spanish people of Hungarian descent Denis 02 Báncsa (genus)
```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 ```
Stannett is a surname. Notable people with the surname include: Angelique Stannett (born 1997), Australian rules footballer Shane Stannett (born 1966), New Zealand wrestler Vivian Stannett (1917–2002), American chemical engineer See also Stennett (surname)
```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 ```
```javascript /** * @version: 2.1.27 * @author: Dan Grossman path_to_url * @website: path_to_url */ // Follow the UMD template path_to_url (function (root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Make globaly available as well define(['moment', 'jquery'], function (moment, jquery) { if (!jquery.fn) jquery.fn = {}; // webpack server rendering return factory(moment, jquery); }); } else if (typeof module === 'object' && module.exports) { // Node / Browserify //isomorphic issue var jQuery = (typeof window != 'undefined') ? window.jQuery : undefined; if (!jQuery) { jQuery = require('jquery'); if (!jQuery.fn) jQuery.fn = {}; } var moment = (typeof window != 'undefined' && typeof window.moment != 'undefined') ? window.moment : require('moment'); module.exports = factory(moment, jQuery); } else { // Browser globals root.daterangepicker = factory(root.moment, root.jQuery); } }(this, function(moment, $) { var DateRangePicker = function(element, options, cb) { //default settings for options this.parentEl = 'body'; this.element = $(element); this.startDate = moment().startOf('day'); this.endDate = moment().endOf('day'); this.minDate = false; this.maxDate = false; this.dateLimit = false; this.autoApply = false; this.singleDatePicker = false; this.showDropdowns = false; this.showWeekNumbers = false; this.showISOWeekNumbers = false; this.showCustomRangeLabel = true; this.timePicker = false; this.timePicker24Hour = false; this.timePickerIncrement = 1; this.timePickerSeconds = false; this.linkedCalendars = true; this.autoUpdateInput = true; this.alwaysShowCalendars = false; this.ranges = {}; this.opens = 'right'; if (this.element.hasClass('pull-right')) this.opens = 'left'; this.drops = 'down'; if (this.element.hasClass('dropup')) this.drops = 'up'; this.buttonClasses = 'btn btn-sm'; this.applyClass = 'btn-success'; this.cancelClass = 'btn-default'; this.locale = { direction: 'ltr', format: moment.localeData().longDateFormat('L'), separator: ' - ', applyLabel: 'Apply', cancelLabel: 'Cancel', weekLabel: 'W', customRangeLabel: 'Custom Range', daysOfWeek: moment.weekdaysMin(), monthNames: moment.monthsShort(), firstDay: moment.localeData().firstDayOfWeek() }; this.callback = function() { }; //some state information this.isShowing = false; this.leftCalendar = {}; this.rightCalendar = {}; //custom options from user if (typeof options !== 'object' || options === null) options = {}; //allow setting options with data attributes //data-api options will be overwritten with custom javascript options options = $.extend(this.element.data(), options); //html template for the picker UI if (typeof options.template !== 'string' && !(options.template instanceof $)) options.template = '<div class="daterangepicker dropdown-menu">' + '<div class="calendar left">' + '<div class="daterangepicker_input">' + '<input class="input-mini form-control" type="text" name="daterangepicker_start" value="" />' + '<i class="fa fa-calendar glyphicon glyphicon-calendar"></i>' + '<div class="calendar-time">' + '<div></div>' + '<i class="fa fa-clock-o glyphicon glyphicon-time"></i>' + '</div>' + '</div>' + '<div class="calendar-table"></div>' + '</div>' + '<div class="calendar right">' + '<div class="daterangepicker_input">' + '<input class="input-mini form-control" type="text" name="daterangepicker_end" value="" />' + '<i class="fa fa-calendar glyphicon glyphicon-calendar"></i>' + '<div class="calendar-time">' + '<div></div>' + '<i class="fa fa-clock-o glyphicon glyphicon-time"></i>' + '</div>' + '</div>' + '<div class="calendar-table"></div>' + '</div>' + '<div class="ranges">' + '<div class="range_inputs">' + '<button class="applyBtn" disabled="disabled" type="button"></button> ' + '<button class="cancelBtn" type="button"></button>' + '</div>' + '</div>' + '</div>'; this.parentEl = (options.parentEl && $(options.parentEl).length) ? $(options.parentEl) : $(this.parentEl); this.container = $(options.template).appendTo(this.parentEl); // // handle all the possible options overriding defaults // if (typeof options.locale === 'object') { if (typeof options.locale.direction === 'string') this.locale.direction = options.locale.direction; if (typeof options.locale.format === 'string') this.locale.format = options.locale.format; if (typeof options.locale.separator === 'string') this.locale.separator = options.locale.separator; if (typeof options.locale.daysOfWeek === 'object') this.locale.daysOfWeek = options.locale.daysOfWeek.slice(); if (typeof options.locale.monthNames === 'object') this.locale.monthNames = options.locale.monthNames.slice(); if (typeof options.locale.firstDay === 'number') this.locale.firstDay = options.locale.firstDay; if (typeof options.locale.applyLabel === 'string') this.locale.applyLabel = options.locale.applyLabel; if (typeof options.locale.cancelLabel === 'string') this.locale.cancelLabel = options.locale.cancelLabel; if (typeof options.locale.weekLabel === 'string') this.locale.weekLabel = options.locale.weekLabel; if (typeof options.locale.customRangeLabel === 'string'){ //Support unicode chars in the custom range name. var elem = document.createElement('textarea'); elem.innerHTML = options.locale.customRangeLabel; var rangeHtml = elem.value; this.locale.customRangeLabel = rangeHtml; } } this.container.addClass(this.locale.direction); if (typeof options.startDate === 'string') this.startDate = moment(options.startDate, this.locale.format); if (typeof options.endDate === 'string') this.endDate = moment(options.endDate, this.locale.format); if (typeof options.minDate === 'string') this.minDate = moment(options.minDate, this.locale.format); if (typeof options.maxDate === 'string') this.maxDate = moment(options.maxDate, this.locale.format); if (typeof options.startDate === 'object') this.startDate = moment(options.startDate); if (typeof options.endDate === 'object') this.endDate = moment(options.endDate); if (typeof options.minDate === 'object') this.minDate = moment(options.minDate); if (typeof options.maxDate === 'object') this.maxDate = moment(options.maxDate); // sanity check for bad options if (this.minDate && this.startDate.isBefore(this.minDate)) this.startDate = this.minDate.clone(); // sanity check for bad options if (this.maxDate && this.endDate.isAfter(this.maxDate)) this.endDate = this.maxDate.clone(); if (typeof options.applyClass === 'string') this.applyClass = options.applyClass; if (typeof options.cancelClass === 'string') this.cancelClass = options.cancelClass; if (typeof options.dateLimit === 'object') this.dateLimit = options.dateLimit; if (typeof options.opens === 'string') this.opens = options.opens; if (typeof options.drops === 'string') this.drops = options.drops; if (typeof options.showWeekNumbers === 'boolean') this.showWeekNumbers = options.showWeekNumbers; if (typeof options.showISOWeekNumbers === 'boolean') this.showISOWeekNumbers = options.showISOWeekNumbers; if (typeof options.buttonClasses === 'string') this.buttonClasses = options.buttonClasses; if (typeof options.buttonClasses === 'object') this.buttonClasses = options.buttonClasses.join(' '); if (typeof options.showDropdowns === 'boolean') this.showDropdowns = options.showDropdowns; if (typeof options.showCustomRangeLabel === 'boolean') this.showCustomRangeLabel = options.showCustomRangeLabel; if (typeof options.singleDatePicker === 'boolean') { this.singleDatePicker = options.singleDatePicker; if (this.singleDatePicker) this.endDate = this.startDate.clone(); } if (typeof options.timePicker === 'boolean') this.timePicker = options.timePicker; if (typeof options.timePickerSeconds === 'boolean') this.timePickerSeconds = options.timePickerSeconds; if (typeof options.timePickerIncrement === 'number') this.timePickerIncrement = options.timePickerIncrement; if (typeof options.timePicker24Hour === 'boolean') this.timePicker24Hour = options.timePicker24Hour; if (typeof options.autoApply === 'boolean') this.autoApply = options.autoApply; if (typeof options.autoUpdateInput === 'boolean') this.autoUpdateInput = options.autoUpdateInput; if (typeof options.linkedCalendars === 'boolean') this.linkedCalendars = options.linkedCalendars; if (typeof options.isInvalidDate === 'function') this.isInvalidDate = options.isInvalidDate; if (typeof options.isCustomDate === 'function') this.isCustomDate = options.isCustomDate; if (typeof options.alwaysShowCalendars === 'boolean') this.alwaysShowCalendars = options.alwaysShowCalendars; // update day names order to firstDay if (this.locale.firstDay != 0) { var iterator = this.locale.firstDay; while (iterator > 0) { this.locale.daysOfWeek.push(this.locale.daysOfWeek.shift()); iterator--; } } var start, end, range; //if no start/end dates set, check if an input element contains initial values if (typeof options.startDate === 'undefined' && typeof options.endDate === 'undefined') { if ($(this.element).is('input[type=text]')) { var val = $(this.element).val(), split = val.split(this.locale.separator); start = end = null; if (split.length == 2) { start = moment(split[0], this.locale.format); end = moment(split[1], this.locale.format); } else if (this.singleDatePicker && val !== "") { start = moment(val, this.locale.format); end = moment(val, this.locale.format); } if (start !== null && end !== null) { this.setStartDate(start); this.setEndDate(end); } } } if (typeof options.ranges === 'object') { for (range in options.ranges) { if (typeof options.ranges[range][0] === 'string') start = moment(options.ranges[range][0], this.locale.format); else start = moment(options.ranges[range][0]); if (typeof options.ranges[range][1] === 'string') end = moment(options.ranges[range][1], this.locale.format); else end = moment(options.ranges[range][1]); // If the start or end date exceed those allowed by the minDate or dateLimit // options, shorten the range to the allowable period. if (this.minDate && start.isBefore(this.minDate)) start = this.minDate.clone(); var maxDate = this.maxDate; if (this.dateLimit && maxDate && start.clone().add(this.dateLimit).isAfter(maxDate)) maxDate = start.clone().add(this.dateLimit); if (maxDate && end.isAfter(maxDate)) end = maxDate.clone(); // If the end of the range is before the minimum or the start of the range is // after the maximum, don't display this range option at all. if ((this.minDate && end.isBefore(this.minDate, this.timepicker ? 'minute' : 'day')) || (maxDate && start.isAfter(maxDate, this.timepicker ? 'minute' : 'day'))) continue; //Support unicode chars in the range names. var elem = document.createElement('textarea'); elem.innerHTML = range; var rangeHtml = elem.value; this.ranges[rangeHtml] = [start, end]; } var list = '<ul>'; for (range in this.ranges) { list += '<li data-range-key="' + range + '">' + range + '</li>'; } if (this.showCustomRangeLabel) { list += '<li data-range-key="' + this.locale.customRangeLabel + '">' + this.locale.customRangeLabel + '</li>'; } list += '</ul>'; this.container.find('.ranges').prepend(list); } if (typeof cb === 'function') { this.callback = cb; } if (!this.timePicker) { this.startDate = this.startDate.startOf('day'); this.endDate = this.endDate.endOf('day'); this.container.find('.calendar-time').hide(); } //can't be used together for now if (this.timePicker && this.autoApply) this.autoApply = false; if (this.autoApply && typeof options.ranges !== 'object') { this.container.find('.ranges').hide(); } else if (this.autoApply) { this.container.find('.applyBtn, .cancelBtn').addClass('hide'); } if (this.singleDatePicker) { this.container.addClass('single'); this.container.find('.calendar.left').addClass('single'); this.container.find('.calendar.left').show(); this.container.find('.calendar.right').hide(); this.container.find('.daterangepicker_input input, .daterangepicker_input > i').hide(); if (this.timePicker) { this.container.find('.ranges ul').hide(); } else { this.container.find('.ranges').hide(); } } if ((typeof options.ranges === 'undefined' && !this.singleDatePicker) || this.alwaysShowCalendars) { this.container.addClass('show-calendar'); } this.container.addClass('opens' + this.opens); //swap the position of the predefined ranges if opens right if (typeof options.ranges !== 'undefined' && this.opens == 'right') { this.container.find('.ranges').prependTo( this.container.find('.calendar.left').parent() ); } //apply CSS classes and labels to buttons this.container.find('.applyBtn, .cancelBtn').addClass(this.buttonClasses); if (this.applyClass.length) this.container.find('.applyBtn').addClass(this.applyClass); if (this.cancelClass.length) this.container.find('.cancelBtn').addClass(this.cancelClass); this.container.find('.applyBtn').html(this.locale.applyLabel); this.container.find('.cancelBtn').html(this.locale.cancelLabel); // // event listeners // this.container.find('.calendar') .on('click.daterangepicker', '.prev', $.proxy(this.clickPrev, this)) .on('click.daterangepicker', '.next', $.proxy(this.clickNext, this)) .on('mousedown.daterangepicker', 'td.available', $.proxy(this.clickDate, this)) .on('mouseenter.daterangepicker', 'td.available', $.proxy(this.hoverDate, this)) .on('mouseleave.daterangepicker', 'td.available', $.proxy(this.updateFormInputs, this)) .on('change.daterangepicker', 'select.yearselect', $.proxy(this.monthOrYearChanged, this)) .on('change.daterangepicker', 'select.monthselect', $.proxy(this.monthOrYearChanged, this)) .on('change.daterangepicker', 'select.hourselect,select.minuteselect,select.secondselect,select.ampmselect', $.proxy(this.timeChanged, this)) .on('click.daterangepicker', '.daterangepicker_input input', $.proxy(this.showCalendars, this)) .on('focus.daterangepicker', '.daterangepicker_input input', $.proxy(this.formInputsFocused, this)) .on('blur.daterangepicker', '.daterangepicker_input input', $.proxy(this.formInputsBlurred, this)) .on('change.daterangepicker', '.daterangepicker_input input', $.proxy(this.formInputsChanged, this)) .on('keydown.daterangepicker', '.daterangepicker_input input', $.proxy(this.formInputsKeydown, this)); this.container.find('.ranges') .on('click.daterangepicker', 'button.applyBtn', $.proxy(this.clickApply, this)) .on('click.daterangepicker', 'button.cancelBtn', $.proxy(this.clickCancel, this)) .on('click.daterangepicker', 'li', $.proxy(this.clickRange, this)) .on('mouseenter.daterangepicker', 'li', $.proxy(this.hoverRange, this)) .on('mouseleave.daterangepicker', 'li', $.proxy(this.updateFormInputs, this)); if (this.element.is('input') || this.element.is('button')) { this.element.on({ 'click.daterangepicker': $.proxy(this.show, this), 'focus.daterangepicker': $.proxy(this.show, this), 'keyup.daterangepicker': $.proxy(this.elementChanged, this), 'keydown.daterangepicker': $.proxy(this.keydown, this) //IE 11 compatibility }); } else { this.element.on('click.daterangepicker', $.proxy(this.toggle, this)); this.element.on('keydown.daterangepicker', $.proxy(this.toggle, this)); } // // if attached to a text input, set the initial value // if (this.element.is('input') && !this.singleDatePicker && this.autoUpdateInput) { this.element.val(this.startDate.format(this.locale.format) + this.locale.separator + this.endDate.format(this.locale.format)); this.element.trigger('change'); } else if (this.element.is('input') && this.autoUpdateInput) { this.element.val(this.startDate.format(this.locale.format)); this.element.trigger('change'); } }; DateRangePicker.prototype = { constructor: DateRangePicker, setStartDate: function(startDate) { if (typeof startDate === 'string') this.startDate = moment(startDate, this.locale.format); if (typeof startDate === 'object') this.startDate = moment(startDate); if (!this.timePicker) this.startDate = this.startDate.startOf('day'); if (this.timePicker && this.timePickerIncrement) this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); if (this.minDate && this.startDate.isBefore(this.minDate)) { this.startDate = this.minDate.clone(); if (this.timePicker && this.timePickerIncrement) this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); } if (this.maxDate && this.startDate.isAfter(this.maxDate)) { this.startDate = this.maxDate.clone(); if (this.timePicker && this.timePickerIncrement) this.startDate.minute(Math.floor(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); } if (!this.isShowing) this.updateElement(); this.updateMonthsInView(); }, setEndDate: function(endDate) { if (typeof endDate === 'string') this.endDate = moment(endDate, this.locale.format); if (typeof endDate === 'object') this.endDate = moment(endDate); if (!this.timePicker) this.endDate = this.endDate.add(1,'d').startOf('day').subtract(1,'second'); if (this.timePicker && this.timePickerIncrement) this.endDate.minute(Math.round(this.endDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); if (this.endDate.isBefore(this.startDate)) this.endDate = this.startDate.clone(); if (this.maxDate && this.endDate.isAfter(this.maxDate)) this.endDate = this.maxDate.clone(); if (this.dateLimit && this.startDate.clone().add(this.dateLimit).isBefore(this.endDate)) this.endDate = this.startDate.clone().add(this.dateLimit); this.previousRightTime = this.endDate.clone(); if (!this.isShowing) this.updateElement(); this.updateMonthsInView(); }, isInvalidDate: function() { return false; }, isCustomDate: function() { return false; }, updateView: function() { if (this.timePicker) { this.renderTimePicker('left'); this.renderTimePicker('right'); if (!this.endDate) { this.container.find('.right .calendar-time select').attr('disabled', 'disabled').addClass('disabled'); } else { this.container.find('.right .calendar-time select').removeAttr('disabled').removeClass('disabled'); } } if (this.endDate) { this.container.find('input[name="daterangepicker_end"]').removeClass('active'); this.container.find('input[name="daterangepicker_start"]').addClass('active'); } else { this.container.find('input[name="daterangepicker_end"]').addClass('active'); this.container.find('input[name="daterangepicker_start"]').removeClass('active'); } this.updateMonthsInView(); this.updateCalendars(); this.updateFormInputs(); }, updateMonthsInView: function() { if (this.endDate) { //if both dates are visible already, do nothing if (!this.singleDatePicker && this.leftCalendar.month && this.rightCalendar.month && (this.startDate.format('YYYY-MM') == this.leftCalendar.month.format('YYYY-MM') || this.startDate.format('YYYY-MM') == this.rightCalendar.month.format('YYYY-MM')) && (this.endDate.format('YYYY-MM') == this.leftCalendar.month.format('YYYY-MM') || this.endDate.format('YYYY-MM') == this.rightCalendar.month.format('YYYY-MM')) ) { return; } this.leftCalendar.month = this.startDate.clone().date(2); if (!this.linkedCalendars && (this.endDate.month() != this.startDate.month() || this.endDate.year() != this.startDate.year())) { this.rightCalendar.month = this.endDate.clone().date(2); } else { this.rightCalendar.month = this.startDate.clone().date(2).add(1, 'month'); } } else { if (this.leftCalendar.month.format('YYYY-MM') != this.startDate.format('YYYY-MM') && this.rightCalendar.month.format('YYYY-MM') != this.startDate.format('YYYY-MM')) { this.leftCalendar.month = this.startDate.clone().date(2); this.rightCalendar.month = this.startDate.clone().date(2).add(1, 'month'); } } if (this.maxDate && this.linkedCalendars && !this.singleDatePicker && this.rightCalendar.month > this.maxDate) { this.rightCalendar.month = this.maxDate.clone().date(2); this.leftCalendar.month = this.maxDate.clone().date(2).subtract(1, 'month'); } }, updateCalendars: function() { if (this.timePicker) { var hour, minute, second; if (this.endDate) { hour = parseInt(this.container.find('.left .hourselect').val(), 10); minute = parseInt(this.container.find('.left .minuteselect').val(), 10); second = this.timePickerSeconds ? parseInt(this.container.find('.left .secondselect').val(), 10) : 0; if (!this.timePicker24Hour) { var ampm = this.container.find('.left .ampmselect').val(); if (ampm === 'PM' && hour < 12) hour += 12; if (ampm === 'AM' && hour === 12) hour = 0; } } else { hour = parseInt(this.container.find('.right .hourselect').val(), 10); minute = parseInt(this.container.find('.right .minuteselect').val(), 10); second = this.timePickerSeconds ? parseInt(this.container.find('.right .secondselect').val(), 10) : 0; if (!this.timePicker24Hour) { var ampm = this.container.find('.right .ampmselect').val(); if (ampm === 'PM' && hour < 12) hour += 12; if (ampm === 'AM' && hour === 12) hour = 0; } } this.leftCalendar.month.hour(hour).minute(minute).second(second); this.rightCalendar.month.hour(hour).minute(minute).second(second); } this.renderCalendar('left'); this.renderCalendar('right'); //highlight any predefined range matching the current start and end dates this.container.find('.ranges li').removeClass('active'); if (this.endDate == null) return; this.calculateChosenLabel(); }, renderCalendar: function(side) { // // Build the matrix of dates that will populate the calendar // var calendar = side == 'left' ? this.leftCalendar : this.rightCalendar; var month = calendar.month.month(); var year = calendar.month.year(); var hour = calendar.month.hour(); var minute = calendar.month.minute(); var second = calendar.month.second(); var daysInMonth = moment([year, month]).daysInMonth(); var firstDay = moment([year, month, 1]); var lastDay = moment([year, month, daysInMonth]); var lastMonth = moment(firstDay).subtract(1, 'month').month(); var lastYear = moment(firstDay).subtract(1, 'month').year(); var daysInLastMonth = moment([lastYear, lastMonth]).daysInMonth(); var dayOfWeek = firstDay.day(); //initialize a 6 rows x 7 columns array for the calendar var calendar = []; calendar.firstDay = firstDay; calendar.lastDay = lastDay; for (var i = 0; i < 6; i++) { calendar[i] = []; } //populate the calendar with date objects var startDay = daysInLastMonth - dayOfWeek + this.locale.firstDay + 1; if (startDay > daysInLastMonth) startDay -= 7; if (dayOfWeek == this.locale.firstDay) startDay = daysInLastMonth - 6; var curDate = moment([lastYear, lastMonth, startDay, 12, minute, second]); var col, row; for (var i = 0, col = 0, row = 0; i < 42; i++, col++, curDate = moment(curDate).add(24, 'hour')) { if (i > 0 && col % 7 === 0) { col = 0; row++; } calendar[row][col] = curDate.clone().hour(hour).minute(minute).second(second); curDate.hour(12); if (this.minDate && calendar[row][col].format('YYYY-MM-DD') == this.minDate.format('YYYY-MM-DD') && calendar[row][col].isBefore(this.minDate) && side == 'left') { calendar[row][col] = this.minDate.clone(); } if (this.maxDate && calendar[row][col].format('YYYY-MM-DD') == this.maxDate.format('YYYY-MM-DD') && calendar[row][col].isAfter(this.maxDate) && side == 'right') { calendar[row][col] = this.maxDate.clone(); } } //make the calendar object available to hoverDate/clickDate if (side == 'left') { this.leftCalendar.calendar = calendar; } else { this.rightCalendar.calendar = calendar; } // // Display the calendar // var minDate = side == 'left' ? this.minDate : this.startDate; var maxDate = this.maxDate; var selected = side == 'left' ? this.startDate : this.endDate; var arrow = this.locale.direction == 'ltr' ? {left: 'chevron-left', right: 'chevron-right'} : {left: 'chevron-right', right: 'chevron-left'}; var html = '<table class="table-condensed">'; html += '<thead>'; html += '<tr>'; // add empty cell for week number if (this.showWeekNumbers || this.showISOWeekNumbers) html += '<th></th>'; if ((!minDate || minDate.isBefore(calendar.firstDay)) && (!this.linkedCalendars || side == 'left')) { html += '<th class="prev available"><i class="fa fa-' + arrow.left + ' glyphicon glyphicon-' + arrow.left + '"></i></th>'; } else { html += '<th></th>'; } var dateHtml = this.locale.monthNames[calendar[1][1].month()] + calendar[1][1].format(" YYYY"); if (this.showDropdowns) { var currentMonth = calendar[1][1].month(); var currentYear = calendar[1][1].year(); var maxYear = (maxDate && maxDate.year()) || (currentYear + 5); var minYear = (minDate && minDate.year()) || (currentYear - 50); var inMinYear = currentYear == minYear; var inMaxYear = currentYear == maxYear; var monthHtml = '<select class="monthselect">'; for (var m = 0; m < 12; m++) { if ((!inMinYear || m >= minDate.month()) && (!inMaxYear || m <= maxDate.month())) { monthHtml += "<option value='" + m + "'" + (m === currentMonth ? " selected='selected'" : "") + ">" + this.locale.monthNames[m] + "</option>"; } else { monthHtml += "<option value='" + m + "'" + (m === currentMonth ? " selected='selected'" : "") + " disabled='disabled'>" + this.locale.monthNames[m] + "</option>"; } } monthHtml += "</select>"; var yearHtml = '<select class="yearselect">'; for (var y = minYear; y <= maxYear; y++) { yearHtml += '<option value="' + y + '"' + (y === currentYear ? ' selected="selected"' : '') + '>' + y + '</option>'; } yearHtml += '</select>'; dateHtml = monthHtml + yearHtml; } html += '<th colspan="5" class="month">' + dateHtml + '</th>'; if ((!maxDate || maxDate.isAfter(calendar.lastDay)) && (!this.linkedCalendars || side == 'right' || this.singleDatePicker)) { html += '<th class="next available"><i class="fa fa-' + arrow.right + ' glyphicon glyphicon-' + arrow.right + '"></i></th>'; } else { html += '<th></th>'; } html += '</tr>'; html += '<tr>'; // add week number label if (this.showWeekNumbers || this.showISOWeekNumbers) html += '<th class="week">' + this.locale.weekLabel + '</th>'; $.each(this.locale.daysOfWeek, function(index, dayOfWeek) { html += '<th>' + dayOfWeek + '</th>'; }); html += '</tr>'; html += '</thead>'; html += '<tbody>'; //adjust maxDate to reflect the dateLimit setting in order to //grey out end dates beyond the dateLimit if (this.endDate == null && this.dateLimit) { var maxLimit = this.startDate.clone().add(this.dateLimit).endOf('day'); if (!maxDate || maxLimit.isBefore(maxDate)) { maxDate = maxLimit; } } for (var row = 0; row < 6; row++) { html += '<tr>'; // add week number if (this.showWeekNumbers) html += '<td class="week">' + calendar[row][0].week() + '</td>'; else if (this.showISOWeekNumbers) html += '<td class="week">' + calendar[row][0].isoWeek() + '</td>'; for (var col = 0; col < 7; col++) { var classes = []; //highlight today's date if (calendar[row][col].isSame(new Date(), "day")) classes.push('today'); //highlight weekends if (calendar[row][col].isoWeekday() > 5) classes.push('weekend'); //grey out the dates in other months displayed at beginning and end of this calendar if (calendar[row][col].month() != calendar[1][1].month()) classes.push('off'); //don't allow selection of dates before the minimum date if (this.minDate && calendar[row][col].isBefore(this.minDate, 'day')) classes.push('off', 'disabled'); //don't allow selection of dates after the maximum date if (maxDate && calendar[row][col].isAfter(maxDate, 'day')) classes.push('off', 'disabled'); //don't allow selection of date if a custom function decides it's invalid if (this.isInvalidDate(calendar[row][col])) classes.push('off', 'disabled'); //highlight the currently selected start date if (calendar[row][col].format('YYYY-MM-DD') == this.startDate.format('YYYY-MM-DD')) classes.push('active', 'start-date'); //highlight the currently selected end date if (this.endDate != null && calendar[row][col].format('YYYY-MM-DD') == this.endDate.format('YYYY-MM-DD')) classes.push('active', 'end-date'); //highlight dates in-between the selected dates if (this.endDate != null && calendar[row][col] > this.startDate && calendar[row][col] < this.endDate) classes.push('in-range'); //apply custom classes for this date var isCustom = this.isCustomDate(calendar[row][col]); if (isCustom !== false) { if (typeof isCustom === 'string') classes.push(isCustom); else Array.prototype.push.apply(classes, isCustom); } var cname = '', disabled = false; for (var i = 0; i < classes.length; i++) { cname += classes[i] + ' '; if (classes[i] == 'disabled') disabled = true; } if (!disabled) cname += 'available'; html += '<td class="' + cname.replace(/^\s+|\s+$/g, '') + '" data-title="' + 'r' + row + 'c' + col + '">' + calendar[row][col].date() + '</td>'; } html += '</tr>'; } html += '</tbody>'; html += '</table>'; this.container.find('.calendar.' + side + ' .calendar-table').html(html); }, renderTimePicker: function(side) { // Don't bother updating the time picker if it's currently disabled // because an end date hasn't been clicked yet if (side == 'right' && !this.endDate) return; var html, selected, minDate, maxDate = this.maxDate; if (this.dateLimit && (!this.maxDate || this.startDate.clone().add(this.dateLimit).isAfter(this.maxDate))) maxDate = this.startDate.clone().add(this.dateLimit); if (side == 'left') { selected = this.startDate.clone(); minDate = this.minDate; } else if (side == 'right') { selected = this.endDate.clone(); minDate = this.startDate; //Preserve the time already selected var timeSelector = this.container.find('.calendar.right .calendar-time div'); if (timeSelector.html() != '') { selected.hour(timeSelector.find('.hourselect option:selected').val() || selected.hour()); selected.minute(timeSelector.find('.minuteselect option:selected').val() || selected.minute()); selected.second(timeSelector.find('.secondselect option:selected').val() || selected.second()); if (!this.timePicker24Hour) { var ampm = timeSelector.find('.ampmselect option:selected').val(); if (ampm === 'PM' && selected.hour() < 12) selected.hour(selected.hour() + 12); if (ampm === 'AM' && selected.hour() === 12) selected.hour(0); } } if (selected.isBefore(this.startDate)) selected = this.startDate.clone(); if (maxDate && selected.isAfter(maxDate)) selected = maxDate.clone(); } // // hours // html = '<select class="hourselect">'; var start = this.timePicker24Hour ? 0 : 1; var end = this.timePicker24Hour ? 23 : 12; for (var i = start; i <= end; i++) { var i_in_24 = i; if (!this.timePicker24Hour) i_in_24 = selected.hour() >= 12 ? (i == 12 ? 12 : i + 12) : (i == 12 ? 0 : i); var time = selected.clone().hour(i_in_24); var disabled = false; if (minDate && time.minute(59).isBefore(minDate)) disabled = true; if (maxDate && time.minute(0).isAfter(maxDate)) disabled = true; if (i_in_24 == selected.hour() && !disabled) { html += '<option value="' + i + '" selected="selected">' + i + '</option>'; } else if (disabled) { html += '<option value="' + i + '" disabled="disabled" class="disabled">' + i + '</option>'; } else { html += '<option value="' + i + '">' + i + '</option>'; } } html += '</select> '; // // minutes // html += ': <select class="minuteselect">'; for (var i = 0; i < 60; i += this.timePickerIncrement) { var padded = i < 10 ? '0' + i : i; var time = selected.clone().minute(i); var disabled = false; if (minDate && time.second(59).isBefore(minDate)) disabled = true; if (maxDate && time.second(0).isAfter(maxDate)) disabled = true; if (selected.minute() == i && !disabled) { html += '<option value="' + i + '" selected="selected">' + padded + '</option>'; } else if (disabled) { html += '<option value="' + i + '" disabled="disabled" class="disabled">' + padded + '</option>'; } else { html += '<option value="' + i + '">' + padded + '</option>'; } } html += '</select> '; // // seconds // if (this.timePickerSeconds) { html += ': <select class="secondselect">'; for (var i = 0; i < 60; i++) { var padded = i < 10 ? '0' + i : i; var time = selected.clone().second(i); var disabled = false; if (minDate && time.isBefore(minDate)) disabled = true; if (maxDate && time.isAfter(maxDate)) disabled = true; if (selected.second() == i && !disabled) { html += '<option value="' + i + '" selected="selected">' + padded + '</option>'; } else if (disabled) { html += '<option value="' + i + '" disabled="disabled" class="disabled">' + padded + '</option>'; } else { html += '<option value="' + i + '">' + padded + '</option>'; } } html += '</select> '; } // // AM/PM // if (!this.timePicker24Hour) { html += '<select class="ampmselect">'; var am_html = ''; var pm_html = ''; if (minDate && selected.clone().hour(12).minute(0).second(0).isBefore(minDate)) am_html = ' disabled="disabled" class="disabled"'; if (maxDate && selected.clone().hour(0).minute(0).second(0).isAfter(maxDate)) pm_html = ' disabled="disabled" class="disabled"'; if (selected.hour() >= 12) { html += '<option value="AM"' + am_html + '>AM</option><option value="PM" selected="selected"' + pm_html + '>PM</option>'; } else { html += '<option value="AM" selected="selected"' + am_html + '>AM</option><option value="PM"' + pm_html + '>PM</option>'; } html += '</select>'; } this.container.find('.calendar.' + side + ' .calendar-time div').html(html); }, updateFormInputs: function() { //ignore mouse movements while an above-calendar text input has focus if (this.container.find('input[name=daterangepicker_start]').is(":focus") || this.container.find('input[name=daterangepicker_end]').is(":focus")) return; this.container.find('input[name=daterangepicker_start]').val(this.startDate.format(this.locale.format)); if (this.endDate) this.container.find('input[name=daterangepicker_end]').val(this.endDate.format(this.locale.format)); if (this.singleDatePicker || (this.endDate && (this.startDate.isBefore(this.endDate) || this.startDate.isSame(this.endDate)))) { this.container.find('button.applyBtn').removeAttr('disabled'); } else { this.container.find('button.applyBtn').attr('disabled', 'disabled'); } }, move: function() { var parentOffset = { top: 0, left: 0 }, containerTop; var parentRightEdge = $(window).width(); if (!this.parentEl.is('body')) { parentOffset = { top: this.parentEl.offset().top - this.parentEl.scrollTop(), left: this.parentEl.offset().left - this.parentEl.scrollLeft() }; parentRightEdge = this.parentEl[0].clientWidth + this.parentEl.offset().left; } if (this.drops == 'up') containerTop = this.element.offset().top - this.container.outerHeight() - parentOffset.top; else containerTop = this.element.offset().top + this.element.outerHeight() - parentOffset.top; this.container[this.drops == 'up' ? 'addClass' : 'removeClass']('dropup'); if (this.opens == 'left') { this.container.css({ top: containerTop, right: parentRightEdge - this.element.offset().left - this.element.outerWidth(), left: 'auto' }); if (this.container.offset().left < 0) { this.container.css({ right: 'auto', left: 9 }); } } else if (this.opens == 'center') { this.container.css({ top: containerTop, left: this.element.offset().left - parentOffset.left + this.element.outerWidth() / 2 - this.container.outerWidth() / 2, right: 'auto' }); if (this.container.offset().left < 0) { this.container.css({ right: 'auto', left: 9 }); } } else { this.container.css({ top: containerTop, left: this.element.offset().left - parentOffset.left, right: 'auto' }); if (this.container.offset().left + this.container.outerWidth() > $(window).width()) { this.container.css({ left: 'auto', right: 0 }); } } }, show: function(e) { if (this.isShowing) return; // Create a click proxy that is private to this instance of datepicker, for unbinding this._outsideClickProxy = $.proxy(function(e) { this.outsideClick(e); }, this); // Bind global datepicker mousedown for hiding and $(document) .on('mousedown.daterangepicker', this._outsideClickProxy) // also support mobile devices .on('touchend.daterangepicker', this._outsideClickProxy) // also explicitly play nice with Bootstrap dropdowns, which stopPropagation when clicking them .on('click.daterangepicker', '[data-toggle=dropdown]', this._outsideClickProxy) // and also close when focus changes to outside the picker (eg. tabbing between controls) .on('focusin.daterangepicker', this._outsideClickProxy); // Reposition the picker if the window is resized while it's open $(window).on('resize.daterangepicker', $.proxy(function(e) { this.move(e); }, this)); this.oldStartDate = this.startDate.clone(); this.oldEndDate = this.endDate.clone(); this.previousRightTime = this.endDate.clone(); this.updateView(); this.container.show(); this.move(); this.element.trigger('show.daterangepicker', this); this.isShowing = true; }, hide: function(e) { if (!this.isShowing) return; //incomplete date selection, revert to last values if (!this.endDate) { this.startDate = this.oldStartDate.clone(); this.endDate = this.oldEndDate.clone(); } //if a new date range was selected, invoke the user callback function if (!this.startDate.isSame(this.oldStartDate) || !this.endDate.isSame(this.oldEndDate)) this.callback(this.startDate, this.endDate, this.chosenLabel); //if picker is attached to a text input, update it this.updateElement(); $(document).off('.daterangepicker'); $(window).off('.daterangepicker'); this.container.hide(); this.element.trigger('hide.daterangepicker', this); this.isShowing = false; }, toggle: function(e) { if (this.isShowing) { this.hide(); } else { this.show(); } }, outsideClick: function(e) { var target = $(e.target); // if the page is clicked anywhere except within the daterangerpicker/button // itself then call this.hide() if ( // ie modal dialog fix e.type == "focusin" || target.closest(this.element).length || target.closest(this.container).length || target.closest('.calendar-table').length ) return; this.hide(); this.element.trigger('outsideClick.daterangepicker', this); }, showCalendars: function() { this.container.addClass('show-calendar'); this.move(); this.element.trigger('showCalendar.daterangepicker', this); }, hideCalendars: function() { this.container.removeClass('show-calendar'); this.element.trigger('hideCalendar.daterangepicker', this); }, hoverRange: function(e) { //ignore mouse movements while an above-calendar text input has focus if (this.container.find('input[name=daterangepicker_start]').is(":focus") || this.container.find('input[name=daterangepicker_end]').is(":focus")) return; var label = e.target.getAttribute('data-range-key'); if (label == this.locale.customRangeLabel) { this.updateView(); } else { var dates = this.ranges[label]; this.container.find('input[name=daterangepicker_start]').val(dates[0].format(this.locale.format)); this.container.find('input[name=daterangepicker_end]').val(dates[1].format(this.locale.format)); } }, clickRange: function(e) { var label = e.target.getAttribute('data-range-key'); this.chosenLabel = label; if (label == this.locale.customRangeLabel) { this.showCalendars(); } else { var dates = this.ranges[label]; this.startDate = dates[0]; this.endDate = dates[1]; if (!this.timePicker) { this.startDate.startOf('day'); this.endDate.endOf('day'); } if (!this.alwaysShowCalendars) this.hideCalendars(); this.clickApply(); } }, clickPrev: function(e) { var cal = $(e.target).parents('.calendar'); if (cal.hasClass('left')) { this.leftCalendar.month.subtract(1, 'month'); if (this.linkedCalendars) this.rightCalendar.month.subtract(1, 'month'); } else { this.rightCalendar.month.subtract(1, 'month'); } this.updateCalendars(); }, clickNext: function(e) { var cal = $(e.target).parents('.calendar'); if (cal.hasClass('left')) { this.leftCalendar.month.add(1, 'month'); } else { this.rightCalendar.month.add(1, 'month'); if (this.linkedCalendars) this.leftCalendar.month.add(1, 'month'); } this.updateCalendars(); }, hoverDate: function(e) { //ignore mouse movements while an above-calendar text input has focus //if (this.container.find('input[name=daterangepicker_start]').is(":focus") || this.container.find('input[name=daterangepicker_end]').is(":focus")) // return; //ignore dates that can't be selected if (!$(e.target).hasClass('available')) return; //have the text inputs above calendars reflect the date being hovered over var title = $(e.target).attr('data-title'); var row = title.substr(1, 1); var col = title.substr(3, 1); var cal = $(e.target).parents('.calendar'); var date = cal.hasClass('left') ? this.leftCalendar.calendar[row][col] : this.rightCalendar.calendar[row][col]; if (this.endDate && !this.container.find('input[name=daterangepicker_start]').is(":focus")) { this.container.find('input[name=daterangepicker_start]').val(date.format(this.locale.format)); } else if (!this.endDate && !this.container.find('input[name=daterangepicker_end]').is(":focus")) { this.container.find('input[name=daterangepicker_end]').val(date.format(this.locale.format)); } //highlight the dates between the start date and the date being hovered as a potential end date var leftCalendar = this.leftCalendar; var rightCalendar = this.rightCalendar; var startDate = this.startDate; if (!this.endDate) { this.container.find('.calendar tbody td').each(function(index, el) { //skip week numbers, only look at dates if ($(el).hasClass('week')) return; var title = $(el).attr('data-title'); var row = title.substr(1, 1); var col = title.substr(3, 1); var cal = $(el).parents('.calendar'); var dt = cal.hasClass('left') ? leftCalendar.calendar[row][col] : rightCalendar.calendar[row][col]; if ((dt.isAfter(startDate) && dt.isBefore(date)) || dt.isSame(date, 'day')) { $(el).addClass('in-range'); } else { $(el).removeClass('in-range'); } }); } }, clickDate: function(e) { if (!$(e.target).hasClass('available')) return; var title = $(e.target).attr('data-title'); var row = title.substr(1, 1); var col = title.substr(3, 1); var cal = $(e.target).parents('.calendar'); var date = cal.hasClass('left') ? this.leftCalendar.calendar[row][col] : this.rightCalendar.calendar[row][col]; // // this function needs to do a few things: // * alternate between selecting a start and end date for the range, // * if the time picker is enabled, apply the hour/minute/second from the select boxes to the clicked date // * if autoapply is enabled, and an end date was chosen, apply the selection // * if single date picker mode, and time picker isn't enabled, apply the selection immediately // * if one of the inputs above the calendars was focused, cancel that manual input // if (this.endDate || date.isBefore(this.startDate, 'day')) { //picking start if (this.timePicker) { var hour = parseInt(this.container.find('.left .hourselect').val(), 10); if (!this.timePicker24Hour) { var ampm = this.container.find('.left .ampmselect').val(); if (ampm === 'PM' && hour < 12) hour += 12; if (ampm === 'AM' && hour === 12) hour = 0; } var minute = parseInt(this.container.find('.left .minuteselect').val(), 10); var second = this.timePickerSeconds ? parseInt(this.container.find('.left .secondselect').val(), 10) : 0; date = date.clone().hour(hour).minute(minute).second(second); } this.endDate = null; this.setStartDate(date.clone()); } else if (!this.endDate && date.isBefore(this.startDate)) { //special case: clicking the same date for start/end, //but the time of the end date is before the start date this.setEndDate(this.startDate.clone()); } else { // picking end if (this.timePicker) { var hour = parseInt(this.container.find('.right .hourselect').val(), 10); if (!this.timePicker24Hour) { var ampm = this.container.find('.right .ampmselect').val(); if (ampm === 'PM' && hour < 12) hour += 12; if (ampm === 'AM' && hour === 12) hour = 0; } var minute = parseInt(this.container.find('.right .minuteselect').val(), 10); var second = this.timePickerSeconds ? parseInt(this.container.find('.right .secondselect').val(), 10) : 0; date = date.clone().hour(hour).minute(minute).second(second); } this.setEndDate(date.clone()); if (this.autoApply) { this.calculateChosenLabel(); this.clickApply(); } } if (this.singleDatePicker) { this.setEndDate(this.startDate); if (!this.timePicker) this.clickApply(); } this.updateView(); //This is to cancel the blur event handler if the mouse was in one of the inputs e.stopPropagation(); }, calculateChosenLabel: function () { var customRange = true; var i = 0; for (var range in this.ranges) { if (this.timePicker) { var format = this.timePickerSeconds ? "YYYY-MM-DD hh:mm:ss" : "YYYY-MM-DD hh:mm"; //ignore times when comparing dates if time picker seconds is not enabled if (this.startDate.format(format) == this.ranges[range][0].format(format) && this.endDate.format(format) == this.ranges[range][1].format(format)) { customRange = false; this.chosenLabel = this.container.find('.ranges li:eq(' + i + ')').addClass('active').html(); break; } } else { //ignore times when comparing dates if time picker is not enabled if (this.startDate.format('YYYY-MM-DD') == this.ranges[range][0].format('YYYY-MM-DD') && this.endDate.format('YYYY-MM-DD') == this.ranges[range][1].format('YYYY-MM-DD')) { customRange = false; this.chosenLabel = this.container.find('.ranges li:eq(' + i + ')').addClass('active').html(); break; } } i++; } if (customRange) { if (this.showCustomRangeLabel) { this.chosenLabel = this.container.find('.ranges li:last').addClass('active').html(); } else { this.chosenLabel = null; } this.showCalendars(); } }, clickApply: function(e) { this.hide(); this.element.trigger('apply.daterangepicker', this); }, clickCancel: function(e) { this.startDate = this.oldStartDate; this.endDate = this.oldEndDate; this.hide(); this.element.trigger('cancel.daterangepicker', this); }, monthOrYearChanged: function(e) { var isLeft = $(e.target).closest('.calendar').hasClass('left'), leftOrRight = isLeft ? 'left' : 'right', cal = this.container.find('.calendar.'+leftOrRight); // Month must be Number for new moment versions var month = parseInt(cal.find('.monthselect').val(), 10); var year = cal.find('.yearselect').val(); if (!isLeft) { if (year < this.startDate.year() || (year == this.startDate.year() && month < this.startDate.month())) { month = this.startDate.month(); year = this.startDate.year(); } } if (this.minDate) { if (year < this.minDate.year() || (year == this.minDate.year() && month < this.minDate.month())) { month = this.minDate.month(); year = this.minDate.year(); } } if (this.maxDate) { if (year > this.maxDate.year() || (year == this.maxDate.year() && month > this.maxDate.month())) { month = this.maxDate.month(); year = this.maxDate.year(); } } if (isLeft) { this.leftCalendar.month.month(month).year(year); if (this.linkedCalendars) this.rightCalendar.month = this.leftCalendar.month.clone().add(1, 'month'); } else { this.rightCalendar.month.month(month).year(year); if (this.linkedCalendars) this.leftCalendar.month = this.rightCalendar.month.clone().subtract(1, 'month'); } this.updateCalendars(); }, timeChanged: function(e) { var cal = $(e.target).closest('.calendar'), isLeft = cal.hasClass('left'); var hour = parseInt(cal.find('.hourselect').val(), 10); var minute = parseInt(cal.find('.minuteselect').val(), 10); var second = this.timePickerSeconds ? parseInt(cal.find('.secondselect').val(), 10) : 0; if (!this.timePicker24Hour) { var ampm = cal.find('.ampmselect').val(); if (ampm === 'PM' && hour < 12) hour += 12; if (ampm === 'AM' && hour === 12) hour = 0; } if (isLeft) { var start = this.startDate.clone(); start.hour(hour); start.minute(minute); start.second(second); this.setStartDate(start); if (this.singleDatePicker) { this.endDate = this.startDate.clone(); } else if (this.endDate && this.endDate.format('YYYY-MM-DD') == start.format('YYYY-MM-DD') && this.endDate.isBefore(start)) { this.setEndDate(start.clone()); } } else if (this.endDate) { var end = this.endDate.clone(); end.hour(hour); end.minute(minute); end.second(second); this.setEndDate(end); } //update the calendars so all clickable dates reflect the new time component this.updateCalendars(); //update the form inputs above the calendars with the new time this.updateFormInputs(); //re-render the time pickers because changing one selection can affect what's enabled in another this.renderTimePicker('left'); this.renderTimePicker('right'); }, formInputsChanged: function(e) { var isRight = $(e.target).closest('.calendar').hasClass('right'); var start = moment(this.container.find('input[name="daterangepicker_start"]').val(), this.locale.format); var end = moment(this.container.find('input[name="daterangepicker_end"]').val(), this.locale.format); if (start.isValid() && end.isValid()) { if (isRight && end.isBefore(start)) start = end.clone(); this.setStartDate(start); this.setEndDate(end); if (isRight) { this.container.find('input[name="daterangepicker_start"]').val(this.startDate.format(this.locale.format)); } else { this.container.find('input[name="daterangepicker_end"]').val(this.endDate.format(this.locale.format)); } } this.updateView(); }, formInputsFocused: function(e) { // Highlight the focused input this.container.find('input[name="daterangepicker_start"], input[name="daterangepicker_end"]').removeClass('active'); $(e.target).addClass('active'); // Set the state such that if the user goes back to using a mouse, // the calendars are aware we're selecting the end of the range, not // the start. This allows someone to edit the end of a date range without // re-selecting the beginning, by clicking on the end date input then // using the calendar. var isRight = $(e.target).closest('.calendar').hasClass('right'); if (isRight) { this.endDate = null; this.setStartDate(this.startDate.clone()); this.updateView(); } }, formInputsBlurred: function(e) { // this function has one purpose right now: if you tab from the first // text input to the second in the UI, the endDate is nulled so that // you can click another, but if you tab out without clicking anything // or changing the input value, the old endDate should be retained if (!this.endDate) { var val = this.container.find('input[name="daterangepicker_end"]').val(); var end = moment(val, this.locale.format); if (end.isValid()) { this.setEndDate(end); this.updateView(); } } }, formInputsKeydown: function(e) { // This function ensures that if the 'enter' key was pressed in the input, then the calendars // are updated with the startDate and endDate. // This behaviour is automatic in Chrome/Firefox/Edge but not in IE 11 hence why this exists. // Other browsers and versions of IE are untested and the behaviour is unknown. if (e.keyCode === 13) { // Prevent the calendar from being updated twice on Chrome/Firefox/Edge e.preventDefault(); this.formInputsChanged(e); } }, elementChanged: function() { if (!this.element.is('input')) return; if (!this.element.val().length) return; var dateString = this.element.val().split(this.locale.separator), start = null, end = null; if (dateString.length === 2) { start = moment(dateString[0], this.locale.format); end = moment(dateString[1], this.locale.format); } if (this.singleDatePicker || start === null || end === null) { start = moment(this.element.val(), this.locale.format); end = start; } if (!start.isValid() || !end.isValid()) return; this.setStartDate(start); this.setEndDate(end); this.updateView(); }, keydown: function(e) { //hide on tab or enter if ((e.keyCode === 9) || (e.keyCode === 13)) { this.hide(); } //hide on esc and prevent propagation if (e.keyCode === 27) { e.preventDefault(); e.stopPropagation(); this.hide(); } }, updateElement: function() { if (this.element.is('input') && !this.singleDatePicker && this.autoUpdateInput) { this.element.val(this.startDate.format(this.locale.format) + this.locale.separator + this.endDate.format(this.locale.format)); this.element.trigger('change'); } else if (this.element.is('input') && this.autoUpdateInput) { this.element.val(this.startDate.format(this.locale.format)); this.element.trigger('change'); } }, remove: function() { this.container.remove(); this.element.off('.daterangepicker'); this.element.removeData(); } }; $.fn.daterangepicker = function(options, callback) { var implementOptions = $.extend(true, {}, $.fn.daterangepicker.defaultOptions, options); this.each(function() { var el = $(this); if (el.data('daterangepicker')) el.data('daterangepicker').remove(); el.data('daterangepicker', new DateRangePicker(el, implementOptions, callback)); }); return this; }; return DateRangePicker; })); ```
The 2012 Blues season is the team's 17th season in the Super Rugby competition. The Blues' pre-season began on 4 February, and the regular season began on 24 February. The team will play 16 regular season matches, with byes in rounds 6 and 16. The Blues will play all teams within the New Zealand conference twice, and all other teams once, with the exception of the New South Wales Waratahs and Cheetahs. The team were captained by Keven Mealamu and coached by Pat Lam. Pre-season The first of three pre-season fixtures was held on 4 February at Toll Stadium against the Hurricanes. This was followed by an away match against the Melbourne Rebels on 11 February and a "home" match on 18 February against the Highlanders at UNITEC, in Mt Albert. Fixtures Regular season The Blues regular season began on 24 February with a home fixture against the Crusaders, and finished on 14 July, away to the Brumbies. Fixtures Player Summary Player statistics for the 2012 season are shown below: Overall Summary Legend: Apps. = Appearances, Cons. = Conversions, Pens. = Penalties, Drps. = Drop Goals, Pts. = Total points, W.C. = White cards, Y.C. = Yellow cards, R.C. = Red cards Top Point Scorers Top Try Scorers Standings The final standings for the 2012 season are shown below: Legend: Pos = Position, Rnd = Round, W = Win, D = Draw, L = Loss, PF = Points For, PA = Points Against, PD = Points Difference, TB = Four-try bonus points, LB = Close loss bonus points, Pts = Competition Points Round by Round Result Summary Legend: H = Home, A = Away, W = Win, D = Draw, L = Loss, B = Bye, Pos. = Position, Conf. = Conference See also 2012 Super Rugby season External links Blues website Official SANZAR Super Rugby website Official New Zealand Super Rugby website References 2012 2012 in New Zealand rugby union 2012 Super Rugby season by team
```swift @testable import SwifterSwift import XCTest #if canImport(MapKit) import MapKit import struct CoreLocation.CLLocationCoordinate2D final class MKMultiPointExtensionsTests: XCTestCase { let coordinates = [ (37.330514, -121.888863), (37.330832, -121.888337), (37.329599, -121.886859), (37.330019, -121.885993), (37.329767, -121.885813) ].map(CLLocationCoordinate2D.init) func testCoordinatesForPolyLine() { let polyline = MKPolyline(coordinates: coordinates) XCTAssertEqual(coordinates.count, polyline.coordinates.count) for (coordinate1, coordinate2) in zip(coordinates, polyline.coordinates) { XCTAssertEqual(coordinate1.latitude, coordinate2.latitude, accuracy: 0.000000001) XCTAssertEqual(coordinate1.longitude, coordinate2.longitude, accuracy: 0.000000001) } } func testCoordinatesForPolygon() { let polygon = MKPolygon(coordinates: coordinates, count: coordinates.count) XCTAssertEqual(coordinates.count, polygon.coordinates.count) for (coordinate1, coordinate2) in zip(coordinates, polygon.coordinates) { XCTAssertEqual(coordinate1.latitude, coordinate2.latitude, accuracy: 0.000000001) XCTAssertEqual(coordinate1.longitude, coordinate2.longitude, accuracy: 0.000000001) } } } #endif ```
```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'); } }; ```
Steve Scott is a computer architect who currently serves as Corporate Vice President at Microsoft. Scott was previously a Senior Vice President and Chief Technology Officer at Cray Inc., Principal Engineer at Google and the chief technology officer for Nvidia's Tesla business unit. Scott was employed by Cray Research, Inc., Silicon Graphics, Inc., and Cray, Inc. from 1992 to 2011 (with a brief hiatus in 2005). He holds 42 patents. In 2005 Scott received both the ACM Maurice Wilkes Award and the IEEE Seymour Cray Computer Engineering Award. Scott is a graduate of the University of Wisconsin–Madison, where he received a B.S. in electrical and computing engineering, an M.S. in computer science, and a Ph.D. in computer architecture. He resides in Seattle, Washington. Notes Living people American electrical engineers Computer designers Cray employees Businesspeople from Seattle American chief technology officers University of Wisconsin–Madison College of Engineering alumni Year of birth missing (living people)
```java /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package jdk.graal.compiler.nodes.loop; import org.graalvm.collections.EconomicMap; import org.graalvm.collections.EconomicSet; import org.graalvm.collections.Equivalence; import jdk.graal.compiler.debug.Assertions; import jdk.graal.compiler.debug.TTY; import jdk.graal.compiler.graph.Node; import jdk.graal.compiler.graph.NodeSourcePosition; import jdk.graal.compiler.nodes.AbstractMergeNode; import jdk.graal.compiler.nodes.FixedNode; import jdk.graal.compiler.nodes.FrameState; import jdk.graal.compiler.nodes.LoopBeginNode; import jdk.graal.compiler.nodes.LoopExitNode; import jdk.graal.compiler.nodes.StructuredGraph; /** * Verification utility to ensure that all optimizations during compilation respect safepoint * invariants in the compiler. That is: a loop with {@link LoopBeginNode#canEndsSafepoint()} * {@code ==false} must never be replaced by a loop with {@code canEndsSafepoint==true}. */ public class LoopSafepointVerification { public static final boolean PRINT_SAFEPOINT_NOT_FOUND = false; private EconomicMap<Node, SafepointData> safepointVerificationData; static class SafepointData { /** * Determine if there can be a safepoint on any of the loop ends of this loop. If true, it * means that there was no explicit phase requesting a complete disabling of all safepoints * on this loop. Once safepoints have been disabled for a loop, they must not be enabled * again. This means any loop that is replaced by loop optimizations with other loops must * still retain the same safepoint rules. */ boolean canHaveSafepoints; LoopBeginNode lb; NodeSourcePosition nsp; FrameState fs; int outerLoops; int innerLoops; static SafepointData fromLoopBegin(LoopBeginNode lb, int innerLoops, int outerLoops) { SafepointData sd = new SafepointData(); sd.lb = lb; sd.canHaveSafepoints = lb.canEndsSafepoint(); sd.fs = lb.stateAfter(); sd.nsp = lb.getNodeSourcePosition(); sd.innerLoops = innerLoops; sd.outerLoops = outerLoops; return sd; } /** * Assert that the {@code newData} is not weaker with respect to safepoint invariants than * {@code this} loop. For this to make "sense" {@code newData} is supposed to be a * new/different/optimized version of {@code this} loop. The use case is that over the * course of compilation {@code this} loop was replaced by {@code newData} via a loop * optimization for example. */ boolean assertNotWeaker(SafepointData newData) { if (this.canHaveSafepoints) { // all good, other can do what it wants } else { // this cannot safepoint -> ensure other also cannot safepoint assert !newData.canHaveSafepoints : Assertions.errorMessage("Safepoint verification cannot become weaker", lb, "previously the loop had canHaveSafepoints=false but now it has canHaveSafepoints=true", newData.lb); } return true; } public boolean sameStateOrNsp(SafepointData otherData) { if (otherData.fs == fs) { return true; } // node source position must match if (this.nsp != null && otherData.nsp != null && !otherData.nsp.equals(nsp)) { return false; } // not the same state or also not the same NSP - check if framestates represent the same // position final FrameState thisState = fs; final FrameState otherState = otherData.fs; if (thisState != null && otherState != null && !thisState.valueEquals(otherState)) { return false; } if (this.innerLoops != otherData.innerLoops) { return false; } if (this.outerLoops != otherData.outerLoops) { return false; } if (!optimizerRelatedLoops(this.lb, otherData.lb)) { return false; } return true; } /** * This method is a heuristic approximation for loop safepoint verification. When we remove * a loop from a graph and replace it by something else we try to find the replacement * loop(s). Which is not always trivial, thus we need to have a "best" guess as in - the new * loop has the same node source position, framestate based on properties and loop general * properties. Therefore we consider {@code lb1} the "original" loop and try to determine if * {@code lb2} was derived from {@code lb1} via an optimization (unrolling, strip mining, * etc). */ @SuppressWarnings("deprecation") private static boolean optimizerRelatedLoops(LoopBeginNode lb1, LoopBeginNode lb2) { if (lb1.isCompilerInverted() != lb2.isCompilerInverted()) { return false; } /* * Only if this loop was touched by strip mining already verify the properties, else we * might be verifying during a replace. Note that strip mining is special in that it * creates a second loop with the same state and the same node source position with an * inner/outer mapping. Any other loop optimization is sequential in that it does only * copy a loop but never creates new loop nests. */ final boolean isTouchedByStripMining = lb1.isStripMinedInner() || lb1.isStripMinedOuter(); if (isTouchedByStripMining) { if (lb1.isStripMinedInner() != lb2.isStripMinedInner()) { return false; } if (lb2.isStripMinedOuter() != lb2.isStripMinedOuter()) { return false; } } final long cloneFromIdLb1 = lb1.getClonedFromNodeId(); final long cloneFromIdLb2 = lb2.getClonedFromNodeId(); if ((cloneFromIdLb1 != -1 || cloneFromIdLb2 != -1)) { assert lb2.isAlive() : Assertions.errorMessage("When verifying loops the second one must be alive always", lb1, lb2); if (lb1.isDeleted() && cloneFromIdLb2 != -1) { /* * The original loop is deleted - the new one not: if the new one is cloned from * another loop determine if it was cloned from lb1. */ long lb1IdBeforeDeletion = lb1.getIdBeforeDeletion(); return lb1IdBeforeDeletion == cloneFromIdLb2; } else { if (lb1.getId() == cloneFromIdLb2) { /* * lb2 was cloned from lb1 - ensure they match */ return true; } /* * Both loops are alive and either one of them (or both) have been cloned from * another loop. Assure they are cloned from the same one. */ return cloneFromIdLb1 == cloneFromIdLb2; } } return true; } } static class LoopContext { EconomicSet<LoopBeginNode> innerLoopBegins = EconomicSet.create(); LoopBeginNode lb; int depth; LoopContext(LoopBeginNode lb) { this.lb = lb; } static void printContexts(EconomicMap<LoopBeginNode, LoopContext> contexts) { var cursor = contexts.getEntries(); while (cursor.advance()) { var context = cursor.getValue(); TTY.printf("Loop %s at depth %s has inner loops %s %n", context.lb, context.depth, context.innerLoopBegins); } } /** * Process the dominated parts of the {@code graph} reachable from the given loop begin node * {@code lb}. This method will be called for all loops in a graph. It will incrementally * build a data structure presenting all loops of a graph and their nesting. * * The algorithm behind this logic works the following way: * * <ul> * <li>Call {@link #getLoopRelations(LoopBeginNode, StructuredGraph, EconomicMap)} for all * {@link LoopBeginNode} nodes of a graph. While doing so build a side data structure * capturing all {@code LoopContext} for each loop in the graph. This data structure is * given as an in/out parameter to * {@link #getLoopRelations(LoopBeginNode, StructuredGraph, EconomicMap)}: * {@code contexts}.</li> * <li>For each loop begin start iterating the graph backwards until the * {@link StructuredGraph#start()} is found.</li> * <li>During iteration record all loops that are found: for loop exits skip the entire loop * of the exit and record it as an inner loop. For loop begins visited: attribute all * current inner loops to the loop begin's loop inner loops. This way * {@link #getLoopRelations(LoopBeginNode, StructuredGraph, EconomicMap)} incrementally * builds a full set of inner/outer loop relations in form of the loop context map.</li> * <li>When a regular control flow merge is visited then pick an arbitrary (we take the * first one for simplicity) predecessor and continue from there. If there are other inner * loops in other predecessors of a merge they will be visited by other calls to * {@link #getLoopRelations(LoopBeginNode, StructuredGraph, EconomicMap)}</li> * </ul> */ static void getLoopRelations(LoopBeginNode lb, StructuredGraph graph, EconomicMap<LoopBeginNode, LoopContext> contexts) { if (!contexts.containsKey(lb)) { contexts.put(lb, new LoopContext(lb)); } // the set of inner loops reachable from the starting point EconomicSet<LoopBeginNode> innerLoops = EconomicSet.create(); innerLoops.add(lb); int enterSeen = 0; FixedNode cur = lb.forwardEnd(); while (cur != null) { if (cur instanceof LoopExitNode lex) { innerLoops.add(lex.loopBegin()); cur = lex.loopBegin().forwardEnd(); continue; } if (cur instanceof LoopBeginNode cl) { /* * We visit a loop begin, all inner loops found can be attributed to the outer * loop */ if (!contexts.containsKey(cl)) { contexts.put(cl, new LoopContext(cl)); } contexts.get(cl).innerLoopBegins.addAll(innerLoops); enterSeen++; } if (cur.predecessor() != null) { cur = (FixedNode) cur.predecessor(); continue; } else { /* * Pick an arbitrary branch. If another branch contains an inner loop, we will * collect that loop when this method is called with on that loop's begin node. */ if (cur instanceof AbstractMergeNode am) { cur = am.forwardEndAt(0); continue; } else if (cur == graph.start()) { break; } } } contexts.get(lb).depth = enterSeen; } } public boolean verifyLoopSafepoints(StructuredGraph g) { if (!g.hasLoops()) { return true; } EconomicMap<LoopBeginNode, LoopContext> contexts = EconomicMap.create(); for (LoopBeginNode lb : g.getNodes(LoopBeginNode.TYPE)) { if (lb.isAlive()) { LoopContext.getLoopRelations(lb, g, contexts); } } if (safepointVerificationData == null) { safepointVerificationData = EconomicMap.create(Equivalence.IDENTITY_WITH_SYSTEM_HASHCODE); } EconomicSet<LoopBeginNode> loopsToVisit = EconomicSet.create(); EconomicSet<LoopBeginNode> originalLoopsInTheGraph = EconomicSet.create(); for (Node lb : safepointVerificationData.getKeys()) { loopsToVisit.add((LoopBeginNode) lb); originalLoopsInTheGraph.add((LoopBeginNode) lb); } for (LoopBeginNode lb : g.getNodes(LoopBeginNode.TYPE)) { final SafepointData newData = SafepointData.fromLoopBegin(lb, contexts.get(lb).innerLoopBegins.size(), contexts.get(lb).depth); if (safepointVerificationData.containsKey(lb)) { assert loopsToVisit.contains(lb); // all loops that are still in the graph just need verification, no replacement // verification loopsToVisit.remove(lb); assert safepointVerificationData.get(lb).assertNotWeaker(newData); } // now overwrite (or propagate new data) to the map, if it was a faulty loop it // would have hit the assertions above safepointVerificationData.put(lb, newData); } /* * Now we cleaned up all the loops that are in the graph. What remains is to cleanup the old * loops that are no longer part of the graph. They have been removed in between. This is * where it becomes fuzzy: if a loop optimization removed the original loop with (a) new * one(s) we must verify that/them. We use framestate and node source position to verify * them, which is a poor mans heuristic but we cannot do much better. */ for (LoopBeginNode lb : loopsToVisit) { assert lb.isDeleted() : Assertions.errorMessage("This loop must be deleted since it was not found during iteration", lb); // lets remove it from the map, either we cant verify and fail or its good and we // verified correctly, both ways the loop should be removed from the map SafepointData sd = safepointVerificationData.removeKey(lb); if (sd.canHaveSafepoints) { // the loop was allowed to safepoint, if the new ones (if there are any) are allowed // to safepoint or not is not of real interest, thus we are good } else { // the loop was not allowed to safepoint, any replacement should also not // safepoint inner: for (Node n : safepointVerificationData.getKeys()) { LoopBeginNode other = (LoopBeginNode) n; if (originalLoopsInTheGraph.contains(other)) { // only compare old deleted loops with newly added ones continue inner; } SafepointData otherData = safepointVerificationData.get(other); assert otherData != null : Assertions.errorMessage("Must be in map as map was propagated previously", other); assert other != lb : Assertions.errorMessage("Must be different nodes since one was deleted and the other is in the graph", lb, other); if (sd.sameStateOrNsp(otherData)) { assert sd.assertNotWeaker(otherData); } else { if (PRINT_SAFEPOINT_NOT_FOUND) { TTY.printf("Could not find replacement loop for %s in %s%n", sd.lb, this); } } } } } return true; } } ```
Following is a table of United States presidential elections in Nebraska, ordered by year. Since its admission to statehood in 1867, Nebraska has participated in every U.S. presidential election. Since 1992 Nebraska awards two electoral votes based on the statewide vote, and one vote for each of the three congressional districts. Winners of the state are in bold. The shading refers to the state winner, and not the national winner. See also Elections in Nebraska Notes References
```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 main import ( "log" "os" "os/signal" "sync" "syscall" "github.com/spf13/cobra" "github.com/projectcalico/calico/pod2daemon/binder" udsver "github.com/projectcalico/calico/pod2daemon/protos/udsver_v1" wlapi "github.com/projectcalico/calico/pod2daemon/workloadapi" ) const ( WorkloadApiUdsHome string = "/tmp/nodeagent" ) var ( CfgWldApiUdsHome string RootCmd = &cobra.Command{ Use: "nodeagent", Short: "Node agent with workload api interfaces.", Long: "Node agent with workload api interfaces.", } ) func init() { RootCmd.PersistentFlags().StringVarP(&CfgWldApiUdsHome, "wldpath", "w", WorkloadApiUdsHome, "Workload API home path") } func Run() { // initialize the workload api service wl := wlapi.NewWlAPIServer() // Create the binder b := binder.NewBinder(WorkloadApiUdsHome) // Register our service udsver.RegisterVerifyServer(b.Server(), wl) // Register for system signals sigc := make(chan os.Signal, 1) signal.Notify(sigc, os.Interrupt, syscall.SIGTERM) // Start the binder creating sockets bstop := make(chan *sync.WaitGroup) go b.SearchAndBind(bstop) // Wait for term signal. <-sigc // Shut down the binder. var stopWG sync.WaitGroup stopWG.Add(1) bstop <- &stopWG stopWG.Wait() } func main() { if err := RootCmd.Execute(); err != nil { log.Fatal(err) } // Check if the base directory exists _, e := os.Stat(WorkloadApiUdsHome) if e != nil { log.Fatalf("WorkloadApi Directory not present (%v)", WorkloadApiUdsHome) } Run() } ```
Steve Kaplan (born March 25, 1960) is an American entrepreneur, author, public speaker. Start of career Kaplan built SCA- a 1300 employee, international marketing firm -before selling it to Snyder Communications(NYSE: SNC). In January 2000, SNC officially launched Bounty SCA Worldwide a division that organizes the marketing services businesses it has acquired over the previous few years. Kaplan served as the CEO of Bounty SCA Worldwide under Snyder Communications which was sold to Havas. Books Kaplan went on to write about these experiences of starting, building and selling SCA. He is the author of Bag the Elephant, Be the Elephant, and Sell Your Business for the Max. Bag the Elephant received the Benjamin Franklin Award as the Business Book of the Year. Bibliography Bag the Elephant!: How to Win and Keep Big Customers. Published by Bard Press, 2005. . Be the Elephant: Build A Bigger, Better, Business. Published by Workman Publishing Company Inc., 2006. . Sell Your Business for the Max! Published by Workman Publishing Company, Inc., 2009. . Secret Millionaire Kaplan appeared on ABC's show Secret Millionaire where he travels to the south side of Chicago to donate money to charities in need. Military tour In 2013, Kaplan joined “Operation Hot.” Along with Chef Charles Carroll, Chef Robert Irvine, and others, he toured Afghanistan speaking to troops on getting jobs and starting businesses to better prepare them for redeployment back to the US. World Arm Wrestling League Kaplan currently is the President of the World Arm Wrestling League LLC and the Commissioner of the World Arm Wrestling League (WAL). Business ventures Kaplan is a minority owner in eSports team Immortals. References 1960 births Living people 21st-century American businesspeople Esports team owners
```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"; } } ```
```c /***************************************************************************** All rights reserved. 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 Intel Corporation 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. ****************************************************************************** * Contents: Native C interface to LAPACK utility function * Author: Intel Corporation *****************************************************************************/ #include "lapacke_utils.h" /* Converts input general band matrix from row-major(C) to * column-major(Fortran) layout or vice versa. */ void API_SUFFIX(LAPACKE_dgb_trans)( int matrix_layout, lapack_int m, lapack_int n, lapack_int kl, lapack_int ku, const double *in, lapack_int ldin, double *out, lapack_int ldout ) { lapack_int i, j; if( in == NULL || out == NULL ) return; if( matrix_layout == LAPACK_COL_MAJOR ) { for( j = 0; j < MIN( ldout, n ); j++ ) { for( i = MAX( ku-j, 0 ); i < MIN3( ldin, m+ku-j, kl+ku+1 ); i++ ) { out[(size_t)i*ldout+j] = in[i+(size_t)j*ldin]; } } } else if ( matrix_layout == LAPACK_ROW_MAJOR ) { /* TODO: interchange loops for performance. * This is just reference implementation. */ for( j = 0; j < MIN( n, ldin ); j++ ) { for( i = MAX( ku-j, 0 ); i < MIN3( ldout, m+ku-j, kl+ku+1 ); i++ ) { out[i+(size_t)j*ldout] = in[(size_t)i*ldin+j]; } } } } ```
```c++ // Boost.Geometry (aka GGL, Generic Geometry Library) // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // path_to_url #ifndef BOOST_GEOMETRY_MULTI_ALGORITHMS_FOR_EACH_HPP #define BOOST_GEOMETRY_MULTI_ALGORITHMS_FOR_EACH_HPP #include <boost/geometry/algorithms/for_each.hpp> #endif // BOOST_GEOMETRY_MULTI_ALGORITHMS_FOR_EACH_HPP ```
In firearms, the chamber is the cavity at the back end of a breechloader's barrel or cylinder, where the cartridge is inserted before being fired. The rear opening of the chamber is the breech, and is sealed by the breechblock or the bolt. Function Pistols, rifles, and shotguns generally have a single chamber integral to their barrels, but revolvers have multiple chambers in their cylinder, and no chamber in their barrel. Thus, pistols, rifles, and shotguns can usually still be fired with the magazine removed as long as a cartridge is inserted into the chamber, while a revolver cannot be fired at all with its cylinder swung out or broken open. The act of chambering a cartridge means the insertion of a round into the chamber, either manually or through the action of the weapon, e.g., pump-action, lever-action, bolt action, or autoloading operation generally in anticipation of firing the weapon, without need to "load" the weapon upon decision to use it (reducing the number of actions needed to discharge). In firearms design or modification, "chambering" is fitting a weapon's chamber for a particular caliber or round, so a Colt Model 1911 is chambered for .45 ACP or .38 Super, or re-chambered for .38/.45 Clerke. While the majority of firearms are chambered for one caliber, some are chambered for multiple calibers; however firing an oversized or undersized cartridge can be hazardous. Forensics The chamber is a key component to the practice of Forensic firearm examination. The chamber is known to imprint its surface striations irregularities on the cartridge case, in what are called chamber marks, due to the pressure produced when shooting. Such imperfections in chamber may be produced in the manufacturing process or through extensive use. Such chamber marks are even more pronounced on substandard firearms or when firing from an undersized chamber. In recent years there has been a push to automate this process via the use of automated firearms databases. Ballistics identification has also seen the development of microstamping technology which purposefully creates chamber marks through engravings on the firing pin and breech face. Sources See also Glossary of firearms terms External links Chamber Firearm components
```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 tape = require( 'tape' ); var noop = require( '@stdlib/utils/noop' ); var untilAsync = require( './../lib' ); // TESTS // tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); t.strictEqual( typeof untilAsync, 'function', 'main export is a function' ); t.end(); }); tape( 'the function throws an error if not provided a predicate function', function test( t ) { var values; var i; values = [ '5', 5, NaN, true, false, null, void 0, {}, [], /.*/, new Date() ]; for ( i = 0; i < values.length; i++ ) { t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] ); } t.end(); function badValue( value ) { return function badValue() { untilAsync( value, noop, noop ); }; } }); tape( 'the function throws an error if not provided a function to invoke', function test( t ) { var values; var i; values = [ '5', 5, NaN, true, false, null, void 0, {}, [], /.*/, new Date() ]; for ( i = 0; i < values.length; i++ ) { t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] ); } t.end(); function badValue( value ) { return function badValue() { untilAsync( noop, value, noop ); }; } }); tape( 'the function throws an error if not provided a callback function', function test( t ) { var values; var i; values = [ '5', 5, NaN, true, false, null, void 0, {}, [], /.*/, new Date() ]; for ( i = 0; i < values.length; i++ ) { t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] ); } t.end(); function badValue( value ) { return function badValue() { untilAsync( noop, noop, value ); }; } }); tape( 'until a test condition is true, the function invokes a provided function', function test( t ) { var indices1 = [ 0, 1, 2, 3, 4, 5 ]; var indices2 = [ 0, 1, 2, 3, 4 ]; var j = -1; var k = -1; untilAsync( predicate, fcn, done ); function predicate( i, clbk ) { j += 1; t.strictEqual( i, indices1[ j ], 'provides expected value' ); clbk( null, i >= 5 ); } function fcn( i, next ) { k += 1; t.strictEqual( i, indices2[ k ], 'provides expected value' ); setTimeout( onTimeout, 0 ); function onTimeout() { next(); } } function done( error ) { if ( error ) { t.fail( error.message ); } else { t.ok( true, 'does not return an error' ); } t.end(); } }); tape( 'until a test condition is true, the function invokes a provided function (always true)', function test( t ) { var indices = [ 0 ]; var j = -1; untilAsync( predicate, fcn, done ); function predicate( i, clbk ) { j += 1; t.strictEqual( i, indices[ j ], 'provides expected value' ); clbk( null, true ); } function fcn( i, next ) { t.fail( 'should never be invoked' ); setTimeout( onTimeout, 0 ); function onTimeout() { next(); } } function done( error ) { if ( error ) { t.fail( error.message ); } else { t.ok( true, 'does not return an error' ); } t.end(); } }); tape( 'the function supports providing an execution context', function test( t ) { var ctx = { 'count': 0 }; untilAsync( predicate, fcn, done, ctx ); function predicate( i, clbk ) { clbk( null, i >= 5 ); } function fcn( i, next ) { this.count += 1; // eslint-disable-line no-invalid-this setTimeout( onTimeout, 0 ); function onTimeout() { next(); } } function done( error ) { if ( error ) { t.fail( error.message ); } else { t.ok( true, 'does not return an error' ); } t.strictEqual( ctx.count, 5, 'updates context' ); t.end(); } }); tape( 'the function provides any results to a `done` callback', function test( t ) { untilAsync( predicate, fcn, done ); function predicate( i, clbk ) { clbk( null, i >= 5 ); } function fcn( i, next ) { setTimeout( onTimeout, 0 ); function onTimeout() { next( null, 'beep'+i, 'boop'+i, 'woot'+i ); } } function done( error, str1, str2, str3 ) { if ( error ) { t.fail( error.message ); } else { t.ok( true, 'does not return an error' ); } t.strictEqual( str1, 'beep4', 'returns expected value' ); t.strictEqual( str2, 'boop4', 'returns expected value' ); t.strictEqual( str3, 'woot4', 'returns expected value' ); t.end(); } }); tape( 'if an error is encountered when invoking the predicate function, the function suspends execution and immediately returns the `error` to the provided callback', function test( t ) { var k = 0; untilAsync( predicate, fcn, done ); function predicate( i, clbk ) { k += 1; if ( i === 1 ) { return clbk( new Error( 'beep' ) ); } clbk( null, i >= 5 ); } function fcn( i, next ) { setTimeout( onTimeout, 0 ); function onTimeout() { next(); } } function done( error ) { if ( error ) { t.pass( error.message ); } else { t.fail( 'should return an error' ); } t.strictEqual( k, 2, 'expected number of invocations' ); t.end(); } }); tape( 'if an error is encountered when invoking the provided function, the function suspends execution and immediately returns the `error` to the provided callback', function test( t ) { var k = 0; untilAsync( predicate, fcn, done ); function predicate( i, clbk ) { k += 1; clbk( null, i >= 5 ); } function fcn( i, next ) { setTimeout( onTimeout, 0 ); function onTimeout() { if ( i === 2 ) { return next( new Error( 'boop' ) ); } next(); } } function done( error ) { if ( error ) { t.pass( error.message ); } else { t.fail( 'should return an error' ); } t.strictEqual( k, 3, 'expected number of invocations' ); t.end(); } }); tape( 'the function does not guarantee asynchronous execution', function test( t ) { var k = 0; untilAsync( predicate, fcn, done ); k = 1; function predicate( i, clbk ) { clbk( null, i >= 5 ); } function fcn( i, next ) { next(); } function done( error ) { if ( error ) { t.fail( error.message ); } else { t.ok( true, 'does not return an error' ); } t.strictEqual( k, 0, 'releases the zalgo' ); t.end(); } }); ```
Barry Douglas Lane (21 June 1960 – 31 December 2022) was an English professional golfer. He won five official European Tour events between 1988 and 2004. He played in the 1993 Ryder Cup and won the inaugural Andersen Consulting World Championship of Golf in late 1995. After reaching 50 he had considerable success on the European Senior Tour, winning eight times between 2010 and 2019. Early life Lane was born in Hayes, Middlesex but grew up in Bracknell. He only took up golf at the age of 14 but became an assistant professional at nearby Downshire Golf Club in 1976, at the age of 16. He was an assistant at Downshire for 8 years. Professional career Lane first played on the European Tour in 1982, after three failed attempts at Q-School. From 1982 to 1984 he had little success on the tour, playing only a small number of events, and failed to qualify for the tour in 1985. He did have some success in non-tour events, winning the 1983 PGA Assistants' Championship at Coombe Hill. The win earned him a place in the World Assistants' Championship in Florida in December, which he won by 6 strokes. Lane qualified for the European Tour again in 1986 and, playing 20 events, finished 71st in the Order of Merit. He improved again in 1987, finishing 27th in the Order of Merit with five top-10 finishes. In October 1987 he also had his biggest prize to date, £20,000, for winning the inaugural Equity & Law Challenge, an unofficial money event on the tour. Lane won the 36-hole event, in which points were gained for birdies and eagles, with a score of 15, one ahead of Bill Malley. Lane played 26 successive seasons, from 1986 to 2011, on the European Tour. Lane's best years came in the early to mid-nineties, when he made the top ten of the Order of Merit three times, with a best of fifth in 1992. He won four European Tour events between 1988 and 1994. He had a relatively bad period in his later thirties, but after the turn of the millennium his form improved again and he picked up his fifth win on the Tour at the 2004 Daily Telegraph Damovo British Masters. Lane won several professional tournaments not on the European Tour, most lucratively the 1995 Andersen Consulting World Championship of Golf. This event was a precursor of the WGC-Accenture Match Play Championship and Lane's prize was US$1,000,000, which was a rare level of prize in golf at that time. Lane made his only Ryder Cup appearance in Europe's home defeat at The Belfry in 1993, losing all three of his matches. He represented England in the World Cup and the Alfred Dunhill Cup several times and played for the Rest of the World Team in the UBS Cup three times. On turning 50 in June 2010, Lane joined the European Senior Tour. He quickly claimed his first win at the Cleveland Golf/Srixon Scottish Senior Open that August. Lane continued his good form in 2011, playing a mixture of regular and senior European Tour events, and winning twice more on the senior tour. Subsequently he enjoyed further wins on the 2012, 2016, 2017 tours and twice on 2019 circuit. Death Lane died of cancer on 31 December 2022, at the age of 62. Professional wins (20) European Tour wins (5) European Tour playoff record (0–3) Other wins (6) 1983 Footjoy PGA Assistants' Championship, Jamaica Open, Footjoy World Assistants' Championship 1987 Equity & Law Challenge 1995 Andersen Consulting World Championship of Golf 2015 Farmfoods British Par 3 Championship European Senior Tour wins (8) European Senior Tour playoff record (1–1) Japan PGA Senior Tour wins (1) 2018 Fujifilm Senior Championship Results in major championships CUT = missed the halfway cut "T" indicates a tie for a place. Source: Summary Most consecutive cuts made – 6 (1991 Open Championship – 1993 PGA) Longest streak of top-10s – 0 Results in World Golf Championships "T" = Tied Team appearances Dunhill Cup (representing England): 1988, 1994, 1995, 1996 World Cup (representing England): 1988, 1994 Ryder Cup (representing Europe): 1993 UBS Cup (representing the Rest of the World): 2002, 2003 (tie), 2004 See also List of golfers with most European Senior Tour wins References External links English male golfers European Tour golfers European Senior Tour golfers PGA Tour Champions golfers Ryder Cup competitors for Europe People from Hayes, Hillingdon Sportspeople from the London Borough of Hillingdon 1960 births 2022 deaths
Polisportiva Filottrano Pallavolo is an Italian volleyball club based in Filottrano, most famous for its women's team which currently plays in the Serie A1. Previous names Due to sponsorship, the club have competed under the following names: Atletico San Cristoforo (1971–....) Polisportiva Filottrano Pallavolo (....–2014) Lardini Filottrano (2014–present) History In 1971, don Guerriero Giglioni with other young people took a late 1960s team called ("Flame" in English) and decided to form a club called . It remained mainly an amateur club with its teams (men and women from various age groups) playing in local, regional and lower national leagues until the 1980s, when former first team players became part of the club's organizational structure and the focus became more technical and organized. With sponsors support its teams start making progress and achieving promotions in the Italian leagues. The club changed its name to and its main sponsor is local fashion company Lardini. In 2014 the women's team was promoted to Serie A2. In 2017, the women's team won promotion to the Serie A1 by winning the 2016–17 Serie A2 title. Current squad Former Teams Season 2017–2018, as of February 2018. References External links Official website Italian women's volleyball clubs Volleyball clubs established in 1971 1971 establishments in Italy Province of Ancona Sport in le Marche Serie A1 (women's volleyball) clubs
```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'); ```
The Hounslow Loop Line is a railway line in southwest London which was opened by the London and South Western Railway in 1850. It leaves the Waterloo to Reading Line at Barnes Junction and after some seven and a half miles rejoins it at a triangular junction between and . Barnes Railway Bridge carries the line over the River Thames. Passenger services, all operated by South Western Railway, either loop back to Waterloo by the junctions or continue southwest via Feltham. The line is electrified at 750 V DC (third rail). It provides access to the North London Line for freight services both passing through to the north east and connecting to the rail network to the south west. Passenger services and rolling stock The typical weekday service in trains per hour is: 2 from Waterloo, taking the loop at Barnes and leaving it beyond to go via to return to Waterloo 2 from Waterloo, running via Richmond and taking the loop at Hounslow and returning to Waterloo 2 from Waterloo, taking the loop at Barnes and leaving it beyond Hounslow to go via to 2 from Weybridge, taking the loop at Hounslow and returning to Waterloo Limited trains to/from London start/terminate at Hounslow, however South Western Railway timetables and departure boards indicate that every other train from Waterloo terminates or starts at Hounslow whilst they are actually running as loop services. The Sunday service is 1 train per hour in each direction between Waterloo and via Staines 1 train per hour between Waterloo and Hounslow via Brentford in the afternoon. Services are generally operated by Class 707s, operating in 5 or 10-car configuration. These trains entered service in August 2017. Class 450, Class 455 and Class 458 units also work the line. All units on the line are to be replaced by Class 701 Aventra units, with introduction planned for 2020. Ridership The line has seen a steep increase in ridership levels in recent years, corresponding with the doubling of train frequencies from 2 trains per hour in each direction to 4 (except on Sundays). The line's seven stations had combined passenger numbers of 5.565 million in 2007–08 (based on station exits), a 162% increase on the 2004–05 figure of 2.122 million. Recent changes Most stations had platforms lengthened to allow the operation of 10 coach trains from May 2013. Where this was not possible, selective door opening is used. Platform 20 at Waterloo (within the former terminal) came into use in May 2014 to provide additional capacity. Future developments A proposal published in 2017 by the London Assembly and Transport for London envisages extending the London Overground network to run trains on the section of the Hounslow Loop Line between Brentford and Hounslow. The scheme, known as the West London Orbital, would involve the re-opening of the Dudding Hill Line to passenger services and running trains from and via the planned station. A new station may be constructed at , close to Kew Bridge. The plans are currently at public consultation stage with TfL. References Further reading External links South West Trains Railway lines in London Railway branch lines Railway loop lines Standard gauge railways in London Transport in the London Borough of Hounslow Transport in the London Borough of Richmond upon Thames
The music of Trinidad and Tobago is best known for its calypso music, soca music, chutney music, and steelpan. Calypso's internationally noted performances in the 1950s from native artists such as Lord Melody, Lord Kitchener and Mighty Sparrow. The art form was most popularised at that time by Harry Belafonte. Along with folk songs and African- and Indian-based classical forms, cross-cultural interactions have produced other indigenous forms of music including soca, rapso, parang, chutney, and other derivative and fusion styles. There are also local communities which practice and experiment with international classical and pop music, often fusing them with local steelpan instruments. MusicTT was established in 2014 to facilitate the business development and export activity of the music industry in Trinidad and Tobago. History The Cedula of Population of 1783 laid the foundation and growth of the population of Trinidad. The island's Spanish possessors contributed little towards advancements, with El Dorado the focus; Trinidad's geographical location made it the center of that focus. Following the Cedula, French planters (accompanied by their slaves, free coloreds and mulattos) from the French Antilles of Martinique, Grenada, Guadeloupe and Dominica migrated to the Trinidad. This exodus was encouraged due to the French Revolution. The Spanish also gave many incentives to lure settlers to the island, including exemption from taxes for 10 years and land grants in accordance to the terms set out in the Cedula. These new immigrants established local communities of Blanchisseuse, Champs Fleurs, Paramin, Cascade, Carenage and Laventille. Trinidad's population jumped from less than 1,400 in 1777, to over 15,000 by the end of 1789. In 1797, Trinidad became a British crown colony, with a French-speaking population. Carnival had arrived with the French. Indentured laborers and slaves, who could not take part in Carnival, formed their own, parallel celebration, canboulay, which became the precursor for the Trinidad & Tobago Carnival, and has played an important role in the development of Trinidad's culture. Official and elite unease over carnival revelry (which was considered violent and unruly) grew during the next few decades, and in 1883 drumming was banned in an attempt to clean up Carnival. This injunction came after a serious disturbance during the 1881 Carnival, known as the Canboulay Riots. Canboulays were processions during carnival that commemorated the harvesting of burnt cane fields during slavery, a process so labor-intensive that it had often involved forced marches of slaves from neighboring plantations to more efficiently harvest the cane (once the field is burned, the cane requires immediate harvesting, or it spoils). These canboulay processions were popular, and often incorporated kalenda. The government's attempt to ban the processions in 1881 resulted in open riots between Afro-Creole revelers and police, a turn of events that, not surprisingly, caused deep resentment within Trinidadian society toward the government's use of power. The open resistance of Afro-Creole revelers, of course, redoubled concerns among government officials over this potential threat to public order and led to an alternative strategy—the banning of drumming—in 1883. To make sure that the point got across, stick-fighting itself was banned in 1884. An ingenious substitute for the drums and sticks, called tamboo bamboo, was introduced in the 1890s. Tamboo-bamboo bands consist of three different instruments (each cut from bamboo): boom, foulé, and cutter. The boom serves as the bass instrument, is usually about five feet long, and is played by stamping it on the ground. The foulé, a higher-pitched instrument, consists of two pieces of bamboo, each about a foot long, and is played by striking these pieces end to end. The cutter, the highest-pitched instrument in the ensemble, is made from a thinner piece of bamboo (of varying length) and is struck with a stick. These three types of instruments combined to beat out rhythms that accompanied the chantwells and were a staple of carnival celebrations for many years. They were gradually rendered obsolete by the steel band. The 1930s saw contests between tents become a standard part of Carnival, and in 1939, Growling Tiger was crowned the first calypso monarch of Trinidad (for his song, "The Labor Situation in Trinidad"). Carnival festivities split into two kinds of venues during the late 19th and early 20th centuries, occupying both the street and more performance-oriented calypso tents. Both of these spaces, however, were the preserve of the lower class and of Afro-Creoles. Calypsonians were considered potentially dangerous by elites and government officials because they commanded large followings and could sway public opinion with their songs. The streets were also carefully monitored, setting up an atmosphere within which calypso and Carnival were embraced by the lower class and kept at a distance by elites. The Afro-Creole middle class, moreover, working toward upward social mobility and thus concerned with aligning itself with the elite, also attempted to distance itself from Carnival and calypso. Beginning in 1845, major influxes of indentured immigrants from India and other parts of the world dramatically changed the ethnic composition of the islands. These indentured servants brought their own folk music, primarily from Uttar Pradesh and Bihar, to the creole mix, resulting in chutney music. In addition to Indians, Syrians, Portuguese, Chinese and Africans came to the islands in waves between 1845 and 1917, and even after. Folk traditions Recorded in the hills of Trinidad, here is a fascinating juxtaposition of three music and music / dance practices of non-urban dwellers derived from African roots. Bamboo-Tamboo evolved out of the ban which European colonizers imposed on drumming: dry, hollow bamboo poles were cut to varying lengths to produce different pitches when thumped theground. These bamboo instruments are used to accompany or speak about calinda (stick fighting). Belair (bélé) is a dance of older women accompanied by drums and shakers Bélé In the late 18th century when the French plantation owners and their Creole slaves came to Trinidad and Tobago, they brought with them a life style of "joie de vivre" to their plantations. At that time, the French held many balls at the Great Houses where they enjoyed doing many of the courtly dances of Europe. The house slaves, in their moments of leisure, took the dance to the field slaves and mimicked the dance of their masters. The slaves who worked in or around these houses quickly copied the style and dress. They showed off by doing ceremonious bows, making grand entrances, sweeping movements, graceful and gentle gliding steps which imitated the elegance of the French. The rhythmic quality of the bélé drums added spicy and yet subtle sensuality to the movements. There are more than 14 types of bélé dances including the Grand bélé and Congo bélé, with each performed to its own rhythms and chants. Tamboo-Bamboo Stick fighting and African percussion music were banned in 1881 from Trinidad Carnival, in response to the Canboulay Riots. They were replaced by bamboo sticks "Tamboo-Bamboo" (originally Tambour Bamboo) beaten together, which were themselves banned in turn. Tamboo-Bamboo evolved out of the ban which European colonizers imposed on drumming: dry, hollow bamboo poles were cut to varying lengths to produce different pitches when thumped against the ground. In 1937 they reappeared, transformed as an orchestra of frying pans, dustbin lids and oil drums. These steelpans or pans are now a major part of the Trinidadian music. The first instruments developed in the evolution of steelpan were Tamboo-Bamboos, tunable sticks made of bamboo wood. Tamboo-Bamboo bands also included percussion of a (gin) bottle and spoon. By the mid-1930s, bits of metal percussion were being used in the tamboo bamboo bands. Kaiso Kaiso is a type of music popular in Trinidad and Tobago, Grenada, Barbados, St. Lucia and Dominica. It originated from West African call and response songs, and later evolved into calypso music. Kaiso music has its origins in West African call and response songs (particularly in present-day Nigeria) which were brought over by the slaves who (in the early history of the art form) used them to sing about their masters and ways to gain their freedom. The people would also gather in "kaiso" tents where a griot or lead singer would lead them in song. Many early kaisos were sung in French Creole by a "chantwell". Kaiso songs are generally narrative in form and often have a cleverly concealed political subtext. After Emancipation of slavery, the chantwell would sing call-and-response chants called lavways, lionizing and cheering on champion stickfighters. This form of music gradually evolved into the modern day calypso. Calypso Calypso music grew together with Carnival. The music drew upon the West African Kaiso and French/European influences, and arose as a means of communication among the enslaved Africans. Kaiso is still used today as a synonym for calypso in Trinidad and some other islands, often by traditionalists, and is also used as a cry of encouragement for a performer, similar to bravo or olé. Highly rhythmic and harmonic vocals characterized the music, which was most often sung in a French Creole and led by a griot. As calypso developed, the role of the griot (originally a similar traveling musician in West Africa) became known as a chantuelle, and eventually, calypsonian. Calypso was popularized after the abolition of slavery and the ensuing growth of the Carnival festivals in the 1830s. Modern calypso, however, began in the 19th century, a fusion of disparate elements ranging from the masquerade song lavway, French Creole belair and the stick fighting chantwell. Calypso's early rise was closely connected with the adoption of Carnival by Trinidadian slaves, including canboulay drumming and the music masquerade processions. The French brought Masquerade Balls to Trinidad which were mimicked by ex-slaves after Abolition of Slavery, and calypso competitions at Carnival grew in popularity, especially after the abolition of slavery in 1834. Calypso drew upon African and French influences, and became the voice of the people. It allowed the masses to challenge the actions of the unelected Governor and Legislative Council, and the elected town councils of Port of Spain and San Fernando. As English replaced patois (French Creole) as the dominant language, calypso migrated into English, and in so doing it attracted more attention from the radio stations and government. Calypso continued to play an important role in political expression, and also served to document the history of Trinidad and Tobago. Early performers Early chantwells such as Hannibal, Norman Le Blanc, Mighty Panther and Boadicea made names for themselves by criticizing the colonial government. In 1912, calypso was recorded for the first time and the following decade saw the arrival of calypso tent. During Carnival, calypsonians competed for awards like the Carnival Road March, National Calypso Monarch, Calypso Queen, Junior Monarch and Extempo Monarch in contests called picong, when two performers trade bawdy and irreverent jibes at each other, and referencing the day's events. Soon, stars such as Lord Invader and Roaring Lion grew in stature (the 1930s Golden Age of Calypso) and became more closely aligned with the independence movement. Some songs were banned or censored by the British colonial government, and calypso became a method of underground communication and spreading anti-British information. These early popular performers led the way for calypso's mainstreaming with artists including Lord Kitchener, Harry Belafonte and Mighty Sparrow. Belafonte, a Jamaican-American singing in American English, was by far the most popular internationally during this wave (with his Calypso album, Belafonte was the first artist to sell a million copies), but his music was also criticized for watering down the sound of calypso. 1947 saw Lord Kitchener and Killer forming the renegade calypso tent Young Brigade. The term Young Brigade soon came to refer to a specific group of calypsonians that used fictional narratives and humor with new, more dance-able rhythms. Kitchener was by far the most popular of the Young Brigade calypsonians, and he helped popularize calypso in the United Kingdom and elsewhere. Mighty Sparrow's first hit was Jean and Dinah, celebrating the departure of American military forces from Trinidad; the song launched a new generation of politically active calypso music, which soon became associated with the People's National Movement. Roaring Lion was also a major part of this vanguard in calypso music, and he became known for a traditionalist style that he maintained throughout his career. During the 1970s, calypso's popularity waned throughout the world, including the Caribbean. Derivatives include an uptempo version of Calypso music called soca, and a hip-hop-influenced style called rapso both became popular in Trinidad and other islands. Soca was by the more influential in terms of international sales, since rapso's crossover appeal to mainstream tastes has been extremely limited. Old-time calypsonians and purists, however, preferred rapso's continuation of the lyrical ambidexterity that helped make calypso the world-famous, innovative art form it has become; many criticized soca's perceived watering-down of calypso, including veteran calypsonians such as Chalkdust, who asked: "Are we to put water in the brandy, singing just two or three words [that mainstream audiences] can understand and dance to?" Indo-Trinidadians began popularising chutney music during the same time period. In the mid-1970s, artists like Sundar Popo made the music mainstream. The Father of Soca Music The "father" of soca was a Trinidadian man named Garfield Blackman who rose to fame as "Lord Shorty" with his 1964 hit "Cloak and Dagger" and took on the name "Ras Shorty I" in the early 1980s. He started out writing songs and performing in the calypso genre. A prolific musician, composer, and innovator, Shorty experimented with fusing calypso and elements of Indo-Caribbean music for nearly a decade from 1965 before unleashing "the soul of calypso", soca music by the early 1970s. Shorty was the first to define his music as "soca" during 1975 when his hit song “Endless Vibrations” was causing major musical waves on radio stations and at parties and clubs not just throughout his native T&T but also in far-off metropolitan cities like New York, Toronto, and London. Soca was initially spelled Sokah which stands for the “Soul of Calypso” with the “Kah” part being taken from the first letter in the Sanskrit alphabet and representing the Power of movement as well as the East Indian rhythmic influence that helped to inspire the new soca beat. Shorty stated in several interviews that the idea for the new soca beat started with the rhythmic fusion of Calypso rhythms with East Indian rhythms that he used in his hit "Indrani" recorded in 1972. The soca beat was solidified as the popular new beat that most of the T&T Calypso musicians would start adopting by the time Shorty had recorded his big crossover hit “Endless Vibrations” in 1974. Shorty also recorded a mid-year album in 1975 called “Love In The Caribbean” that contains several crossover soca tracks before setting off on an album distribution and promotion tour. During his 1975 “Love In The Caribbean” album promotion and distribution tour, Shorty pass thru the isle of Dominica on his way back to Trinidad and saw Dominica's top band Exile One perform at the Fort Young Hotel. Shorty was inspired to compose and record a Soca and Cadence-lypso fusion track called “E Pete” or “Ou Petit” which can be viewed as the first of its kind in that particular Soca style. Shorty sought and got help with the Creole lyrics he used in the chorus of his “E Pete” song by consulting with Dominica's 1969 Calypso King, Lord Tokyo, and two creole lyricists, Chris Seraphine and Pat Aaron while he was in Dominica. The song “E Pete” thus contains genuine Creole lyrics in the chorus like "Ou dee moin ou petit Shorty" (meaning "you told me you are small Shorty"), and is a combination of Soca, Calypso, Cadence-lypso and Creole. Shorty's 1974 Endless Vibrations and Soul of Calypso brought Soca to be regional and international attention and fame and helped to solidify the rapidly growing Soca Movement led by Shorty. Soca developed in the early 1970s and grew in popularity in the late 1970s. Soca's development as a musical genre included its early fusion of calypso with Indian musical instruments, particularly the dholak, tabla, and dhantal, as demonstrated in Lord Shorty's classic compositions "Ïndrani", "Kalo Gee Bull Bull" and "Shanti Om". Soca has grown since its inception to incorporate elements of funk, soul, disco, zouk and other dance music genres, and continues to blend in contemporary music styles and trends. Soca has also been experimented with in Bollywood films, Bhangra, in new Punjabi pop, and in disco music in the United States. Rapso Rapso arose as Black Power and Pan-Africanist thought spread in Trinidad. Lancelot Layne is said to have invented the genre with his 1971 hit "Blow Away", while Cheryl Byron brought rapso to calypso tents in 1976. The term rapso first appeared in 1980 on Busting Out, an album by Brother Resistance and his Network Riddum Band. Rapso has become one of the most prevalent expressions of music on Trinidad itself, but is largely absorbed into calypso during Carnival celebrations and contests. The 1990s saw a more politically and spiritually-conscious form of rapso, which has been infused with soul and reggae music, as well as native J'ouvert, an early introduction to Carnival which consists of percussionists using makeshift materials to hammer out a beat. The trio band 3 Canal, and the artist Ataklan, are among the most popular modern proponents. Extempo Extempo, or extempo calypso, or calypso war, is a lyrically improvised (freestyled) form of calypso. An annual competition is held at the Trinidad and Tobago Carnival for the title of Extempo Monarch. The art form was first recorded in the 1940s in Trinidad. Brass bands Starting in 1986, David Rudder popularized the brass band in Carnival competitions. Brass bands had long been a part of Trinidad's cultural heritage, but Rudder helped inspire the founding of the Caribbean Brass Festival in 1991. Steel-pan and steel bands One of the most significant contributions of Trinidad and Tobago to the world of music was the invention of the steelpan. This instrument is the only acoustic instrument that was invented in the 20th century. The pan evolved from music which the island slaves created for the carnival festivities. The first steel-pans were made from oil drums. The players would beat on the end of the oil drum with bamboo to produce music and found that the areas of the drum that were hit the most frequently developed a higher pitch. From this discovery the players learned that they could change the pitch of the drum to create different notes. The steel-pan is created by hammering a 55-gallon drum to produce the full chromatic range of scale notes. After the drum is hammered into the shape of a concave bowl, individual notes are grooved out into the bowl of the drum. The traditional steel-pan was hammered out by hand, but with the instrument gaining popularity and worldwide demand, manufacturers have experimented with more efficient methods including Spinforming, Flowforming, Aquaforming and Marforming. A typical pan contains 2 octaves, with each note being a hammered out groove in the pan that produces a distinct note. Steel-pan originates from low-income communities and was at first associated with violence and lawlessness. The upper class looked on steel-pan players with disdain until Dr. Eric Williams, leader of People's National Movement and the man known as father of the nation, increased the acceptance of steel-pan in the mainstream music scene by encouraging corporations to sponsor steel bands, giving the bands more respectability in society. Today, steel-pan is the national instrument of Trinidad and Tobago and is used worldwide. In 2013 Ancel Bhagwandeen was awarded by the Prime minister's Awards for Scientific Ingenuity for developing and producing the World's first tenor pan stick that is sound sensitive and displays light colours in sync with playing the steel pan. It is the first modernization of the pan stick in decades. Parang In Trinidad and Tobago the Latin American-derived seasonal Christmas music called Parang is about more than just Christmas carols. Parang is about general merrymaking and festivities around Christmas time and the food, dancing and music is all a part of the parang. The singers of parang visit the homes of family and friends and sing Christmas-themed songs in Spanish accompanied by instruments, usually the guitar, Venezuelan cuatro, maracas (known as chac-chacs on the islands), mandolin, bandolin, violin, bandola and sometimes the cello. Parang is mostly performed during the Christmas season but is also used at other festivals throughout the year, including the Santa Rosa Festival, the velorio del cruz, and the Sebucan festival. Parang includes both religious and non-religious songs and melodies set against the parang instrumentation. Parang festivities typically involve dancing and there are two primary dance styles, the slower castillian waltz and a quicker gavilan style. Chutney music Indians arrived in Trinidad and Tobago on May 30, 1845 as indentured laborers on the sugarcane, cocoa, and rice plantations, to fill the labor void left by the abolition of slavery. The island's growing Indian population developed the musical style of chutney. This musical form based on Indian rhythms was named chutney because it is hot music, its use of double entendres and fast and repetitive rhythms make its listeners want to dance. Chutney uses a mixture of East Indian classical music, East Indian folk music, bhajans and ghazals (bhajans and ghazals are religious songs), Western and African instruments, and usually the Indian musical instruments: harmonium, dholak, tabla, dhantal, manjira, tassa, and sometimes the bulbul tarang to accompany its fast-paced soca or calypso beats. Sundar Popo was one of the first who pioneered in this music. Chutney music is a mixture of Indian tunes influenced by calypso and soca rhythms, and it has been blended with many of the other varieties of music on the island. Artists like Apache Waria and Terry Gajraj pioneered ragga chutney. Chutney has also developed into chutney-bhangra, chutney-hip-hop, soca-bhangra and bhangra-wine. As chutney music's popularity grows, people are becoming more aware of the mixture of cultures present in Trinidad and Tobago. Many of the chutney artists that are known within West Indian culture are from Trinidad. Sundar Popo was a pioneer of chutney music, famous for first blending chutney with calypso and soca and increasing the popularity of the genre. The instruments used in chutney were those that were approved for women to play, making chutney becoming viewed as a woman's music genre. Since then, chutney has grown from a woman's genre into a leading player of the pop music scene with both men and women participating in nationwide competitions. Chutney music is a reflection on the culture of Trinidad and Tobago, its blending of Indian, Western and African elements is a representation of the backgrounds that are mixed together to form the culture of Trinidad and Tobago. Pop, rock and alternative music Trinidad and Tobago has an underground pop, rock and heavy metal scene with many small shows being held throughout the year. The largest of such shows are the annual Pop Music Awards held at the Tsunami nightclub in Chaguaramas and the Samaan Tree Rock Festival in Aranguez. Western classical There is a long tradition of western classical music, both instrumental and choral, dating back to the colonial era under the British. The Trinidad & Tobago Music Festival is a primary showcase for these art forms. Choral groups, steelband and traditional western orchestras, smaller ensembles, music schools and programmes, and others stage shows at venues around the country, particularly at the Queen's Hall in Port of Spain; the University of the West Indies (St. Augustine Campus); Central Bank Auditorium; Simon Bolivar auditorium; churches and cathedrals; and at the new National Academy for the Performing Arts (NAPA), which was opened in 2009 but closed down in 2014 for renovations. Popular proponents of the Western Classical form include the St Augustine Chamber Orchestra/Trinidad and Tobago Youth Philharmonic (the largest symphony orchestra and largest youth orchestra in the English-speaking Caribbean), Marionettes Chorale (the first choir to blend choral voices with the steelpan), Eastern Performing Arts Fraternity and Eastern Youth Chorale, Lydian Singers, UWI Festival Arts Chorale; the National Philharmonic and the National Steel Symphony Orchestra, and the Classical Music Development Foundation, among others. Hindustani classical Historically, the indentured laborers who came from India brought with them the form of authentic Indian Classical Music. A form of local Indo-Trinidad classical music was later created. However, organisations were able to keep the pure classical form alive. Bharatiya Vidya Sansthaan, under the guidance of Prof. Hari Shankara Adesh, was the first institution to provide courses in the authentic classical artform of India. Prof. Rajesh Kelkar (from historic Maharaja Sayajirao University of Baroda), went to remote villages of Trinidad and taught classical and devotional music with missionary zeal. MusicTT The government has identified the music industry as one of three pioneering sectors that are pivotal to long-term economic sustainability because of dropping prices of oil and gas, Trinidad and Tobago's main export. For this reason, MusicTT was established in 2014 as a subsidiary of CreativeTT. MusicTT’s mandate is "to stimulate and facilitate the business development and export activity of the music industry in Trinidad and Tobago to generate national wealth." References Brill, Mark. Music of Latin America and the Caribbean, 2nd Edition, 2018. Taylor & Francis Scher, P. W. "Preservation, Carnival and the State in Trinidad". 2002. Anthropology Quarterly, Vol. 75, No 3. pp. 453–484. Ho, Christine G. T. "Popular Culture and the Aestheticization of Politics: Hegemonic Struggle and Postcolonial Nationalism in the Trinidad Carnival". 2000. Transforming Anthropology. Vol. 9, Number 1, pp. 3–18. Waithe, Desmond and Worrell Frank C. 2002. "The Development of the Steel Band in Trinidad and Tobago". Malloy Endowment Supported Lecture. Lewis, W. (1993), "Mechanising the manufacture of the steel pan musical instrument". The Journal of Professional Engineers of Trinidad and Tobago, Vol. 27, No. 2, pp. 35–41. Lewis, W and Ameerali, A. 2010. "Experimental Investigations into Manufacturing Processes Used to Produce Musical Steel Drums". The West Indian Journal of Engineering. Vol. 32. Hansen, U., Rossing, T. D., Mannettc, E., and George, K. (1995), "The Caribbean Steel Pan; Tuning and Mode Studies", MRS Bulletin, March, pp. 44–46. Taylor, Daphne Pawan. 1977. Parang of Trinidad. Port of Spain, Trinidad: National Cultural Council of Trinidad and Tobago. Ingram, Amanda K. 2002. What is Parang? Wesleyan University. TIDCO. 1996. Arts & Entertainment Directory 1996. Port of Spain, Trinidad: Tourism & Industrial Development Company of Trinidad and Tobago Ltd. Constance, Zeno Obi. 1991. Tassa, Chutney & Soca: The East Indian Contribution to the Calypso. Trinidad: Jordan's Printing Service. Moodie-Kublalsingh, Sylvia. 1994. The Cocoa Panyols of Trinidad: An Oral Record. London: British Academic Press. De Ledesma, Charles, and Georgia Popplewell. "Put Water in the Brandy?" 2000. In Broughton, Simon, and Mark Ellingham, with James McConnachie and Orla Duane (eds), World Music, Vol. 2: Latin & North America, Caribbean, India, Asia and Pacific, pp. 507–26. Rough Guides Ltd, Penguin Books. Ramnarine, Tina K. "The Caribbean's Hot Hindi Sound". 2000. In Broughton, Simon, and Mark Ellingham, with James McConnachie and Orla Duane (eds), World Music, Vol. 2: Latin & North America, Caribbean, India, Asia and Pacific, pp. 527–30. Rough Guides Ltd, Penguin Books. See also List of calypsos with sociopolitical influences
Mascarenhas may refer to: Mascarenhas (surname), people named Mascarenhas Mascarenhas (footballer), Domingos António da Silva (1937–2015), Angolan footballer Mascarenhas, a civil parish of Mirandela, Portugal Mascarenhas Islands, or Mascarene Islands, an archipelago in the Indian Ocean See also Mascarenhasia, a plant genus
Cerizay () is a commune in the Deux-Sèvres department in the Nouvelle-Aquitaine region in western France. History The name Cerizay probably originated during the closing centuries of the Roman occupation. During the Middle Ages the old town centre was situated beside a feudal castle. The last two towers of the castle, along with its 12th century chapel, were destroyed when the present (rather flamboyant) church was constructed in 1890. Economy The automotive coachbuilder firm Heuliez had its main production plant on the outskirts of the town. They have been involved in the production of various niche models for French car manufacturers. The firm currently construct the roof module for the Peugeot 206CC and till 2009 built the Vauxhall/Opel Tigra Twin Top. Between June 2011 and December 2013, the "Mia", an electric car developed in Germany, was built under contract with an annual output of 10,000 units. People Famous residents include: Philippe de Mornay Twin towns Chipping Ongar, England. See also Communes of the Deux-Sèvres department References Communes of Deux-Sèvres
The Battle of Cape Girardeau was a military demonstration of the American Civil War, occurring on April 26, 1863 in Cape Girardeau, Missouri. The conflict was part of the pursuit of US Brigadier General John McNeil through Southeast Missouri by Confederate Brigadier General John S. Marmaduke. Though the conflict to this day is known as a battle, it was a relatively small engagement whose primary importance was as the turning point that brought General Marmaduke's second Missouri raid to an end. Background General Marmaduke began his second raid into Missouri from Northeast Arkansas on April 18, 1863. During the raid, he intended to obtain much-needed supplies for his troops, several hundred of whom were unarmed and un-mounted. The General feared that if left behind his unarmed troops might desert, but if taken along they may be supplied with arms and horses as captured during the raid. Marmaduke organized his division of about 5,000 men into two columns, each made up of two brigades. Colonel George W. Carter led one of the columns, which consisted of a brigade led by Colonel Colton Greene and the other by Carter himself. The second column was led by Colonel Joseph O. Shelby and consisted of Shelby's famous "Iron Brigade," commanded by Colonel George W. Thompson, and another brigade commanded by Colonel John Q. Burbridge. In all, the division had between eight and ten pieces of artillery. General Marmaduke ordered Colonel Carter's column to advance toward Bloomfield, Missouri and attempt to capture the Federal garrison there under the command of US Brigadier General John McNeil. If McNeil had been able to escape, the Confederates thought that he would head north to Pilot Knob, the Union headquarters of the region. Thus Marmaduke accompanied Colonel Shelby's column north to Fredericktown to intercept such an attempt. Shelby's column arrived at Fredericktown on April 22, 1863, but Carter's column did not reach Bloomfield until April 23 because of difficulty crossing the Mingo swamps. Carter arrived at Bloomfield to find that McNeil had left it in ruins two days earlier. Having learned of Marmaduke's position on the road to Pilot Knob, McNeil disobeyed his orders to retreat to Pilot Knob and instead fled northeast to heavily fortified Cape Girardeau, arriving on the evening of April 24. Carter had been instructed not to pursue McNeil if he fled in any direction other than the road to Fredericktown and Pilot Knob. However, Carter also disobeyed orders and indeed pursued McNeil to within four miles of Cape Girardeau, arriving mid-day on April 25. Carter then sent a letter to McNeil demanding the garrison's surrender and a reply within 30 minutes. The letter was signed by Confederate Major General Sterling Price with the hope that his name would instill fear in McNeil that General Price was nearby. However, McNeil was confident in the strength of his defense and refused to surrender. Fearing an attack, Carter sent word of the situation to General Marmaduke, who then proceeded with Colonel Shelby's column to reinforce Carter's troops in any possible actions at Cape Girardeau. Fortifications In 1861 General Ulysses S. Grant approved the construction of four forts at strategic locations around the city of Cape Girardeau. They were named Forts A, B, C, and D. Fort A was positioned on a bluff overlooking the Mississippi River at the north edge of town and was meant to defend the city against Confederate gunboats on the river. Fort B was located on a hill now occupied by Southeast Missouri State University and was built to protect the city from enemy approaches on the Perryville Road and Jackson Road (now Broadway Avenue). Fort C was near the present intersection of South Ellis Street and Good Hope Street and guarded approaches on the Bloomfield Road, Gordonville Road (now Independence Street), and Commerce Road (now Sprigg Street). Fort D was located on a river bluff south of the city, and like Fort A, it was primarily a river defense. It was the largest and most important garrison in the region and is the only fort remaining in Cape Girardeau today. However, Fort D did not play an important role in the Battle of Cape Girardeau. Action On the night of April 25, in anticipation of the attack, General McNeil ordered the evacuation of women and children via steamboat to a safe location upriver. Also during the night two gunboats and a steamer arrived with additional troops to support McNeil's forces. With the gunboats in place McNeil did not foresee any threat from the Mississippi River side of the city, so he had cannons moved from Forts A and D along the river to Forts B and C on the western side of the city. In all, McNeil's forces totaled about 4,000 men, including supporting regiments from Iowa, Wisconsin, Nebraska, and Illinois, though some of these regiments may have arrived after the action had ended. Shelby's column arrived at Cape Girardeau early on April 26. With General Marmaduke's full division then on the western edge of the city, it assumed a formation that consisted of Colonel Burbridge's brigade in the center, Shelby's on the left, and Carter's on the right. The line extended from just east of St. Mary's Cemetery on the north (near the present intersection of Missouri Ave and Mississippi St) to Gordonville Road on the south. Its center was on the Jackson Road. The attack began around 10:00 am on April 26. Unsuccessful charges were made by cavalry units from both sides, the Federal troops being driven back by Colonel Shelby's superior cavalry forces and the Confederates being met with heavy fire from field artillery and the guns of Forts B and C. The artillery fire between the forts and Shelby's Brigade made up the bulk of the action. The fighting lasted approximately four to five hours, ceasing sometime after 2:00 pm when General Marmaduke ordered his forces to withdraw. Aftermath No reliable reports were made of the numbers killed and wounded during the action, as "official" figures tended to be exaggerated and unfounded. The number of confirmed dead was no more than ten on either side, though some reports claim that the total number killed was close to a hundred, plus over three hundred wounded. Following the conflict, General Marmaduke retreated to Jackson and then led his troops back to Arkansas, bringing to an end his second Missouri raid. Marmaduke was followed by Federal forces, but no contact was made before crossing the Arkansas border. Possibly as punishment for disobeying orders and instigating the needless conflict at Cape Girardeau, Colonel Carter was demoted to commanding a brigade rather than his entire column. Though neither side had a clear victory at the closing of the day's fighting, the battle was a strategic Union victory that forced the Confederate forces to retreat to Arkansas. Historian Henry Phillips concluded, "while it was not of sufficient magnitude to be termed a battle in technical military parlance, all of the potentials were present for a sanguinary battle, and the reason a battle did not occur was because the commanders of the two hostile forces each had reasons that he deemed sufficient for not forcing the issue." Forces Confederate order of battle Brigadier General John S. Marmaduke (5,086 men, 8 guns) Notes Footnotes Citations References "Anniversary Observed of Battle of Cape Girardeau in Civil War." Source unknown. May, 1939. Clippings Collection, Special Collections and Archives, Kent Library, Southeast Missouri State University. "April 26th was Anniversary of Cape Girardeau Battle." The Community. April, 1930. Clippings Collection, Special Collections and Archives, Kent Library, Southeast Missouri State University. Bartels, Carolyn M. The Civil War in Missouri Day by Day 1861-1865. Shawnee Mission, KS: Two Trails Publishing. 1992. "Civil War Battle at Cape Occurred 89 Years Ago." Source Unknown. April 25, 1952. Condensed version of article from book Authentic Accounts of the Great Civil War by John Laird Wilson. Glenn House Collection, Box 3079, Folder 10, Special Collections and Archives, Kent Library, Southeast Missouri State University. Dickerson, J.D. "The Civil War in Cape Girardeau: Marmaduke Heads North." Southeast Missourian. Sep. 23, 1961. Clippings Collection, Special Collections and Archives, Kent Library, Southeast Missouri State University. Dittlinger, Ann. "Battle of Cape Girardeau (A Missourian Bicentennial Feature)." Southeast Missourian. April 18 and April 25, 1976. Glenn House Collection, Box 3079, Folder 10, Special Collections and Archives, Kent Library, Southeast Missouri State University. Guilbert. "Marmaduke-McNeil Fight for Cape Girardeau." Southeast Missourian. April 25, 1963. Reprint of New York Tribune article dated May 1, 1863. Clippings Collection, Special Collections and Archives, Kent Library, Southeast Missouri State University. Hill, Dr. Robert R. "Fort D Old Stronghold (A Missourian Bicentennial Feature)." Southeast Missourian. Sep. 7, 1975. Glenn House Collection, Box 3079, Folder 11, Special Collections and Archives, Kent Library, Southeast Missouri State University. Hinchey, Allan. "Battle of Cape Girardeau in Civil War was Fought 69 Years Ago Today." Source unknown. April 26, 1932. Clippings Collection, Special Collections and Archives, Kent Library, Southeast Missouri State University. "Historical Points: Civil War Forts". Southeast Missourian. July 9, 1951. Clippings Collection, Special Collections and Archives, Kent Library, Southeast Missouri State University. Maple, Rev. J.C. "Markaduke's Attack on Cape Girardeau." The Republican. April 26, 1913. Clippings Collection, Special Collections and Archives, Kent Library, Southeast Missouri State University. "Marmaduke Shell Found in Well Near the Fair Ground." The Republican. Date unknown. Clippings Collection, Special Collections and Archives, Kent Library, Southeast Missouri State University. McNeil, Brigadier General John. "Boats to go for troops." April 26, 1863. St. Louis Civil War Roundtable Collection, Box 1663, Folder 4, Item 9, Special Collections and Archives, Kent Library, Southeast Missouri State University. McNeil, Brigadier General John. "Funds Removed." General Order No. 9. April 26, 1863. St. Louis Civil War Roundtable Collection, Box 1663, Folder 4, Item 10, Special Collections and Archives, Kent Library, Southeast Missouri State University. McNeil, Brigadier General John. "Women to Leave." General Orders No. [blank]. April 25, 1863. St. Louis Civil War Roundtable Collection, Box 1663, Folder 4, Item 8, Special Collections and Archives, Kent Library, Southeast Missouri State University. Murdoch, Lindsey W. Lindsey W. Murdoch Reminiscences. Date unknown. p 158. Lindsey W. Murdoch Reminiscences, Special Collections and Archives, Kent Library, Southeast Missouri State University. Oates, Stephen B. "Union Artillery Routs Southern Attack on Cape Girardeau.", Southeast Missourian. April 27, 1963. Reprint of article from Missouri Historical Review. Glenn House Collection, Box 3079, Folder 10, Special Collections and Archives, Kent Library, Southeast Missouri State University. "Old Letters Found in Belfast", Southeast Missourian. June 3, 1950. Clippings Collection, Special Collections and Archives, Kent Library, Southeast Missouri State University. Phillips, Henry M. "The Battle of Cape Girardeau: A Civil War Encounter." Southeast Missourian. April 26–30, 1956. Clippings Collection, Special Collections and Archives, Kent Library, Southeast Missouri State University. Ponder, Jerry. The Battle of Chalk Bluff: An Account of General John S. Marmaduke's Second Missouri Raid. Doniphan, MO: Ponder Books. 1994. Snider, Felix E. & Earl Augustus Collins. Cape Girardeau: Biography of a City. Cape Girardeau, MO: Ramfre Press. 1956. Webb, William L. Battles and Biographies of Missourians; or, The Civil War Period of Our State. Kansas City, MO: Hudson-Kimberly. 1900. National Park Service Battle Summary CWSAC Report Update Collections 1863 in Missouri 1863 in the United States Cape Girardeau Cape Girardeau County, Missouri Battle of Cape Girardeau Cape Girardeau Cape Girardeau Cape Girardeau Cape Girardeau April 1863 events
```xml import { ILabShell } from '@jupyterlab/application'; import { DocumentWidget } from '@jupyterlab/docregistry'; import { IRunningSessionManagers, IRunningSessions } from '@jupyterlab/running'; import { ITranslator } from '@jupyterlab/translation'; import { fileIcon, LabIcon } from '@jupyterlab/ui-components'; import { ISignal, Signal } from '@lumino/signaling'; import { Widget } from '@lumino/widgets'; /** * A class used to consolidate the signals used to rerender the open tabs section. */ class OpenTabsSignaler { constructor(labShell: ILabShell) { this._labShell = labShell; this._labShell.layoutModified.connect(this._emitTabsChanged, this); } /** * A signal that fires when the open tabs section should be rerendered. */ get tabsChanged(): ISignal<this, void> { return this._tabsChanged; } /** * Add a widget to watch for title changing. * * @param widget A widget whose title may change. */ addWidget(widget: Widget): void { widget.title.changed.connect(this._emitTabsChanged, this); this._widgets.push(widget); } /** * Emit the main signal that indicates the open tabs should be rerendered. */ private _emitTabsChanged(): void { this._widgets.forEach(widget => { widget.title.changed.disconnect(this._emitTabsChanged, this); }); this._widgets = []; this._tabsChanged.emit(void 0); } private _tabsChanged = new Signal<this, void>(this); private _labShell: ILabShell; private _widgets: Widget[] = []; } /** * Add the open tabs section to the running panel. * * @param managers - The IRunningSessionManagers used to register this section. * @param translator - The translator to use. * @param labShell - The ILabShell. */ export function addOpenTabsSessionManager( managers: IRunningSessionManagers, translator: ITranslator, labShell: ILabShell ): void { const signaler = new OpenTabsSignaler(labShell); const trans = translator.load('jupyterlab'); managers.add({ name: trans.__('Open Tabs'), supportsMultipleViews: false, running: () => { return Array.from(labShell.widgets('main')).map((widget: Widget) => { signaler.addWidget(widget); return new OpenTab(widget); }); }, shutdownAll: () => { for (const widget of labShell.widgets('main')) { widget.close(); } }, refreshRunning: () => { return void 0; }, runningChanged: signaler.tabsChanged, shutdownLabel: trans.__('Close'), shutdownAllLabel: trans.__('Close All'), shutdownAllConfirmationText: trans.__( 'Are you sure you want to close all open tabs?' ) }); class OpenTab implements IRunningSessions.IRunningItem { constructor(widget: Widget) { this._widget = widget; } open() { labShell.activateById(this._widget.id); } shutdown() { this._widget.close(); } icon() { const widgetIcon = this._widget.title.icon; return widgetIcon instanceof LabIcon ? widgetIcon : fileIcon; } label() { return this._widget.title.label; } labelTitle() { let labelTitle: string; if (this._widget instanceof DocumentWidget) { labelTitle = this._widget.context.path; } else { labelTitle = this._widget.title.label; } return labelTitle; } private _widget: Widget; } } ```
The biological screw joint is a naturally occurring form of the screw joint, a mechanical device that combines rotational movement with single-axis translation. Alexander Riedel of the State Museum of Natural History Karlsruhe and Thomas van de Kamp of the Karlsruhe Institute of Technology discovered it in specimens of Trigonopterus oblongus, a weevil found in Papua. Discovery Anatomical examination was made for specimens of the weevil species Trigonopterus oblongus, provided by the Karlsruhe State Museum of Natural History, using a microtomograph at the Institute of Synchrotron Radiation (ANKA) of Karlsruhe Institute of Technology. The analysis revealed that the weevils had a nut-and-screw system for the hip-leg joint. Mechanism The mechanism has been described as "rotational movement combined with a single-axis translation". The arthropod hip–leg joint consists of two parts – the coxa (or the hip) and the trochanter (or the head of the arthropod leg femur). The coxa, in the case of weevils, resembles a nut, and it has a thread running along its inner surface with an angular span of 345°. The trochanter resembles the screw. It is rod-shaped with a large external spiral flange, having an angular span of 410°, in excess of a full circle, which functions as a thread. When the leg muscles of a beetle are stretched, the screw turns. Though the screw-thread provide for very large angular rotation, the front legs of weevils are capable of rotating by 90°, while their hind legs can rotate by 130°. The weevils are just long and can fold their legs below their body. The joint is just in size. Before this was discovered, all known hip-leg joints have been based on either the ball and socket joint system for hip-leg connections, as in humans, as hinges or as saddle joints. The discovery is the first ever instance of a musculoskeletal nut-and-screw system in the animal kingdom. Evolution The screw-and-nut system has been found to be present in all 15 weevils examined by the scientists and appears to be a hitherto unknown anatomical feature of weevils. It has been estimated that weevils evolved this system about 100 million years ago. It is surmised that the development of this feature provided additional flexibility which permitted weevils to improve their climbing abilities, keep steady when at rest, and have stronger leverage for piercing by the snout. See also Issus, one of many planthoppers that have a "biological gear" mechanism in the nymph stage References Cryptorhynchinae Insect anatomy
Runaway Horses is the third solo studio album by American singer Belinda Carlisle, released on October 3, 1989, by MCA Records. The album features songs written by Rick Nowels, Ellen Shipley, Charlotte Caffey and a song co-written by Carlisle herself. The album contains an array of guest artists, including George Harrison and Bryan Adams. The album peaked at number 37 on the US Billboard 200, a considerable fall in sales from Carlisle's 1987 album, Heaven on Earth, but reached number four in the United Kingdom, where it was certified Platinum. Reception and chart performance In positive review of November 11, 1989, Rob Garner of RPM called this record "a very well packaged group effort." He resumed: "Any one of these chorus-with-a-hook tracks could find play." AllMusic retrospectively reviewed the album as being not as strong as Heaven on Earth but still generally likeable and appealing. The album made its debut on the Billboard 200 on October 21, 1989, and after seven weeks of slowly moving up the charts reached its peak position of number 37, a lower position than her previous two albums. The album spent a total of 25 weeks on the Billboard 200 and was certified gold by the RIAA. Runaway Horses was Carlisle's last album to chart in the United States. The album debuted on the UK Albums Chart on November 4, 1989, at number four, which was the album's peak position, matching that of her previous album. The album moved down and back up the chart over the next 18 months and re-entered the top 10 in 1991. Five singles from the album entered the UK Top 40, two of which reached Top 10. The album spent a total of 39 weeks in the UK Top 100 and was certified Platinum by the BPI. Carlisle was presented with her Platinum disc live on the Saturday morning children's television show Going Live! on BBC One. The album was also a success in Australia; it peaked at number six and was certified double Platinum becoming the 24th best-selling album of 1990. Six singles were released from Runaway Horses and were successful in most markets, with the album giving Carlisle four more international top ten hits. "Leave a Light On" was the first song released from the album and became a top ten hit around the world including the UK, where it hit number four (and was certified Silver), Australia, where it hit number five, and Canada, where it hit number six. The song narrowly missed the top ten in the United States peaking at number 11. In Japan, "(We Want) The Same Thing" was released alongside "Leave a Light on" as the lead single in October 1989; when issued in the UK the following year, it became her fifth top ten single. "La Luna" was the third song released from the album and became a top 40 hit in Australia and the UK, also becoming her third top ten in Switzerland. "Summer Rain" was the fourth song released and became a top ten hit in Australia and a top 30 hit in the US (where it was released as the second single) and the UK (where it was released as the sixth single in December 1990). "Runaway Horses" was the fifth single released but was not as successful as the previous singles, only managing to reach number 40 in the UK. "Vision of You" was the sixth song released and became the lowest-charting single on the album only peaking at number 41 in the UK, and a re-release in 1991 reached 71. Runaway Horses was re-released on August 26, 2013, in a 2CD+DVD casebook edition from Edsel Recording (EDSG 8026) featuring the original album remastered, the single versions, remixes and B-sides. The DVD features the videos from the album and an exclusive interview with Carlisle discussing the album. Runaway Horses 30th Anniversary Edition was released in 2019 to coincide with her Runaway Horses 30th Anniversary Tour. This version features the 27 tracks from the 2013 re-release without the DVD, plus three new cover recordings: Gordon Lightfoot's "If You Could Read My Mind", Elton John's "I Need You to Turn To" and Joni Mitchell's "Both Sides Now". The digital download features all 30 tracks and the Deluxe Edition is a 4LP+CD Box Set. Track listing Personnel Belinda Carlisle – lead vocals Charles Judge – keyboards (1-7, 10), acoustic piano (2, 7, 9) Jimmie Haskell – accordion (5) Sandy Stewart – acoustic piano (8) David Munday – keyboards (8), guitars (8), bass (8), drum programming (8) Rick Nowels – guitars (1, 9), acoustic guitar (2, 10), electric guitar (2), Spanish guitar (3, 5), keyboards (5) Ben Schultz – guitars (1, 7), acoustic guitar (3), 12-string guitar (3) George Harrison – slide guitar solo (1), 12-string guitar (7), 6-string bass (7) X.Y. Jones – guitars (1, 4, 6-10), electric guitar (2) Steve Lukather – guitars (6) John Pierce – bass (1-4, 6, 7, 9) Eric Pressly – bass (10) Rudy Richman – drums (1, 3) Luis Conte – Native American drums (2), percussion (2, 10), bongos (3), shaker (3) Jorge Black – percussion (2), tom-tom (2), bass (5) Kenny Aronoff – drums (6, 7, 9) Paul Buckmaster – string arrangements and conductor (4) Sid Page – violin (5) Bekka Bramlett – backing vocals (1-9) Donna De Lory – backing vocals (1-5, 7, 8, 9) Ellen Shipley – backing vocals (1, 2, 3, 5, 7, 9) Maria Vidal – backing vocals (1-9) N'Dea Davenport – backing vocals (3) Carmen Twillie – backing vocals (6) Mona Lisa Young – backing vocals (6) Laura Harding – backing vocals (8) Bryan Adams – backing vocals (9) Production Rick Nowels – producer, arrangements Laura Harding – production coordination Timothy McDaniel – production coordination Robert Feist – engineer David Leonard – engineer Steve MacMillan – engineer, mixing Steve Marcantonio – engineer Dave Meegan – engineer Lawrence Ethan – assistant engineer Lori Fumar – assistant engineer Scott Symington – assistant engineer Mike Tacci – assistant engineer Randy Wine – assistant engineer Marc DeSisto – mixing Shelly Yakus – mixing Stephen Marcussen – mastering at Precision Lacquer (Hollywood, CA). Norman Moore – art direction, design Herb Ritts – photography Jeannine Braden – personal assistant Charts Weekly charts Year-end charts Certifications References 1989 albums Albums produced by Rick Nowels Belinda Carlisle albums MCA Records albums Virgin Records albums
```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 ```
İlkem Özkaynak (born 1 May 1982) is a Turkish former professional footballer who played as a left fullback. References 1983 births Sportspeople from Kırklareli Living people Turkish men's footballers Turkey men's youth international footballers Men's association football defenders Çanakkale Dardanelspor footballers Kayseri Erciyesspor footballers MKE Ankaragücü footballers Antalyaspor footballers Kırklarelispor footballers Adanaspor footballers Edirnespor footballers Men's association football fullbacks Süper Lig players TFF First League players TFF Second League players
Coucy-lès-Eppes is a commune in the Aisne department in Hauts-de-France in northern France. Coucy-lès-Eppes station has rail connections to Reims and Laon. Population See also Communes of the Aisne department References Communes of Aisne Aisne communes articles needing translation from French Wikipedia
```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 ```
```c++ SetFieldDirty(&m_strParam); ```
```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 ```
```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.sql.parser.statement.oracle.dcl; import org.apache.shardingsphere.sql.parser.statement.core.statement.dcl.DropUserStatement; import org.apache.shardingsphere.sql.parser.statement.oracle.OracleStatement; /** * Oracle drop user statement. */ public final class OracleDropUserStatement extends DropUserStatement implements OracleStatement { } ```
```xml /* * Wire * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * along with this program. If not, see path_to_url * */ import {FeatureStatus} from '@wireapp/api-client/lib/team/feature/'; import ko from 'knockout'; import {container, singleton} from 'tsyringe'; import {TeamState} from '../team/TeamState'; const defaultEnabled = true; const defaultEnforced = false; const defaultTimeoutSecs = 10; @singleton() export class AppLockState { public readonly isAppLockAvailable: ko.PureComputed<boolean>; public readonly isAppLockEnforced: ko.PureComputed<boolean>; public readonly isAppLockActivated: ko.PureComputed<boolean>; public readonly appLockInactivityTimeoutSecs: ko.PureComputed<number>; public readonly isAppLockEnabled: ko.PureComputed<boolean>; public readonly hasPassphrase: ko.Observable<boolean>; public readonly isActivatedInPreferences: ko.Observable<boolean>; public readonly isAppLockDisabledOnTeam: ko.PureComputed<boolean>; constructor(teamState = container.resolve(TeamState)) { this.isAppLockDisabledOnTeam = ko.pureComputed( () => teamState.isTeam() && teamState.teamFeatures()?.appLock?.status !== FeatureStatus.ENABLED, ); this.isAppLockAvailable = ko.pureComputed(() => teamState.isTeam() ? teamState.teamFeatures()?.appLock?.status === FeatureStatus.ENABLED : defaultEnabled, ); this.isAppLockEnforced = ko.pureComputed( () => this.isAppLockAvailable() && (teamState.isTeam() ? teamState.teamFeatures()?.appLock?.config?.enforceAppLock : defaultEnforced), ); this.appLockInactivityTimeoutSecs = ko.pureComputed(() => teamState.isTeam() ? teamState.teamFeatures()?.appLock?.config?.inactivityTimeoutSecs : defaultTimeoutSecs, ); this.isAppLockActivated = ko.pureComputed(() => this.isAppLockEnabled() && this.hasPassphrase()); this.hasPassphrase = ko.observable(false); this.isActivatedInPreferences = ko.observable(false); this.isAppLockEnabled = ko.pureComputed(() => this.isAppLockEnforced() || this.isActivatedInPreferences()); } } ```
```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 ); } ```
AYP may refer to: Places Albany Park railway station, UK, station code Coronel FAP Alfredo Mendívil Duarte Airport, Ayacucho, Peru, IATA code Language North Mesopotamian Arabic (ISO 639-3 ayp), a variety of Arabic Music American Youth Philharmonic Orchestra, part of AYPO Organisations Adequate Yearly Progress, per the US No Child Left Behind Act Crescent Star Party (Ayyıldız Partisi), a political party in Turkey. Alaska–Yukon–Pacific Exposition, a world's fair held in Seattle in 1909 Asom Yuva Parishad, the youth wing of Asom Gana Parishad
Sir Andrew Hunter Carnwath KCVO DL (26 October 1909 – 29 December 1995) was a British banker. He was managing director, Baring Brothers & Co. Ltd, 1955–1974; and chairman of the London Multinational Bank, 1971–1974. He was educated at Eton College. Sir Andrew was awarded an honorary doctorate by the University of Essex in 1983. He had six children, including Francis Carnwath, deputy director of the Tate Gallery 1990–1994, and Robert Carnwath, Lord Carnwath of Notting Hill. References 1909 births 1995 deaths People educated at Eton College British bankers 20th-century British businesspeople
This is a list of Atlantic Coast Conference men's basketball regular season first-place finishers, including ties. Notably, all champions after 1961 are considered unofficial by the conference, as the ACC elected to eliminate the regular season title following that season. Since then, the conference's bylaws have stated the sole champion is the winner of the ACC tournament, a rule that remains in place to this day. The conference's automatic NCAA berth is reserved for the ACC Tournament winner. However, the conference specifically allows schools to hang championship banners for regular season titles even if they are not "officially" considered conference championships. By school By year See also Atlantic Coast Conference men's basketball ACC men's basketball tournament List of Atlantic Coast Conference men's basketball tournament champions Notes Regular Season champions
Pend Oreille Wildlife Management Area at is an Idaho wildlife management area in Bonner County near Sandpoint. Much of the land that is now the WMA was licensed to the Idaho Department of Fish and Game by the U.S. Army Corps of Engineers in 1956 as mitigation for wildlife habitat impacted by the construction of Albeni Falls Dam. Additional land was purchased in 1974 and three more parcels were licensed in 1996. Acquisitions were completed in 1997 with funds from the Bonneville Power Administration. The WMA is located along Lake Pend Oreille, which contains fish such as rainbow trout, lake trout, perch, crappie, bass, and whitefish. Wildlife found in the WMA include migrating and wintering waterfowl such as tundra swans. References Protected areas established in 1956 Protected areas of Bonner County, Idaho Wildlife management areas of Idaho 1956 establishments in Idaho
```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; } } ```
```yaml apiVersion: release-notes/v2 kind: bug-fix area: networking issue: - 23494 releaseNotes: - | **Fixed** an issue where services with `PASSTHROUGH` load balancing were always sent mTLS traffic, even if the destinations did not support mTLS. ```
```javascript export default class Shapes extends elementorModules.frontend.handlers.Base { getDefaultSettings() { return { selectors: { container: '> .elementor-shape-%s', }, svgURL: elementorFrontend.config.urls.assets + 'shapes/', }; } getDefaultElements() { const elements = {}, selectors = this.getSettings( 'selectors' ); elements.$topContainer = this.$element.find( selectors.container.replace( '%s', 'top' ) ); elements.$bottomContainer = this.$element.find( selectors.container.replace( '%s', 'bottom' ) ); return elements; } isActive() { return elementorFrontend.isEditMode(); } getSvgURL( shapeType, fileName ) { let svgURL = this.getSettings( 'svgURL' ) + fileName + '.svg'; if ( elementor.config.additional_shapes && shapeType in elementor.config.additional_shapes ) { svgURL = elementor.config.additional_shapes[ shapeType ]; if ( -1 < fileName.indexOf( '-negative' ) ) { svgURL = svgURL.replace( '.svg', '-negative.svg' ); } } return svgURL; } buildSVG( side ) { const baseSettingKey = 'shape_divider_' + side, shapeType = this.getElementSettings( baseSettingKey ), $svgContainer = this.elements[ '$' + side + 'Container' ]; $svgContainer.attr( 'data-shape', shapeType ); if ( ! shapeType ) { $svgContainer.empty(); // Shape-divider set to 'none' return; } let fileName = shapeType; if ( this.getElementSettings( baseSettingKey + '_negative' ) ) { fileName += '-negative'; } const svgURL = this.getSvgURL( shapeType, fileName ); jQuery.get( svgURL, ( data ) => { $svgContainer.empty().append( data.childNodes[ 0 ] ); } ); this.setNegative( side ); } setNegative( side ) { this.elements[ '$' + side + 'Container' ].attr( 'data-negative', !! this.getElementSettings( 'shape_divider_' + side + '_negative' ) ); } onInit( ...args ) { if ( ! this.isActive( this.getSettings() ) ) { return; } super.onInit( ...args ); [ 'top', 'bottom' ].forEach( ( side ) => { if ( this.getElementSettings( 'shape_divider_' + side ) ) { this.buildSVG( side ); } } ); } onElementChange( propertyName ) { const shapeChange = propertyName.match( /^shape_divider_(top|bottom)$/ ); if ( shapeChange ) { this.buildSVG( shapeChange[ 1 ] ); return; } const negativeChange = propertyName.match( /^shape_divider_(top|bottom)_negative$/ ); if ( negativeChange ) { this.buildSVG( negativeChange[ 1 ] ); this.setNegative( negativeChange[ 1 ] ); } } } ```
```ruby module Articles module Feeds # This module is responsible for assembling a named variant into the data structure used to # build the feed query for a variant. # # @see .call module VariantAssembler # The Rails root relative path to the directory of feed variants DIRECTORY = "config/feed-variants".freeze # The default extension for feed variants EXTENSION = "json".freeze # We have a "historical variant" that we renamed, hence we continue to maintain that name in # our data through the following map. VARIANT_NAME_MAP = { "20220422-jennie-variant": :"20220422-variant" }.freeze # Assemble the named :variant based on the configuration of levers. # # @param variant [#to_sym,String,Symbol] the name of the variant we're assembling # @param catalog [Articles::Feeds::LeverCatalogBuilder] the available levers for assembly # @param variants [Hash] the cache of previously assembled variants; don't go rebuilding if we # already have one. # @param dir [String] the relative directory that contains the variants. # # @raise [Errno::ENOENT] if named variant does not exist in DIRECTORY. In other # words, we have a mismatch in configuration. # # @return [Articles::Feeds::VariantQuery::Config] # @see .experiment_config_hash_for def self.call(variant:, catalog: Articles::Feeds.lever_catalog, variants: pre_assembled_variants, **kwargs) variant = variant.to_sym variants[variant] ||= begin config = user_config_hash_for(variant: variant, **kwargs) build_with(catalog: catalog, config: config, variant: variant) end end # @param variant [#to_sym,String,Symbol] the name of the variant we're assembling # @param dir [String] the relative directory that contains the variants. # # @return [Hash] # # @note Uses Rails.cache to minimize reads from file system. The reason for the Rails.cache # and not leveraging the .pre_assembled_variants is that this method # (e.g. .experiment_config_hash_for) handles all possible variant configurations (in # contrast to the active variants). # # @see app/views/field_test/experiments/_experiments.html.erb def self.user_config_hash_for(variant:, dir: DIRECTORY) Rails.cache.fetch("feed-variant-#{variant}-#{ForemInstance.latest_commit_id}", expires_in: 24.hours) do variant = VARIANT_NAME_MAP.fetch(variant.to_sym, variant) content = Rails.root.join(dir, "#{variant}.#{EXTENSION}").read JSON.parse(content) end end # A memoized (e.g. cached) module instance variable that provides the quickest access for # already assembled and active variant configurations. # # @return [Hash<Symbol, # VariantQuery::Config>] def self.pre_assembled_variants @pre_assembled_variants ||= {} end private_class_method :pre_assembled_variants # @param catalog [Articles::Feeds::LeverCatalogBuilder] # @param variant [Symbol] # @param config [Hash] # # @raise [KeyError] if we he have an invalidate configuration. # # @return [Articles::Feeds::VariantQuery::Config] def self.build_with(catalog:, config:, variant:) relevancy_levers = config.fetch("levers").map do |key, settings| lever = catalog.fetch_lever(key) lever.configure_with(**settings.symbolize_keys) end VariantQuery::Config.new( variant: variant, levers: relevancy_levers, description: config.fetch("description", ""), order_by: catalog.fetch_order_by(config.fetch("order_by")), max_days_since_published: config.fetch("max_days_since_published"), reseed_randomizer_on_each_request: config.fetch("reseed_randomizer_on_each_request"), ) end end end end ```
```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 } ```
XHRTM-FM is a radio station on 99.5 FM in Macuspana, Tabasco. It carries a grupera format known as La Z. History XEPT-AM 620 received its concession on October 6, 1960, originally to be located at Ciudad Pemex. By 1970, it was owned by Fausto Aguilar Saldivar and broadcast from Macuspana with 1,000 watts on 1150 kHz. The current concessionaire acquired it in 2003 and moved it to 850 kHz with 5,000 watts day and 1,000 night. XERTM was approved to migrate to FM on June 4, 2010, becoming XHRTM-FM 107.7. XHRTM-FM moved to 99.5 MHz in 2018 in order to clear 106-108 MHz for community and indigenous stations, as a condition of its concession renewal. External links La Z Mascupana Twitter References Radio stations in Tabasco
```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) } ```
Kopiec is a village in the administrative district of Gmina Kłobuck, within Kłobuck County, Silesian Voivodeship, in southern Poland. It lies approximately east of Kłobuck and north of the regional capital Katowice. References Kopiec