mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-25 12:46:21 +10:00
[임대현] [NOBTS] #31 Scatter 환경설정 UI 깨짐
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@3217 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -41,36 +41,17 @@ div.jquery-drag-to-select.active {
|
||||
}
|
||||
|
||||
.bigscatterchart .config .input {
|
||||
width:50px;font-size:10px;padding:4px 2px;border:solid 1px #aacfe4;margin:2px 0 10px 10px;
|
||||
height:12px;
|
||||
width:50px;font-size:10px;padding:4px 2px;border:solid 1px #aacfe4;margin:2px 0 2px 10px;
|
||||
height:16px;
|
||||
}
|
||||
|
||||
.bigscatterchart .config .apply {
|
||||
margin-left:48px;
|
||||
margin-left:40px;
|
||||
}
|
||||
.bigscatterchart .config .cancel {
|
||||
margin-left:10px
|
||||
}
|
||||
|
||||
.bigscatterchart .config .button {
|
||||
display:inline-block;outline:none;padding:.1em .7em;cursor:pointer;font-size:11px;
|
||||
text-shadow:0 1px 1px rgba(0,0,0,.3);-webkit-border-radius:.5em;-moz-border-radius:.5em;
|
||||
border-radius:.5em;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);
|
||||
box-shadow:0 1px 2px rgba(0,0,0,.2);color: #d9eef7;border: solid 1px #0076a3;background: #0095cd;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
|
||||
background: -moz-linear-gradient(top, #00adee, #0078a5);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
|
||||
}
|
||||
|
||||
.bigscatterchart .config .button:hover {
|
||||
background: #007ead;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
|
||||
background: -moz-linear-gradient(top, #0095cc, #00678e);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
|
||||
}
|
||||
.bigscatterchart .config .button:active {
|
||||
color: #80bed6;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
|
||||
background: -moz-linear-gradient(top, #0078a5, #00adee);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
|
||||
.bigscatterchart .config .btn {
|
||||
margin-top: 5px;
|
||||
}
|
||||
@@ -526,8 +526,8 @@ var BigScatterChart = $.Class({
|
||||
.append('<input type="text" name="' + sYMin + '" id="' + sYMin + '" class="input"/>')
|
||||
.append('<label for="' + sYMax + '" class="label">Max of Y axis</label>')
|
||||
.append('<input type="text" name="' + sYMax + '" id="' + sYMax + '" class="input"/>')
|
||||
.append(this._welConfigApply = $('<button type="button" class="apply btn btn-small">Apply</button>'))
|
||||
.append(this._welConfigCancel = $('<button type="button" class="cancel btn btn-small">Cancel</button>'));
|
||||
.append(this._welConfigApply = $('<button type="button" class="apply btn btn-default btn-xs">Apply</button>'))
|
||||
.append(this._welConfigCancel = $('<button type="button" class="cancel btn btn-default btn-xs">Cancel</button>'));
|
||||
|
||||
this._welConfigApply.click(function () {
|
||||
var nYMin = parseInt($('#' + sYMin).val(), 10),
|
||||
|
||||
Reference in New Issue
Block a user