Add version files and new GIF images for UI components
1651
themes/sources4.0/dhtmlxWindows/codebase/dhtmlxwindows.js
Normal file
@ -0,0 +1,19 @@
|
||||
/*
|
||||
Product Name: dhtmlxSuite
|
||||
Version: 4.0.3
|
||||
Edition: Professional
|
||||
License: content of this file is covered by DHTMLX Commercial or Enterprise license. Usage without proper license is prohibited. To obtain it contact sales@dhtmlx.com
|
||||
Copyright UAB Dinamenta http://www.dhtmlx.com
|
||||
*/
|
||||
|
||||
dhtmlXWindows.prototype.enableAutoViewport = function(){};
|
||||
dhtmlXWindows.prototype.setImagePath = function(){};
|
||||
dhtmlXWindows.prototype.setEffect = function(){};
|
||||
dhtmlXWindows.prototype.getEffect = function(){};
|
||||
|
||||
dhtmlXWindowsCell.prototype.setToFullScreen = function(){};
|
||||
dhtmlXWindowsCell.prototype.setIcon = function(){};
|
||||
dhtmlXWindowsCell.prototype.getIcon = function(){};
|
||||
dhtmlXWindowsCell.prototype.restoreIcon = function(){};
|
||||
dhtmlXWindowsCell.prototype.clearIcon = function(){};
|
||||
|
||||
@ -0,0 +1,210 @@
|
||||
/*
|
||||
Product Name: dhtmlxSuite
|
||||
Version: 4.0.3
|
||||
Edition: Professional
|
||||
License: content of this file is covered by DHTMLX Commercial or Enterprise license. Usage without proper license is prohibited. To obtain it contact sales@dhtmlx.com
|
||||
Copyright UAB Dinamenta http://www.dhtmlx.com
|
||||
*/
|
||||
|
||||
dhtmlXWindows.prototype._dndInitModule = function() {
|
||||
|
||||
var that = this;
|
||||
|
||||
this._dndOnMouseDown = function(e, id) {
|
||||
|
||||
if (that.conf.dblclick_active) return;
|
||||
|
||||
if (e.preventDefault) e.preventDefault(); else e.returnValue = false;
|
||||
|
||||
that.conf.dnd = {
|
||||
id: id,
|
||||
x: e.clientX,
|
||||
y: e.clientY,
|
||||
ready: true,
|
||||
css: false,
|
||||
tr: null,
|
||||
mode: "def", //"def" - move win, "tr" - for translate, "rect" - move rectange
|
||||
moved: false
|
||||
};
|
||||
|
||||
if (that.w[id].conf.keep_in_vp) {
|
||||
that.conf.dnd.minX = 0;
|
||||
that.conf.dnd.maxX = that.vp.clientWidth-that.w[id].conf.w;
|
||||
that.conf.dnd.minY = 0;
|
||||
that.conf.dnd.maxY = that.vp.clientHeight-that.w[id].conf.h;
|
||||
} else {
|
||||
that.conf.dnd.minX = -that.w[id].conf.w+that.conf.vp_pos_ofs;
|
||||
that.conf.dnd.maxX = that.vp.clientWidth-that.conf.vp_pos_ofs;
|
||||
that.conf.dnd.minY = 0;
|
||||
that.conf.dnd.maxY = that.vp.clientHeight-that.conf.vp_pos_ofs;
|
||||
}
|
||||
|
||||
var k = [
|
||||
"MozTransform",
|
||||
"WebkitTransform",
|
||||
"OTransform",
|
||||
"msTransform",
|
||||
"transform"
|
||||
];
|
||||
|
||||
for (var q=0; q<k.length; q++) {
|
||||
if (document.documentElement.style[k[q]] != null && that.conf.dnd.tr == null) {
|
||||
that.conf.dnd.tr = k[q];
|
||||
that.conf.dnd.mode = "tr";
|
||||
}
|
||||
}
|
||||
|
||||
// that.conf.dnd.mode = "def";
|
||||
// console.log("dnd ready, mode: "+that.conf.dnd.mode);
|
||||
|
||||
if (that.conf.dnd.mode == "tr") that.w[id].win.style[that.conf.dnd.tr] = "translate(0px,0px)";
|
||||
|
||||
// init events
|
||||
that._dndInitEvents();
|
||||
|
||||
}
|
||||
|
||||
this._dndOnMouseMove = function(e) {
|
||||
|
||||
e = e||event;
|
||||
if (e.preventDefault) e.preventDefault(); else e.returnValue = false;
|
||||
|
||||
var dnd = that.conf.dnd;
|
||||
var w = that.w[dnd.id];
|
||||
|
||||
if (!dnd.css) {
|
||||
w.win.className += " dhxwin_dnd";
|
||||
w.fr_cover.className += " dhxwin_fr_cover_dnd";
|
||||
that.vp.className += " dhxwins_vp_dnd";
|
||||
dnd.css = true;
|
||||
}
|
||||
|
||||
var x = e.clientX-dnd.x;
|
||||
var y = e.clientY-dnd.y;
|
||||
|
||||
dnd.newX = w.conf.x+x;
|
||||
dnd.newY = w.conf.y+y;
|
||||
|
||||
if (dnd.mode == "tr") {
|
||||
|
||||
dnd.newX = Math.min(Math.max(dnd.newX, dnd.minX), dnd.maxX);
|
||||
x = dnd.newX-w.conf.x;
|
||||
|
||||
dnd.newY = Math.min(Math.max(dnd.newY, dnd.minY), dnd.maxY);
|
||||
y = dnd.newY-w.conf.y;
|
||||
|
||||
w.win.style[dnd.tr] = "translate("+x+"px,"+y+"px)";
|
||||
|
||||
} else {
|
||||
|
||||
if (dnd.newX < dnd.minX || dnd.newX > dnd.maxX) {
|
||||
dnd.newX = Math.min(Math.max(dnd.newX, dnd.minX), dnd.maxX);
|
||||
} else {
|
||||
dnd.x = e.clientX;
|
||||
}
|
||||
|
||||
if (dnd.newY < dnd.minY || dnd.newY > dnd.maxY) {
|
||||
dnd.newY = Math.min(Math.max(dnd.newY, dnd.minY), dnd.maxY);
|
||||
} else {
|
||||
dnd.y = e.clientY;
|
||||
}
|
||||
|
||||
that._winSetPosition(dnd.id, dnd.newX, dnd.newY);
|
||||
|
||||
}
|
||||
|
||||
dnd.moved = true;
|
||||
|
||||
w = dnd = null;
|
||||
}
|
||||
|
||||
this._dndOnMouseUp = function() {
|
||||
|
||||
if (that.conf.dnd != null) {
|
||||
|
||||
var dnd = that.conf.dnd;
|
||||
var w = that.w[dnd.id];
|
||||
|
||||
if (dnd.newX != null) {
|
||||
if (dnd.mode == "tr") {
|
||||
that._winSetPosition(dnd.id, dnd.newX, dnd.newY);
|
||||
w.win.style[dnd.tr] = "translate(0px,0px)";
|
||||
}
|
||||
}
|
||||
if (dnd.css) {
|
||||
w.win.className = String(w.win.className).replace(/\s{0,}dhxwin_dnd/gi,"");
|
||||
w.fr_cover.className = String(w.fr_cover.className).replace(/\s{0,}dhxwin_fr_cover_dnd/gi,"");
|
||||
that.vp.className = String(that.vp.className).replace(/\s{0,}dhxwins_vp_dnd/gi,"");
|
||||
}
|
||||
|
||||
that._dndUnloadEvents();
|
||||
|
||||
if (dnd.moved) that._callMainEvent("onMoveFinish", dnd.id);
|
||||
|
||||
w = dnd = that.conf.dnd = null;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
this._dndOnSelectStart = function(e) {
|
||||
e = e||event;
|
||||
if (e.preventDefault) e.preventDefault(); else e.returnValue = false;
|
||||
return false;
|
||||
}
|
||||
|
||||
this._dndInitEvents = function() {
|
||||
if (typeof(window.addEventListener) == "function") {
|
||||
window.addEventListener("mousemove", this._dndOnMouseMove, false);
|
||||
window.addEventListener("mouseup", this._dndOnMouseUp, false);
|
||||
window.addEventListener("selectstart", this._dndOnSelectStart, false);
|
||||
} else {
|
||||
document.body.attachEvent("onmousemove", this._dndOnMouseMove);
|
||||
document.body.attachEvent("onmouseup", this._dndOnMouseUp);
|
||||
document.body.attachEvent("onselectstart", this._dndOnSelectStart);
|
||||
}
|
||||
}
|
||||
|
||||
this._dndUnloadEvents = function() {
|
||||
if (typeof(window.addEventListener) == "function") {
|
||||
window.removeEventListener("mousemove", this._dndOnMouseMove, false);
|
||||
window.removeEventListener("mouseup", this._dndOnMouseUp, false);
|
||||
window.removeEventListener("selectstart", this._dndOnSelectStart, false);
|
||||
} else {
|
||||
document.body.detachEvent("onmousemove", this._dndOnMouseMove);
|
||||
document.body.detachEvent("onmouseup", this._dndOnMouseUp);
|
||||
document.body.detachEvent("onselectstart", this._dndOnSelectStart);
|
||||
}
|
||||
}
|
||||
|
||||
this._dndUnloadModule = function() {
|
||||
|
||||
this.detachEvent(this.conf.dnd_evid);
|
||||
this.conf.dnd_evid = null;
|
||||
|
||||
this._dndOnMouseDown = null;
|
||||
this._dndOnMouseMove = null;
|
||||
this._dndOnMouseUp = null;
|
||||
this._dndOnSelectStart = null;
|
||||
this._dndInitEvents = null;
|
||||
this._dndUnloadEvents = null;
|
||||
this._dndInitModule = null;
|
||||
this._dndUnloadModule = null;
|
||||
|
||||
that = null;
|
||||
}
|
||||
|
||||
this.conf.dnd_evid = this.attachEvent("_winMouseDown", function(e, data){
|
||||
|
||||
if (e.button >= 2) return;
|
||||
|
||||
if (!(data.mode == "hdr" && e.type == "mousedown" && this.w[data.id].conf.allow_move == true)) return;
|
||||
if (this.w[data.id].conf.maxed && this.w[data.id].conf.max_w == null && this.w[data.id].conf.max_h == null) return;
|
||||
|
||||
if (e.preventDefault) e.preventDefault(); else e.returnValue = false;
|
||||
this._dndOnMouseDown(e, data.id);
|
||||
return false;
|
||||
|
||||
});
|
||||
|
||||
};
|
||||
|
||||
@ -0,0 +1,228 @@
|
||||
/*
|
||||
Product Name: dhtmlxSuite
|
||||
Version: 4.0.3
|
||||
Edition: Professional
|
||||
License: content of this file is covered by DHTMLX Commercial or Enterprise license. Usage without proper license is prohibited. To obtain it contact sales@dhtmlx.com
|
||||
Copyright UAB Dinamenta http://www.dhtmlx.com
|
||||
*/
|
||||
|
||||
// global context menu
|
||||
dhtmlXWindows.prototype.attachContextMenu = function(conf) {
|
||||
return this._renderContextMenu("icon", null, null, conf);
|
||||
};
|
||||
dhtmlXWindows.prototype.getContextMenu = function() {
|
||||
if (this.cm != null && this.cm.global != null) return this.cm.global;
|
||||
return null;
|
||||
};
|
||||
dhtmlXWindows.prototype.detachContextMenu = function() {
|
||||
this._detachContextMenu("icon", null, null);
|
||||
};
|
||||
|
||||
// custom menu
|
||||
dhtmlXWindowsCell.prototype.attachContextMenu = function(conf) {
|
||||
return this.wins._renderContextMenu("icon", this._idd, null, conf);
|
||||
};
|
||||
dhtmlXWindowsCell.prototype.getContextMenu = function() {
|
||||
if (this.wins.cm != null && this.wins.cm.icon[this._idd] != null) return this.wins.cm.icon[this._idd];
|
||||
return null;
|
||||
};
|
||||
dhtmlXWindowsCell.prototype.detachContextMenu = function() {
|
||||
this.wins._detachContextMenu("icon", this._idd, null);
|
||||
};
|
||||
|
||||
// menu for button
|
||||
dhtmlXWindowsButton.prototype.attachContextMenu = function(conf) {
|
||||
return this.conf.wins._renderContextMenu("button", this.conf.winId, this.conf.name, conf);
|
||||
};
|
||||
dhtmlXWindowsButton.prototype.getContextMenu = function() {
|
||||
if (this.conf.wins.cm == null || this.conf.wins.cm.button[this.conf.winId] == null) return null;
|
||||
if (this.conf.wins.cm.button[this.conf.winId][this.conf.name] != null) return this.conf.wins.cm.button[this.conf.winId][this.conf.name];
|
||||
return null;
|
||||
};
|
||||
dhtmlXWindowsButton.prototype.detachContextMenu = function() {
|
||||
this.conf.wins._detachContextMenu("button", this.conf.winId, this.conf.name);
|
||||
};
|
||||
|
||||
dhtmlXWindows.prototype._renderContextMenu = function(mode, wId, bId, conf) {
|
||||
|
||||
var that = this;
|
||||
var firstInit = false;
|
||||
|
||||
if (this.cm == null) {
|
||||
this.cm = {
|
||||
global: null, // global context menu for icon
|
||||
icon: {}, // custom for icon, {winId:menuInst, winId2:menuInst2}
|
||||
button: {} // custom foc button, {winId:{buttonId:menuInst, buttonId2:menuInst2}, winId2:{..}}
|
||||
};
|
||||
firstInit = true;
|
||||
}
|
||||
|
||||
// check if already attached
|
||||
if (wId == null) {
|
||||
if (this.cm.global != null) return;
|
||||
} else if (mode == "icon") {
|
||||
if (this.cm.icon[wId] != null) return;
|
||||
} else if (mode == "button") {
|
||||
if (this.cm.button[wId] != null && this.cm.button[wId][bId] != null) return;
|
||||
}
|
||||
|
||||
|
||||
// init
|
||||
if (conf == null) conf = {};
|
||||
conf.parent = null;
|
||||
conf.context = true;
|
||||
|
||||
var menu = new dhtmlXMenuObject(conf);
|
||||
menu.setAutoHideMode(false);
|
||||
|
||||
menu.attachEvent("onShow", function() {
|
||||
this.conf.wins_menu_open = true;
|
||||
});
|
||||
|
||||
menu.attachEvent("onHide", function() {
|
||||
this.conf.wins_menu_open = false;
|
||||
that.conf.opened_menu = null;
|
||||
});
|
||||
|
||||
if (wId == null) {
|
||||
this.cm.global = menu;
|
||||
} else if (mode == "icon") {
|
||||
this.cm.icon[wId] = menu;
|
||||
} else if (mode == "button") {
|
||||
if (this.cm.button[wId] == null) this.cm.button[wId] = {};
|
||||
this.cm.button[wId][bId] = menu;
|
||||
}
|
||||
|
||||
if (firstInit) {
|
||||
|
||||
this._showContextMenu = function(e, data) {
|
||||
|
||||
if (e.button >= 2) return;
|
||||
|
||||
if (data.mode == "icon" && data.id != null && data.press_type == "mousedown") {
|
||||
|
||||
var menu = this.cm.icon[data.id]||this.cm.global;
|
||||
if (menu == null) return;
|
||||
|
||||
e.cancelBubble = true;
|
||||
|
||||
var icon = this.w[data.id].hdr.firstChild;
|
||||
|
||||
if (menu.conf.wins_menu_open && this.conf.opened_menu == data.id) {
|
||||
menu.hideContextMenu();
|
||||
} else {
|
||||
this._hideContextMenu();
|
||||
menu.showContextMenu(window.dhx4.absLeft(icon), window.dhx4.absTop(icon)+icon.offsetHeight);
|
||||
this.conf.opened_menu = data.id;
|
||||
}
|
||||
menu = icon = null;
|
||||
|
||||
}
|
||||
|
||||
if (data.mode == "button" && data.id != null && data.press_type == "mousedown") {
|
||||
|
||||
if (this.cm.button[data.id] == null || this.cm.button[data.id][data.button_name] == null) return;
|
||||
|
||||
e.cancelBubble = true;
|
||||
|
||||
this.conf.button_last = null; // cancel button click
|
||||
|
||||
var menu = this.cm.button[data.id][data.button_name];
|
||||
var button = this.w[data.id].b[data.button_name].button;
|
||||
|
||||
if (menu.conf.wins_menu_open && this.conf.opened_menu == data.id) {
|
||||
menu.hideContextMenu();
|
||||
} else {
|
||||
this._hideContextMenu();
|
||||
menu.showContextMenu(window.dhx4.absLeft(button), window.dhx4.absTop(button)+button.offsetHeight);
|
||||
this.conf.opened_menu = data.id;
|
||||
}
|
||||
menu = button = null;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
this._hideContextMenu = function(e) {
|
||||
|
||||
if (e != null) {
|
||||
e = e||event;
|
||||
if (e.type == "keydown" && e.keyCode != 27) return;
|
||||
|
||||
var t = e.target||e.srcElement;
|
||||
var m = true;
|
||||
while (t != null && m == true) {
|
||||
if (t.className != null && t.className.search(/SubLevelArea_Polygon/) >= 0) {
|
||||
m = false;
|
||||
} else {
|
||||
t = t.parentNode;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (m || e == null) {
|
||||
if (that.cm.global != null) that.cm.global.hideContextMenu();
|
||||
for (var a in that.cm.icon) {
|
||||
if (that.cm.icon[a] != null) that.cm.icon[a].hideContextMenu();
|
||||
}
|
||||
for (var a in that.cm.button) {
|
||||
for (var b in that.cm.button[a]) {
|
||||
if (that.cm.button[a][b] != null) that.cm.button[a][b].hideContextMenu();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
this._detachContextMenu = function(mode, wId, bId) {
|
||||
if (this.cm == null) return;
|
||||
if (wId == null) {
|
||||
if (this.cm.global != null) {
|
||||
this.cm.global.unload();
|
||||
this.cm.global = null;
|
||||
}
|
||||
} else if (mode == "icon") {
|
||||
if (this.cm.icon[wId] != null) {
|
||||
this.cm.icon[wId].unload();
|
||||
this.cm.icon[wId] = null;
|
||||
}
|
||||
} else if (mode == "button") {
|
||||
if (this.cm.button[wId] != null && this.cm.button[wId][bId] != null) {
|
||||
this.cm.button[wId][bId].unload();
|
||||
this.cm.button[wId][bId] = null;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
this.attachEvent("_winMouseDown", this._showContextMenu);
|
||||
|
||||
if (typeof(window.addEventListener) == "function") {
|
||||
window.addEventListener("mousedown", this._hideContextMenu, false);
|
||||
window.addEventListener("keydown", this._hideContextMenu, false);
|
||||
} else {
|
||||
document.body.attachEvent("onmousedown", this._hideContextMenu);
|
||||
document.body.attachEvent("onkeydown", this._hideContextMenu);
|
||||
}
|
||||
|
||||
this._unloadContextMenu = function() {
|
||||
|
||||
// remove only global menu if any, other will removed from win/button unload
|
||||
this._detachContextMenu("icon", null, null);
|
||||
this.cm = null;
|
||||
|
||||
if (typeof(window.addEventListener) == "function") {
|
||||
window.removeEventListener("mousedown", this._hideContextMenu, false);
|
||||
window.removeEventListener("keydown", this._hideContextMenu, false);
|
||||
} else {
|
||||
document.body.detachEvent("onmousedown", this._hideContextMenu);
|
||||
document.body.detachEvent("onkeydown", this._hideContextMenu);
|
||||
}
|
||||
|
||||
that = null;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return menu;
|
||||
};
|
||||
@ -0,0 +1,320 @@
|
||||
/*
|
||||
Product Name: dhtmlxSuite
|
||||
Version: 4.0.3
|
||||
Edition: Professional
|
||||
License: content of this file is covered by DHTMLX Commercial or Enterprise license. Usage without proper license is prohibited. To obtain it contact sales@dhtmlx.com
|
||||
Copyright UAB Dinamenta http://www.dhtmlx.com
|
||||
*/
|
||||
|
||||
dhtmlXWindowsCell.prototype._initResize = function() {
|
||||
|
||||
var that = this;
|
||||
var n = navigator.userAgent;
|
||||
|
||||
this.conf.resize = {
|
||||
b_width: 6,
|
||||
c_type: (n.indexOf("MSIE 10.0")>0||n.indexOf("MSIE 9.0")>0||n.indexOf("MSIE 8.0")>0||n.indexOf("MSIE 7.0")>0||n.indexOf("MSIE 6.0")>0)
|
||||
};
|
||||
|
||||
this._rOnCellMouseMove = function(e) {
|
||||
|
||||
if (that.wins.conf.resize_actv == true || that.wins.w[that._idd].conf.allow_resize == false || that.conf.progress == true || that.wins.w[that._idd].conf.maxed == true || that.wins.w[that._idd].conf.fs_mode == true) {
|
||||
var k = that.wins.w[that._idd].brd;
|
||||
if (k.style.cursor != "default") k.style.cursor = "default";
|
||||
k = null;
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
e = e||event;
|
||||
|
||||
var cont = that.wins.w[that._idd].brd;
|
||||
var r = that.conf.resize;
|
||||
|
||||
var no_header = (that.wins.w[that._idd].conf.header==false);
|
||||
|
||||
var x = e.clientX;
|
||||
var y = e.clientY;
|
||||
|
||||
var x0 = window.dhx4.absLeft(cont);
|
||||
var y0 = window.dhx4.absTop(cont);
|
||||
|
||||
var mode = "";
|
||||
if (x <= x0+r.b_width) { // left
|
||||
mode = "w";
|
||||
} else if (x >= x0+cont.offsetWidth-r.b_width) { // right
|
||||
mode = "e";
|
||||
}
|
||||
if (y >= y0+cont.offsetHeight-r.b_width) { // bottom
|
||||
mode = "s"+mode;
|
||||
} else if (no_header && y <= y0+r.b_width) { // top (only for no_header mode)
|
||||
mode = "n"+mode;
|
||||
}
|
||||
|
||||
if (mode == "") mode = false;
|
||||
if (r.mode != mode) {
|
||||
r.mode = mode;
|
||||
if (mode == false) {
|
||||
cont.style.cursor = "default";
|
||||
} else {
|
||||
cont.style.cursor = mode+"-resize";
|
||||
}
|
||||
}
|
||||
|
||||
cont = r = null;
|
||||
};
|
||||
|
||||
this._rOnCellMouseDown = function(e) {
|
||||
|
||||
if (that.conf.resize.mode == false) return;
|
||||
if (that.conf.progress == true) return; // if progress is on - deny
|
||||
if (that.wins.w[that._idd].conf.allow_resize == false) return;
|
||||
if (that.wins.w[that._idd].conf.fs_mode == true) return; // fullscreened window
|
||||
|
||||
if (e.preventDefault) e.preventDefault(); else e.returnValue = false;
|
||||
|
||||
var w = that.wins.w[that._idd];
|
||||
var r = that.conf.resize;
|
||||
|
||||
that.wins.conf.resize_actv = true;
|
||||
|
||||
r.min_w = w.conf.min_w;
|
||||
r.min_h = w.conf.min_h;
|
||||
r.max_w = w.conf.max_w||+Infinity;
|
||||
r.max_h = w.conf.max_h||+Infinity;
|
||||
|
||||
// if layout attached - check custom min w/h
|
||||
if (w.cell.dataType == "layout" && w.cell.dataObj != null && typeof(w.cell.dataObj._getWindowMinDimension) == "function") {
|
||||
var t = w.cell.dataObj._getWindowMinDimension(w.cell);
|
||||
r.min_w = Math.max(t.w, r.min_w);
|
||||
r.min_h = Math.max(t.h, r.min_h);
|
||||
}
|
||||
|
||||
r.vp_l = that.wins.conf.vp_pos_ofs;
|
||||
r.vp_r = that.wins.vp.clientWidth-that.wins.conf.vp_pos_ofs;
|
||||
r.vp_b = that.wins.vp.clientHeight-that.wins.conf.vp_pos_ofs;
|
||||
|
||||
r.x = e.clientX;
|
||||
r.y = e.clientY;
|
||||
|
||||
// start resize
|
||||
if (typeof(window.addEventListener) == "function") {
|
||||
window.addEventListener("mousemove", that._rOnWinMouseMove, false);
|
||||
window.addEventListener("mouseup", that._rOnWinMouseUp, false);
|
||||
window.addEventListener("selectstart", that._rOnSelectStart, false);
|
||||
} else {
|
||||
document.body.attachEvent("onmousemove", that._rOnWinMouseMove);
|
||||
document.body.attachEvent("onmouseup", that._rOnWinMouseUp);
|
||||
document.body.attachEvent("onselectstart", that._rOnSelectStart);
|
||||
}
|
||||
|
||||
r.resized = false;
|
||||
|
||||
r.vp_cursor = that.wins.vp.style.cursor;
|
||||
that.wins.vp.style.cursor = r.mode+"-resize";
|
||||
|
||||
w = r = null;
|
||||
};
|
||||
|
||||
this._rOnWinMouseMove = function(e) {
|
||||
|
||||
// resize in progress
|
||||
e = e||event;
|
||||
|
||||
var w = that.wins.w[that._idd];
|
||||
var r = that.conf.resize;
|
||||
|
||||
if (!r.resized) {
|
||||
w.fr_cover.className += " dhxwin_fr_cover_resize";
|
||||
r.resized = true;
|
||||
}
|
||||
|
||||
var x = e.clientX-r.x;
|
||||
var y = e.clientY-r.y;
|
||||
|
||||
if (r.mode.indexOf("e") >= 0) { // right win side dragged
|
||||
|
||||
r.rw = Math.min(Math.max(w.conf.w+x, r.min_w), r.max_w);
|
||||
r.rx = null;
|
||||
|
||||
if (w.conf.x+r.rw < r.vp_l) { // check overflow to left
|
||||
r.rw = r.vp_l-w.conf.x;
|
||||
} else if (w.conf.x+r.rw > that.wins.vp.clientWidth) { // and right
|
||||
r.rw = that.wins.vp.clientWidth-w.conf.x;
|
||||
}
|
||||
|
||||
} else if (r.mode.indexOf("w") >= 0) { // left win side dragged
|
||||
|
||||
r.rw = Math.min(Math.max(w.conf.w-x,r.min_w),r.max_w);
|
||||
r.rx = w.conf.x+w.conf.w-r.rw;
|
||||
|
||||
if (r.rx < 0) { // check overflow to left
|
||||
r.rw = r.rw+r.rx;
|
||||
r.rx = 0;
|
||||
} else if (r.rx > r.vp_r) { // and right
|
||||
r.rw = r.rw-r.vp_r;
|
||||
r.rx = r.vp_r;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (r.mode.indexOf("s") >= 0) { // bottom win side (can be together with left or right)
|
||||
|
||||
r.rh = Math.min(Math.max(w.conf.h+y, r.min_h),r.max_h);
|
||||
r.ry = null;
|
||||
|
||||
if (w.conf.y+r.rh > that.wins.vp.clientHeight) { // bottom overflow
|
||||
r.rh = that.wins.vp.clientHeight-w.conf.y;
|
||||
}
|
||||
|
||||
} else if (r.mode.indexOf("n") >= 0) { // top win side (can be together with left or right) (only for no_header mode)
|
||||
|
||||
r.rh = Math.min(Math.max(w.conf.h-y, r.min_h),r.max_h);
|
||||
r.ry = w.conf.y+w.conf.h-r.rh;
|
||||
|
||||
if (r.ry < 0) { // top overflow
|
||||
r.rh = r.rh+r.ry;
|
||||
r.ry = 0;
|
||||
} else if (r.ry > r.vp_b) { // and bottom
|
||||
r.rh = r.rh-r.vp_b;
|
||||
r.ry = r.vp_b;
|
||||
}
|
||||
}
|
||||
|
||||
that._rAdjustSizer();
|
||||
|
||||
w = r = null;
|
||||
}
|
||||
this._rOnWinMouseUp = function() {
|
||||
|
||||
// stop resize
|
||||
|
||||
var r = that.conf.resize;
|
||||
var w = that.wins.w[that._idd];
|
||||
|
||||
that.wins.conf.resize_actv = false;
|
||||
that.wins.vp.style.cursor = r.vp_cursor;
|
||||
|
||||
w.fr_cover.className = String(w.fr_cover.className).replace(/\s{0,}dhxwin_fr_cover_resize/gi,"");
|
||||
|
||||
if (r.resized) {
|
||||
that.wins._winSetSize(that._idd, r.rw, r.rh);
|
||||
if (r.rx == null) r.rx = w.conf.x;
|
||||
if (r.ry == null) r.ry = w.conf.y;
|
||||
if (r.rx != w.conf.x || r.ry != w.conf.y) that.wins._winSetPosition(that._idd, r.rx, r.ry);
|
||||
}
|
||||
|
||||
if (r.obj != null) {
|
||||
r.obj.parentNode.removeChild(r.obj);
|
||||
r.obj = null;
|
||||
}
|
||||
if (r.objFR != null) {
|
||||
r.objFR.parentNode.removeChild(r.objFR);
|
||||
r.objFR = null;
|
||||
}
|
||||
|
||||
if (typeof(window.addEventListener) == "function") {
|
||||
window.removeEventListener("mousemove", that._rOnWinMouseMove, false);
|
||||
window.removeEventListener("mouseup", that._rOnWinMouseUp, false);
|
||||
window.removeEventListener("selectstart", that._rOnSelectStart, false);
|
||||
} else {
|
||||
document.body.detachEvent("onmousemove", that._rOnWinMouseMove);
|
||||
document.body.detachEvent("onmouseup", that._rOnWinMouseUp);
|
||||
document.body.detachEvent("onselectstart", that._rOnSelectStart);
|
||||
}
|
||||
|
||||
if (r.resized) {
|
||||
if (that.dataType == "layout" && that.dataObj != null) that.dataObj.callEvent("onResize",[]); // deprecated, 3.6 compat
|
||||
that.wins._callMainEvent("onResizeFinish", that._idd);
|
||||
}
|
||||
|
||||
r.mode = "";
|
||||
|
||||
w = r = null;
|
||||
}
|
||||
|
||||
this._rOnSelectStart = function(e) {
|
||||
e = e||event;
|
||||
if (e.preventDefault) e.preventDefault(); else e.returnValue = false;
|
||||
return false;
|
||||
}
|
||||
|
||||
this._rInitSizer = function() {
|
||||
|
||||
var r = that.conf.resize;
|
||||
var w = that.wins.w[that._idd];
|
||||
|
||||
r.obj = document.createElement("DIV");
|
||||
r.obj.className = "dhxwin_resize";
|
||||
r.obj.style.zIndex = w.win.style.zIndex;
|
||||
r.obj.style.cursor = r.mode+"-resize";
|
||||
that.wins.vp.appendChild(r.obj);
|
||||
|
||||
if (that.wins.conf.fr_cover == true) {
|
||||
r.objFR = document.createElement("IFRAME");
|
||||
r.objFR.className = "dhxwin_resize_fr_cover";
|
||||
r.objFR.style.zIndex = r.obj.style.zIndex;
|
||||
that.wins.vp.insertBefore(r.objFR, r.obj);
|
||||
}
|
||||
|
||||
r.rx = w.conf.x;
|
||||
r.ry = w.conf.y;
|
||||
r.rw = w.conf.w;
|
||||
r.rh = w.conf.h;
|
||||
r = null;
|
||||
}
|
||||
|
||||
this._rAdjustSizer = function() {
|
||||
var r = that.conf.resize;
|
||||
if (!r.obj) this._rInitSizer();
|
||||
// dim
|
||||
r.obj.style.width = r.rw+"px";
|
||||
r.obj.style.height = r.rh+"px";
|
||||
|
||||
// pos, optional
|
||||
if (r.rx != null) r.obj.style.left = r.rx+"px";
|
||||
if (r.ry != null) r.obj.style.top = r.ry+"px";
|
||||
|
||||
if (r.objFR != null) {
|
||||
r.objFR.style.width = r.obj.style.width;
|
||||
r.objFR.style.height = r.obj.style.height;
|
||||
if (r.rx != null) r.objFR.style.left = r.obj.style.left;
|
||||
if (r.ry != null) r.objFR.style.top = r.obj.style.top;
|
||||
}
|
||||
|
||||
r = null;
|
||||
}
|
||||
|
||||
if (typeof(window.addEventListener) == "function") {
|
||||
this.wins.w[this._idd].brd.addEventListener("mousemove", this._rOnCellMouseMove, false);
|
||||
this.wins.w[this._idd].brd.addEventListener("mousedown", this._rOnCellMouseDown, false);
|
||||
} else {
|
||||
this.wins.w[this._idd].brd.attachEvent("onmousemove", this._rOnCellMouseMove);
|
||||
this.wins.w[this._idd].brd.attachEvent("onmousedown", this._rOnCellMouseDown);
|
||||
}
|
||||
|
||||
this._unloadResize = function() {
|
||||
|
||||
if (typeof(window.addEventListener) == "function") {
|
||||
this.wins.w[this._idd].brd.removeEventListener("mousemove", this._rOnCellMouseMove, false);
|
||||
this.wins.w[this._idd].brd.removeEventListener("mousedown", this._rOnCellMouseDown, false);
|
||||
} else {
|
||||
this.wins.w[this._idd].brd.detachEvent("onmousemove", this._rOnCellMouseMove);
|
||||
this.wins.w[this._idd].brd.detachEvent("onmousedown", this._rOnCellMouseDown);
|
||||
}
|
||||
|
||||
this._initResize = null;
|
||||
this._rOnCellMouseMove = null;
|
||||
this._rOnCellMouseDown = null;
|
||||
this._rOnWinMouseMove = null;
|
||||
this._rOnWinMouseUp = null;
|
||||
this._rOnSelectStart = null;
|
||||
this._rInitSizer = null;
|
||||
this._rAdjustSizer = null;
|
||||
this._unloadResize = null;
|
||||
|
||||
this.conf.resize = null;
|
||||
that = null;
|
||||
};
|
||||
|
||||
};
|
||||
|
After Width: | Height: | Size: 684 B |
|
After Width: | Height: | Size: 62 B |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 351 B |
|
After Width: | Height: | Size: 83 B |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 330 B |
|
After Width: | Height: | Size: 92 B |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 351 B |
|
After Width: | Height: | Size: 62 B |
|
After Width: | Height: | Size: 2.5 KiB |
@ -0,0 +1,428 @@
|
||||
/*
|
||||
Product Name: dhtmlxSuite
|
||||
Version: 4.0.3
|
||||
Edition: Professional
|
||||
License: content of this file is covered by DHTMLX Commercial or Enterprise license. Usage without proper license is prohibited. To obtain it contact sales@dhtmlx.com
|
||||
Copyright UAB Dinamenta http://www.dhtmlx.com
|
||||
*/
|
||||
|
||||
/* skin detected, extra file: skins/dhx_skyblue.less */
|
||||
|
||||
.dhxwins_vp_dhx_skyblue {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
cursor: default;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
border: 1px solid #a4bed4;
|
||||
box-shadow: 0 0 3px #cecece;
|
||||
border-radius: 3px;
|
||||
background: white;
|
||||
cursor: inherit;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
border: 1px solid #c1d1de;
|
||||
box-shadow: 0 0 3px #dedede;
|
||||
border-radius: 3px;
|
||||
background: white;
|
||||
cursor: inherit;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_brd {
|
||||
position: absolute;
|
||||
border-left: 5px solid #d3e6fe;
|
||||
border-right: 5px solid #d3e6fe;
|
||||
border-bottom: 5px solid #d3e6fe;
|
||||
border-bottom-left-radius: 2px;
|
||||
border-bottom-right-radius: 2px;
|
||||
background: white;
|
||||
z-index: 0;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_brd.dhxwin_hdr_hidden {
|
||||
border-top: 5px solid #d3e6fe;
|
||||
border-top-left-radius: 2px;
|
||||
border-top-right-radius: 2px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhxwin_brd {
|
||||
opacity: 0.8;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_fr_cover {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
background-color: white;
|
||||
z-index: 1;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_fr_cover .dhxwin_fr_cover_inner {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: white;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhxwin_fr_cover {
|
||||
display: none;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhxwin_fr_cover {
|
||||
z-index: 4;
|
||||
opacity: 0.5;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhxwin_fr_cover.dhxwin_fr_cover_dnd,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhxwin_fr_cover.dhxwin_fr_cover_resize {
|
||||
display: block;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue iframe.dhxwin_main_fr_cover {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
border-radius: 2px;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr {
|
||||
position: relative;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
font-weight: bold;
|
||||
border-top: 1px solid white;
|
||||
border-left: 1px solid white;
|
||||
border-right: 1px solid white;
|
||||
border-top-left-radius: 2px;
|
||||
border-top-right-radius: 2px;
|
||||
background-color: #e5f0fd;
|
||||
background: linear-gradient(#e5f0fd,#d3e6fe);
|
||||
filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#e5f0fd,endColorStr=#d3e6fe) progid:DXImageTransform.Microsoft.Alpha(opacity=100);
|
||||
font-family: Tahoma;
|
||||
font-size: 11px;
|
||||
color: #34404b;
|
||||
cursor: inherit;
|
||||
overflow: hidden;
|
||||
z-index: 3;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhxwin_hdr {
|
||||
color: #777;
|
||||
opacity: 0.8;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
|
||||
filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#e5f0fd,endColorStr=#d3e6fe);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr.dhxwin_hdr_parked {
|
||||
border-bottom: 1px solid white;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr.dhxwin_hdr_hidden {
|
||||
visibility: hidden;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_icon {
|
||||
position: absolute;
|
||||
left: 7px;
|
||||
top: 7px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
cursor: default;
|
||||
overflow: hidden;
|
||||
background-image: url("../imgs/dhxwins_skyblue/dhxwins_icon.gif");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
cursor: inherit;
|
||||
z-index: 2;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhxwin_hdr div.dhxwin_icon {
|
||||
opacity: 0.6;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_text {
|
||||
position: relative;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
-ms-user-select: none;
|
||||
cursor: inherit;
|
||||
z-index: 1;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_text div.dhxwin_text_inside {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
width: 100%;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns {
|
||||
position: absolute;
|
||||
right: 7px;
|
||||
top: 6px;
|
||||
height: 18px;
|
||||
cursor: default;
|
||||
overflow: hidden;
|
||||
cursor: inherit;
|
||||
z-index: 2;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhxwin_hdr div.dhxwin_btns {
|
||||
opacity: 0.5;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
margin-left: 1px;
|
||||
margin-top: 2px;
|
||||
border-radius: 2px;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
-ms-user-select: none;
|
||||
background-image: url("../imgs/dhxwins_skyblue/dhxwins_buttons.gif");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button:hover {
|
||||
background-color: white;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_close {
|
||||
background-position: -15px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_close_dis {
|
||||
background-position: -15px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_minmax {
|
||||
background-position: -30px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_minmax_dis {
|
||||
background-position: -30px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_minmaxed {
|
||||
background-position: -45px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_minmaxed_dis {
|
||||
background-position: -45px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_park {
|
||||
background-position: -60px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_park_dis {
|
||||
background-position: -60px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_stick {
|
||||
background-position: -75px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_stick_dis {
|
||||
background-position: -75px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_sticked {
|
||||
background-position: -90px 0px;
|
||||
background-color: #a4bed4 !important;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_sticked_dis {
|
||||
background-position: -90px -15px;
|
||||
background-color: #f0f0f0 !important;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_help {
|
||||
background-position: -105px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_help_dis {
|
||||
background-position: -105px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_dock {
|
||||
background-position: -120px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_dock_dis {
|
||||
background-position: -120px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active.dhxwin_dnd {
|
||||
box-shadow: 0 0 3px #cececf;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue.dhxwins_vp_dnd {
|
||||
cursor: move !important;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_resize {
|
||||
position: absolute;
|
||||
background-color: #d3e6fe;
|
||||
border-radius: 3px;
|
||||
opacity: 0.5;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue iframe.dhxwin_resize_fr_cover {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
border-radius: 3px;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwins_mcover {
|
||||
position: absolute;
|
||||
background-color: #e5f0fd;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0.53;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=53);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue iframe.dhxwins_mcover {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins {
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
overflow: hidden;
|
||||
cursor: default;
|
||||
visibility: visible;
|
||||
z-index: 1;
|
||||
opacity: 1;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_cont_wins,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_cont_wins {
|
||||
position: absolute;
|
||||
border: 1px solid #ffffff;
|
||||
background-color: #ffffff;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_cont_wins.dhx_cell_cont_no_borders,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_cont_wins.dhx_cell_cont_no_borders {
|
||||
border: 0px solid #ffffff !important;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_menu_def,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_menu_def {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-bottom: 1px solid #d3e6fe;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_menu_def div.dhtmlxMenu_dhx_skyblue_Middle,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_menu_def div.dhtmlxMenu_dhx_skyblue_Middle {
|
||||
padding: 0px 2px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_toolbar_def,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_toolbar_def {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding: 1px 1px 0px 1px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_toolbar_def div.dhx_toolbar_dhx_skyblue,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_toolbar_def div.dhx_toolbar_dhx_skyblue {
|
||||
position: relative;
|
||||
border-top-width: 1px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_toolbar_no_borders div.dhx_toolbar_dhx_skyblue,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_toolbar_no_borders div.dhx_toolbar_dhx_skyblue {
|
||||
position: relative;
|
||||
border-top-width: 1px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_ribbon_def,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_ribbon_def {
|
||||
padding: 1px 1px 0px 1px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhtmlxribbon_dhx_skyblue.dhxrb_without_tabbar,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhtmlxribbon_dhx_skyblue.dhxrb_without_tabbar {
|
||||
width: auto;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_statusbar_def,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_statusbar_def {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
font-family: Tahoma;
|
||||
font-size: 11px;
|
||||
color: black;
|
||||
background-color: #d3e6fe;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_statusbar_def div.dhx_cell_statusbar_text,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_statusbar_def div.dhx_cell_statusbar_text {
|
||||
position: relative;
|
||||
padding: 0px 4px;
|
||||
height: 21px;
|
||||
line-height: 21px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_cont_wins.dhx_cell_statusbar_attached,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_cont_wins.dhx_cell_statusbar_attached {
|
||||
border-radius: 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_bar,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_bar {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #ffffff;
|
||||
opacity: 0.75;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
|
||||
z-index: 1;
|
||||
}
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_img,
|
||||
.dhxwins_vp_dhx_skyblue div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_img {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url("../imgs/dhxwins_skyblue/dhxwins_progress.gif");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
z-index: 2;
|
||||
}
|
||||
.dhxwins_skin_detect {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: -100px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0px solid white;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
div.dhxwins_vp_dhx_skyblue.dhxwins_vp_fs {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
@ -0,0 +1,401 @@
|
||||
/*
|
||||
Product Name: dhtmlxSuite
|
||||
Version: 4.0.3
|
||||
Edition: Professional
|
||||
License: content of this file is covered by DHTMLX Commercial or Enterprise license. Usage without proper license is prohibited. To obtain it contact sales@dhtmlx.com
|
||||
Copyright UAB Dinamenta http://www.dhtmlx.com
|
||||
*/
|
||||
|
||||
/* skin detected, extra file: skins/dhx_terrace.less */
|
||||
|
||||
.dhxwins_vp_dhx_terrace {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
cursor: default;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
border: 1px solid #cccccc;
|
||||
box-shadow: 0px 0px 6px #a0a0a0;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
cursor: inherit;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
border: 1px solid #cccccc;
|
||||
box-shadow: 0px 0px 6px #c0c0c0;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
cursor: inherit;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_brd {
|
||||
position: absolute;
|
||||
border-left: 5px solid #ffffff;
|
||||
border-right: 5px solid #ffffff;
|
||||
border-bottom: 5px solid #ffffff;
|
||||
background: #ffffff;
|
||||
z-index: 0;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_brd.dhxwin_hdr_hidden {
|
||||
border-top: 5px solid #ffffff;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhxwin_brd {
|
||||
opacity: 0.6;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_fr_cover {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
background-color: #ffffff;
|
||||
z-index: 1;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_fr_cover .dhxwin_fr_cover_inner {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #ffffff;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhxwin_fr_cover {
|
||||
display: none;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhxwin_fr_cover {
|
||||
z-index: 4;
|
||||
opacity: 0.5;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhxwin_fr_cover.dhxwin_fr_cover_dnd,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhxwin_fr_cover.dhxwin_fr_cover_resize {
|
||||
display: block;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace iframe.dhxwin_main_fr_cover {
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr {
|
||||
position: relative;
|
||||
height: 36px;
|
||||
line-height: 37px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
font-weight: normal;
|
||||
border-bottom: 1px solid #cccccc;
|
||||
background-color: #ffffff;
|
||||
border-top-left-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
background-color: #f5f5f5;
|
||||
font-family: Arial;
|
||||
font-size: 13px;
|
||||
color: #333333;
|
||||
cursor: inherit;
|
||||
overflow: hidden;
|
||||
z-index: 3;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhxwin_hdr {
|
||||
color: #404040;
|
||||
opacity: 0.6;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr.dhxwin_hdr_parked {
|
||||
border-bottom-left-radius: 3px;
|
||||
border-bottom-right-radius: 3px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr.dhxwin_hdr_hidden {
|
||||
visibility: hidden;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_icon {
|
||||
position: absolute;
|
||||
left: 11px;
|
||||
top: 10px;
|
||||
width: 23px;
|
||||
height: 18px;
|
||||
cursor: default;
|
||||
overflow: hidden;
|
||||
background-image: url("../imgs/dhxwins_terrace/dhxwins_icon.gif");
|
||||
background-position: left center;
|
||||
background-repeat: no-repeat;
|
||||
cursor: inherit;
|
||||
z-index: 2;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhxwin_hdr div.dhxwin_icon {
|
||||
opacity: 0.6;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_text {
|
||||
position: relative;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
cursor: inherit;
|
||||
z-index: 1;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_text div.dhxwin_text_inside {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
width: 100%;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 10px;
|
||||
height: 18px;
|
||||
cursor: default;
|
||||
overflow: hidden;
|
||||
cursor: inherit;
|
||||
z-index: 2;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhxwin_hdr div.dhxwin_btns {
|
||||
opacity: 0.5;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
margin-left: 2px;
|
||||
margin-top: 2px;
|
||||
border-radius: 2px;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
background-image: url("../imgs/dhxwins_terrace/dhxwins_buttons.gif");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button:hover {
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_close {
|
||||
background-position: -15px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_close_dis {
|
||||
background-position: -15px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_minmax {
|
||||
background-position: -30px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_minmax_dis {
|
||||
background-position: -30px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_minmaxed {
|
||||
background-position: -45px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_minmaxed_dis {
|
||||
background-position: -45px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_park {
|
||||
background-position: -60px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_park_dis {
|
||||
background-position: -60px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_stick {
|
||||
background-position: -75px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_stick_dis {
|
||||
background-position: -75px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_sticked {
|
||||
background-position: -90px 0px;
|
||||
z-index: 1;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_sticked_dis {
|
||||
background-position: -90px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_help {
|
||||
background-position: -105px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_help_dis {
|
||||
background-position: -105px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_dock {
|
||||
background-position: -120px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_dock_dis {
|
||||
background-position: -120px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace.dhxwins_vp_dnd {
|
||||
cursor: move !important;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_resize {
|
||||
position: absolute;
|
||||
background-color: #9c9c9c;
|
||||
opacity: 0.2;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace iframe.dhxwin_resize_fr_cover {
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwins_mcover {
|
||||
position: absolute;
|
||||
background-color: #ededed;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0.53;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=53);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace iframe.dhxwins_mcover {
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins {
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
overflow: hidden;
|
||||
cursor: default;
|
||||
visibility: visible;
|
||||
z-index: 1;
|
||||
opacity: 1;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhx_cell_cont_wins,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_cont_wins {
|
||||
position: absolute;
|
||||
border: 5px solid #ffffff;
|
||||
border-top: 10px solid #ffffff;
|
||||
background-color: #ffffff;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhx_cell_cont_wins.dhx_cell_cont_no_borders,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_cont_wins.dhx_cell_cont_no_borders {
|
||||
border: 0px solid #ffffff !important;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhx_cell_menu_def,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_menu_def {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
height: 42px;
|
||||
margin: 10px 5px 0px 5px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhx_cell_toolbar_def,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_toolbar_def {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding: 10px 5px 0px 5px;
|
||||
border-width: 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhx_cell_ribbon_def,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_ribbon_def {
|
||||
padding-top: 4px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhtmlxribbon_dhx_terrace.dhxrb_without_tabbar,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhtmlxribbon_dhx_terrace.dhxrb_without_tabbar {
|
||||
border: 0px solid white;
|
||||
width: auto;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhxrb_with_tabbar.dhxtabbar_base_dhx_terrace,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhxrb_with_tabbar.dhxtabbar_base_dhx_terrace {
|
||||
margin-left: 4px;
|
||||
margin-top: 4px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhx_cell_statusbar_def,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_statusbar_def {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
font-family: Arial;
|
||||
font-size: 13px;
|
||||
color: #333333;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhx_cell_statusbar_def div.dhx_cell_statusbar_text,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_statusbar_def div.dhx_cell_statusbar_text {
|
||||
position: relative;
|
||||
margin: 5px 5px 5px 5px;
|
||||
padding: 5px 10px;
|
||||
background-color: #f5f5f5;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_bar,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_bar {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #ffffff;
|
||||
opacity: 0.75;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
|
||||
z-index: 1;
|
||||
}
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_img,
|
||||
.dhxwins_vp_dhx_terrace div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_img {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url("../imgs/dhxwins_terrace/dhxwins_progress.gif");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
z-index: 2;
|
||||
}
|
||||
.dhxwins_skin_detect {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: -100px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0px solid white;
|
||||
width: 30px;
|
||||
height: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
div.dhxwins_vp_dhx_terrace.dhxwins_vp_fs {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
@ -0,0 +1,390 @@
|
||||
/*
|
||||
Product Name: dhtmlxSuite
|
||||
Version: 4.0.3
|
||||
Edition: Professional
|
||||
License: content of this file is covered by DHTMLX Commercial or Enterprise license. Usage without proper license is prohibited. To obtain it contact sales@dhtmlx.com
|
||||
Copyright UAB Dinamenta http://www.dhtmlx.com
|
||||
*/
|
||||
|
||||
/* skin detected, extra file: skins/dhx_web.less */
|
||||
|
||||
.dhxwins_vp_dhx_web {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
cursor: default;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
border: 0px solid white;
|
||||
box-shadow: 0px 0px 10px rgba(0,0,0,0.35);
|
||||
background: white;
|
||||
cursor: inherit;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
border: 0px solid white;
|
||||
box-shadow: 0px 0px 10px rgba(127,127,127,0.35);
|
||||
background: white;
|
||||
cursor: inherit;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_brd {
|
||||
position: absolute;
|
||||
border-left: 5px solid #3da0e3;
|
||||
border-right: 5px solid #3da0e3;
|
||||
border-bottom: 5px solid #3da0e3;
|
||||
background: #ffffff;
|
||||
z-index: 0;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_brd.dhxwin_hdr_hidden {
|
||||
border-top: 5px solid #3da0e3;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhxwin_brd {
|
||||
opacity: 0.6;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_fr_cover {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
background-color: white;
|
||||
z-index: 1;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_fr_cover .dhxwin_fr_cover_inner {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: white;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhxwin_fr_cover {
|
||||
display: none;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhxwin_fr_cover {
|
||||
z-index: 4;
|
||||
opacity: 0.5;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhxwin_fr_cover.dhxwin_fr_cover_dnd,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhxwin_fr_cover.dhxwin_fr_cover_resize {
|
||||
display: block;
|
||||
}
|
||||
.dhxwins_vp_dhx_web iframe.dhxwin_main_fr_cover {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr {
|
||||
position: relative;
|
||||
height: 27px;
|
||||
line-height: 27px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
font-weight: normal;
|
||||
border-top: 1px solid #ffffff;
|
||||
border-left: 1px solid #ffffff;
|
||||
border-right: 1px solid #ffffff;
|
||||
background-color: #3da0e3;
|
||||
font-family: Tahoma;
|
||||
font-size: 12px;
|
||||
color: #ffffff;
|
||||
cursor: inherit;
|
||||
overflow: hidden;
|
||||
z-index: 3;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhxwin_hdr {
|
||||
color: #bfbfbf;
|
||||
opacity: 0.6;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr.dhxwin_hdr_parked {
|
||||
border-bottom: 1px solid #ffffff;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr.dhxwin_hdr_hidden {
|
||||
visibility: hidden;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_icon {
|
||||
position: absolute;
|
||||
left: 7px;
|
||||
top: 5px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
cursor: default;
|
||||
overflow: hidden;
|
||||
background-image: url("../imgs/dhxwins_web/dhxwins_icon.gif");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
cursor: inherit;
|
||||
z-index: 2;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhxwin_hdr div.dhxwin_icon {
|
||||
opacity: 0.6;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_text {
|
||||
position: relative;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
cursor: inherit;
|
||||
z-index: 1;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_text div.dhxwin_text_inside {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
width: 100%;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns {
|
||||
position: absolute;
|
||||
right: 7px;
|
||||
top: 4px;
|
||||
height: 18px;
|
||||
cursor: default;
|
||||
overflow: hidden;
|
||||
cursor: inherit;
|
||||
z-index: 2;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhxwin_hdr div.dhxwin_btns {
|
||||
opacity: 0.5;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
margin-left: 2px;
|
||||
margin-top: 3px;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
background-image: url("../imgs/dhxwins_web/dhxwins_buttons.gif");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button:hover {
|
||||
background-color: #2a8ed2;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_close {
|
||||
background-position: -15px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_close_dis {
|
||||
background-position: -15px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_minmax {
|
||||
background-position: -30px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_minmax_dis {
|
||||
background-position: -30px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_minmaxed {
|
||||
background-position: -45px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_minmaxed_dis {
|
||||
background-position: -45px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_park {
|
||||
background-position: -60px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_park_dis {
|
||||
background-position: -60px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_stick {
|
||||
background-position: -75px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_stick_dis {
|
||||
background-position: -75px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_sticked {
|
||||
background-position: -90px 0px;
|
||||
z-index: 1;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_sticked_dis {
|
||||
background-position: -90px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_help {
|
||||
background-position: -105px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_help_dis {
|
||||
background-position: -105px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_dock {
|
||||
background-position: -120px 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_dock_dis {
|
||||
background-position: -120px -15px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web.dhxwins_vp_dnd {
|
||||
cursor: move !important;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_resize {
|
||||
position: absolute;
|
||||
background-color: #3da0e3;
|
||||
opacity: 0.2;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
|
||||
}
|
||||
.dhxwins_vp_dhx_web iframe.dhxwin_resize_fr_cover {
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwins_mcover {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0.53;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=53);
|
||||
}
|
||||
.dhxwins_vp_dhx_web iframe.dhxwins_mcover {
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins {
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
overflow: hidden;
|
||||
cursor: default;
|
||||
visibility: visible;
|
||||
z-index: 1;
|
||||
opacity: 1;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins div.dhx_cell_cont_wins,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_cont_wins {
|
||||
position: absolute;
|
||||
border: 9px solid #ffffff;
|
||||
background-color: #ffffff;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins div.dhx_cell_cont_wins.dhx_cell_cont_no_borders,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_cont_wins.dhx_cell_cont_no_borders {
|
||||
border: 0px solid #ffffff !important;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins div.dhx_cell_menu_def,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_menu_def {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding: 9px 9px 0px 9px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins div.dhx_cell_toolbar_def,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_toolbar_def {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding: 9px 9px 0px 9px;
|
||||
border-width: 0px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins div.dhx_cell_ribbon_def,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_ribbon_def {
|
||||
padding: 9px 9px 0px 9px;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins div.dhtmlxribbon_dhx_web.dhxrb_without_tabbar,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins div.dhtmlxribbon_dhx_web.dhxrb_without_tabbar {
|
||||
border: 0px solid #ffffff;
|
||||
margin-left: -4px;
|
||||
margin-top: -4px;
|
||||
width: auto;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins div.dhx_cell_statusbar_def,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_statusbar_def {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
font-family: Tahoma;
|
||||
font-size: 12px;
|
||||
color: #000000;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins div.dhx_cell_statusbar_def div.dhx_cell_statusbar_text,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_statusbar_def div.dhx_cell_statusbar_text {
|
||||
position: relative;
|
||||
margin: 0px 9px 9px 9px;
|
||||
padding: 5px 12px;
|
||||
background-color: #f4f4f4;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_bar,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_bar {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #ffffff;
|
||||
opacity: 0.75;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
|
||||
z-index: 1;
|
||||
}
|
||||
.dhxwins_vp_dhx_web div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_img,
|
||||
.dhxwins_vp_dhx_web div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_img {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url("../imgs/dhxwins_web/dhxwins_progress.gif");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
z-index: 2;
|
||||
}
|
||||
.dhxwins_skin_detect {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: -100px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0px solid white;
|
||||
width: 20px;
|
||||
height: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
div.dhxwins_vp_dhx_web.dhxwins_vp_fs {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
@ -0,0 +1,537 @@
|
||||
/*
|
||||
Product Name: dhtmlxSuite
|
||||
Version: 5.2.0
|
||||
Edition: Professional
|
||||
License: content of this file is covered by DHTMLX Commercial or Enterprise license. Usage without proper license is prohibited. To obtain it contact sales@dhtmlx.com
|
||||
Copyright UAB Dinamenta http://www.dhtmlx.com
|
||||
*/
|
||||
|
||||
/*
|
||||
skin detected: material
|
||||
include extra file: skins/material.less
|
||||
*/
|
||||
|
||||
@keyframes dhx_loader_rotate {
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
@keyframes dhx_loader_dash {
|
||||
0% {
|
||||
stroke-dasharray: 1, 200;
|
||||
stroke-dashoffset: 0;
|
||||
}
|
||||
50% {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: -35px;
|
||||
}
|
||||
100% {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: -124px;
|
||||
}
|
||||
}
|
||||
.dhxwins_vp_material {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
cursor: default;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
box-shadow: 0px 28px 80px -6px rgba(0,0,0,0.4);
|
||||
background-color: #3399cc;
|
||||
cursor: inherit;
|
||||
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhxwin_fr_cover {
|
||||
display: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button:hover {
|
||||
background-color: #3090c0;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active.dhxwin_dnd_touch,
|
||||
.dhxwins_vp_material div.dhxwin_active.dhxwin_dnd {
|
||||
box-shadow: 0 0 8px rgba(125,125,125,0.4);
|
||||
box-shadow: 0px 28px 80px -6px rgba(1,1,1,0.4);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active.dhxwin_dnd_touch {
|
||||
border-color: #6c94b4;
|
||||
box-shadow: 0 0 14px #a4b9cb;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_inactive {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 0 8px rgba(127,127,127,0.4);
|
||||
background-color: #70b8db;
|
||||
cursor: inherit;
|
||||
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhxwin_brd {
|
||||
border-color: #70b8db;
|
||||
opacity: 0.8;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhxwin_fr_cover {
|
||||
z-index: 4;
|
||||
opacity: 0.5;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhxwin_fr_cover.dhxwin_fr_cover_dnd,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhxwin_fr_cover.dhxwin_fr_cover_resize {
|
||||
display: block;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhxwin_hdr {
|
||||
color: #d9e7f3;
|
||||
background-color: #70b8db;
|
||||
opacity: 0.8;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhxwin_hdr div.dhxwin_icon {
|
||||
opacity: 0.6;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhxwin_hdr div.dhxwin_btns {
|
||||
opacity: 0.5;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_brd {
|
||||
position: absolute;
|
||||
border-color: #3399cc;
|
||||
border-style: solid;
|
||||
border-width: 0px 2px 2px 2px;
|
||||
background: white;
|
||||
z-index: 0;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_brd.dhxwin_hdr_hidden {
|
||||
border-top-width: 2px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_fr_cover {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
background-color: white;
|
||||
z-index: 1;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_fr_cover iframe.dhxwin_fr_cover_inner,
|
||||
.dhxwins_vp_material div.dhxwin_fr_cover div.dhxwin_fr_cover_inner {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: white;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_material iframe.dhxwin_main_fr_cover {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr {
|
||||
position: relative;
|
||||
height: 48px;
|
||||
line-height: 48px;
|
||||
background-color: #3399cc;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
font-family: Roboto, Arial, Helvetica;
|
||||
font-size: 17px;
|
||||
color: #ecf3f9;
|
||||
cursor: inherit;
|
||||
overflow: hidden;
|
||||
z-index: 3;
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr.dhxwin_hdr_hidden {
|
||||
visibility: hidden;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_icon {
|
||||
position: absolute;
|
||||
display: none;
|
||||
left: 15px;
|
||||
top: 15px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
cursor: default;
|
||||
overflow: hidden;
|
||||
background-image: url("../imgs/dhxwins_material/dhxwins_icon.gif");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
cursor: inherit;
|
||||
z-index: 2;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_text {
|
||||
position: relative;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
cursor: inherit;
|
||||
z-index: 1;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_text div.dhxwin_text_inside {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
width: 100%;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 12px;
|
||||
height: 24px;
|
||||
cursor: default;
|
||||
overflow: hidden;
|
||||
cursor: inherit;
|
||||
z-index: 2;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button,
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
margin-left: 1px;
|
||||
margin-top: 2px;
|
||||
background-image: url("../imgs/dhxwins_material/dhxwins_buttons.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0px 0px;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_close {
|
||||
background-position: -24px 0px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_minmax {
|
||||
background-position: -48px 0px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_minmaxed {
|
||||
background-position: -72px 0px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_park {
|
||||
background-position: -96px 0px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_stick {
|
||||
background-position: -120px 0px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_sticked {
|
||||
background-position: -144px 0px;
|
||||
background-color: #3090c0 !important;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_help {
|
||||
background-position: -168px 0px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button.dhxwin_button_dock {
|
||||
background-position: -192px 0px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_close_dis {
|
||||
background-position: -24px -24px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_minmax_dis {
|
||||
background-position: -48px -24px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_minmaxed_dis {
|
||||
background-position: -72px -24px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_park_dis {
|
||||
background-position: -96px -24px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_stick_dis {
|
||||
background-position: -120px -24px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_sticked_dis {
|
||||
background-position: -144px -24px;
|
||||
background-color: #3193c4 !important;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_help_dis {
|
||||
background-position: -168px -24px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_hdr div.dhxwin_btns div.dhxwin_button_dis.dhxwin_button_dock_dis {
|
||||
background-position: -192px -24px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
overflow: hidden;
|
||||
cursor: default;
|
||||
visibility: visible;
|
||||
z-index: 1;
|
||||
opacity: 1;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_cover,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_cover {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
font-size: 1px;
|
||||
background-color: white;
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_bar,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_bar {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: white;
|
||||
z-index: 1;
|
||||
opacity: 0.75;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_img,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_img {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 1px solid #e4e4e4;
|
||||
background-image: url("../imgs/dhxwins_material/dhxwins_progress.gif");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
z-index: 2;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_svg,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_svg {
|
||||
border: 1px solid #e4e4e4;
|
||||
z-index: 2;
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_svg .dhx_cell_prsvg,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_svg .dhx_cell_prsvg {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin: auto;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
animation: dhx_loader_rotate 2s linear infinite;
|
||||
transform-origin: center center;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_progress_svg .dhx_cell_prsvg .dhx_cell_prcircle,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_progress_svg .dhx_cell_prsvg .dhx_cell_prcircle {
|
||||
fill: none;
|
||||
stroke: #3399cc;
|
||||
stroke-width: 2;
|
||||
stroke-miterlimit: 10;
|
||||
stroke-dasharray: 1, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke-linecap: round;
|
||||
animation: dhx_loader_dash 1.5s ease-in-out infinite;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_menu_def,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_menu_def {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-style: solid;
|
||||
border-width: 0px 1px 1px 1px;
|
||||
border-color: #dfdfdf;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_toolbar_def,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_toolbar_def {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_toolbar_def .dhx_toolbar_material,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_toolbar_def .dhx_toolbar_material {
|
||||
border-width: 0px 1px 1px 1px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_ribbon_def,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_ribbon_def {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_ribbon_def div.dhxrb_with_tabbar.dhxtabbar_base_material,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_ribbon_def div.dhxrb_with_tabbar.dhxtabbar_base_material {
|
||||
border-top-width: 0px;
|
||||
margin-top: -1px;
|
||||
width: auto;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_ribbon_def div.dhtmlxribbon_material.dhxrb_without_tabbar,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_ribbon_def div.dhtmlxribbon_material.dhxrb_without_tabbar {
|
||||
border-top-width: 0px;
|
||||
width: auto;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_statusbar_def,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_statusbar_def {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
background-color: #fafafa;
|
||||
z-index: 1;
|
||||
font-size: 14px;
|
||||
font-family: Roboto, Arial, Helvetica;
|
||||
color: #404040;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_statusbar_def div.dhx_cell_statusbar_text,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_statusbar_def div.dhx_cell_statusbar_text {
|
||||
position: relative;
|
||||
font: inherit;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
border-style: solid;
|
||||
border-width: 0px 1px 1px 1px;
|
||||
border-color: #dfdfdf;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
padding: 0px 12px;
|
||||
color: #737373;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_menu_def,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_menu_def {
|
||||
border-width: 0px 0px 1px 0px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_menu_def .dhtmlxMenu_material_Middle,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_menu_def .dhtmlxMenu_material_Middle {
|
||||
padding: 0px 2px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_toolbar_def .dhx_toolbar_material,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_toolbar_def .dhx_toolbar_material {
|
||||
border-width: 0px 0px 1px 0px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_statusbar_def div.dhx_cell_statusbar_text,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_statusbar_def div.dhx_cell_statusbar_text {
|
||||
border-width: 1px 0px 0px 0px;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins.dhxwin_parked,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins.dhxwin_parked {
|
||||
visibility: hidden;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_active div.dhx_cell_wins div.dhx_cell_cont_wins,
|
||||
.dhxwins_vp_material div.dhxwin_inactive div.dhx_cell_wins div.dhx_cell_cont_wins {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
overflow: hidden;
|
||||
z-index: 0;
|
||||
}
|
||||
.dhxwins_vp_material.dhxwins_vp_dnd {
|
||||
cursor: move !important;
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwin_resize {
|
||||
position: absolute;
|
||||
background-color: #cfcfcf;
|
||||
opacity: 0.3;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
|
||||
}
|
||||
.dhxwins_vp_material iframe.dhxwin_resize_fr_cover {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_material div.dhxwins_mcover {
|
||||
position: absolute;
|
||||
background-color: #f3f3f3;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0.55;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=55);
|
||||
}
|
||||
.dhxwins_vp_material iframe.dhxwins_mcover {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
||||
}
|
||||
.dhxwins_vp_material.dhxwins_vp_fs {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhxwins_vp_auto {
|
||||
overflow: auto !important;
|
||||
}
|
||||
.dhxwins_skin_detect {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: -100px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0px solid white;
|
||||
width: 40px;
|
||||
height: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||