Commit bcca9fd4 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

delete unused files

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@62232 954022d7-b5bf-4e40-9824-e11837661b57
parent eea5b0f4
This diff is collapsed.
/*
* CSS Styles that are needed by jScrollPane for it to operate correctly.
*
* Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
* may not operate correctly without them.
*/
.jspArrowUp
{
background-image: url(up.png);
background-position: 0px 0px;
background-repeat: no-repeat;
}
.jspArrowDown
{
background-image: url(down.png);
background-position: 0px -38px;
background-repeat: no-repeat;
}
.jspArrowLeft
{
background-image: url(left.png);
background-position: 0px 0px;
background-repeat: no-repeat;
}
.jspArrowRight
{
background-image: url(right.png);
background-position: -38px 0px;
background-repeat: no-repeat;
}
.jspContainer
{
overflow: hidden;
position: relative;
}
.jspPane
{
position: absolute;
}
.jspVerticalBar
{
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: #DDE2E8;
}
.jspHorizontalBar
{
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: #DDE2E8;
}
.jspVerticalBar *,
.jspHorizontalBar *
{
margin: 0;
padding: 0;
}
.jspCap
{
display: none;
}
.jspHorizontalBar .jspCap
{
float: left;
}
.jspTrack
{
background: #FCFCFC;
position: relative;
}
.jspDrag
{
background: #D3D3D3;
border-style: solid;
border-width: 1px;
border-color: #929292;
position: relative;
top: 0;
left: 0;
cursor: pointer;
}
.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
float: left;
height: 93%;
}
.jspArrow
{
/*background: #50506d;*/
text-indent: -20000px;
display: block;
cursor: pointer;
}
.jspArrow.jspDisabled
{
cursor: default;
/*background: #80808d;*/
}
.jspVerticalBar .jspArrow
{
height: 5mm;
}
.jspHorizontalBar .jspArrow
{
width: 5mm;
float: left;
height: 100%;
}
.jspVerticalBar .jspArrow:focus
{
outline: none;
}
.jspCorner
{
background: #eeeef4;
float: left;
height: 100%;
}
/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
margin: 0 -3px 0 0;
}
.scroll-pane
{
position:absolute;
padding:0;
margin:0;
width:100%;
height:100%;
overflow:auto;
}
.jspCap
{
display: block;
background: #eeeef4;
}
.jspVerticalBar .jspCap
{
height: 0px;
}
.jspHorizontalBar .jspCap
{
width: 0px;
height: 100%;
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
/**@license! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
* Licensed under the MIT License (LICENSE.txt).
*
* Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
* Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
* Thanks to: Seamus Leahy for adding deltaX and deltaY
*
* Version: 3.0.4
*
* Requires: 1.2.2+
*/
(function($) {
var types = ['DOMMouseScroll', 'mousewheel'];
$.event.special.mousewheel = {
setup: function() {
if ( this.addEventListener ) {
for ( var i=types.length; i; ) {
this.addEventListener( types[--i], handler, false );
}
} else {
this.onmousewheel = handler;
}
},
teardown: function() {
if ( this.removeEventListener ) {
for ( var i=types.length; i; ) {
this.removeEventListener( types[--i], handler, false );
}
} else {
this.onmousewheel = null;
}
}
};
$.fn.extend({
mousewheel: function(fn) {
return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
},
unmousewheel: function(fn) {
return this.unbind("mousewheel", fn);
}
});
function handler(event) {
var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0;
event = $.event.fix(orgEvent);
event.type = "mousewheel";
// Old school scrollwheel delta
if ( event.wheelDelta ) { delta = event.wheelDelta/120; }
if ( event.detail ) { delta = -event.detail/3; }
// New school multidimensional scroll (touchpads) deltas
deltaY = delta;
// Gecko
if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) {
deltaY = 0;
deltaX = -1*delta;
}
// Webkit
if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; }
if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; }
// Add event and delta to the front of the arguments
args.unshift(event, delta, deltaX, deltaY);
return $.event.handle.apply(this, args);
}
})(jQuery);
\ No newline at end of file
.buttonZoomOut
{
background-image: url(buttonZoom.png);
background-position: 0px 0px;
background-repeat: no-repeat;
}
.buttonZoomIn
{
background-image: url(buttonZoom.png);
background-position: 0px -60px;
background-repeat: no-repeat;
}
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment