popup.css 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. .highcharts-popup.highcharts-annotation-toolbar {
  2. right: 10%;
  3. left: auto;
  4. height: 40px;
  5. padding-right: 40px;
  6. width: auto;
  7. min-width: 0;
  8. }
  9. .highcharts-popup.highcharts-annotation-toolbar button {
  10. margin-top: 0px;
  11. }
  12. .highcharts-popup.highcharts-annotation-toolbar > span {
  13. display: block;
  14. float: left;
  15. padding: 12px;
  16. }
  17. .highcharts-popup {
  18. background-color: #fff;
  19. color: #666;
  20. display: none;
  21. font-size: 0.876em;
  22. max-height: 90%;
  23. top: 5%;
  24. left: 15%;
  25. width: 75%;
  26. min-width: 300px;
  27. max-width: 600px;
  28. position: absolute;
  29. z-index: 100;
  30. -webkit-box-shadow: 0px 0px 8px 0px rgba(61, 61, 61, 0.3);
  31. -moz-box-shadow: 0px 0px 8px 0px rgba(61, 61, 61, 0.3);
  32. box-shadow: 0px 0px 8px 0px rgba(61, 61, 61, 0.3);
  33. }
  34. .highcharts-popup div, .highcharts-popup span {
  35. box-sizing: content-box;
  36. }
  37. .highcharts-popup input, .highcharts-popup label, .highcharts-popup select {
  38. clear: both;
  39. float: left;
  40. width: 100%;
  41. margin-bottom: 10px;
  42. }
  43. .highcharts-popup input {
  44. border: 1px solid #e6e6e6;
  45. padding: 5px;
  46. width: calc(100% - 12px);
  47. }
  48. .highcharts-popup-lhs-col, .highcharts-popup-rhs-col {
  49. padding: 20px;
  50. height: calc(100% - 84px);
  51. /* 44px - padding, 40px - tabs*/
  52. float: left;
  53. }
  54. .highcharts-popup-lhs-col.highcharts-popup-lhs-full {
  55. width: calc(100% - 52px);
  56. overflow-y: auto;
  57. overflow-x: hidden;
  58. height: calc(100% - 140px);
  59. border: none;
  60. padding: 0px 20px 20px 20px;
  61. }
  62. .highcharts-popup-lhs-col.highcharts-popup-lhs-full + .highcharts-popup-bottom-row {
  63. width: calc(100% - 32px);
  64. }
  65. .highcharts-popup-lhs-col {
  66. clear: both;
  67. width: calc(30% - 44px);
  68. border-right: 1px solid #e6e6e6;
  69. }
  70. .highcharts-popup-bottom-row {
  71. float: left;
  72. padding: 0px 20px;
  73. width: calc(100% - 40px);
  74. }
  75. .highcharts-popup-rhs-col {
  76. width: calc(70% - 40px);
  77. }
  78. .highcharts-popup-rhs-col-wrapper {
  79. float: left;
  80. width: calc(100% - 20px);
  81. padding-right: 20px;
  82. height: calc(100% - 40px);
  83. overflow-y: auto;
  84. overflow-x: hidden;
  85. }
  86. .highcharts-popup-rhs-col-wrapper h3 {
  87. margin-top: 0px;
  88. padding-bottom: 0px;
  89. }
  90. .highcharts-bindings-wrapper ul.highcharts-indicator-list,
  91. .highcharts-indicator-list {
  92. float: left;
  93. color: #666;
  94. height: 100%;
  95. width: 100%;
  96. overflow-y: auto;
  97. overflow-x: hidden;
  98. margin: 0px;
  99. padding: 0px;
  100. }
  101. .highcharts-indicator-list li {
  102. cursor: pointer;
  103. padding: 0px 0px 5px 0px;
  104. margin: 0px;
  105. width: 100%;
  106. height: auto;
  107. overflow: hidden;
  108. word-break: break-all;
  109. }
  110. .highcharts-indicator-list li:hover {
  111. background-color: #e6ebf5;
  112. }
  113. .highcharts-tab-item {
  114. background-color: #f7f7f7;
  115. cursor: pointer;
  116. display: block;
  117. float: left;
  118. padding: 10px;
  119. height: 20px;
  120. }
  121. .highcharts-tab-item.highcharts-tab-item-active {
  122. background-color: #e6ebf5;
  123. }
  124. .highcharts-tab-item-content {
  125. display: none;
  126. float: left;
  127. height: 100%;
  128. overflow: hidden;
  129. width: 100%;
  130. border-top: 1px solid #e6e6e6;
  131. }
  132. .highcharts-tab-item-show {
  133. display: block;
  134. }
  135. .highcharts-popup-close {
  136. background: url("https://code.highcharts.com/7.0.2/gfx/stock-icons/close.svg") no-repeat 50% 50%;
  137. width: 20px;
  138. height: 20px;
  139. cursor: pointer;
  140. position: absolute;
  141. padding: 10px;
  142. top: 0%;
  143. right: 0%;
  144. color: #333333;
  145. }
  146. .highcharts-popup-close:hover,
  147. .highcharts-popup button:hover,
  148. .highcharts-popup button.highcharts-annotation-edit-button:hover,
  149. .highcharts-popup button.highcharts-annotation-remove-button:hover {
  150. background-color: #e6ebf5;
  151. }
  152. .highcharts-popup button {
  153. float: right;
  154. border: none;
  155. background: #f7f7f7;
  156. color: #666;
  157. margin-left: 5px;
  158. margin-top: 12px;
  159. }
  160. .highcharts-popup button:first-child {
  161. margin-left: 0;
  162. }
  163. .highcharts-tab-disabled {
  164. color: #ccc;
  165. }
  166. /* annotation edit small popup */
  167. .highcharts-popup button.highcharts-annotation-edit-button,
  168. .highcharts-popup button.highcharts-annotation-remove-button {
  169. width: 20px;
  170. height: 40px;
  171. padding: 20px;
  172. }
  173. .highcharts-popup button.highcharts-annotation-edit-button {
  174. background: url("https://code.highcharts.com/7.0.2/gfx/stock-icons/edit.svg") no-repeat 50% 50% transparent;
  175. text-indent: -9999px;
  176. }
  177. .highcharts-popup button.highcharts-annotation-remove-button {
  178. background: url("https://code.highcharts.com/7.0.2/gfx/stock-icons/destroy.svg") no-repeat 50% 50% transparent;
  179. text-indent: -9999px;
  180. }
  181. .highcharts-popup .highcharts-annotation-title {
  182. display: block;
  183. float: left;
  184. font-size: 1.2em;
  185. font-weight: bold;
  186. margin-bottom: 15px;
  187. width: 100%;
  188. }
  189. .highcharts-popup .highcharts-popup-main-title {
  190. border-bottom: 1px solid #e6e6e6;
  191. margin: 0px 0px 20px 0px;
  192. padding: 8px 0px 6px 20px;
  193. }
  194. .highcharts-indicator-title {
  195. float: left;
  196. padding-bottom: 15px;
  197. }