jggui.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. *{
  2. font-family:"Arial","Helvetica","Verdana","FreeSans","sans-serif";
  3. font-size:11px
  4. }
  5. .right{
  6. float:right;
  7. }
  8. .clearfix{
  9. clear:both;
  10. }
  11. /* THICKBOX CSS */
  12. /* ----------------------------------------------------------------------------------------------------------------*/
  13. /* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/
  14. /* ----------------------------------------------------------------------------------------------------------------*/
  15. *{padding: 0; margin: 0;}
  16. /* ----------------------------------------------------------------------------------------------------------------*/
  17. /* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
  18. /* ----------------------------------------------------------------------------------------------------------------*/
  19. #JGG_window {
  20. font: 12px Arial, Helvetica, sans-serif;
  21. color: #333333;
  22. }
  23. /* ----------------------------------------------------------------------------------------------------------------*/
  24. /* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
  25. /* ----------------------------------------------------------------------------------------------------------------*/
  26. #JGG_overlay {
  27. position: fixed;
  28. z-index:100;
  29. top: 0px;
  30. left: 0px;
  31. height:100%;
  32. width:100%;
  33. }
  34. .JGG_overlayMacFFBGHack {background: url(macFFBgHack.png) repeat;}
  35. .JGG_overlayBG {
  36. background-color:#000;
  37. filter:alpha(opacity=75);
  38. -moz-opacity: 0.75;
  39. opacity: 0.75;
  40. }
  41. * html #JGG_overlay { /* ie6 hack */
  42. position: absolute;
  43. height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
  44. }
  45. #JGG_window {
  46. position: fixed;
  47. background: #000;
  48. z-index: 102;
  49. color:#000000;
  50. display:none;
  51. border: 4px solid #525252;
  52. text-align:left;
  53. top:50%;
  54. left:50%;
  55. }
  56. * html #JGG_window { /* ie6 hack */
  57. position: absolute;
  58. margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (JGGWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
  59. }
  60. #JGG_window div#JGG_content {
  61. display:block;
  62. /*margin: 15px 0 0 15px;*/
  63. margin: 0 0 0 0;
  64. }
  65. #JGG_HideSelect{
  66. z-index:99;
  67. position:fixed;
  68. top: 0;
  69. left: 0;
  70. background-color:#fff;
  71. border:none;
  72. filter:alpha(opacity=0);
  73. -moz-opacity: 0;
  74. opacity: 0;
  75. height:100%;
  76. width:100%;
  77. }
  78. * html #JGG_HideSelect { /* ie6 hack */
  79. position: absolute;
  80. height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
  81. }
  82. /* THICKBOX CSS */
  83. #JGG_content{
  84. }
  85. #JGG_top{
  86. height:300px;width:100%;padding-top:10px;padding-bottom:10px;margin:auto;text-align:center;overflow:auto;
  87. }
  88. #JGG_bottom{
  89. width:100%;
  90. }
  91. #jggui{
  92. padding-bottom:5px;
  93. width:100%;
  94. }
  95. #jggui input{
  96. background:#000;
  97. color:#fff;
  98. border:0px solid #000;
  99. }
  100. #jggui input.button{
  101. border:1px solid #fff;
  102. padding:5px;
  103. font-weight:bold;
  104. }
  105. #jggui input.title{
  106. border:1px solid #fff;
  107. width:100%;
  108. }
  109. .icon{padding:10px;float:left;text-align:center;margin:auto;width:100px;border:1px solid #999;margin:5px;background:#464b5c}
  110. .pressed{background:#fff;cursor:hand;}
  111. textarea.export{width:90%;border:0px;}
  112. div.export{padding:0px;padding-top:1px;}
  113. ul.export li a{font-size:0.9em;}
  114. /* COLORPICKER DEMO THEMEROLLER */
  115. div.hasPicker {
  116. position: static;
  117. width: 80px;
  118. }
  119. input.hex {
  120. width: 58px;
  121. /*height: 1.2em;*/
  122. padding-left: 4px;
  123. border: 1px solid #444;
  124. border-right: none;
  125. float: left;
  126. outline: 0;
  127. }
  128. .pickerIcon {
  129. background:#333 url(img/icon_color_arrow.gif) no-repeat scroll 50%;
  130. border: 1px solid #444;
  131. display:block;
  132. float: right;
  133. outline: 0 !important;
  134. }
  135. .pickerIcon span.inner {
  136. display: block;
  137. height: 14px;/*1.5em;*/
  138. width:14px;
  139. }
  140. input.spinner, input.hex, select {
  141. border: 1px solid #333;
  142. background: #222;
  143. color: #fff;
  144. font-size: 1.1em;
  145. padding-left: 3px;
  146. }
  147. input.hex:focus, select:focus {
  148. background: #111;
  149. border-color: 1px solid #444;
  150. }
  151. input.hex:focus {
  152. border-right: none;
  153. }
  154. /* COLORPICKER DEMO THEMEROLLER */