Refactoring treeview border
This commit is contained in:
parent
0beb1fbaba
commit
c19306c83d
|
@ -164,7 +164,7 @@ define([
|
|||
},
|
||||
|
||||
template: _.template([
|
||||
'<div class="treeview inner"></div>'
|
||||
'<div class="treeview inner" style="<%= style %>"></div>'
|
||||
].join('')),
|
||||
|
||||
initialize : function(options) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
.treeview {
|
||||
border: 1px solid @input-border;
|
||||
.border-radius(@border-radius-small);
|
||||
|
||||
&.inner {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
|
|
@ -83,7 +83,7 @@ define([
|
|||
'<div class="input-row">',
|
||||
'<label>' + this.textUrl + '</label>',
|
||||
'</div>',
|
||||
'<div id="id-dlg-hyperlink-list" style="width:100%; height: 171px;border: 1px solid #cfcfcf;"></div>',
|
||||
'<div id="id-dlg-hyperlink-list" style="width:100%; height: 171px;"></div>',
|
||||
'</div>',
|
||||
'<div class="input-row">',
|
||||
'<label>' + this.textDisplay + '</label>',
|
||||
|
|
|
@ -70,7 +70,8 @@ define([
|
|||
store: this.storeNavigation,
|
||||
enableKeyEvents: false,
|
||||
emptyText: this.txtEmpty,
|
||||
emptyItemText: this.txtEmptyItem
|
||||
emptyItemText: this.txtEmptyItem,
|
||||
style: 'border: none;'
|
||||
});
|
||||
this.viewNavigationList.cmpEl.off('click');
|
||||
this.navigationMenu = new Common.UI.Menu({
|
||||
|
|
|
@ -85,7 +85,7 @@ define([
|
|||
'<div class="input-row">',
|
||||
'<label>' + this.strLinkTo + '</label>',
|
||||
'</div>',
|
||||
'<div id="id-dlg-hyperlink-list" style="width:100%; height: 171px;border: 1px solid #cfcfcf;"></div>',
|
||||
'<div id="id-dlg-hyperlink-list" style="width:100%; height: 171px;"></div>',
|
||||
'</div>',
|
||||
'<div class="input-row">',
|
||||
'<label>' + this.strDisplay + '</label>',
|
||||
|
|
|
@ -87,7 +87,7 @@ define([
|
|||
'</div>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div id="id-dlg-hyperlink-list" style="width:100%; height: 115px;border: 1px solid #cfcfcf;"></div>',
|
||||
'<div id="id-dlg-hyperlink-list" style="width:100%; height: 115px;"></div>',
|
||||
'<div class="input-row">',
|
||||
'<label>' + this.strRange + '</label>',
|
||||
'</div>',
|
||||
|
|
Loading…
Reference in a new issue