module.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <kibana-panel ng-controller='map' ng-init="init()">
  2. <style>
  3. .jvectormap-label {
  4. position: absolute;
  5. display: none;
  6. border: solid 1px #CDCDCD;
  7. -webkit-border-radius: 3px;
  8. -moz-border-radius: 3px;
  9. border-radius: 3px;
  10. background: #292929;
  11. color: white;
  12. font-family: sans-serif, Verdana;
  13. font-size: smaller;
  14. padding: 3px;
  15. }
  16. .jvectormap-zoomin, .jvectormap-zoomout {
  17. position: absolute;
  18. left: 10px;
  19. -webkit-border-radius: 3px;
  20. -moz-border-radius: 3px;
  21. border-radius: 3px;
  22. background: #292929;
  23. padding: 3px;
  24. color: white;
  25. width: 10px;
  26. height: 10px;
  27. cursor: pointer;
  28. line-height: 10px;
  29. text-align: center;
  30. }
  31. .jvectormap-zoomin {
  32. display: none;
  33. top: 10px;
  34. }
  35. .jvectormap-zoomout {
  36. display: none;
  37. top: 30px;
  38. }
  39. </style>
  40. <span ng-show="panel.spyable" class='spy panelextra pointer'>
  41. <i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
  42. </span>
  43. <div map params="{{panel}}" style="height:{{panel.height || row.height}}"></div>
  44. </kibana-panel>