module.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <kibana-panel ng-controller='map2' ng-init="init()">
  2. <style>
  3. .overlay {
  4. fill: none;
  5. pointer-events: all;
  6. }
  7. .land {
  8. fill: #D1D1D1;
  9. stroke: #595959;
  10. stroke-linejoin: round;
  11. stroke-linecap: round;
  12. stroke-width: .1px;
  13. }
  14. .boundary {
  15. fill: none;
  16. stroke: #000;
  17. stroke-linejoin: round;
  18. stroke-linecap: round;
  19. }
  20. .hexagon {
  21. fill: none;
  22. stroke: #000;
  23. stroke-width: .1px;
  24. }
  25. .q1 { fill:rgb(247,251,255); }
  26. .q2 { fill:rgb(222,235,247); }
  27. .q3 { fill:rgb(198,219,239); }
  28. .q4 { fill:rgb(158,202,225); }
  29. .q5 { fill:rgb(107,174,214); }
  30. .q6 { fill:rgb(66,146,198); }
  31. .q7 { fill:rgb(33,113,181); }
  32. .q8 { fill:rgb(8,81,156); }
  33. .q9 { fill:rgb(8,48,107); }
  34. .arc {
  35. stroke: #f00;
  36. stroke-width: .5px;
  37. fill: none;
  38. }
  39. .geopoint {
  40. stroke: #000;
  41. stroke-width: .5px;
  42. fill: #000;
  43. }
  44. .dropdown-menu{position:absolute;top:auto;left:auto;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}
  45. </style>
  46. <span ng-show="panel.spyable" style="position:absolute;right:0px;top:0px" class='panelextra pointer'>
  47. <i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
  48. </span>
  49. <div map2 params="{{panel}}" style="height:{{panel.height || row.height}}"></div>
  50. </kibana-panel>