updating css
This commit is contained in:
parent
c955532ee7
commit
cda23cbf42
3 changed files with 10 additions and 3 deletions
|
@ -103,7 +103,6 @@ Forms
|
||||||
background: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(255, 255, 255));
|
background: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(255, 255, 255));
|
||||||
background: -webkit-gradient(linear, left top, left bottom, from(rgb(224, 224, 224)), to(rgb(255, 255, 255)));
|
background: -webkit-gradient(linear, left top, left bottom, from(rgb(224, 224, 224)), to(rgb(255, 255, 255)));
|
||||||
}
|
}
|
||||||
.OxThemeClassic input.OxInput:focus,
|
|
||||||
.OxThemeClassic textarea.OxInput:focus {
|
.OxThemeClassic textarea.OxInput:focus {
|
||||||
border: 1px solid rgb(160, 160, 160);
|
border: 1px solid rgb(160, 160, 160);
|
||||||
-moz-box-shadow: 0 0 2px rgb(128, 128, 128);
|
-moz-box-shadow: 0 0 2px rgb(128, 128, 128);
|
||||||
|
|
|
@ -1990,9 +1990,17 @@ requires
|
||||||
}
|
}
|
||||||
|
|
||||||
that.height = function(value) {
|
that.height = function(value) {
|
||||||
|
var percent = 8 / value * 100;
|
||||||
if (self.options.type == "textarea") {
|
if (self.options.type == "textarea") {
|
||||||
that.$element.height(value);
|
that.$element.height(value);
|
||||||
that.$input.height(value);
|
that.$input
|
||||||
|
.height(value)
|
||||||
|
.css({
|
||||||
|
background: "-moz-linear-gradient(top, rgb(224, 224, 224), rgb(240, 240, 240) " + percent + "%, rgb(240, 240, 240) " + (100 - percent) + "%, rgb(255, 255, 255))"
|
||||||
|
})
|
||||||
|
.css({
|
||||||
|
background: "-webkit-gradient(linear, left top, left bottom, from(rgb(224, 224, 224)), color-stop(" + (percent / 100) + ", rgb(240, 240, 240)), color-stop(" + (1 - percent / 100) + ", rgb(240, 240, 240)), to(rgb(255, 255, 255)));"
|
||||||
|
});
|
||||||
}
|
}
|
||||||
return that;
|
return that;
|
||||||
}
|
}
|
||||||
|
|
|
@ -514,7 +514,7 @@
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
placeholder: "some\ntext",
|
placeholder: "some\ntext",
|
||||||
type: "textarea"
|
type: "textarea"
|
||||||
}).width(400).height(200).addClass("margin").appendTo(mainPanel);
|
}).width(400).height(100).addClass("margin").appendTo(mainPanel);
|
||||||
|
|
||||||
//*/
|
//*/
|
||||||
function openDialog() {
|
function openDialog() {
|
||||||
|
|
Loading…
Reference in a new issue