editorLive.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. .editor-body {
  2. display: flex;
  3. flex-direction: row;
  4. }
  5. #codeEditorWindow {
  6. height: 625px
  7. }
  8. .resizable {
  9. resize: horizontal;
  10. overflow: scroll;
  11. }
  12. #propEditorWindow {
  13. height: 560px;
  14. width: 680px;
  15. }
  16. .draggable {
  17. top: 100px;
  18. left: 480px;
  19. z-index: 4;
  20. background-color: rgba(230, 230, 230, 0.95);
  21. opacity: 0.95;
  22. }
  23. .draggable.is-pointer-down {
  24. background: #999FA4;
  25. }
  26. .draggable.is-dragging { opacity: 0.9; }
  27. .handle {
  28. background: rgba(67, 103, 163, 0.80);
  29. width: 100%;
  30. height: 20px;
  31. left: 100px;
  32. }
  33. .propGrid.max-width {
  34. max-width: 400px;
  35. }
  36. .codeEditorGrid{
  37. width: 1000px;
  38. /*height: 560px;*/
  39. }
  40. .params-textfield-input {
  41. width: 400px;
  42. }
  43. .codeEditorGrid.max-width {
  44. max-width: 1600px;
  45. }
  46. .propEditorGrid.max-width {
  47. max-width: 700px;
  48. }
  49. .aceEditor {
  50. width:inherit; height: 400px
  51. }
  52. .avatarName {
  53. color: #2E7D32;
  54. font-weight: bold;
  55. }
  56. .nodeItem {
  57. color: black
  58. }
  59. .sideBar {
  60. /* padding-left: 16px; */
  61. overflow-x: hidden;
  62. overflow-y: auto;
  63. background-color: rgba(240, 240, 240, 0.90);
  64. z-index: 3;
  65. position: fixed;
  66. width: 450px;
  67. height: 95%;
  68. }
  69. .settingsDiv {
  70. padding-left: 16px;
  71. overflow: auto;
  72. background-color: rgba(230, 230, 230, 0.95);
  73. z-index: 2;
  74. position: absolute;
  75. }
  76. .userList {
  77. padding-left: 16px;
  78. }
  79. .gizmomode {
  80. cursor:pointer;
  81. }
  82. .avatar-card {
  83. cursor:pointer;
  84. background-repeat: no-repeat;
  85. height: 200px;
  86. background-position: center top;
  87. background-size: 100%;
  88. }
  89. .create-card {
  90. cursor:pointer;
  91. }
  92. /* .avatar-card .mdc-card__primary,
  93. .avatar-card .mdc-card__actions {
  94. background: rgba(0, 0, 0, .4);
  95. }
  96. */
  97. /* :root {
  98. --mdc-theme-primary: #9E9E9E;
  99. }
  100. */
  101. .prop-text-field-input {
  102. font-size: inherit;
  103. padding: 5px;
  104. }
  105. /* .prop-mdc-text-field {
  106. height: 56px;
  107. }
  108. */
  109. .mdc-list-item__graphic {
  110. margin-left: 0;
  111. margin-right: 32px;
  112. display: -webkit-inline-box;
  113. display: -ms-inline-flexbox;
  114. display: inline-flex;
  115. -webkit-box-align: center;
  116. -ms-flex-align: center;
  117. align-items: center;
  118. -webkit-box-pack: center;
  119. -ms-flex-pack: center;
  120. justify-content: center;
  121. }
  122. .createItems{
  123. height: 40px;
  124. width: 40px;
  125. cursor:pointer;
  126. }
  127. .protoPropLabel {
  128. font-weight: bold
  129. }
  130. .editButton{
  131. height: 30px;
  132. width: 30px;
  133. }
  134. .createListItem {
  135. width: 30px;
  136. cursor:pointer;
  137. }
  138. /* .tooltip {
  139. position: relative;
  140. display: inline-block;
  141. border-bottom: 1px dotted black;
  142. }
  143. */
  144. .tooltip .tooltiptext {
  145. visibility: hidden;
  146. width: 100px;
  147. background-color: rgba(134, 134, 134, 0.85);
  148. color: rgb(255, 255, 255);
  149. text-align: center;
  150. border-radius: 6px;
  151. padding: 5px 0;
  152. /* Position the tooltip */
  153. position: fixed;
  154. z-index: 1;
  155. margin-top: -40px;
  156. /* bottom: 100%;
  157. left: 50%;
  158. margin-left: -50px; */
  159. }
  160. .tooltip:hover .tooltiptext {
  161. visibility: visible;
  162. }
  163. .menuItem {
  164. color: white;
  165. font-size: 90%;
  166. }