editor-ext.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. .ORYX_Editor {
  2. background-color: unset;
  3. }
  4. div.canvas-wrapper {
  5. background: -webkit-linear-gradient(top, transparent 20px, #a0cfff 21px), -webkit-linear-gradient(left, transparent 20px, #a0cfff 21px);
  6. background-size: 21px 21px;
  7. }
  8. div.propertySection {
  9. background-color: #ffffff;
  10. }
  11. .propertySection.collapsed .selected-item-title {
  12. border-top: 1px solid #a4acb9;
  13. }
  14. .selected-item-title {
  15. font-size: 16px;
  16. border-top: 1px solid #a4acb9;
  17. }
  18. .selected-item-body > div {
  19. overflow: hidden;
  20. margin: 20px 20px;
  21. }
  22. button.btn, a.btn {
  23. background-color: #409EFF;
  24. color: #ffffff;
  25. border-color: #ffffff;
  26. font-size: 15px;
  27. }
  28. .editor-toolbar .btn.btn-inverse.disabled, .editor-toolbar .btn.btn-inverse[disabled], .editor-toolbar .btn.btn-inverse[disabled]:active, .editor-toolbar .btn.btn-inverse[disabled]:hover {
  29. background-color: #a0cfff;
  30. border-color: #a0cfff;
  31. }
  32. .editor-toolbar .btn.btn-inverse.separator {
  33. background: transparent;
  34. padding: 0px 5px 0px 5px;
  35. width: 1px;
  36. min-width: 1px;
  37. }
  38. .btn:hover, .btn.active, .btn:focus {
  39. background-color: #8cc5ff;
  40. border-color: #ffffff;
  41. color: #ffffff;
  42. }
  43. .subheader {
  44. background-color: #FFFFFF;
  45. min-height: 60px;
  46. }
  47. .subheader >div>.pull-right {
  48. margin-top: 12px;
  49. margin-right: 10px;
  50. }
  51. .editor-toolbar .btn.btn-inverse {
  52. font-size: 15px;
  53. height: 30px;
  54. min-width: 30px;
  55. padding: 0px 6px 0px 6px;
  56. }
  57. .editor-toolbar {
  58. padding-left: 15px;
  59. padding-top: 2px;
  60. }
  61. .stencil-item {
  62. cursor: pointer;
  63. margin: 10px;
  64. min-width: 120px;
  65. text-align: center;
  66. background-color: #ecf5ff;
  67. display: inline-block;
  68. height: 32px;
  69. padding: 0 10px;
  70. line-height: 30px;
  71. font-size: 14px;
  72. color: #409eff;
  73. border: 1px solid #d9ecff;
  74. border-radius: 4px;
  75. box-sizing: border-box;
  76. white-space: nowrap;
  77. }
  78. .stencil-group > li {
  79. list-style: none;
  80. list-style-position: outside;
  81. margin: 0px 0px 10px 10px;
  82. background-color: #ffffff;
  83. font-family: Arial, Regular;
  84. font-size: 16px;
  85. color: #323437;
  86. }
  87. .stencil-group > li img {
  88. margin-top: -3px;
  89. margin-right: 2px;
  90. }
  91. .modal .modal-header {
  92. position: relative;
  93. background-color: #ffffff;
  94. height: 45px;
  95. border-bottom: 1px solid #a4acb9;
  96. padding: 12px 15px;
  97. min-height: unset;
  98. }
  99. .modal-header h3 {
  100. font-size: 15px;
  101. font-weight: bold;
  102. margin-bottom: 10px;
  103. position: absolute;
  104. top: -6px;
  105. }
  106. .modal-header h2 {
  107. font-size: 15px;
  108. font-weight: bold;
  109. margin-bottom: 10px;
  110. position: absolute;
  111. top: -6px;
  112. }
  113. ::-webkit-scrollbar {
  114. width: 6px;
  115. height: 6px;
  116. }
  117. ::-webkit-scrollbar-thumb {
  118. border-radius: 6px;
  119. background: hsla(0, 0%, 53%, .4);
  120. }
  121. ::-webkit-scrollbar-track {
  122. background: hsla(0, 0%, 53%, .1)
  123. }
  124. .page-list {
  125. overflow: hidden;
  126. }
  127. .page-list .pagination {
  128. margin: 0 0 10px 0;
  129. float: left;
  130. }
  131. .page-list .pagination span {
  132. cursor: pointer;
  133. }
  134. .page-list .pagination .separate span {
  135. cursor: default;
  136. border-top: none;
  137. border-bottom: none;
  138. }
  139. .page-list .pagination .separate span:hover {
  140. background: none;
  141. }
  142. .page-list .page-total {
  143. float: left;
  144. margin: 2px 0 2px 11px;
  145. }
  146. .page-list .page-total input, .page-list .page-total select {
  147. height: 26px;
  148. border: 1px solid #ddd;
  149. }
  150. .page-list .page-total input {
  151. width: 40px;
  152. padding-left: 3px;
  153. }
  154. .page-list .page-total select {
  155. width: 50px;
  156. }
  157. .no-items {
  158. text-align: center;
  159. }
  160. .modal-body {
  161. position: relative;
  162. padding: 10px 20px 0 20px;
  163. }
  164. .modal-footer {
  165. margin-top: 0px;
  166. }
  167. .property-row > span {
  168. display: block;
  169. float: left;
  170. margin: 2px 2%;
  171. padding: 0;
  172. min-height: 25px;
  173. line-height: 35px;
  174. }
  175. .property-row span.value {
  176. cursor: pointer;
  177. width: 46%;
  178. padding: 0;
  179. margin: 0;
  180. background-color: #ecf5ff;
  181. display: inline-block;
  182. height: 32px;
  183. padding: 0 10px;
  184. margin: 5px 0;
  185. line-height: 30px;
  186. font-size: 12px;
  187. color: #409eff;
  188. border: 1px solid #d9ecff;
  189. border-radius: 4px;
  190. box-sizing: border-box;
  191. white-space: nowrap;
  192. }
  193. .selected-item-body .property-row:hover {
  194. background: rgb(217, 236, 255);
  195. border-radius: 4px;
  196. }
  197. .editor-icon-close:before {
  198. font-weight: bold;
  199. content: "\2013";
  200. }