shared.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /* all em default styles */
  2. .hue-shared em, .hue-shared i {
  3. font-style: italic;
  4. }
  5. /* all code default styles */
  6. .hue-shared .hue-code, .hue-shared.hue-code, .hue-code {
  7. font-family: "Andale Mono", "Monaco", "Courier New" !important;
  8. }
  9. table a.hue-table_config_link {
  10. display: inline-block;
  11. width: 16px;
  12. height: 16px;
  13. padding: 0px 4px;
  14. background: no-repeat 50% 50% url(../art/icons/small_cog.png);
  15. position: relative;
  16. }
  17. .hue-table_config {
  18. position: absolute;
  19. background: #fff;
  20. border: 1px solid #777;
  21. border-radius: 2px;
  22. -moz-border-radius: 2px;
  23. -webkit-border-radius: 2px;
  24. min-width: 200px;
  25. left: 25px;
  26. top: 5px;
  27. z-index: 10;
  28. }
  29. .hue-shared .jframe-resize_handle {
  30. position: absolute;
  31. bottom: 2px;
  32. right: 2px;
  33. background: url(../art/resize-handle.png);
  34. text-indent: -200px;
  35. overflow: hidden;
  36. width: 7px;
  37. height: 7px;
  38. cursor: se-resize;
  39. }
  40. .hue-table_config label {
  41. display: block;
  42. }
  43. .hue-table_config label:hover {
  44. color: #36f;
  45. }
  46. .hue-table_config ul {
  47. padding: 2px;
  48. height: 125px;
  49. min-width: 200px;
  50. overflow: auto;
  51. border-bottom:1px solid #777;
  52. }
  53. .hue-table_config li, .hue-sort_handle {
  54. user-select: none;
  55. -moz-user-select: none;
  56. -webkit-user-select: none;
  57. padding: 2px 2px 2px 14px;
  58. border: 1px solid #ccc;
  59. border-radius: 2px;
  60. -moz-border-radius: 2px;
  61. -webkit-border-radius: 2px;
  62. margin-bottom: 2px;
  63. background: #fff url(../art/sortable-handle.png) 5px 50% no-repeat;
  64. }
  65. .hue-table_config li input {
  66. margin-right: 6px;
  67. }
  68. .hue-table_config .art {
  69. margin: 4px;
  70. }
  71. /* stickywin solid; this is the login window styles */
  72. div.solid-win div.body-left {
  73. background: url(../art/sticky-win-solid-back.png);
  74. width: 16px !important;
  75. overflow: visible;
  76. position: relative;
  77. z-index: 1;
  78. }
  79. div.solid-win div.body {
  80. position: relative;
  81. left: 16px;
  82. padding: 10px 16px 1px 0px;
  83. background: url(../art/sticky-win-solid-back.png) top right;
  84. }
  85. div.solid-win div.bottom {
  86. z-index: 0;
  87. background: url(../art/sticky-win-solid-back.png) bottom left;
  88. width: 16px !important;
  89. overflow: visible;
  90. position: relative;
  91. clear: both;
  92. }
  93. div.solid-win div.bottom_lr {
  94. position: relative;
  95. left: 16px;
  96. background: url(../art/sticky-win-solid-back.png) bottom right;
  97. height: 20px;
  98. padding-right: 16px;
  99. }
  100. .huechart .tip-wrap {
  101. width: 139px;
  102. z-index: 13000;
  103. }
  104. .huechart .tip-title {
  105. -moz-border-radius-topleft: 5px;
  106. -moz-border-radius-topright: 5px;
  107. font-weight: bold;
  108. font-size: 11px;
  109. margin: 0;
  110. padding: 4px 8px 0px;
  111. background: black;
  112. opacity: .8;
  113. filter: alpha(opacity=80);
  114. }
  115. .huechart .tip-series-name {
  116. color: #9FD4FF;
  117. font-weight: bold;
  118. }
  119. .huechart .tip-text {
  120. -moz-border-radius-bottomleft: 5px;
  121. -moz-border-radius-bottomright: 5px;
  122. font-size: 11px;
  123. padding: 0px 8px 8px;
  124. background: black;
  125. color: white;
  126. opacity: .8;
  127. filter: alpha(opacity=80);
  128. }
  129. .huechart .tip-series-color {
  130. width: 3px;
  131. height: 3px;
  132. border: 1px solid white;
  133. padding: 2px;
  134. top: 4px;
  135. display: inline-block;
  136. margin-right: 5px;
  137. float: left;
  138. }
  139. .huechart .tip-series-value {
  140. text-align: center;
  141. }