Clean
This commit is contained in:
@ -1,258 +0,0 @@
|
||||
/*
|
||||
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
|
||||
*/
|
||||
|
||||
if(!window.dhtmlx)
|
||||
window.dhtmlx = {};
|
||||
|
||||
(function(){
|
||||
var _dhx_msg_cfg = null;
|
||||
function callback(config, result){
|
||||
var usercall = config.callback;
|
||||
modality(false);
|
||||
config.box.parentNode.removeChild(config.box);
|
||||
_dhx_msg_cfg = config.box = null;
|
||||
if (usercall)
|
||||
usercall(result);
|
||||
}
|
||||
function modal_key(e){
|
||||
if (_dhx_msg_cfg){
|
||||
e = e||event;
|
||||
var code = e.which||event.keyCode;
|
||||
if (dhtmlx.message.keyboard){
|
||||
if (code == 13 || code == 32)
|
||||
callback(_dhx_msg_cfg, true);
|
||||
if (code == 27)
|
||||
callback(_dhx_msg_cfg, false);
|
||||
|
||||
if (e.preventDefault)
|
||||
e.preventDefault();
|
||||
return !(e.cancelBubble = true);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (document.attachEvent)
|
||||
document.attachEvent("onkeydown", modal_key);
|
||||
else
|
||||
document.addEventListener("keydown", modal_key, true);
|
||||
|
||||
function modality(mode){
|
||||
if(!modality.cover){
|
||||
modality.cover = document.createElement("DIV");
|
||||
//necessary for IE only
|
||||
modality.cover.onkeydown = modal_key;
|
||||
modality.cover.className = "dhx_modal_cover";
|
||||
document.body.appendChild(modality.cover);
|
||||
}
|
||||
var height = document.body.scrollHeight;
|
||||
modality.cover.style.display = mode?"inline-block":"none";
|
||||
}
|
||||
|
||||
function button(text, result){
|
||||
return "<div class='dhtmlx_popup_button' result='"+result+"' ><div>"+text+"</div></div>";
|
||||
}
|
||||
|
||||
function info(text){
|
||||
if (!t.area){
|
||||
t.area = document.createElement("DIV");
|
||||
t.area.className = "dhtmlx_message_area";
|
||||
t.area.style[t.position]="15px";
|
||||
document.body.appendChild(t.area);
|
||||
}
|
||||
|
||||
t.hide(text.id);
|
||||
var message = document.createElement("DIV");
|
||||
message.innerHTML = "<div>"+text.text+"</div>";
|
||||
message.className = "dhtmlx-info dhtmlx-" + text.type;
|
||||
message.onclick = function(){
|
||||
if (text) t.hide(text.id);
|
||||
text = null;
|
||||
};
|
||||
|
||||
if (t.position == "bottom" && t.area.firstChild)
|
||||
t.area.insertBefore(message,t.area.firstChild);
|
||||
else
|
||||
t.area.appendChild(message);
|
||||
|
||||
if (text.expire > 0)
|
||||
t.timers[text.id]=window.setTimeout(function(){
|
||||
t.hide(text.id);
|
||||
}, text.expire);
|
||||
|
||||
t.pull[text.id] = message;
|
||||
message = null;
|
||||
|
||||
return text.id;
|
||||
}
|
||||
function _boxStructure(config, ok, cancel){
|
||||
var box = document.createElement("DIV");
|
||||
box.className = " dhtmlx_modal_box dhtmlx-"+config.type;
|
||||
box.setAttribute("dhxbox", 1);
|
||||
|
||||
var inner = '';
|
||||
|
||||
if (config.width)
|
||||
box.style.width = config.width;
|
||||
if (config.height)
|
||||
box.style.height = config.height;
|
||||
if (config.title)
|
||||
inner+='<div class="dhtmlx_popup_title">'+config.title+'</div>';
|
||||
inner+='<div class="dhtmlx_popup_text"><span>'+(config.content?'':config.text)+'</span></div><div class="dhtmlx_popup_controls">';
|
||||
if (ok)
|
||||
inner += button(config.ok || "OK", true);
|
||||
if (cancel)
|
||||
inner += button(config.cancel || "Cancel", false);
|
||||
if (config.buttons){
|
||||
for (var i=0; i<config.buttons.length; i++)
|
||||
inner += button(config.buttons[i],i);
|
||||
}
|
||||
inner += '</div>';
|
||||
box.innerHTML = inner;
|
||||
|
||||
if (config.content){
|
||||
var node = config.content;
|
||||
if (typeof node == "string")
|
||||
node = document.getElementById(node);
|
||||
if (node.style.display == 'none')
|
||||
node.style.display = "";
|
||||
box.childNodes[config.title?1:0].appendChild(node);
|
||||
}
|
||||
|
||||
box.onclick = function(e){
|
||||
e = e ||event;
|
||||
var source = e.target || e.srcElement;
|
||||
if (!source.className) source = source.parentNode;
|
||||
if (source.className == "dhtmlx_popup_button"){
|
||||
var result = source.getAttribute("result");
|
||||
result = (result == "true")||(result == "false"?false:result);
|
||||
callback(config, result);
|
||||
}
|
||||
};
|
||||
config.box = box;
|
||||
if (ok||cancel)
|
||||
_dhx_msg_cfg = config;
|
||||
|
||||
return box;
|
||||
}
|
||||
function _createBox(config, ok, cancel){
|
||||
var box = config.tagName ? config : _boxStructure(config, ok, cancel);
|
||||
|
||||
if (!config.hidden)
|
||||
modality(true);
|
||||
document.body.appendChild(box);
|
||||
var x = config.left||Math.abs(Math.floor(((window.innerWidth||document.documentElement.offsetWidth) - box.offsetWidth)/2));
|
||||
var y = config.top||Math.abs(Math.floor(((window.innerHeight||document.documentElement.offsetHeight) - box.offsetHeight)/2));
|
||||
if (config.position == "top")
|
||||
box.style.top = "-3px";
|
||||
else
|
||||
box.style.top = y+'px';
|
||||
box.style.left = x+'px';
|
||||
//necessary for IE only
|
||||
box.onkeydown = modal_key;
|
||||
|
||||
box.focus();
|
||||
if (config.hidden)
|
||||
dhtmlx.modalbox.hide(box);
|
||||
|
||||
return box;
|
||||
}
|
||||
|
||||
function alertPopup(config){
|
||||
return _createBox(config, true, false);
|
||||
}
|
||||
function confirmPopup(config){
|
||||
return _createBox(config, true, true);
|
||||
}
|
||||
function boxPopup(config){
|
||||
return _createBox(config);
|
||||
}
|
||||
function box_params(text, type, callback){
|
||||
if (typeof text != "object"){
|
||||
if (typeof type == "function"){
|
||||
callback = type;
|
||||
type = "";
|
||||
}
|
||||
text = {text:text, type:type, callback:callback };
|
||||
}
|
||||
return text;
|
||||
}
|
||||
function params(text, type, expire, id){
|
||||
if (typeof text != "object" || !text)
|
||||
text = {text:text, type:type, expire:expire, id:id};
|
||||
text.id = text.id||t.uid();
|
||||
text.expire = text.expire||t.expire;
|
||||
return text;
|
||||
}
|
||||
dhtmlx.alert = function(){
|
||||
var text = box_params.apply(this, arguments);
|
||||
text.type = text.type || "confirm";
|
||||
return alertPopup(text);
|
||||
};
|
||||
dhtmlx.confirm = function(){
|
||||
var text = box_params.apply(this, arguments);
|
||||
text.type = text.type || "alert";
|
||||
return confirmPopup(text);
|
||||
};
|
||||
dhtmlx.modalbox = function(){
|
||||
var text = box_params.apply(this, arguments);
|
||||
text.type = text.type || "alert";
|
||||
return boxPopup(text);
|
||||
};
|
||||
dhtmlx.modalbox.hide = function(node){
|
||||
while (node && node.getAttribute && !node.getAttribute("dhxbox"))
|
||||
node = node.parentNode;
|
||||
if (node){
|
||||
node.parentNode.removeChild(node);
|
||||
modality(false);
|
||||
_dhx_msg_cfg = null;
|
||||
}
|
||||
};
|
||||
var t = dhtmlx.message = function(text, type, expire, id){
|
||||
text = params.apply(this, arguments);
|
||||
text.type = text.type||"info";
|
||||
|
||||
var subtype = text.type.split("-")[0];
|
||||
switch (subtype){
|
||||
case "alert":
|
||||
return alertPopup(text);
|
||||
case "confirm":
|
||||
return confirmPopup(text);
|
||||
case "modalbox":
|
||||
return boxPopup(text);
|
||||
default:
|
||||
return info(text);
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
t.seed = (new Date()).valueOf();
|
||||
t.uid = function(){return t.seed++;};
|
||||
t.expire = 4000;
|
||||
t.keyboard = true;
|
||||
t.position = "top";
|
||||
t.pull = {};
|
||||
t.timers = {};
|
||||
|
||||
t.hideAll = function(){
|
||||
for (var key in t.pull)
|
||||
t.hide(key);
|
||||
};
|
||||
t.hide = function(id){
|
||||
var obj = t.pull[id];
|
||||
if (obj && obj.parentNode){
|
||||
window.setTimeout(function(){
|
||||
obj.parentNode.removeChild(obj);
|
||||
obj = null;
|
||||
},2000);
|
||||
obj.className+=" hidden";
|
||||
|
||||
if(t.timers[id])
|
||||
window.clearTimeout(t.timers[id]);
|
||||
delete t.pull[id];
|
||||
}
|
||||
};
|
||||
})();
|
||||
@ -1,241 +0,0 @@
|
||||
/*
|
||||
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: dhx_skyblue
|
||||
include extra file: skins/dhx_skyblue.less
|
||||
*/
|
||||
|
||||
.dhtmlx_message_area {
|
||||
position: fixed;
|
||||
right: 5px;
|
||||
width: 250px;
|
||||
z-index: 1000;
|
||||
padding: 0px 0px;
|
||||
}
|
||||
.dhtmlx-info {
|
||||
color: #444;
|
||||
border-radius: 4px;
|
||||
min-width: 120px;
|
||||
background: white;
|
||||
font-size: 12px;
|
||||
font-family: Tahoma;
|
||||
z-index: 10000;
|
||||
margin: 0px 5px 5px 5px;
|
||||
border: 1px solid #e6d8bc;
|
||||
box-shadow: 0px 0px 5px #ccc;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
.dhtmlx-info div {
|
||||
padding: 9px 9px 9px 15px;
|
||||
margin: 1px;
|
||||
background-color: #FFF0D2;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
.dhtmlx-info.hidden {
|
||||
box-shadow: none;
|
||||
border: 1px solid transparent !important;
|
||||
border-bottom: none;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhtmlx-info.hidden div {
|
||||
height: 0px;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
padding-bottom: 0px;
|
||||
padding-top: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhtmlx-error {
|
||||
border: 1px solid #e64949;
|
||||
color: #fff;
|
||||
}
|
||||
.dhtmlx-error div {
|
||||
padding: 9px 9px 9px 18px;
|
||||
margin: 1px;
|
||||
background-color: #FF5252;
|
||||
}
|
||||
.dhtmlx_modal_box {
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
min-width: 300px;
|
||||
width: 300px;
|
||||
text-align: center;
|
||||
position: fixed;
|
||||
background-color: #fff;
|
||||
z-index: 20000;
|
||||
-moz-box-shadow: 0px 0px 5px #AAAAAA;
|
||||
-webkit-box-shadow: 0px 0px 0px #AAAAAA;
|
||||
box-shadow: 0px 0px 5px #AAAAAA;
|
||||
border: 1px solid #a4bed4;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.dhtmlx_popup_title {
|
||||
padding: 10px 0;
|
||||
font-size: 12px;
|
||||
-webkit-border-top-right-radius: 3px;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
border-radius-top-right: 3px;
|
||||
line-height: 16px;
|
||||
font-family: Tahoma;
|
||||
font-weight: bold;
|
||||
}
|
||||
.dhtmlx-info,
|
||||
.dhtmlx_popup_title,
|
||||
.dhtmlx_popup_button {
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
-moz-user-select: -moz-none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.dhtmlx_popup_text {
|
||||
font-size: 13px;
|
||||
font-family: Tahoma;
|
||||
color: #444;
|
||||
min-height: 30px;
|
||||
padding: 20px 10px 10px 10px !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhtmlx_popup_controls {
|
||||
font-family: Tahoma;
|
||||
font-weight: bold;
|
||||
padding: 10px 10px 17px 10px !important;
|
||||
}
|
||||
.dhtmlx_popup_button {
|
||||
font-size: 12px;
|
||||
font-family: Tahoma;
|
||||
font-weight: normal;
|
||||
min-width: 120px;
|
||||
width: 120px;
|
||||
height: 26px;
|
||||
display: inline-block;
|
||||
margin: 0 5px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
.dhtmlx_popup_button div {
|
||||
line-height: 26px;
|
||||
}
|
||||
div.dhx_modal_cover {
|
||||
background-color: #000;
|
||||
cursor: default;
|
||||
opacity: 0.2;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
|
||||
position: fixed;
|
||||
z-index: 19999;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
zoom: 1;
|
||||
}
|
||||
.dhtmlx_popup_button {
|
||||
color: #34404b;
|
||||
border: 1px solid #a4bed4;
|
||||
background-color: #e7f1ff;
|
||||
background-image: -moz-linear-gradient(center bottom,#e2efff 0%,#d3e7ff 12%,#e7f1ff 100%);
|
||||
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0.00,#e7f1ff),color-stop(0.88,#d3e7ff),color-stop(1.00,#e2efff));
|
||||
background: -o-linear-gradient(top,#e2efff,#d3e7ff 12%,#e7f1ff);
|
||||
background: linear-gradient(top,#e2efff,#d3e7ff 12%,#e7f1ff);
|
||||
background: -ms-linear-gradient(top,#e2efff 0%,#d3e7ff 12%,#e7f1ff 100%);
|
||||
}
|
||||
.dhtmlx_popup_button:active,
|
||||
.dhtmlx_popup_button:focus {
|
||||
box-shadow: inset 0 0 2px #aaaaaa;
|
||||
background: #f1f7ff;
|
||||
background: -moz-linear-gradient(top,#d2e7fe 0%,#d3e7ff 88%,#e7f1ff 100%);
|
||||
background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#d2e7fe),color-stop(88%,#d3e7ff),color-stop(100%,#e7f1ff));
|
||||
background: -o-linear-gradient(top,#d2e7fe 0%,#d3e7ff 88%,#e7f1ff 100%);
|
||||
background: -ms-linear-gradient(top,#d2e7fe 0%,#d3e7ff 88%,#e7f1ff 100%);
|
||||
background: linear-gradient(top,#d2e7fe 0%,#d3e7ff 88%,#e7f1ff 100%);
|
||||
}
|
||||
.dhtmlx_popup_title {
|
||||
box-shadow: inset 0px 0px 1px 1px #ffffff;
|
||||
display: block;
|
||||
}
|
||||
.dhtmlx-alert-error .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm-error .dhtmlx_popup_title {
|
||||
color: white;
|
||||
border: 1px solid #f17373;
|
||||
background: #f17373;
|
||||
background: -webkit-linear-gradient(top,#ff7c7c,#f17373 88%,#ff7361);
|
||||
background: -moz-linear-gradient(top,#ff7c7c,#f17373 88%,#ff7361);
|
||||
background: -o-linear-gradient(top,#ff7c7c,#f17373 88%,#ff7361);
|
||||
background: linear-gradient(top,#ff7c7c,#f17373 88%,#ff7361);
|
||||
background: -ms-linear-gradient(top,#ff7c7c 0%,#f17373 88%,#ffbc75 100%);
|
||||
}
|
||||
.dhtmlx-alert-error.dhtmlx_modal_box,
|
||||
.dhtmlx-confirm-error.dhtmlx_modal_box {
|
||||
border: 1px solid #f17373;
|
||||
}
|
||||
.dhtmlx-alert-error .dhtmlx_popup_button,
|
||||
.dhtmlx-confirm-error .dhtmlx_popup_button {
|
||||
border: 1px solid #f17373;
|
||||
color: #ffffff;
|
||||
font-weight: normal;
|
||||
background: linear-gradient(to bottom,#ff8e8e,#f17373);
|
||||
}
|
||||
.dhtmlx-alert-error .dhtmlx_popup_button:active,
|
||||
.dhtmlx-alert-error .dhtmlx_popup_button:focus,
|
||||
.dhtmlx-confirm-error .dhtmlx_popup_button:active,
|
||||
.dhtmlx-confirm-error .dhtmlx_popup_button:focus {
|
||||
background: linear-gradient(to bottom,#ff8e8e,#f17373);
|
||||
}
|
||||
.dhtmlx-alert-warning .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm-warning .dhtmlx_popup_title {
|
||||
color: #000;
|
||||
border: 1px solid #d2b07f;
|
||||
background: #ff9f37;
|
||||
background: -webkit-linear-gradient(top,#ffc786,#ff9523 88%,#ffbc75);
|
||||
background: -moz-linear-gradient(top,#ffc786,#ff9523 88%,#ffbc75);
|
||||
background: -o-linear-gradient(top,#ffc786,#ff9523 88%,#ffbc75);
|
||||
background: linear-gradient(top,#ffc786,#ff9523 88%,#ffbc75);
|
||||
background: -ms-linear-gradient(top,#ffc786 0%,#ff9523 88%,#ffbc75 100%);
|
||||
}
|
||||
.dhtmlx-alert-warning .dhtmlx_popup_controls,
|
||||
.dhtmlx-confirm-warning .dhtmlx_popup_controls {
|
||||
border: 1px solid #d5d5d5;
|
||||
border-width: 0 1px 1px 1px;
|
||||
}
|
||||
.dhtmlx-alert-warning .dhtmlx_popup_text,
|
||||
.dhtmlx-confirm-warning .dhtmlx_popup_text {
|
||||
border: 1px solid #d5d5d5;
|
||||
border-width: 0 1px 0 1px;
|
||||
}
|
||||
.dhtmlx-alert .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm .dhtmlx_popup_title {
|
||||
color: black;
|
||||
border: 1px solid #a4bed4;
|
||||
background: #e7f1ff;
|
||||
background: -moz-linear-gradient(center bottom,#e2efff 0%,#d3e7ff 12%,#e7f1ff 100%);
|
||||
background: -webkit-gradient(linear,left top,left bottom,color-stop(0.00,#e7f1ff),color-stop(0.88,#d3e7ff),color-stop(1.00,#e2efff));
|
||||
background: -o-linear-gradient(top,#e2efff,#d3e7ff 12%,#e7f1ff);
|
||||
background: linear-gradient(top,#e2efff,#d3e7ff 12%,#e7f1ff);
|
||||
background: -ms-linear-gradient(top,#e2efff 0%,#d3e7ff 12%,#e7f1ff 100%);
|
||||
}
|
||||
.dhtmlx-alert .dhtmlx_popup_controls,
|
||||
.dhtmlx-confirm .dhtmlx_popup_controls {
|
||||
border: 1px solid #a4bed4;
|
||||
border-width: 0 1px 1px 1px;
|
||||
}
|
||||
.dhtmlx-alert .dhtmlx_popup_text,
|
||||
.dhtmlx-confirm .dhtmlx_popup_text {
|
||||
border: 1px solid #a4bed4;
|
||||
border-width: 0 1px 0 1px;
|
||||
}
|
||||
@ -1,194 +0,0 @@
|
||||
/*
|
||||
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: dhx_terrace
|
||||
include extra file: skins/dhx_terrace.less
|
||||
*/
|
||||
|
||||
.dhtmlx_message_area {
|
||||
position: fixed;
|
||||
right: 5px;
|
||||
width: 250px;
|
||||
z-index: 1000;
|
||||
padding: 0px 0px;
|
||||
}
|
||||
.dhtmlx-info {
|
||||
color: #333;
|
||||
border-radius: 4px;
|
||||
min-width: 120px;
|
||||
padding: 10px 10px 8px 15px;
|
||||
background: #fffcef;
|
||||
font-size: 12px;
|
||||
font-family: Arial;
|
||||
z-index: 10000;
|
||||
margin: 0px 5px 5px 5px;
|
||||
border: 1px solid #cccccc;
|
||||
-moz-box-shadow: 0px 0px 5px #ccc;
|
||||
-webkit-box-shadow: 0px 0px 5px #ccc;
|
||||
box-shadow: 0px 0px 5px #ccc;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
.dhtmlx-info.hidden {
|
||||
height: 0px;
|
||||
padding-bottom: 0px;
|
||||
padding-top: 0px;
|
||||
border-width: 0px;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhtmlx-error {
|
||||
border: 1px solid #f17373;
|
||||
box-shadow: inset 0px 0px 1px 1px #f59696;
|
||||
background: #f17373;
|
||||
color: #fff;
|
||||
}
|
||||
.dhtmlx_modal_box {
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
min-width: 300px;
|
||||
width: 300px;
|
||||
text-align: center;
|
||||
position: fixed;
|
||||
z-index: 20000;
|
||||
background: #fff;
|
||||
-moz-box-shadow: 0px 0px 5px #AAAAAA;
|
||||
-webkit-box-shadow: 0px 0px 0px #AAAAAA;
|
||||
box-shadow: 0px 0px 5px #AAAAAA;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.dhtmlx_popup_title {
|
||||
padding: 10px 0;
|
||||
font-size: 13px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
line-height: 16px;
|
||||
font-weight: bold;
|
||||
font-family: Arial;
|
||||
border-radius: 0px;
|
||||
text-shadow: none;
|
||||
height: auto;
|
||||
}
|
||||
.dhtmlx-info,
|
||||
.dhtmlx_popup_title,
|
||||
.dhtmlx_popup_button {
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
-moz-user-select: -moz-none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.dhtmlx_popup_text {
|
||||
font-size: 13px;
|
||||
font-family: Arial;
|
||||
color: #444;
|
||||
min-height: 30px;
|
||||
padding: 20px 10px 10px 10px !important;
|
||||
overflow: hidden;
|
||||
border-width: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
.dhtmlx_popup_button div,
|
||||
.dhtmlx_popup_button div:active {
|
||||
line-height: 28px;
|
||||
background: inherit;
|
||||
color: inherit;
|
||||
border: none;
|
||||
}
|
||||
.dhtmlx_popup_controls {
|
||||
font-family: Arial;
|
||||
font-weight: bold;
|
||||
padding: 10px 10px 15px 10px !important;
|
||||
}
|
||||
.dhtmlx_popup_button {
|
||||
font-size: 14px;
|
||||
font-family: Arial;
|
||||
font-weight: normal;
|
||||
min-width: 120px;
|
||||
width: 120px;
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
display: inline-block;
|
||||
margin: 0 5px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
div.dhx_modal_cover {
|
||||
background: #000;
|
||||
cursor: default;
|
||||
opacity: 0.2;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
|
||||
position: fixed;
|
||||
z-index: 19999;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
zoom: 1;
|
||||
}
|
||||
.dhtmlx_popup_button {
|
||||
color: #222;
|
||||
border: 1px solid #cecece;
|
||||
box-shadow: 0px 0px 1px #111;
|
||||
}
|
||||
.dhtmlx_popup_button:active,
|
||||
.dhtmlx_popup_button:focus {
|
||||
background: #eee;
|
||||
}
|
||||
.dhtmlx_popup_button:first-child {
|
||||
background: #22A1BC;
|
||||
color: white;
|
||||
border: 1px solid #22A1BC;
|
||||
box-shadow: none;
|
||||
}
|
||||
.dhtmlx-alert-error,
|
||||
.dhtmlx-confirm-error {
|
||||
border: 1px solid #f17373;
|
||||
}
|
||||
.dhtmlx-alert-error .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm-error .dhtmlx_popup_title {
|
||||
color: #ffffff;
|
||||
background: #f17373;
|
||||
}
|
||||
.dhtmlx-alert-warning,
|
||||
.dhtmlx-confirm-warning {
|
||||
border: 1px solid #E6951A;
|
||||
}
|
||||
.dhtmlx-alert-warning .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm-warning .dhtmlx_popup_title {
|
||||
color: #ffffff;
|
||||
background: #E6951A;
|
||||
}
|
||||
.dhtmlx-alert .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm .dhtmlx_popup_title {
|
||||
color: #444;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
.dhtmlx-alert .dhtmlx_popup_controls,
|
||||
.dhtmlx-confirm .dhtmlx_popup_controls {
|
||||
border: 1px solid #eee;
|
||||
border-width: 0 1px 1px 1px;
|
||||
}
|
||||
.dhtmlx-alert .dhtmlx_popup_text,
|
||||
.dhtmlx-confirm .dhtmlx_popup_text {
|
||||
border: 1px solid #eee;
|
||||
border-width: 0px;
|
||||
}
|
||||
.dhtmlx-error div,
|
||||
.dhtmlx-info div {
|
||||
padding: 0px;
|
||||
background: inherit;
|
||||
color: inherit;
|
||||
border: none;
|
||||
}
|
||||
@ -1,177 +0,0 @@
|
||||
/*
|
||||
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: dhx_web
|
||||
include extra file: skins/dhx_web.less
|
||||
*/
|
||||
|
||||
.dhtmlx_message_area {
|
||||
position: fixed;
|
||||
right: 5px;
|
||||
width: 250px;
|
||||
z-index: 1000;
|
||||
padding: 0px 0px;
|
||||
}
|
||||
.dhtmlx-info {
|
||||
color: #444;
|
||||
min-width: 120px;
|
||||
background: white;
|
||||
font-size: 12px;
|
||||
font-family: Tahoma;
|
||||
z-index: 10000;
|
||||
margin: 0px 5px 5px 5px;
|
||||
border: 1px solid #e6d8bc;
|
||||
box-shadow: 0px 0px 5px #ccc;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
.dhtmlx-info div {
|
||||
padding: 9px 9px 9px 15px;
|
||||
margin: 1px;
|
||||
background-color: #ffffcc;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
.dhtmlx-info.hidden {
|
||||
box-shadow: none;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhtmlx-info.hidden div {
|
||||
height: 0px;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
padding-bottom: 0px;
|
||||
padding-top: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhtmlx-error {
|
||||
border: 1px solid #bcbcbc;
|
||||
color: #fff;
|
||||
}
|
||||
.dhtmlx-error div {
|
||||
padding: 9px 9px 9px 18px;
|
||||
margin: 1px;
|
||||
background-color: #f17373;
|
||||
}
|
||||
.dhtmlx_modal_box {
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
min-width: 300px;
|
||||
width: 300px;
|
||||
text-align: center;
|
||||
position: fixed;
|
||||
background-color: #fff;
|
||||
z-index: 20000;
|
||||
-moz-box-shadow: 0px 0px 5px #AAAAAA;
|
||||
-webkit-box-shadow: 0px 0px 0px #AAAAAA;
|
||||
box-shadow: 0px 0px 5px #AAAAAA;
|
||||
border: 1px solid white;
|
||||
}
|
||||
.dhtmlx_popup_title {
|
||||
padding: 6px 0;
|
||||
font-size: 14px;
|
||||
-webkit-border-top-right-radius: 3px;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
line-height: 16px;
|
||||
font-family: Tahoma;
|
||||
}
|
||||
.dhtmlx-info,
|
||||
.dhtmlx_popup_title,
|
||||
.dhtmlx_popup_button {
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
-moz-user-select: -moz-none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.dhtmlx_popup_text {
|
||||
font-size: 13px;
|
||||
font-family: Tahoma;
|
||||
color: #444;
|
||||
min-height: 30px;
|
||||
padding: 20px 10px 10px 10px !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhtmlx_popup_controls {
|
||||
font-family: Tahoma;
|
||||
font-weight: bold;
|
||||
padding: 10px 10px 17px 10px !important;
|
||||
}
|
||||
.dhtmlx_popup_button {
|
||||
font-size: 14px;
|
||||
font-family: Tahoma;
|
||||
font-weight: normal;
|
||||
min-width: 120px;
|
||||
width: 120px;
|
||||
height: 24px;
|
||||
display: inline-block;
|
||||
margin: 0 5px;
|
||||
}
|
||||
.dhtmlx_popup_button div {
|
||||
line-height: 24px;
|
||||
}
|
||||
div.dhx_modal_cover {
|
||||
background-color: #000;
|
||||
cursor: default;
|
||||
opacity: 0.2;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
|
||||
position: fixed;
|
||||
z-index: 19999;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
zoom: 1;
|
||||
}
|
||||
.dhtmlx_popup_button {
|
||||
color: #222;
|
||||
border: 1px solid #cecece;
|
||||
box-shadow: 0px 0px 1px #111;
|
||||
}
|
||||
.dhtmlx_popup_button:active,
|
||||
.dhtmlx_popup_button:focus {
|
||||
background: #eee;
|
||||
}
|
||||
.dhtmlx_popup_button:first-child {
|
||||
background: #3da0e3;
|
||||
color: #ffffff;
|
||||
border: 1px solid #3da0e3;
|
||||
box-shadow: none;
|
||||
}
|
||||
.dhtmlx-alert-error .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm-error .dhtmlx_popup_title {
|
||||
color: #ffffff;
|
||||
background: #f17373;
|
||||
}
|
||||
.dhtmlx-alert-error .dhtmlx_popup_button:first-child,
|
||||
.dhtmlx-confirm-error .dhtmlx_popup_button:first-child {
|
||||
background: #f17373;
|
||||
border: 1px solid #f17373;
|
||||
}
|
||||
.dhtmlx-alert-warning .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm-warning .dhtmlx_popup_title {
|
||||
color: #ffffff;
|
||||
background: #E6951A;
|
||||
}
|
||||
.dhtmlx-alert .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm .dhtmlx_popup_title {
|
||||
color: #ffffff;
|
||||
background: #3da0e3;
|
||||
}
|
||||
@ -1,194 +0,0 @@
|
||||
/*
|
||||
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;
|
||||
}
|
||||
}
|
||||
.dhtmlx_message_area {
|
||||
position: fixed;
|
||||
right: 10px;
|
||||
width: 250px;
|
||||
z-index: 1000;
|
||||
padding: 0px 0px;
|
||||
}
|
||||
.dhtmlx-info {
|
||||
color: #444;
|
||||
min-width: 120px;
|
||||
background: #f5f5f5;
|
||||
font-size: 14px;
|
||||
font-family: Roboto, Arial, Helvetica;
|
||||
font-weight: 500;
|
||||
z-index: 10000;
|
||||
margin: 0px 5px 7px 5px;
|
||||
box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
|
||||
border-radius: 3px;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
.dhtmlx-info div {
|
||||
padding: 16px 9px 16px 15px;
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 3px;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
.dhtmlx-info.hidden {
|
||||
box-shadow: none;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhtmlx-info.hidden div {
|
||||
height: 0px;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
padding-bottom: 0px;
|
||||
padding-top: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhtmlx-error {
|
||||
color: #fff;
|
||||
background-color: #e53935;
|
||||
box-shadow: 0px 0px 6px rgba(0,0,0,0.49);
|
||||
border-radius: 0px;
|
||||
}
|
||||
.dhtmlx-error div {
|
||||
padding: 16px 9px 16px 18px;
|
||||
background-color: #e53935;
|
||||
}
|
||||
.dhtmlx_modal_box {
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
min-width: 300px;
|
||||
width: 300px;
|
||||
text-align: center;
|
||||
position: fixed;
|
||||
background-color: #fff;
|
||||
z-index: 20000;
|
||||
box-shadow: 0px 28px 80px -6px rgba(0,0,0,0.4);
|
||||
}
|
||||
.dhtmlx_popup_title {
|
||||
padding: 16px 0;
|
||||
font-size: 17px;
|
||||
line-height: 16px;
|
||||
font-family: Roboto, Arial, Helvetica;
|
||||
}
|
||||
.dhtmlx-info,
|
||||
.dhtmlx_popup_title,
|
||||
.dhtmlx_popup_button {
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
-moz-user-select: -moz-none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.dhtmlx_popup_text {
|
||||
font-size: 15px;
|
||||
font-family: Roboto, Arial, Helvetica;
|
||||
color: #444;
|
||||
min-height: 30px;
|
||||
padding: 20px 10px 5px 10px !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
.dhtmlx_popup_controls {
|
||||
font-family: Roboto, Arial, Helvetica;
|
||||
font-weight: bold;
|
||||
padding: 10px 10px 15px 10px !important;
|
||||
}
|
||||
.dhtmlx_popup_button {
|
||||
font-size: 14px;
|
||||
font-family: Roboto, Arial, Helvetica;
|
||||
font-weight: 500;
|
||||
min-width: 120px;
|
||||
width: 120px;
|
||||
height: 32px;
|
||||
display: inline-block;
|
||||
margin: 0 5px;
|
||||
color: #444;
|
||||
}
|
||||
.dhtmlx_popup_button div {
|
||||
line-height: 32px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
div.dhx_modal_cover {
|
||||
background-color: #000;
|
||||
cursor: default;
|
||||
opacity: 0.24;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
|
||||
position: fixed;
|
||||
z-index: 19999;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
zoom: 1;
|
||||
}
|
||||
.dhtmlx_popup_button {
|
||||
color: #222;
|
||||
border: 1px solid #dfdfdf;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
.dhtmlx_popup_button:active,
|
||||
.dhtmlx_popup_button:focus {
|
||||
background: #eee;
|
||||
}
|
||||
.dhtmlx_popup_button:first-child {
|
||||
background: #3399cc;
|
||||
color: white;
|
||||
font-weight: normal;
|
||||
}
|
||||
.dhtmlx-alert-error .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm-error .dhtmlx_popup_title {
|
||||
color: #ffffff;
|
||||
background: #e53935;
|
||||
}
|
||||
.dhtmlx-alert-error .dhtmlx_popup_button:first-child,
|
||||
.dhtmlx-confirm-error .dhtmlx_popup_button:first-child {
|
||||
background: #e53935;
|
||||
border: 1px solid #f17373;
|
||||
}
|
||||
.dhtmlx-alert-warning .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm-warning .dhtmlx_popup_title {
|
||||
color: #ffffff;
|
||||
background: #E6951A;
|
||||
}
|
||||
.dhtmlx-alert .dhtmlx_popup_title,
|
||||
.dhtmlx-confirm .dhtmlx_popup_title {
|
||||
color: white;
|
||||
background: #3399cc;
|
||||
}
|
||||
Reference in New Issue
Block a user