Built files from Bizgaze WebServer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

notificationbuilder.css 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. *, ::after, ::before {
  2. box-sizing: border-box;
  3. padding: 0;
  4. margin: 0;
  5. }
  6. label {
  7. width: 100%;
  8. }
  9. body {
  10. position: relative;
  11. overflow: hidden;
  12. }
  13. ul {
  14. list-style: none;
  15. transition: all .2s ease;
  16. }
  17. .startSlideLine {
  18. bottom: 8% !important;
  19. }
  20. .startmenuClass {
  21. bottom: 38% !important;
  22. }
  23. .treeContainer {
  24. height: 88vh;
  25. width: 100vw;
  26. margin-left: 80px;
  27. display: flex;
  28. justify-content: center;
  29. overflow: auto;
  30. white-space: nowrap;
  31. }
  32. .treebody, .rulewidget {
  33. width: 100%;
  34. height: 90vh;
  35. padding: 20px;
  36. font-size: 10px;
  37. }
  38. .treebody ul li {
  39. display: inline-block;
  40. padding-top: 150px;
  41. }
  42. .rulewidget ul li {
  43. display: inline-block;
  44. padding-top: 150px;
  45. }
  46. /* box */
  47. .rootbox {
  48. margin: 0 auto !important;
  49. width: 100px;
  50. }
  51. .box {
  52. position: relative;
  53. height: 70px;
  54. border-left: 15px solid white;
  55. border-right: 15px solid white;
  56. margin: 1rem;
  57. }
  58. .boxcontent {
  59. padding: 0 1rem;
  60. background-color: lightgreen;
  61. border-radius: 5px;
  62. margin-bottom: 5rem;
  63. }
  64. .boxcontent.parnet {
  65. padding: 0
  66. }
  67. .boxcontent.eventbox {
  68. background-color: #CDFFFF;
  69. }
  70. .rootbox .boxcontent {
  71. background-color: transparent;
  72. }
  73. .firstplus {
  74. position: absolute;
  75. bottom: 55%;
  76. z-index: 1;
  77. width: 15px;
  78. height: 15px;
  79. border-radius: 50%;
  80. color: white;
  81. text-align: center;
  82. padding-bottom: 5px;
  83. background-color: rgb(28, 118, 221);
  84. cursor: pointer;
  85. }
  86. .boxlinedown {
  87. position: absolute;
  88. bottom: -18%;
  89. left: 0;
  90. width: 50%;
  91. height: 90px;
  92. border-right: 1px dashed #ccc;
  93. }
  94. .sideline {
  95. position: absolute;
  96. bottom: -125%;
  97. left: 53%;
  98. width: 70%;
  99. height: 50%;
  100. border-top: 1px dashed #ccc;
  101. transition: all .2s ease;
  102. }
  103. .sidemenu {
  104. position: absolute;
  105. border: 1px solid grey;
  106. bottom: -90%;
  107. left: 110%;
  108. z-index: 999;
  109. transition: all .2s ease;
  110. background-color: white;
  111. }
  112. .plusbtn {
  113. position: absolute;
  114. bottom: 25%;
  115. z-index: 1;
  116. width: 15px;
  117. height: 15px;
  118. border-radius: 50%;
  119. color: white;
  120. text-align: center;
  121. padding-bottom: 5px;
  122. background-color: rgb(28, 118, 221);
  123. cursor: pointer;
  124. }
  125. .btnStart {
  126. padding: 0.5rem 3rem;
  127. border: 1px solid darkgreen;
  128. border-radius: 20px;
  129. background-color: rgba(144, 238, 144, 0.377);
  130. }
  131. /* card */
  132. .cardTree {
  133. position: relative;
  134. width: 230px;
  135. height: 70px;
  136. }
  137. li {
  138. position: relative;
  139. }
  140. .element::after {
  141. position: absolute;
  142. top: 0;
  143. content: '';
  144. width: 100%;
  145. height: 20%;
  146. border-top: 1px dashed #ccc;
  147. }
  148. .element::before {
  149. content: '';
  150. position: absolute;
  151. top: 0;
  152. width: 50%;
  153. height: 110px;
  154. border-right: 1px dashed #ccc;
  155. }
  156. .element:only-child::after, .element:only-child::before {
  157. display: none;
  158. }
  159. .element:only-child {
  160. margin-top: -6.3rem;
  161. }
  162. ul .element:first-child::after {
  163. right: 0;
  164. width: 50%;
  165. }
  166. ul .element:last-child::after {
  167. left: 0;
  168. width: 50%;
  169. }
  170. .togglechildren {
  171. display: none !important;
  172. }
  173. .card_menu_wrapper {
  174. position: relative;
  175. }
  176. .card_menu_wrapper img {
  177. position: absolute;
  178. top: 0;
  179. left: 0;
  180. transform: translateY(-80%);
  181. border-radius: 50%;
  182. }
  183. .cardTree.diffcard .deleteicon i {
  184. color: red;
  185. font-size: 13px;
  186. }
  187. .cardTree_des {
  188. font-size: 11px;
  189. }
  190. .conditionbtn {
  191. color: red;
  192. pointer-events: auto;
  193. }
  194. .cardTree.diffcard > div {
  195. flex-direction: row !important;
  196. }
  197. .cardTree.diffcard img {
  198. position: relative;
  199. transform: translateX(0);
  200. width: 53px;
  201. height: 53px;
  202. }