editor.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. body, html {
  2. font-family: tahoma,arial,helvetica,sans-serif;
  3. font-size: 12px;
  4. }
  5. /*********
  6. * SVG Style
  7. */
  8. text,
  9. text * {
  10. cursor:default;
  11. -webkit-user-select: none;
  12. }
  13. /*********
  14. * HEADER SECTION
  15. *
  16. */
  17. #oryx_canvas_htmlContainer {
  18. }
  19. .ORYX_Editor {
  20. background: white;
  21. border: none;
  22. margin:-5px;
  23. margin-top:0px;
  24. width:100%;
  25. height:100%;
  26. }
  27. .icon-large {
  28. width:18px !important;
  29. }
  30. #oryxcanvas {
  31. width:1200px;
  32. height:600px;
  33. }
  34. /** Resizer for the Canvas **/
  35. .canvas_resize_indicator_area {
  36. margin :auto;
  37. display :block;
  38. height :30px;
  39. left :20%;
  40. position :absolute;
  41. text-align :center;
  42. top :0;
  43. width :60%;
  44. }
  45. .canvas_resize_indicator {
  46. width : 15px;
  47. height : 15px;
  48. position : absolute;
  49. display : block;
  50. margin : auto;
  51. opacity : 0.6;
  52. }
  53. .canvas_resize_indicator:hover {
  54. opacity : 1.0;
  55. }
  56. /** End Resizer **/
  57. .Oryx_down {
  58. }
  59. .Oryx_button img {
  60. width:16px;
  61. height:16px;
  62. top:0px;
  63. left:0px;
  64. line-height: 16px;
  65. }
  66. .Oryx_Right .Oryx_button,
  67. .Oryx_Left .Oryx_button,
  68. .Oryx_Top .Oryx_button,
  69. .Oryx_Bottom .Oryx_button {
  70. opacity: 0.5;
  71. }
  72. .Oryx_button.x-opacity-0 {
  73. opacity: 0;
  74. display:none;
  75. }
  76. .Oryx_button.x-opacity-10 {
  77. opacity: 0.1;
  78. }
  79. .Oryx_button.x-opacity-20 {
  80. opacity: 0.2;
  81. }
  82. .Oryx_button.x-opacity-50 {
  83. opacity: 0.5;
  84. }
  85. .Oryx_Right:hover .Oryx_button,
  86. .Oryx_Left:hover .Oryx_button,
  87. .Oryx_Top:hover .Oryx_button,
  88. .Oryx_Bottom:hover .Oryx_button {
  89. opacity: 0.7;
  90. display:block;
  91. }
  92. .Oryx_button img {
  93. top:0px;
  94. }
  95. .Oryx_Left img {
  96. top:0px;
  97. }
  98. .Oryx_button {
  99. width:24px;
  100. height:24px;
  101. padding:2px;
  102. position:absolute;
  103. background-color: #ffffff;
  104. background-color: rgba(255,255,255,0.7);
  105. cursor: pointer;
  106. }
  107. .Oryx_button_with_caption {
  108. width:inherit;
  109. height:16px;
  110. padding:4px;
  111. position:absolute;
  112. }
  113. /*** Resizer ***/
  114. .resizer_southeast,
  115. .resizer_northwest {
  116. width:12px;
  117. height:12px;
  118. position:relative;
  119. background-color: transparent;
  120. background-repeat:no-repeat;
  121. }
  122. /*** Selection Frame ***/
  123. .Oryx_SelectionFrame{
  124. position:absolute;
  125. border:1px dotted gray;
  126. background:none;
  127. }
  128. .LoadingIndicator {
  129. background-image: url('../../images/loading.gif');
  130. }
  131. .Oryx_hover, .Oryx_button:hover {
  132. background-color: #999999;
  133. background-color: rgba(193, 229, 238, 0.7);
  134. opacity: 1 !important;
  135. -webkit-border-radius: 3px;
  136. -moz-border-radius: 3px;
  137. border-radius: 3px;
  138. }
  139. .ValidateButton {
  140. width:24px;
  141. height:24px;
  142. padding:2px;
  143. position:absolute;
  144. cursor: pointer;
  145. }
  146. .ValidateButton:hover {
  147. background-color: #999999;
  148. background-color: rgba(193, 229, 238, 0.7);
  149. opacity: 1 !important;
  150. -webkit-border-radius: 3px;
  151. -moz-border-radius: 3px;
  152. border-radius: 3px;
  153. }
  154. .resizer_southeast {
  155. background-image:url(../../images/se-handle-dark.gif);
  156. cursor: se-resize;
  157. background-position: 4px 4px;
  158. }
  159. .resizer_northwest {
  160. background-image:url(../../images/nw-handle-dark.gif);
  161. cursor: nw-resize;
  162. background-position: -2px -2px;
  163. }