Skip to content

Commit

Permalink
COLORADO-1688 Shrunk the search area to accomodate the Add Collection…
Browse files Browse the repository at this point in the history
… button

The Add Collection button increased the width of the collection display header to
the point where buttons were being lost over the right-hand edge of the screen.  To
accomodate the new button, the width of the search text area is slightly reduced.
  • Loading branch information
discoverygnoye committed Nov 24, 2011
1 parent cc6091b commit 2ac0145
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions js/ADRCollection.xds
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@
"jsClass": "MySpacer2",
"snapToGrid": 10,
"userConfig": {
"width": 10
"width": 5
}
},
{
Expand All @@ -525,7 +525,7 @@
"snapToGrid": 10,
"userConfig": {
"id": "adr-content-search-text",
"width": 300,
"width": 280,
"triggerClass": "x-form-search-trigger"
}
},
Expand Down
4 changes: 2 additions & 2 deletions js/Content.ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ ContentUi = Ext.extend(Ext.Panel, {
},
{
xtype: 'tbspacer',
width: 10
width: 5
},
{
xtype: 'trigger',
width: 300,
width: 280,
triggerClass: 'x-form-search-trigger',
id: 'adr-content-search-text'
},
Expand Down

0 comments on commit 2ac0145

Please sign in to comment.