Guest User

Untitled

a guest
Jun 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. /* Introduction
  2. CSS rules for the Layer widget is Esri's Web AppBuilder.
  3. For layer widgets that are expanded on map load, legend items will show
  4. with their symbols instead of a loading icon.
  5.  
  6. Place these style rules within the <style> tag of the index.html file.
  7. Or, create a new style.css file and link to it in the index.html file
  8. */
  9.  
  10. /* Layer list expanded by default */
  11. .jimu-widget-layerList table.layer-sub-node {
  12. display: table;
  13. }
  14.  
  15. /* layer list legend hidden so it loads properly */
  16. .jimu-widget-layerList table.layer-sub-node .legends-loading-img {
  17. display: none;
  18. }
Add Comment
Please, Sign In to add comment