Advertisement
gaz_lloyd

Untitled

Mar 18th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.63 KB | None | 0 0
  1. #modal,
  2. #GEchartpopup {
  3.     position: fixed;
  4.     top: 150px;
  5.     left: 0;
  6.     width: 975px;
  7.     z-index: 52;
  8.     background: #fff;
  9.     color: #000;
  10.     padding: 10px;
  11.     border: 3px solid black;
  12.     font-size: 10pt;
  13. }
  14.  
  15. #GEchartpopup {
  16.     min-width: 700px;
  17.     min-height: 525px;
  18.     width: 85%;
  19.     height: 80%;
  20.     left: 7%;
  21.     top: 10%;
  22.     overflow: auto;
  23. }
  24.  
  25. #GEchartpopup,
  26. .highcharts-container,
  27. .highcharts-range-selector,
  28. form[id^="chartProperties"],
  29. form[id^="chartProperties"] *,
  30. [id^="addedItems"] {
  31.     font-size: 12px;
  32.     font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, sans-serif;
  33. }
  34.  
  35. .smallChart .highcharts-range-selector {
  36.     display: none;
  37. }
  38.  
  39. .smallChart .highcharts-button title + rect {
  40.     display: none;
  41. }
  42.  
  43. #GEchartpopup #closepopup {
  44.     float: right;
  45.     z-index: 100;
  46.     margin-bottom: 5px;
  47. }
  48.  
  49. #GEchartpopup #itemstats {
  50.     width: 200px;
  51.     font-size: 11px;
  52.     position: absolute;
  53.     bottom: 50px;
  54.     right: 45px;
  55.     z-index: 10;
  56. }
  57.  
  58. #GEchartpopup #itemstats caption {
  59.     cursor: pointer;
  60.     text-align: right;
  61. }
  62.  
  63. #GEpopupchart {
  64.     height: 500px;
  65.     margin-right: 100px;
  66. }
  67.  
  68. .highcharts-container .highcharts-range-selector {
  69.     font-size: 11px;
  70. }
  71.  
  72. .GEPermLink {
  73.     float: right;
  74.     font-size: 14px;
  75. }
  76.  
  77. .GEPermLink ~ .GEdatachart {
  78.     clear: right;
  79. }
  80.  
  81. form[id^="chartProperties"] button {
  82.     margin: 3px;
  83. }
  84.  
  85. .smallChart .highcharts-title {
  86.     white-space: nowrap !important;
  87. }
  88.  
  89. .smallChart .zoomButton,
  90. .smallChart svg > text:first-of-type,
  91. .smallChart .highcharts-input-group {
  92.     display: none;
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement