123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- .editor-body {
- display: flex;
- flex-direction: row;
- }
- #codeEditorWindow {
- height: 625px
- }
- .resizable {
- resize: horizontal;
- overflow: scroll;
- }
- #propEditorWindow {
- height: 560px;
- width: 680px;
- }
- .draggable {
- top: 100px;
- left: 480px;
- z-index: 4;
- background-color: rgba(230, 230, 230, 0.95);
- opacity: 0.95;
- }
-
- .draggable.is-pointer-down {
- background: #999FA4;
- }
- .draggable.is-dragging { opacity: 0.9; }
-
- .handle {
- background: rgba(67, 103, 163, 0.80);
- width: 100%;
- height: 20px;
- left: 100px;
- }
-
- .propGrid.max-width {
- max-width: 400px;
- }
- .codeEditorGrid{
- width: 1000px;
- /*height: 560px;*/
- }
-
- .params-textfield-input {
- width: 400px;
- }
- .codeEditorGrid.max-width {
- max-width: 1600px;
- }
- .propEditorGrid.max-width {
- max-width: 700px;
- }
- .aceEditor {
- width:inherit; height: 400px
- }
- .avatarName {
- color: #2E7D32;
- font-weight: bold;
- }
- .nodeItem {
- color: black
-
- }
- .sideBar {
- /* padding-left: 16px; */
- overflow-x: hidden;
- overflow-y: auto;
- background-color: rgba(240, 240, 240, 0.90);
- z-index: 3;
- position: fixed;
- width: 450px;
- height: 95%;
- }
- .settingsDiv {
- padding-left: 16px;
- overflow: auto;
- background-color: rgba(230, 230, 230, 0.95);
- z-index: 2;
- position: absolute;
- }
- .userList {
- padding-left: 16px;
- }
- .gizmomode {
- cursor:pointer;
- }
- .avatar-card {
- cursor:pointer;
- background-repeat: no-repeat;
- height: 200px;
- background-position: center top;
- background-size: 100%;
- }
- .create-card {
- cursor:pointer;
- }
- /* .avatar-card .mdc-card__primary,
- .avatar-card .mdc-card__actions {
- background: rgba(0, 0, 0, .4);
- }
- */
- /* :root {
- --mdc-theme-primary: #9E9E9E;
- }
- */
- .prop-text-field-input {
- font-size: inherit;
- padding: 5px;
- }
- /* .prop-mdc-text-field {
-
- height: 56px;
-
- }
- */
- .mdc-list-item__graphic {
- margin-left: 0;
- margin-right: 32px;
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- }
- .createItems{
- height: 40px;
- width: 40px;
- cursor:pointer;
- }
- .protoPropLabel {
- font-weight: bold
- }
- .editButton{
- height: 30px;
- width: 30px;
- }
- .createListItem {
- width: 30px;
- cursor:pointer;
- }
- /* .tooltip {
- position: relative;
- display: inline-block;
- border-bottom: 1px dotted black;
- }
- */
- .tooltip .tooltiptext {
- visibility: hidden;
- width: 100px;
- background-color: rgba(134, 134, 134, 0.85);
- color: rgb(255, 255, 255);
- text-align: center;
- border-radius: 6px;
- padding: 5px 0;
-
- /* Position the tooltip */
- position: fixed;
- z-index: 1;
- margin-top: -40px;
- /* bottom: 100%;
- left: 50%;
- margin-left: -50px; */
- }
-
- .tooltip:hover .tooltiptext {
- visibility: visible;
- }
- .menuItem {
- color: white;
- font-size: 90%;
-
- }
|