Committed by
Gerrit Code Review
GUI -- Minor adjustments to sample UI components (archetypes).
Change-Id: I410fc1822b0a3dac279b1e070e008a9c7b5d1b03
Showing
3 changed files
with
7 additions
and
3 deletions
... | @@ -123,8 +123,8 @@ public class AppUiTableMessageHandler extends UiMessageHandler { | ... | @@ -123,8 +123,8 @@ public class AppUiTableMessageHandler extends UiMessageHandler { |
123 | // fake data for demonstration purposes... | 123 | // fake data for demonstration purposes... |
124 | Item item = getItem(id); | 124 | Item item = getItem(id); |
125 | 125 | ||
126 | - ObjectNode rootNode = MAPPER.createObjectNode(); | 126 | + ObjectNode rootNode = objectNode(); |
127 | - ObjectNode data = MAPPER.createObjectNode(); | 127 | + ObjectNode data = objectNode(); |
128 | rootNode.set(DETAILS, data); | 128 | rootNode.set(DETAILS, data); |
129 | 129 | ||
130 | if (item == null) { | 130 | if (item == null) { | ... | ... |
1 | /* css for sample app view */ | 1 | /* css for sample app view */ |
2 | 2 | ||
3 | -#ov-sample h2 { | 3 | +#ov-sample-table h2 { |
4 | display: inline-block; | 4 | display: inline-block; |
5 | } | 5 | } |
6 | 6 | ||
7 | +#ov-sample-table div.ctrl-btns { | ||
8 | + width: 45px; | ||
9 | +} | ||
10 | + | ||
7 | /* Panel Styling */ | 11 | /* Panel Styling */ |
8 | #ov-sample-table-item-details-panel.floatpanel { | 12 | #ov-sample-table-item-details-panel.floatpanel { |
9 | position: absolute; | 13 | position: absolute; | ... | ... |
-
Please register or login to post a comment