-
-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move expand click node to the entire control row to more easily expan…
…d/collapse Control - Move sublayer menu for dynamic layers to hamburger style menu with indent
- Loading branch information
Showing
6 changed files
with
42 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
viewer/js/gis/dijit/LayerControl/controls/templates/Control.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
viewer/js/gis/dijit/LayerControl/controls/templates/Folder.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 11 additions & 6 deletions
17
viewer/js/gis/dijit/LayerControl/controls/templates/Sublayer.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
<div> | ||
<table> | ||
<tr> | ||
<td data-dojo-attach-point="expandClickNode" class="layerControlTableExpand"> | ||
<div class="layerControl layerControlSublayer"> | ||
<table class="layerControlTable"> | ||
<tr data-dojo-attach-point="expandClickNode"> | ||
<td class="layerControlTableExpand"> | ||
<i data-dojo-attach-point="expandIconNode" class="fa ${icons.expand} layerControlIcon"></i> | ||
</td> | ||
<td class="layerControlTableCheck"> | ||
<i data-dojo-attach-point="checkNode" class="fa ${icons.unchecked} layerControlIcon"></i> | ||
</td> | ||
<td class="layerControlTableLabel"> | ||
<span data-dojo-attach-point="labelNode"></span> | ||
<span data-dojo-attach-point="iconNode"></span> | ||
<span data-dojo-attach-point="iconNode" class="icon-extra"></span> | ||
<td class="layerControlTableUpdate"> | ||
<i data-dojo-attach-point="layerUpdateNode" class="fa ${icons.update} fa-spin layerControlUpdateIcon" style="display:none;"></i> | ||
</td> | ||
<td data-dojo-attach-point="menuClickNode" class="layerControlTableMenu"> | ||
<i data-dojo-attach-point="menuNode" class="fa ${icons.menu} layerControlMenuIcon"></i> | ||
</td> | ||
</tr> | ||
</table> | ||
<div data-dojo-attach-point="expandNode" class="layerControlIndent" style="display:none;">${i18n.noLegend}</div> | ||
<div data-dojo-attach-point="expandNode" class="layerControlIndent layerControlExpand" style="display:none;"></div> | ||
</div> |