editorLive.css 3.5 KB

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