editorLive.css 3.3 KB

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