updating dialog
This commit is contained in:
parent
67ec27bcba
commit
4761d7c236
|
@ -69,8 +69,8 @@ Dialog
|
|||
//left: 0px;
|
||||
//right: 0px;
|
||||
//height: 16px;
|
||||
padding: 3px 8px 5px 8px;
|
||||
padding: 3px 0 5px 0;
|
||||
//padding: 3px 8px 5px 8px;
|
||||
//padding: 3px 0 5px 0;
|
||||
cursor: move;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
|
@ -81,7 +81,7 @@ Dialog
|
|||
}
|
||||
|
||||
.OxDialog > .OxTitleBar > .OxTitle {
|
||||
margin: 0 8px 0 8px;
|
||||
margin: 3px 8px 0 8px;
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
text-overflow: ellipsis;
|
||||
|
|
|
@ -26,11 +26,9 @@ requires
|
|||
},
|
||||
getBarSize: function(size) {
|
||||
var sizes = {
|
||||
xsmall: 16,
|
||||
small: 24,
|
||||
medium: 28,
|
||||
large: 32,
|
||||
xlarge: 40
|
||||
small: 20,
|
||||
medium: 24,
|
||||
large: 28,
|
||||
};
|
||||
return sizes[size];
|
||||
},
|
||||
|
@ -240,8 +238,6 @@ requires
|
|||
$eventHandler.unbind(event, callback);
|
||||
},
|
||||
unbindKeyboard: function(id) {
|
||||
//Ox.print(keyboardEvents)
|
||||
//Ox.print("unbindKeyboard", id, keyboardEvents[id])
|
||||
$.each(keyboardEvents[id] || [], function(event, callback) {
|
||||
$eventHandler.unbind(event, callback);
|
||||
});
|
||||
|
@ -462,7 +458,6 @@ requires
|
|||
$document.keydown(function(event) {
|
||||
var $element = $("input:focus");
|
||||
if ($element.length) {
|
||||
console.log("@", $element[0].selectionStart, $element[0].selectionEnd)
|
||||
if (
|
||||
(
|
||||
keyNames[event.keyCode] == "up" &&
|
||||
|
@ -484,7 +479,7 @@ requires
|
|||
function keypress(event) {
|
||||
var key,
|
||||
keys = [],
|
||||
ret = true,
|
||||
//ret = true,
|
||||
time;
|
||||
$.each(modifierNames, function(k, v) {
|
||||
if (event[k]) {
|
||||
|
@ -1178,6 +1173,8 @@ requires
|
|||
.options(options || {})
|
||||
.addClass("OxBar Ox" + Ox.toTitleCase(self.options.orientation)),
|
||||
dimensions = oxui.getDimensions(self.options.orientation);
|
||||
self.options.size = Ox.isString(self.options.size) ?
|
||||
oxui.getBarSize(self.options.size) : self.options.size;
|
||||
that.css(dimensions[0], "100%")
|
||||
.css(dimensions[1], self.options.size + "px");
|
||||
return that;
|
||||
|
@ -1215,6 +1212,7 @@ requires
|
|||
|
||||
};
|
||||
|
||||
// fixme: no need for this
|
||||
Ox.Toolbar = function(options, self) {
|
||||
var self = self || {},
|
||||
that = new Ox.Bar({
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
],
|
||||
size: "large"
|
||||
});
|
||||
var bottomPanel = Ox.Toolbar({size: "small"})
|
||||
var bottomPanel = Ox.Bar({size: "small"})
|
||||
.css({
|
||||
zIndex: 2,
|
||||
MozBoxShadow: "0 0 4px rgb(0, 0, 0)",
|
||||
|
@ -217,7 +217,7 @@
|
|||
}).appendTo(mainPanel);
|
||||
|
||||
for (var i = 0; i < 5; i++) {
|
||||
$toolbars[i] = Ox.Toolbar({size: i ? "small" : "medium"}).appendTo(mainPanel);
|
||||
$toolbars[i] = Ox.Bar({size: i ? "medium" : "large"}).appendTo(mainPanel);
|
||||
}
|
||||
$toolbars[5] = Ox.Bar({size: 24}).appendTo(mainPanel);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user