kopia lustrzana https://github.com/c9/core
UI Fixes
rodzic
3d777d8b19
commit
f00b6bf581
|
@ -77,13 +77,13 @@
|
||||||
"c9.ide.behaviors": "#6aad7006a0",
|
"c9.ide.behaviors": "#6aad7006a0",
|
||||||
"c9.ide.closeconfirmation": "#a28bfd8272",
|
"c9.ide.closeconfirmation": "#a28bfd8272",
|
||||||
"c9.ide.configuration": "#b8470f4107",
|
"c9.ide.configuration": "#b8470f4107",
|
||||||
"c9.ide.dialog.wizard": "#9ec0eafb28",
|
"c9.ide.dialog.wizard": "#3641096e13",
|
||||||
"c9.ide.fontawesome": "#781602c5d8",
|
"c9.ide.fontawesome": "#781602c5d8",
|
||||||
"c9.ide.format": "#f51451ac57",
|
"c9.ide.format": "#f51451ac57",
|
||||||
"c9.ide.help.support": "#60e88f5680",
|
"c9.ide.help.support": "#60e88f5680",
|
||||||
"c9.ide.imgeditor": "#08bbc53578",
|
"c9.ide.imgeditor": "#08bbc53578",
|
||||||
"c9.ide.immediate": "#6845a93705",
|
"c9.ide.immediate": "#6845a93705",
|
||||||
"c9.ide.installer": "#f0d8fe9d26",
|
"c9.ide.installer": "#ca02a6312b",
|
||||||
"c9.ide.mount": "#32e79866ee",
|
"c9.ide.mount": "#32e79866ee",
|
||||||
"c9.ide.navigate": "#64156c7f4a",
|
"c9.ide.navigate": "#64156c7f4a",
|
||||||
"c9.ide.newresource": "#9a7464cc47",
|
"c9.ide.newresource": "#9a7464cc47",
|
||||||
|
|
|
@ -67,10 +67,12 @@ define(function(require, module, exports) {
|
||||||
var left = options.left;
|
var left = options.left;
|
||||||
var top = options.top;
|
var top = options.top;
|
||||||
var width = options.width || 512;
|
var width = options.width || 512;
|
||||||
|
var height = options.height;
|
||||||
var title = options.title;
|
var title = options.title;
|
||||||
var heading = options.heading;
|
var heading = options.heading;
|
||||||
var body = options.body;
|
var body = options.body;
|
||||||
var custom = options.custom;
|
var custom = options.custom;
|
||||||
|
var className = options.class;
|
||||||
var modal = options.modal;
|
var modal = options.modal;
|
||||||
var zindex = options.zindex;
|
var zindex = options.zindex;
|
||||||
var allowClose = options.allowClose;
|
var allowClose = options.allowClose;
|
||||||
|
@ -101,9 +103,13 @@ define(function(require, module, exports) {
|
||||||
modal: modal,
|
modal: modal,
|
||||||
buttons: allowClose ? "close" : "",
|
buttons: allowClose ? "close" : "",
|
||||||
width: width,
|
width: width,
|
||||||
|
height: height,
|
||||||
zindex: zindex || "",
|
zindex: zindex || "",
|
||||||
skin: "bk-window2",
|
skin: "bk-window2",
|
||||||
class: "relative" + (options.dark ? " dark" : ""),
|
class: "dialog "
|
||||||
|
+ (height ? "" : "relative")
|
||||||
|
+ (options.dark ? " dark" : "")
|
||||||
|
+ (className ? " " + className : ""),
|
||||||
childNodes: [
|
childNodes: [
|
||||||
new ui.vbox({
|
new ui.vbox({
|
||||||
id: "titles",
|
id: "titles",
|
||||||
|
@ -439,11 +445,14 @@ define(function(require, module, exports) {
|
||||||
|
|
||||||
dialog.setAttribute("height", v ? dialog.getHeight() : "");
|
dialog.setAttribute("height", v ? dialog.getHeight() : "");
|
||||||
dialog.setAttribute("width", v ? dialog.getWidth() : "");
|
dialog.setAttribute("width", v ? dialog.getWidth() : "");
|
||||||
dialog.setAttribute("class", v ? "" : "relative");
|
dialog.setAttribute("class", "dialog "
|
||||||
titles.setAttribute("anchors", v ? "0 0 46 0" : "");
|
+ (v ? "" : "relative")
|
||||||
buttons.setAttribute("bottom", v ? "0" : "");
|
+ (options.dark ? " dark" : "")
|
||||||
buttons.setAttribute("left", v ? "0" : "");
|
+ (className ? " " + className : ""));
|
||||||
buttons.setAttribute("right", v ? "0" : "");
|
// titles.setAttribute("anchors", v ? "0 0 46 0" : "");
|
||||||
|
// buttons.setAttribute("bottom", v ? "0" : "");
|
||||||
|
// buttons.setAttribute("left", v ? "0" : "");
|
||||||
|
// buttons.setAttribute("right", v ? "0" : "");
|
||||||
dialog.setAttribute("resizable", v);
|
dialog.setAttribute("resizable", v);
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -129,4 +129,12 @@
|
||||||
right: 20px;
|
right: 20px;
|
||||||
top: 25px;
|
top: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bk-window.dialog .bk-container{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.bk-window.dialog .bk-container > div:first-child{
|
||||||
|
flex: 1;
|
||||||
|
position: relative;
|
||||||
|
}
|
Ładowanie…
Reference in New Issue