Module.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. .InputMarker, .OutputMarker, .RemoveMarker {
  2. width: 10px;
  3. height: 10px;
  4. border-radius: 10px;
  5. background: blue;
  6. padding-left: 10px;
  7. display: inline-block;
  8. }
  9. .OutputMarker {
  10. background: red;
  11. }
  12. .RemoveMarker {
  13. background: orange;
  14. }
  15. .OutputMarker.selected, .InputMarker.selected{
  16. width: 20px;
  17. height: 20px;
  18. margin: -5px -5px;
  19. background: green;
  20. }
  21. .InputMarker.selected {
  22. background: yellow;
  23. }
  24. /*.AdminModule span{
  25. color:black !important;
  26. }*/
  27. .AdminModule {
  28. position: absolute;
  29. display: inline-block;
  30. left: 0;
  31. top: 0;
  32. min-width: 100px;
  33. max-width: 340px;
  34. min-height: 20px;
  35. background: gray;
  36. border: 1px solid black;
  37. text-align: left;
  38. z-index: 9999;
  39. font-size: 12px;
  40. cursor: default;
  41. line-height: 18px;
  42. color: black !important;
  43. height: fit-content;
  44. }
  45. .AdminModule.top {
  46. z-index: 99999;
  47. }
  48. .AdminModule .card-content {
  49. padding: 11px;
  50. }
  51. .AdminModule .form-group label, .AdminModule .form-group .form-control, .AdminModule .form-group {
  52. margin-bottom: 0
  53. }
  54. .AdminModule .form-group label, .AdminModule .form-control{
  55. font-size: 12px;
  56. height: 2rem;
  57. }
  58. .AdminModule.Position-center {
  59. top: 50%;
  60. left: 50%;
  61. }
  62. .AdminModule.Position-top-center {
  63. top: 1%;
  64. left: 50%;
  65. }
  66. .AdminModule.Position-top-right {
  67. top: 1%;
  68. left: auto;
  69. right: 10%;
  70. }
  71. .AdminModule.Position-bottom-right {
  72. bottom: 1%;
  73. left: auto;
  74. right: 10%;
  75. }
  76. .AdminModule.Position-bottom-left {
  77. bottom: 1%;
  78. left: 10%;
  79. }
  80. .AdminModule.Position-bottom {
  81. bottom: 1%;
  82. left: 45%;
  83. }
  84. .AdminModule .ArrayInput {
  85. border-radius: 3px;
  86. }
  87. .semi {
  88. background-color: rgba(1,1,1,0.1);
  89. z-index: 1100;
  90. }
  91. div {
  92. position: relative;
  93. }
  94. .clearLinks {
  95. font-size: 14px;
  96. padding: 0px 10px;
  97. }
  98. .clearLinks i {
  99. font-size: 1rem;
  100. }
  101. .clearLinks span {
  102. color: white !important;
  103. }
  104. .Output {
  105. line-height: 40px;
  106. min-height: 40px;
  107. }
  108. .Input {
  109. font-size: 14px;
  110. min-height: 40px;
  111. line-height: 40px;
  112. }
  113. .Input, .Output {
  114. min-width: 160px;
  115. }
  116. .TextInput .row {
  117. margin-top: 0;
  118. margin-bottom: 0;
  119. }
  120. .TextInput {
  121. margin: 0;
  122. }
  123. .bars {
  124. border-top: 1px solid #cecece;
  125. border-bottom: 1px solid #cecece;
  126. }
  127. .pasteField {
  128. width: 10px !important;
  129. height: 10px !important;
  130. padding: 1px !important;
  131. margin: 0 !important;
  132. background: white;
  133. }