grapheditor.css 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  1. :root {
  2. --panel-color: #f1f3f4;
  3. --border-color: #dadce0;
  4. --text-color: #707070;
  5. }
  6. * {
  7. forced-color-adjust: none;
  8. }
  9. .geDarkMode {
  10. filter: invert(93%) hue-rotate(180deg);
  11. background:#151515;
  12. }
  13. .geDarkMode image, .geDarkMode img:not(.geAdaptiveAsset), .geDarkMode iframe {
  14. filter: invert(100%) hue-rotate(180deg) saturate(1.25);
  15. }
  16. .geDarkMode div.mxWindow {
  17. border-color: darkgray;
  18. }
  19. .geDarkMode div.mxRubberband {
  20. border:1px dashed #202020 !important;
  21. background:#a0a0a0 !important;
  22. }
  23. .geDarkMode .geAdaptiveAsset {
  24. filter:none !important
  25. }
  26. .geDarkMode .geColorBtn > div {
  27. border-color: #ffffff !important;
  28. }
  29. .geDarkMode .geToolbarButton {
  30. border-color:#303030 !important;
  31. color:#000000;
  32. }
  33. .geEditor {
  34. position:absolute;
  35. width:100%;
  36. height:100%;
  37. }
  38. .mxCellEditor {
  39. font-family:initial;
  40. }
  41. .geEditor *:not(svg *, .mxCellEditor *), div.mxWindow, .mxWindowTitle,
  42. .geEditor .geToolbarContainer .geColorButton {
  43. border-color:var(--border-color);
  44. }
  45. html div.mxWindow, .geDialog, .geSketch .geToolbarContainer {
  46. border-radius: 5px;
  47. box-shadow: 0px 0px 2px #C0C0C0;
  48. }
  49. div td.mxWindowTitle {
  50. border-bottom-style:solid;
  51. border-bottom-width:1px;
  52. font-size: 13px;
  53. height: 22px;
  54. }
  55. .mxWindowTitle > div > img {
  56. padding: 4px;
  57. }
  58. .geEditor {
  59. font-family:-apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", system-ui, ui-sans-serif, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  60. font-size:14px;
  61. border:none;
  62. margin:0px;
  63. }
  64. .geBackground {
  65. background:white;
  66. }
  67. .geEditor input[type=text]::-ms-clear {
  68. display: none;
  69. }
  70. .geEditor input, .geEditor select,
  71. .geEditor textarea, .geEditor button {
  72. font-size: inherit;
  73. }
  74. .geMenubarContainer, .geToolbarContainer, .geHsplit,
  75. .geVsplit, .mxWindowTitle, .geSidebarContainer,
  76. .geEditor .geTabItem {
  77. background:var(--panel-color);
  78. }
  79. .geButtonContainer {
  80. display: inline-flex;
  81. align-items: center;
  82. padding: 0 32px 0 0;
  83. margin-left: auto;
  84. }
  85. .geEditor .geTabItem {
  86. border-width:1px;
  87. border-top-style:solid;
  88. }
  89. .geEditor .geTabItem {
  90. cursor:default;
  91. user-select:none;
  92. }
  93. .geEditor div.mxTooltip {
  94. background: var(--panel-color);
  95. font-size: 11px;
  96. color: black;
  97. padding:6px;
  98. }
  99. .geDragPreview {
  100. border: 1px dashed black;
  101. }
  102. html > body > div > div.geToolbarContainer.geSimpleMainMenu,
  103. html > body > div > div.geToolbarContainer.geSimpleMainMenu .geToolbarContainer{
  104. border-top: none !important;
  105. border-left: none !important;
  106. border-right: none !important;
  107. }
  108. html > body > div > div.geToolbarContainer.geSimpleMainMenu .geToolbarContainer{
  109. border:none !important;
  110. }
  111. .geMenubarContainer {
  112. display:inline-flex;
  113. align-items:center;
  114. }
  115. .geMenubarContainer .geItem, .geToolbar .geButton, .geToolbar .geLabel {
  116. cursor:pointer !important;
  117. }
  118. .geSidebarContainer .geTitle {
  119. cursor:default !important;
  120. }
  121. .geBackgroundPage {
  122. box-shadow:0px 0px 2px 1px #d1d1d1;
  123. }
  124. .geSidebarContainer a, .geMenubarContainer a, .geToolbar a {
  125. color:#000000;
  126. text-decoration:none;
  127. }
  128. .geMenubarContainer, .geToolbarContainer, .geDiagramContainer, .geSidebarContainer, .geFooterContainer, .geHsplit, .geVsplit {
  129. overflow:hidden;
  130. position:absolute;
  131. cursor:default;
  132. }
  133. .geFormatContainer {
  134. overflow-x:hidden !important;
  135. overflow-y:auto !important;
  136. font-size:12px;
  137. border-left:1px solid #dadce0;
  138. transition:width 0.3s;
  139. }
  140. .geFormatContainer button:not(.geColorBtn), .geFormatContainer select {
  141. border-radius:4px;
  142. padding:2px;
  143. }
  144. .geSidebarFooter {
  145. border-top:1px solid #dadce0;
  146. }
  147. .geFormatSection {
  148. border-bottom:1px solid #dadce0;
  149. border-color:#dadce0;
  150. }
  151. .geDiagramContainer {
  152. background-color:#ffffff;
  153. font-size:0px;
  154. outline:none;
  155. }
  156. .geMenubar, .geToolbar {
  157. white-space:nowrap;
  158. display:block;
  159. width:100%;
  160. }
  161. .geMenubarContainer .geItem, .geToolbar .geButton, .geToolbar .geLabel,
  162. .geSidebar, .geSidebar .geItem, .mxPopupMenuItem {
  163. -webkit-transition: all 0.1s ease-in-out;
  164. -moz-transition: all 0.1s ease-in-out;
  165. -o-transition: all 0.1s ease-in-out;
  166. -ms-transition: all 0.1s ease-in-out;
  167. transition: all 0.1s ease-in-out;
  168. }
  169. .geHint {
  170. background-color: #ffffff;
  171. border: 1px solid gray;
  172. padding: 4px 16px 4px 16px;
  173. border-radius:3px;
  174. -webkit-box-shadow: 1px 1px 2px 0px #ddd;
  175. -moz-box-shadow: 1px 1px 2px 0px #ddd;
  176. box-shadow: 1px 1px 2px 0px #ddd;
  177. opacity:0.8;
  178. font-size:9pt;
  179. }
  180. .geHint img {
  181. opacity: 0.7;
  182. }
  183. .geHint img:hover
  184. {
  185. opacity: 1;
  186. }
  187. .geUser {
  188. color:var(--text-color);
  189. display:inline-block;
  190. cursor:pointer;
  191. font-size:10px;
  192. }
  193. .geStatus > * {
  194. overflow:hidden;
  195. white-space:nowrap;
  196. vertical-align:middle;
  197. display:inline-block;
  198. font-size:12px;
  199. color:var(--text-color);
  200. }
  201. a.geStatus {
  202. display:inline-flex;
  203. align-items:center;
  204. white-space:nowrap;
  205. min-width:0;
  206. height:100%;
  207. }
  208. .geStatus *[data-action] {
  209. cursor:pointer;
  210. }
  211. .geStatus img {
  212. max-width:16px;
  213. vertical-align:bottom;
  214. }
  215. a.geStatus div + div {
  216. margin-left:8px;
  217. }
  218. a.geStatus .geStatusBox {
  219. border-style: solid;
  220. border-width: 1px;
  221. border-radius: 3px;
  222. font-size: 10px;
  223. padding: 3px;
  224. }
  225. a.geStatus .geStatusAlert {
  226. padding:4px 8px;
  227. background-color:#eacccc;
  228. border:1px solid #dca4ad;
  229. color:#b62623 !important;
  230. border-radius:3px;
  231. }
  232. a.geStatus .geStatusAlertOrange {
  233. padding:4px 8px;
  234. background-color:rgb(242, 147, 30);
  235. border:rgb(240, 135, 5);
  236. color:#000000 !important;
  237. border-radius:3px;
  238. }
  239. html body div.geSmallBanner {
  240. background-color: #F2931E;
  241. background-image: linear-gradient(#F2931E 0px,#F08707 100%);
  242. border: 1px solid #F08707;
  243. color: #000;
  244. }
  245. html body div.geSmallBanner:hover:not([disabled]) {
  246. background-color: #ffb75e;
  247. background-image: linear-gradient(#ffb75e 0px,#F2931E 100%);
  248. border: 1px solid #F08707;
  249. color: #000;
  250. }
  251. a.geStatus .geStatusMessage {
  252. padding:4px 6px 4px 6px;
  253. font-size:12px;
  254. background: -webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);
  255. background: -o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);
  256. background: -webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));
  257. background: linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);
  258. background-repeat: repeat-x;
  259. border:1px solid #b2dba1;
  260. border-radius:3px;
  261. color:#3c763d !important;
  262. }
  263. .geAlert {
  264. position:absolute;
  265. white-space:nowrap;
  266. padding:14px;
  267. background-color:#f2dede;
  268. border:1px solid #ebccd1;
  269. color:#a94442;
  270. border-radius:3px;
  271. -webkit-box-shadow: 2px 2px 3px 0px #ddd;
  272. -moz-box-shadow: 2px 2px 3px 0px #ddd;
  273. box-shadow: 2px 2px 3px 0px #ddd;
  274. }
  275. .geEditor input, .geEditor button, .geEditor select, .geColorBtn {
  276. border: 1px solid #d8d8d8;
  277. border-radius: 4px;
  278. }
  279. .geEditor button, .geEditor select, .geColorBtn {
  280. background:#eee;
  281. }
  282. .geEditor button:hover:not([disabled], .geBigButton, .geShareBtn),
  283. .geEditor select:hover:not([disabled]), .geColorBtn:hover:not([disabled]) {
  284. background:#e5e5e5;
  285. }
  286. .geEditor button:active:not([disabled], .geBigButton, .geShareBtn),
  287. .geColorBtn:active:not([disabled]) {
  288. opacity:0.7;
  289. }
  290. .geColorDropper {
  291. cursor:pointer;
  292. opacity:0.7;
  293. }
  294. .geColorDropper:hover {
  295. opacity:1;
  296. }
  297. .geBtn, .mxWindow .geBtn {
  298. font-size: 13px;
  299. font-weight: 500;
  300. border-radius: 4px;
  301. height: 30px;
  302. margin: 0 0 0 8px;
  303. min-width: 72px;
  304. outline: 0;
  305. padding: 0 8px;
  306. text-overflow: ellipsis;
  307. white-space: nowrap;
  308. overflow: hidden;
  309. }
  310. .geBtn:hover:not([disabled]), .geBtn:focus {
  311. -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.1);
  312. -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.1);
  313. box-shadow: 0px 1px 1px rgba(0,0,0,0.1);
  314. color: #111;
  315. }
  316. .geToolbarContainer {
  317. border-width:1px;
  318. border-color:lightgray;
  319. border-style:none none solid none;
  320. box-shadow:none;
  321. z-index:1;
  322. }
  323. .geShapePicker {
  324. position:absolute;
  325. border-radius:10px;
  326. border-style:solid;
  327. border-width:1px;
  328. padding:6px 0 8px 0;
  329. text-align:center;
  330. box-shadow:0px 0px 3px 1px #d1d1d1;
  331. }
  332. .geBtnStepper {
  333. border-radius:3px;
  334. border-style:solid;
  335. border-width:1px;
  336. }
  337. .geBtnUp {
  338. background-image: url(data:image/gif;base64,R0lGODlhCgAGAJECAGZmZtXV1f///wAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0QzM3ODJERjg4NUQxMUU0OTFEQ0E2MzRGQzcwNUY3NCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0QzM3ODJFMDg4NUQxMUU0OTFEQ0E2MzRGQzcwNUY3NCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjRDMzc4MkREODg1RDExRTQ5MURDQTYzNEZDNzA1Rjc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjRDMzc4MkRFODg1RDExRTQ5MURDQTYzNEZDNzA1Rjc0Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEAQAAAgAsAAAAAAoABgAAAg6UjwiQBhGYglCKhXFLBQA7);
  339. background-position: center center;
  340. background-repeat: no-repeat;
  341. border-bottom-style:solid;
  342. border-width:1px;
  343. }
  344. .geBtnUp:active {
  345. background-color: #4d90fe;
  346. background-image: linear-gradient(#4d90fe 0px,#357ae8 100%);
  347. }
  348. .geBtnDown {
  349. background-image: url(data:image/gif;base64,R0lGODlhCgAGAJECANXV1WZmZv///wAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0QzM3ODJEQjg4NUQxMUU0OTFEQ0E2MzRGQzcwNUY3NCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0QzM3ODJEQzg4NUQxMUU0OTFEQ0E2MzRGQzcwNUY3NCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjRDMzc4MkQ5ODg1RDExRTQ5MURDQTYzNEZDNzA1Rjc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjRDMzc4MkRBODg1RDExRTQ5MURDQTYzNEZDNzA1Rjc0Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEAQAAAgAsAAAAAAoABgAAAg6UjxLLewEiCAnOZBzeBQA7);
  350. background-position: center center;
  351. background-repeat: no-repeat;
  352. border-style:solid;
  353. border-width:1px;
  354. }
  355. .geBtnDown:active {
  356. background-color: #4d90fe;
  357. background-image: linear-gradient(#4d90fe 0px,#357ae8 100%);
  358. }
  359. html .geColorBtn {
  360. padding: 0px;
  361. }
  362. html .geColorBtn:disabled {
  363. opacity: 0.5;
  364. }
  365. html .gePrimaryBtn {
  366. background-color: #4d90fe;
  367. background-image: linear-gradient(#4d90fe 0px,#4787ed 100%);
  368. border: 1px solid #3079ed;
  369. color: #fff;
  370. }
  371. html .gePrimaryBtn:hover:not([disabled]), html .gePrimaryBtn:focus {
  372. background-color: #357ae8;
  373. background-image: linear-gradient(#4d90fe 0px,#357ae8 100%);
  374. border: 1px solid #2f5bb7;
  375. color: #fff;
  376. }
  377. .gePrimaryBtn:disabled {
  378. opacity: .5;
  379. }
  380. button.geShareBtn {
  381. background-color: #F2931E;
  382. border-color: #F08705;
  383. color:#000000;
  384. }
  385. .geAlertLink {
  386. color:#843534;
  387. font-weight:700;
  388. text-decoration:none;
  389. }
  390. .geMenubar {
  391. padding:0px 2px 0px 2px;
  392. display:inline-flex;
  393. align-items:center;
  394. }
  395. .geMenubarContainer .geItem, .geToolbar .geItem {
  396. padding:6px 6px 6px 9px;
  397. cursor:default;
  398. }
  399. .geItem:hover:not([disabled]), .geToolbarButton:hover:not([disabled]),
  400. .geBtn:hover:not([disabled]) {
  401. opacity: 1 !important;
  402. }
  403. .geItem:active:not([disabled]):not(.geStatus), .geBtn:active:not([disabled]),
  404. .geStatus div[data-action]:active:not([disabled]),
  405. html .geToolbarButton:active:not([disabled]) {
  406. opacity: 0.7 !important;
  407. }
  408. .geBtn:disabled {
  409. opacity: 0.5;
  410. }
  411. .geMenubarContainer .geItem:active {
  412. background: #F8C382;
  413. }
  414. .geToolbarContainer .geButton:hover {
  415. opacity:1;
  416. background: #eee;
  417. border-radius:2px;
  418. }
  419. .geToolbarContainer .geButton:active, .geToolbarContainer .geLabel:active {
  420. background: #F8C382;
  421. }
  422. .geToolbarContainer .geLabel:hover {
  423. background: #eee;
  424. border-radius:2px;
  425. }
  426. .geActiveButton:hover {
  427. opacity: 0.7;
  428. }
  429. .geActiveButton:active {
  430. opacity: 0.3;
  431. }
  432. .geToolbarButton {
  433. opacity: 0.6;
  434. }
  435. .geToolbarButton:active {
  436. opacity: 0.2 !important;
  437. }
  438. .mxDisabled:hover {
  439. background-color:inherit !important;
  440. }
  441. .geMenubar a.geStatus {
  442. color:#888888;
  443. padding:0px 0px 0px 10px;
  444. display:inline-flex;
  445. align-items:center;
  446. cursor:default !important;
  447. }
  448. .geMenubar a.geStatus:hover {
  449. background:transparent;
  450. }
  451. .geSidebarContainer .geToolbarContainer {
  452. background:transparent;
  453. border-bottom:none;
  454. }
  455. .geSidebarContainer button {
  456. text-overflow:ellipsis;
  457. overflow:hidden;
  458. }
  459. .geToolbar {
  460. padding:5px 0px 0px 6px;
  461. border-top:1px solid #dadce0;
  462. -webkit-box-shadow: inset 0 1px 0 0 #fff;
  463. -moz-box-shadow: inset 0 1px 0 0 #fff;
  464. box-shadow: inset 0 1px 0 0 #fff;
  465. }
  466. .geToolbarContainer .geSeparator {
  467. float:left;
  468. width:1px;
  469. height:20px;
  470. background:#e5e5e5;
  471. margin-left:6px;
  472. margin-right:6px;
  473. margin-top:4px;
  474. }
  475. .geToolbarContainer .geButton {
  476. float:left;
  477. width:20px;
  478. height:20px;
  479. padding:0px 2px 4px 2px;
  480. margin:2px;
  481. border:1px solid transparent;
  482. cursor:pointer;
  483. opacity:0.6;
  484. }
  485. div.mxWindow .geButton {
  486. margin: -1px 2px 2px 2px;
  487. padding: 1px 2px 2px 1px;
  488. }
  489. .geToolbarContainer .geLabel {
  490. float:left;
  491. margin:2px;
  492. cursor:pointer;
  493. padding:3px 5px 3px 5px;
  494. border:1px solid transparent;
  495. }
  496. .geToolbarContainer .mxDisabled:hover {
  497. border-color:transparent !important;
  498. opacity:0.2 !important;
  499. }
  500. .geDiagramBackdrop {
  501. background-color: #fbfbfb;
  502. }
  503. .geSidebarContainer {
  504. position:absolute;
  505. overflow-x:hidden;
  506. overflow-y:auto;
  507. }
  508. .mxWindowPane .geSidebarContainer {
  509. width:100%;
  510. height:100%;
  511. }
  512. .geEditor > div > .geMenubarContainer {
  513. border-bottom-style:solid;
  514. border-bottom-width:1px;
  515. }
  516. .geTabContainer {
  517. border-width:1px;
  518. border-top-style:solid;
  519. border-left-style:solid;
  520. border-right-style:solid;
  521. display:flex;
  522. white-space:nowrap;
  523. overflow:hidden;
  524. position:absolute;
  525. z-index:1;
  526. }
  527. .geTabScroller {
  528. display:inline-block;
  529. position:relative;
  530. max-width:calc(100% - 90px);
  531. white-space:nowrap;
  532. overflow:hidden;
  533. overflow-x:auto;
  534. -ms-overflow-style: none;
  535. scrollbar-width: none;
  536. left:0px;
  537. }
  538. .geTabScroller::-webkit-scrollbar {
  539. display: none;
  540. }
  541. .geToggleItem {
  542. padding:4px;
  543. border-radius:8px;
  544. }
  545. .geActiveItem {
  546. background-color:var(--border-color);
  547. }
  548. html body div.geActivePage, .geRuler {
  549. background:#fff;
  550. }
  551. .geInactivePage:hover *, .geControlTab:hover * {
  552. opacity:0.5;
  553. }
  554. .geControlTab:hover .geAdaptiveAsset {
  555. opacity:0.3;
  556. }
  557. .geTabMenuButton {
  558. width:14px;
  559. height:14px;
  560. margin-left:4px;
  561. margin-right:-6px;
  562. cursor:pointer;
  563. }
  564. .geInactivePage .geTabMenuButton {
  565. display:none;
  566. }
  567. .geTabMenuButton {
  568. display:inline-block;
  569. opacity:1;
  570. }
  571. .geTabMenuButton:hover {
  572. opacity:0.7;
  573. }
  574. .geTabContainer > :first-child,
  575. .geTabScroller > :first-child {
  576. border-left-style:none;
  577. }
  578. .geTabContainer > .geControlTab:first-child {
  579. border-right-style:solid;
  580. }
  581. .geTab .geAdaptiveAsset {
  582. opacity: 0.5;
  583. }
  584. .geTab.geDisabledControlTab .geAdaptiveAsset {
  585. opacity: 0.1;
  586. }
  587. .geTab {
  588. height: 100%;
  589. border-width:1px;
  590. border-left-style:solid;
  591. text-overflow:ellipsis;
  592. border-color:#dadce0;
  593. color:rgb(112, 112, 112);
  594. font-size:12px;
  595. font-weight: 600;
  596. display: inline-flex;
  597. align-items: center;
  598. cursor: move;
  599. }
  600. .gePageTab {
  601. padding: 0px 12px 0px 12px;
  602. }
  603. .geSidebar {
  604. border-bottom:1px solid #e5e5e5;
  605. padding:6px;
  606. padding-left:10px;
  607. padding-bottom:6px;
  608. overflow:hidden;
  609. }
  610. .geSidebarContainer .geTitle {
  611. display:flex;
  612. font-size:13px;
  613. border-color: #e5e5e5;
  614. border-bottom:1px solid #e5e5e5;
  615. font-weight:500;
  616. padding:8px 0px 8px 20px;
  617. margin:0px;
  618. cursor:default;
  619. white-space:nowrap;
  620. overflow:hidden;
  621. text-overflow:ellipsis;
  622. line-height:1.4em;
  623. justify-content:start;
  624. align-items:center;
  625. }
  626. .geSidebarContainer .geTitle > span {
  627. flex-grow: 1;
  628. flex-shrink: 1;
  629. width: 0;
  630. overflow: hidden;
  631. text-overflow: ellipsis;
  632. }
  633. .geSidebarContainer .geTitle > div {
  634. background-color: inherit;
  635. flex-grow: 0;
  636. padding-right: 2px;
  637. }
  638. .geSidebarContainer .geTitle > img {
  639. margin-right:8px;
  640. }
  641. .geSidebarContainer .geTitle:hover {
  642. background: #eee;
  643. border-radius:2px;
  644. }
  645. .geSidebarContainer .geTitle:active {
  646. background-color:#F8C382;
  647. }
  648. .geSidebarContainer .geDropTarget {
  649. border-radius:10px;
  650. border:2px dotted #b0b0b0;
  651. text-align:center;
  652. padding:6px;
  653. margin:6px;
  654. color:#a0a0a0;
  655. font-size:13px;
  656. }
  657. .geTitle img {
  658. opacity:0.5;
  659. }
  660. .geTitle img:hover {
  661. opacity:1;
  662. }
  663. .geTitle .geButton {
  664. border:1px solid transparent;
  665. padding:3px;
  666. border-radius:2px;
  667. }
  668. .geTitle .geButton:hover {
  669. border:1px solid gray;
  670. }
  671. .geSidebar .geItem {
  672. display:inline-block;
  673. background-repeat:no-repeat;
  674. background-position:50% 50%;
  675. border-radius: 8px;
  676. }
  677. .geSidebar .geItem, .geShapePicker .geItem {
  678. transition: transform 100ms ease-out;
  679. }
  680. .geSidebar .geItem:hover {
  681. background-color:#e0e0e0;
  682. }
  683. .geSidebar .geItem:active, .geShapePicker .geItem:active {
  684. transform: scale(0.8,0.8);
  685. }
  686. .geItem {
  687. vertical-align: top;
  688. display: inline-block;
  689. }
  690. .geSidebarTooltip {
  691. position:absolute;
  692. background:#fbfbfb;
  693. overflow:hidden;
  694. box-shadow:0 2px 6px 2px rgba(60,64,67,.15);
  695. border-radius:6px;
  696. }
  697. .geFooterContainer {
  698. background:#e5e5e5;
  699. border-top:1px solid #c0c0c0;
  700. }
  701. .geFooterContainer a {
  702. display:inline-block;
  703. box-sizing:border-box;
  704. width:100%;
  705. white-space:nowrap;
  706. font-size:14px;
  707. color:#235695;
  708. font-weight:bold;
  709. text-decoration:none;
  710. }
  711. .geFooterContainer table {
  712. border-collapse:collapse;
  713. margin:0 auto;
  714. }
  715. .geFooterContainer td {
  716. border-left:1px solid #c0c0c0;
  717. border-right:1px solid #c0c0c0;
  718. }
  719. .geToolbarButton {
  720. border-color:#333333;
  721. }
  722. .geFooterContainer td:hover {
  723. background-color: #b3b3b3;
  724. }
  725. .geHsplit {
  726. cursor:col-resize;
  727. }
  728. .geVsplit {
  729. font-size:1pt;
  730. cursor:row-resize;
  731. }
  732. .geHsplit {
  733. border-left:1px solid var(--border-color);
  734. background-color:transparent;
  735. }
  736. .geVSplit {
  737. border-top:1px solid var(--border-color);
  738. border-bottom:1px solid var(--border-color);
  739. }
  740. .geHsplit:hover, .geVsplit:hover {
  741. background-color:var(--border-color);
  742. opacity:0.7;
  743. }
  744. .mxWindow {
  745. background:var(--panel-color);
  746. }
  747. .geDialog {
  748. position:absolute;
  749. background:white;
  750. line-height:1em;
  751. overflow:hidden;
  752. padding:30px;
  753. border:1px solid #acacac;
  754. -webkit-box-shadow:0px 0px 2px 2px #d5d5d5;
  755. -moz-box-shadow:0px 0px 2px 2px #d5d5d5;
  756. box-shadow:0px 0px 2px 2px #d5d5d5;
  757. z-index: 2;
  758. }
  759. .geTransDialog {
  760. position:absolute;
  761. overflow:hidden;
  762. z-index: 2;
  763. }
  764. .geDialogClose {
  765. position:absolute;
  766. width:9px;
  767. height:9px;
  768. opacity:0.5;
  769. cursor:pointer;
  770. }
  771. .geDialogClose:hover {
  772. opacity:1;
  773. }
  774. .geDialogTitle {
  775. box-sizing:border-box;
  776. white-space:nowrap;
  777. background:rgb(229, 229, 229);
  778. border-bottom:1px solid rgb(192, 192, 192);
  779. font-size:15px;
  780. font-weight:bold;
  781. text-align:center;
  782. color:rgb(35, 86, 149);
  783. }
  784. .geDialogFooter {
  785. background:whiteSmoke;
  786. white-space:nowrap;
  787. text-align:right;
  788. box-sizing:border-box;
  789. border-top:1px solid #e5e5e5;
  790. color:darkGray;
  791. }
  792. .geSprite {
  793. background:url('data:image/png;base64,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') no-repeat;
  794. width:21px;
  795. height:21px;
  796. }
  797. .geEditor .geBaseButton {
  798. padding:10px;
  799. border-radius:6px;
  800. border:1px solid #c0c0c0;
  801. cursor:pointer;
  802. background-color:#ececec;
  803. background-image:linear-gradient(#ececec 0%, #fcfcfc 100%);
  804. }
  805. .geEditor .geBaseButton:hover {
  806. background:#ececec;
  807. }
  808. .geEditor .geBigButton {
  809. color:#ffffff;
  810. border: none;
  811. padding:4px 10px;
  812. font-size:14px;
  813. white-space: nowrap;
  814. border-radius:3px;
  815. background-color:#0052cc;
  816. cursor:pointer;
  817. transition: background-color 0.1s ease-out;
  818. overflow:hidden;
  819. text-overflow: ellipsis;
  820. }
  821. .geEditor .geBigButton:hover {
  822. background-color:#0065ff;
  823. }
  824. .geEditor .geBigButton:active {
  825. background-color:#0747a6;
  826. opacity:1;
  827. }
  828. html body .geBigStandardButton {
  829. color: #344563;
  830. background-color: rgba(9, 30, 66, 0.08);
  831. }
  832. html body .geBigStandardButton:hover {
  833. background-color: rgba(9, 30, 66, 0.13);
  834. }
  835. html body .geBigStandardButton:active {
  836. background-color: #F8C382;
  837. color: #600000;
  838. }
  839. @media print {
  840. div.geNoPrint { display: none !important; }
  841. }
  842. .geSprite-actualsize { background-position: 0 0; }
  843. .geSprite-bold { background-position: 0 -46px; }
  844. .geSprite-bottom { background-position: 0 -92px; }
  845. .geSprite-center { background-position: 0 -138px; }
  846. .geSprite-delete { background-position: 0 -184px; }
  847. .geSprite-fillcolor { background-position: 0 -229px; }
  848. .geSprite-fit { background-position: 0 -277px; }
  849. .geSprite-fontcolor { background-position: 0 -322px; }
  850. .geSprite-gradientcolor { background-position: 0 -368px; }
  851. .geSprite-image { background-position: 0 -414px; }
  852. .geSprite-italic { background-position: 0 -460px; }
  853. .geSprite-left { background-position: 0 -505px; }
  854. .geSprite-middle { background-position: 0 -552px; }
  855. .geSprite-print { background-position: 0 -598px; }
  856. .geSprite-redo { background-position: 0 -644px; }
  857. .geSprite-right { background-position: 0 -689px; }
  858. .geSprite-shadow { background-position: 0 -735px; }
  859. .geSprite-strokecolor { background-position: 0 -782px; }
  860. .geSprite-top { background-position: 0 -828px; }
  861. .geSprite-underline { background-position: 0 -874px; }
  862. .geSprite-undo { background-position: 0 -920px; }
  863. .geSprite-zoomin { background-position: 0 -966px; }
  864. .geSprite-zoomout { background-position: 0 -1012px; }
  865. .geSprite-arrow { background-position: 0 -1059px; }
  866. .geSprite-linkedge { background-position: 0 -1105px; }
  867. .geSprite-straight { background-position: 0 -1150px; }
  868. .geSprite-entity { background-position: 0 -1196px; }
  869. .geSprite-orthogonal { background-position: 0 -1242px; }
  870. .geSprite-curved { background-position: 0 -1288px; }
  871. .geSprite-noarrow { background-position: 0 -1334px; }
  872. .geSprite-endclassic { background-position: 0 -1380px; }
  873. .geSprite-endopen { background-position: 0 -1426px; }
  874. .geSprite-endblock { background-position: 0 -1472px; }
  875. .geSprite-endoval { background-position: 0 -1518px; }
  876. .geSprite-enddiamond { background-position: 0 -1564px; }
  877. .geSprite-endthindiamond { background-position: 0 -1610px; }
  878. .geSprite-endclassictrans { background-position: 0 -1656px; }
  879. .geSprite-endblocktrans { background-position: 0 -1702px; }
  880. .geSprite-endovaltrans { background-position: 0 -1748px; }
  881. .geSprite-enddiamondtrans { background-position: 0 -1794px; }
  882. .geSprite-endthindiamondtrans { background-position: 0 -1840px; }
  883. .geSprite-startclassic { background-position: 0 -1886px; }
  884. .geSprite-startopen { background-position: 0 -1932px; }
  885. .geSprite-startblock { background-position: 0 -1978px; }
  886. .geSprite-startoval { background-position: 0 -2024px; }
  887. .geSprite-startdiamond { background-position: 0 -2070px; }
  888. .geSprite-startthindiamond { background-position: 0 -2116px; }
  889. .geSprite-startclassictrans { background-position: 0 -2162px; }
  890. .geSprite-startblocktrans { background-position: 0 -2208px; }
  891. .geSprite-startovaltrans { background-position: 0 -2254px; }
  892. .geSprite-startdiamondtrans { background-position: 0 -2300px; }
  893. .geSprite-startthindiamondtrans { background-position: 0 -2346px; }
  894. .geSprite-globe { background-position: 0 -2392px; }
  895. .geSprite-orderedlist { background-position: 0 -2438px; }
  896. .geSprite-unorderedlist { background-position: 0 -2484px; }
  897. .geSprite-horizontalrule { background-position: 0 -2530px; }
  898. .geSprite-link { background-position: 0 -2576px; }
  899. .geSprite-indent { background-position: 0 -2622px; }
  900. .geSprite-outdent { background-position: 0 -2668px; }
  901. .geSprite-code { background-position: 0 -2714px; }
  902. .geSprite-fontbackground { background-position: 0 -2760px; }
  903. .geSprite-removeformat { background-position: 0 -2806px; }
  904. .geSprite-superscript { background-position: 0 -2852px; }
  905. .geSprite-subscript { background-position: 0 -2898px; }
  906. .geSprite-table { background-position: 0 -2944px; }
  907. .geSprite-deletecolumn { background-position: 0 -2990px; }
  908. .geSprite-deleterow { background-position: 0 -3036px; }
  909. .geSprite-insertcolumnafter { background-position: 0 -3082px; }
  910. .geSprite-insertcolumnbefore { background-position: 0 -3128px; }
  911. .geSprite-insertrowafter { background-position: 0 -3174px; }
  912. .geSprite-insertrowbefore { background-position: 0 -3220px; }
  913. .geSprite-grid { background-position: 0 -3272px; }
  914. .geSprite-guides { background-position: 0 -3324px; }
  915. .geSprite-dots { background-position: 0 -3370px; }
  916. .geSprite-alignleft { background-position: 0 -3416px; }
  917. .geSprite-alignright { background-position: 0 -3462px; }
  918. .geSprite-aligncenter { background-position: 0 -3508px; }
  919. .geSprite-aligntop { background-position: 0 -3554px; }
  920. .geSprite-alignbottom { background-position: 0 -3600px; }
  921. .geSprite-alignmiddle { background-position: 0 -3646px; }
  922. .geSprite-justifyfull { background-position: 0 -3692px; }
  923. .geSprite-formatpanel { background-position: 0 -3738px; }
  924. .geSprite-connection { background-position: 0 -3784px; }
  925. .geSprite-vertical { background-position: 0 -3830px; }
  926. .geSprite-simplearrow { background-position: 0 -3876px; }
  927. .geSprite-plus { background-position: 0 -3922px; }
  928. .geSprite-rounded { background-position: 0 -3968px; }
  929. .geSprite-toback { background-position: 0 -4014px; }
  930. .geSprite-tofront { background-position: 0 -4060px; }
  931. .geSprite-duplicate { background-position: 0 -4106px; }
  932. .geSprite-insert { background-position: 0 -4152px; }
  933. .geSprite-endblockthin { background-position: 0 -4201px; }
  934. .geSprite-endblockthintrans { background-position: 0 -4247px; }
  935. .geSprite-enderone { background-position: 0 -4293px; }
  936. .geSprite-enderonetoone { background-position: 0 -4339px; }
  937. .geSprite-enderonetomany { background-position: 0 -4385px; }
  938. .geSprite-endermany { background-position: 0 -4431px; }
  939. .geSprite-enderoneopt { background-position: 0 -4477px; }
  940. .geSprite-endermanyopt { background-position: 0 -4523px; }
  941. .geSprite-endclassicthin { background-position: 0 -4938px; }
  942. .geSprite-endclassicthintrans { background-position: 0 -4984px; }
  943. .geSprite-enddash { background-position: 0 -5029px; }
  944. .geSprite-endcircleplus { background-position: 0 -5075px; }
  945. .geSprite-endcircle { background-position: 0 -5121px; }
  946. .geSprite-endasync { background-position: 0 -5167px; }
  947. .geSprite-endasynctrans { background-position: 0 -5213px; }
  948. .geSprite-startblockthin { background-position: 0 -4569px; }
  949. .geSprite-startblockthintrans { background-position: 0 -4615px; }
  950. .geSprite-starterone { background-position: 0 -4661px; }
  951. .geSprite-starteronetoone { background-position: 0 -4707px; }
  952. .geSprite-starteronetomany { background-position: 0 -4753px; }
  953. .geSprite-startermany { background-position: 0 -4799px; }
  954. .geSprite-starteroneopt { background-position: 0 -4845px; }
  955. .geSprite-startermanyopt { background-position: 0 -4891px; }
  956. .geSprite-startclassicthin { background-position: 0 -5259px; }
  957. .geSprite-startclassicthintrans { background-position: 0 -5305px; }
  958. .geSprite-startdash { background-position: 0 -5351px; }
  959. .geSprite-startcircleplus { background-position: 0 -5397px; }
  960. .geSprite-startcircle { background-position: 0 -5443px; }
  961. .geSprite-startasync { background-position: 0 -5489px; }
  962. .geSprite-startasynctrans { background-position: 0 -5535px; }
  963. .geSprite-startcross { background-position: 0 -5581px; }
  964. .geSprite-startopenthin { background-position: 0 -5627px; }
  965. .geSprite-startopenasync { background-position: 0 -5673px; }
  966. .geSprite-endcross { background-position: 0 -5719px; }
  967. .geSprite-endopenthin { background-position: 0 -5765px; }
  968. .geSprite-endopenasync { background-position: 0 -5811px; }
  969. .geSprite-verticalelbow { background-position: 0 -5857px; }
  970. .geSprite-horizontalelbow { background-position: 0 -5903px; }
  971. .geSprite-horizontalisometric { background-position: 0 -5949px; }
  972. .geSprite-verticalisometric { background-position: 0 -5995px; }
  973. .geSvgSprite {
  974. background-position: center center;
  975. }
  976. .geFlipSprite {
  977. transform:scaleX(-1);
  978. }
  979. .geSprite-box {
  980. background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='10' transform='translate(0.5,0.5)'><rect stroke='black' fill='none' x='2' y='2' width='6' height='6'/><path stroke='black' d='M8 5 L 18 5'/></svg>");
  981. }
  982. .geSprite-halfCircle {
  983. background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='10' transform='translate(0.5,0.5)'><path stroke='black' fill='none' d='M 2 2 Q 6 2 6 5 Q 6 8 2 8 M 6 5 L 18 5'/></svg>");
  984. }
  985. html div.mxRubberband {
  986. border-color:#0000DD;
  987. background:#99ccff;
  988. }
  989. td.mxPopupMenuIcon div {
  990. width:16px;
  991. height:16px;
  992. }
  993. .geEditor div.mxPopupMenu {
  994. box-shadow: 0px 0px 2px #C0C0C0;
  995. background:var(--panel-color);
  996. border-radius:4px;
  997. border-style:solid;
  998. border-width:1px;
  999. border-color:lightgray;
  1000. padding:3px;
  1001. }
  1002. .geSearchSidebar {
  1003. padding: 14px 8px 0px 8px;
  1004. box-sizing: border-box;
  1005. min-height: 60px;
  1006. overflow: hidden;
  1007. width: 100%;
  1008. }
  1009. .geSearchSidebar input {
  1010. font-size: 12px;
  1011. box-sizing: border-box;
  1012. border: 1px solid #d5d5d5;
  1013. border-radius: 4px;
  1014. width: 100%;
  1015. outline: none;
  1016. padding: 6px 20px 6px 6px
  1017. }
  1018. html table.mxPopupMenu {
  1019. border-collapse:collapse;
  1020. margin:0px;
  1021. }
  1022. html td.mxPopupMenuItem {
  1023. padding:7px 30px 7px 30px;
  1024. font-family:-apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", system-ui, ui-sans-serif, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  1025. font-size:10pt;
  1026. }
  1027. html td.mxPopupMenuIcon {
  1028. background-color:transparent;
  1029. padding:0px;
  1030. }
  1031. td.mxPopupMenuIcon .geIcon {
  1032. padding:2px;
  1033. padding-bottom:4px;
  1034. margin:2px;
  1035. border:1px solid transparent;
  1036. opacity:0.5;
  1037. }
  1038. html tr.mxPopupMenuItemHover {
  1039. background-color: #e0e0e0;
  1040. color: black;
  1041. }
  1042. table.mxPopupMenu hr {
  1043. color:#cccccc;
  1044. background-color:#cccccc;
  1045. border:none;
  1046. height:1px;
  1047. }
  1048. table.mxPopupMenu tr {
  1049. font-size:4pt;
  1050. }
  1051. html td.mxWindowTitle {
  1052. color:rgb(112, 112, 112);
  1053. background:#f1f3f4;
  1054. padding:4px;
  1055. }
  1056. table.geProperties {
  1057. table-layout:fixed;
  1058. }
  1059. table.geProperties tr td {
  1060. height:21px;
  1061. }
  1062. .gePropHeader, .gePropRow {
  1063. border: 1px solid #e9e9e9;
  1064. }
  1065. .gePropRowDark {
  1066. border: 1px solid #4472C4;
  1067. }
  1068. .gePropHeader>.gePropHeaderCell {
  1069. border-top: 0;
  1070. border-bottom: 0;
  1071. text-align: left;
  1072. width: 50%;
  1073. }
  1074. .gePropHeader>.gePropHeaderCell:first-child {
  1075. border-left: none;
  1076. }
  1077. .gePropHeader>.gePropHeaderCell:last-child {
  1078. border-right: none;
  1079. }
  1080. .gePropHeader {
  1081. background: #e5e5e5;
  1082. color: black;
  1083. }
  1084. .gePropRowCell {
  1085. border-left: 1px solid #f3f3f3;
  1086. white-space:nowrap;
  1087. text-overflow:ellipsis;
  1088. overflow:hidden;
  1089. max-width: 50%;
  1090. }
  1091. .gePropRow>.gePropRowCell {
  1092. background: #fff;
  1093. }
  1094. .gePropRowAlt>.gePropRowCell {
  1095. background: #fcfcfc;
  1096. }
  1097. .gePropRowDark>.gePropRowCell {
  1098. background: #fff;
  1099. color: #305496;
  1100. font-weight: bold;
  1101. }
  1102. .gePropRowDarkAlt>.gePropRowCell {
  1103. background: #D9E1F2;
  1104. color: #305496;
  1105. font-weight: bold;
  1106. }
  1107. .gePropEditor input:invalid {
  1108. border: 1px solid red;
  1109. }
  1110. /* Templates dialog css */
  1111. .geTemplateDlg {
  1112. width: 100%;
  1113. height: 100%;
  1114. }
  1115. .geTemplateDlg ::-webkit-scrollbar {
  1116. width:12px;
  1117. height:12px;
  1118. }
  1119. .geTemplateDlg ::-webkit-scrollbar-track {
  1120. background:whiteSmoke;
  1121. box-shadow:inset 0 0 4px rgba(0,0,0,0.1);
  1122. }
  1123. .geTemplateDlg ::-webkit-scrollbar-thumb {
  1124. background:#c5c5c5;
  1125. border-radius:10px;
  1126. border:whiteSmoke solid 3px;
  1127. }
  1128. .geTemplateDlg ::-webkit-scrollbar-thumb:hover {
  1129. background:#b5b5b5;
  1130. }
  1131. .geTempDlgHeader {
  1132. box-sizing: border-box;
  1133. height: 62px;
  1134. width: 100%;
  1135. border: 1px solid #CCCCCC;
  1136. border-radius: 5px 5px 0 0;
  1137. background-color: #F5F5F5;
  1138. }
  1139. .geTempDlgHeaderLogo {
  1140. height: 34px;
  1141. margin: 14px 14px 14px 20px;
  1142. }
  1143. .geTempDlgSearchBox {
  1144. color:#888888;
  1145. background:url("/images/icon-search.svg") no-repeat;
  1146. background-color: #FFFFFF;
  1147. background-position: 15px;
  1148. height: 40px;
  1149. width: 40%;
  1150. max-width: 400px;
  1151. border: 1px solid #CCCCCC;
  1152. border-radius: 3px;
  1153. float:right;
  1154. font-family:Arial,Helvetica,sans-serif;
  1155. font-size:15px;
  1156. line-height:36px;
  1157. margin: 11px 36px 0 0;
  1158. outline:medium none;
  1159. padding:0 0 0 36px;
  1160. text-shadow:1px 1px 0 white;
  1161. }
  1162. .geTemplatesList {
  1163. box-sizing: border-box;
  1164. float: left;
  1165. height: calc(100% - 118px);
  1166. width: 20%;
  1167. border: 1px solid #CCCCCC;
  1168. background-color: #FFFFFF;
  1169. display: inline-block;
  1170. overflow-x: hidden;
  1171. overflow-y: auto;
  1172. }
  1173. .geTempDlgContent {
  1174. box-sizing: border-box;
  1175. float: right;
  1176. height: calc(100% - 118px);
  1177. width: 80%;
  1178. border: 1px solid #CCCCCC;
  1179. background-color: #FFFFFF;
  1180. display: inline-block;
  1181. overflow-x: hidden;
  1182. overflow-y: auto;
  1183. position: relative;
  1184. }
  1185. .geTempDlgFooter {
  1186. box-sizing: border-box;
  1187. height: 52px;
  1188. width: 100%;
  1189. border: 1px solid #CCCCCC;
  1190. border-radius: 0 0 5px 5px;
  1191. background-color: #F5F5F5;
  1192. text-align: right;
  1193. font-family: Helvetica;
  1194. font-size: 14px;
  1195. line-height: 17px;
  1196. padding-top: 11px;
  1197. }
  1198. .geTempDlgCreateBtn, .geTempDlgOpenBtn {
  1199. display: inline-block;
  1200. width: 67px;
  1201. border-radius: 3px;
  1202. background-color: #3D72AD;
  1203. padding: 6px;
  1204. text-align: center;
  1205. color: #fff;
  1206. cursor: pointer;
  1207. margin-left: 5px;
  1208. }
  1209. .geTempDlgCancelBtn {
  1210. display: inline-block;
  1211. width: 67px;
  1212. padding: 6px;
  1213. text-align: center;
  1214. color: #3D72AD;
  1215. cursor: pointer;
  1216. }
  1217. .geTempDlgCancelBtn:active, .geTempDlgCreateBtn:active,
  1218. .geTempDlgOpenBtn:active, .geTempDlgShowAllBtn:active {
  1219. transform: translateY(2px);
  1220. }
  1221. .geTempDlgBtnDisabled {
  1222. background-color: #9fbddd;
  1223. }
  1224. .geTempDlgBtnDisabled:active {
  1225. transform: translateY(0px);
  1226. }
  1227. .geTempDlgBtnBusy {
  1228. background-image: url(/images/aui-wait.gif);
  1229. background-repeat: no-repeat;
  1230. background-position: 62px 7px;
  1231. }
  1232. .geTempDlgBack {
  1233. height: 17px;
  1234. color: #333333;
  1235. font-family: Helvetica;
  1236. font-size: 14px;
  1237. font-weight: bold;
  1238. line-height: 17px;
  1239. padding: 25px 0 0 20px;
  1240. cursor: pointer;
  1241. }
  1242. .geTempDlgHLine {
  1243. height: 1px;
  1244. width: calc(100% - 22px);
  1245. background-color: #CCCCCC;
  1246. margin: 20px 0 0 11px;
  1247. }
  1248. .geTemplatesLbl {
  1249. height: 17px;
  1250. color: #6D6D6D;
  1251. font-family: Helvetica;
  1252. font-size: 14px;
  1253. font-weight: bold;
  1254. line-height: 17px;
  1255. text-transform: uppercase;
  1256. margin: 20px 0 3px 20px;
  1257. }
  1258. .geTemplateCatLink {
  1259. height: 17px;
  1260. color: #3D72AD;
  1261. font-family: Helvetica;
  1262. font-size: 14px;
  1263. line-height: 17px;
  1264. margin: 12px 0 0 20px;
  1265. cursor: pointer;
  1266. }
  1267. .geTempDlgNewDiagramCat {
  1268. height: 280px;
  1269. width: 100%;
  1270. background-color: #555555;
  1271. }
  1272. .geTempDlgNewDiagramCatLbl {
  1273. height: 17px;
  1274. color: #FFFFFF;
  1275. font-family: Helvetica;
  1276. font-size: 14px;
  1277. font-weight: bold;
  1278. line-height: 17px;
  1279. padding: 25px 0 0 20px;
  1280. text-transform: uppercase;
  1281. }
  1282. .geTempDlgNewDiagramCatList {
  1283. width: 100%;
  1284. height: 190px;
  1285. padding-left: 9px;
  1286. box-sizing: border-box;
  1287. overflow-y: auto;
  1288. overflow-x: hidden;
  1289. }
  1290. .geTempDlgNewDiagramCatFooter {
  1291. width: 100%;
  1292. }
  1293. .geTempDlgShowAllBtn {
  1294. width: 78px;
  1295. border: 1px solid #777777;
  1296. border-radius: 3px;
  1297. cursor: pointer;
  1298. text-align: center;
  1299. color: #DDDDDD;
  1300. font-family: Helvetica;
  1301. font-size: 14px;
  1302. line-height: 17px;
  1303. padding: 4px;
  1304. float: right;
  1305. margin-right: 30px;
  1306. }
  1307. .geTempDlgNewDiagramCatItem {
  1308. height: 155px;
  1309. width: 134px;
  1310. padding: 18px 6px 0 9px;
  1311. display: inline-block;
  1312. }
  1313. .geTempDlgNewDiagramCatItemImg {
  1314. box-sizing: border-box;
  1315. height: 134px;
  1316. width: 134px;
  1317. border: 1px solid #CCCCCC;
  1318. border-radius: 3px;
  1319. background-color: #FFFFFF;
  1320. display:table-cell;
  1321. vertical-align:middle;
  1322. text-align:center;
  1323. cursor: pointer;
  1324. }
  1325. .geTempDlgNewDiagramCatItemActive > .geTempDlgNewDiagramCatItemImg {
  1326. border: 4px solid #3D72AD;
  1327. }
  1328. .geTempDlgNewDiagramCatItemLbl {
  1329. height: 17px;
  1330. width: 100%;
  1331. color: #FFFFFF;
  1332. font-family: Helvetica;
  1333. font-size: 14px;
  1334. line-height: 17px;
  1335. text-align: center;
  1336. padding-top: 4px;
  1337. cursor: pointer;
  1338. }
  1339. .geTempDlgDiagramsList {
  1340. box-sizing: border-box;
  1341. width: 100%;
  1342. min-height: calc(100% - 280px);
  1343. padding-left: 9px;
  1344. box-sizing: border-box;
  1345. background-color: #E5E5E5;
  1346. }
  1347. .geTempDlgDiagramsListHeader {
  1348. width: 100%;
  1349. height: 45px;
  1350. padding: 18px 20px 0 11px;
  1351. box-sizing: border-box;
  1352. }
  1353. .geTempDlgDiagramsListTitle {
  1354. box-sizing: border-box;
  1355. height: 17px;
  1356. color: #666666;
  1357. font-family: Helvetica;
  1358. font-size: 14px;
  1359. font-weight: bold;
  1360. line-height: 17px;
  1361. text-transform: uppercase;
  1362. padding-top: 5px;
  1363. display: inline-block;
  1364. }
  1365. .geTempDlgDiagramsListBtns {
  1366. float: right;
  1367. margin-top: -9px;
  1368. }
  1369. .geTempDlgRadioBtn {
  1370. box-sizing: border-box;
  1371. border: 1px solid #CCCCCC;
  1372. border-radius: 3px;
  1373. background-color: #FFFFFF;
  1374. color: #333333;
  1375. display: inline-block;
  1376. font-family: Helvetica;
  1377. font-size: 14px;
  1378. line-height: 17px;
  1379. text-align: center;
  1380. padding: 4px;
  1381. cursor: pointer;
  1382. }
  1383. .geTempDlgRadioBtnActive {
  1384. background-color: #555555;
  1385. color: #FFFFFF;
  1386. }
  1387. .geTempDlgRadioBtnLarge {
  1388. height: 27px;
  1389. width: 120px;
  1390. }
  1391. /* TODO is there a better way for these buttons */
  1392. .geTempDlgRadioBtnSmall {
  1393. position: relative;
  1394. top: 9px;
  1395. height: 27px;
  1396. width: 27px;
  1397. }
  1398. .geTempDlgRadioBtnSmall img {
  1399. position: absolute;
  1400. top: 6px;
  1401. left: 6px;
  1402. height: 13px;
  1403. width: 13px;
  1404. }
  1405. .geTempDlgSpacer {
  1406. display: inline-block;
  1407. width: 10px;
  1408. }
  1409. .geTempDlgDiagramsListGrid {
  1410. width: 100%;
  1411. white-space: nowrap;
  1412. font-size: 13px;
  1413. padding: 0px 20px 20px 10px;
  1414. box-sizing: border-box;
  1415. border-spacing: 0;
  1416. }
  1417. .geTempDlgDiagramsListGrid tr {
  1418. height: 40px;
  1419. }
  1420. .geTempDlgDiagramsListGrid th {
  1421. background-color: #E5E5E5;
  1422. color: #8E8E8E;
  1423. font-weight: bold;
  1424. text-align: left;
  1425. padding: 5px;
  1426. border-bottom: 1px solid #CCCCCC;
  1427. font-size: 14px;
  1428. }
  1429. .geTempDlgDiagramsListGrid td {
  1430. background-color: #FFFFFF;
  1431. color: #888888;
  1432. padding: 5px;
  1433. border-bottom: 1px solid #CCCCCC;
  1434. overflow: hidden;
  1435. }
  1436. .geTempDlgDiagramsListGridActive td {
  1437. border-bottom: 2px solid #3D72AD;
  1438. border-top: 2px solid #3D72AD;
  1439. }
  1440. .geTempDlgDiagramsListGridActive td:first-child {
  1441. border-left: 2px solid #3D72AD;
  1442. }
  1443. .geTempDlgDiagramsListGridActive td:last-child {
  1444. border-right: 2px solid #3D72AD;
  1445. }
  1446. .geTempDlgDiagramTitle {
  1447. font-weight: bold;
  1448. color: #666666 !important;
  1449. }
  1450. .geTempDlgDiagramsTiles {
  1451. position: relative;
  1452. min-height: 100px;
  1453. }
  1454. .geTempDlgDiagramTile {
  1455. height: 152px;
  1456. width: 130px;
  1457. padding: 20px 7px 0 10px;
  1458. display: inline-block;
  1459. position: relative;
  1460. }
  1461. .geTempDlgDiagramTileImg {
  1462. box-sizing: border-box;
  1463. height: 130px;
  1464. width: 130px;
  1465. border: 1px solid #CCCCCC;
  1466. border-radius: 3px;
  1467. background-color: #FFFFFF;
  1468. display:table-cell;
  1469. vertical-align:middle;
  1470. text-align:center;
  1471. }
  1472. .geTempDlgDiagramTileImgLoading {
  1473. background-image: url(/images/aui-wait.gif);
  1474. background-repeat: no-repeat;
  1475. background-position: center;
  1476. }
  1477. .geTempDlgDiagramTileImgError {
  1478. background-image: url(/images/broken.png);
  1479. background-repeat: no-repeat;
  1480. background-position: center;
  1481. background-color: #be3730;
  1482. }
  1483. .geTempDlgDiagramTileImg img{
  1484. max-width: 117px;
  1485. max-height: 117px;
  1486. cursor: pointer;
  1487. }
  1488. .geTempDlgDiagramTileActive > .geTempDlgDiagramTileImg{
  1489. border: 4px solid #3D72AD;
  1490. }
  1491. .geTempDlgDiagramTileLbl {
  1492. height: 17px;
  1493. width: 100%;
  1494. color: #333333;
  1495. font-family: Helvetica;
  1496. font-size: 14px;
  1497. line-height: 17px;
  1498. text-align: center;
  1499. padding-top: 5px;
  1500. cursor: pointer;
  1501. }
  1502. .geTempDlgDiagramPreviewBtn {
  1503. position: absolute;
  1504. top: 28px;
  1505. right: 15px;
  1506. cursor: pointer;
  1507. }
  1508. .geTempDlgDiagramListPreviewBtn {
  1509. cursor: pointer;
  1510. padding-left: 5px;
  1511. padding-right: 15px;
  1512. }
  1513. .geTempDlgDiagramPreviewBox {
  1514. position: absolute;
  1515. top: 3%;
  1516. left: 10%;
  1517. width: 80%;
  1518. height: 94%;
  1519. background: white;
  1520. border: 4px solid #3D72AD;
  1521. border-radius: 6px;
  1522. box-sizing: border-box;
  1523. display:table-cell;
  1524. vertical-align:middle;
  1525. text-align:center;
  1526. z-index: 2;
  1527. }
  1528. .geTempDlgDialogMask {
  1529. position: absolute;
  1530. top: 0;
  1531. left: 0;
  1532. width: 100%;
  1533. height: 100%;
  1534. z-index: 1;
  1535. }
  1536. .geTempDlgDiagramPreviewBox img {
  1537. max-width: 95%;
  1538. max-height: 95%;
  1539. vertical-align: middle;
  1540. }
  1541. .geTempDlgPreviewCloseBtn {
  1542. position: absolute;
  1543. top: 5px;
  1544. right: 5px;
  1545. cursor: pointer;
  1546. }
  1547. .geTempDlgLinkToDiagramHint {
  1548. color: #555;
  1549. }
  1550. .geTempDlgLinkToDiagramBtn {
  1551. color: #555;
  1552. margin: 0 10px 0 10px;
  1553. height: 27px;
  1554. font-size: 14px;
  1555. }
  1556. .geTempDlgErrMsg {
  1557. display: none;
  1558. color: red;
  1559. position: absolute;
  1560. width: 100%;
  1561. text-align: center;
  1562. }
  1563. .geTempDlgImportCat {
  1564. font-weight: bold;
  1565. background: #f9f9f9;
  1566. padding: 5px 0px;
  1567. padding: 10px;
  1568. margin: 10px 10px 0px 0px;
  1569. }
  1570. /* Comments CSS */
  1571. .geCommentsWin {
  1572. user-select: none;
  1573. border: 1px solid whiteSmoke;
  1574. height: 100%;
  1575. margin-bottom: 10px;
  1576. overflow: auto;
  1577. }
  1578. .geCommentsToolbar {
  1579. position: absolute;
  1580. bottom: 0px;
  1581. left: 0px;
  1582. right: 0px;
  1583. overflow: hidden;
  1584. border-width: 1px 0px 0px 0px;
  1585. border-color: #c3c3c3;
  1586. border-style: solid;
  1587. display: block;
  1588. white-space: nowrap;
  1589. }
  1590. .geCommentsList {
  1591. position: absolute;
  1592. overflow: auto;
  1593. left: 0px;
  1594. right: 0px;
  1595. top: 0px;
  1596. }
  1597. .geCommentContainer {
  1598. position: relative;
  1599. padding: 12px;
  1600. margin: 5px;
  1601. min-height: 50px;
  1602. display: block;
  1603. background-color: white;
  1604. border-width: 0px 0px 1px 0px;
  1605. border-color: #c3c3c3;
  1606. border-style: solid;
  1607. border-radius: 10px;
  1608. white-space: nowrap;
  1609. box-shadow: 2px 2px 6px rgba(60,64,67,.15);
  1610. color: #3C4043;
  1611. }
  1612. .geCommentHeader {
  1613. width: 100%;
  1614. height: 32px;
  1615. }
  1616. .geCommentUserImg {
  1617. width: 32px;
  1618. height: 32px;
  1619. border-radius: 50%;
  1620. float: left;
  1621. background-color: whitesmoke;
  1622. }
  1623. .geCommentHeaderTxt {
  1624. overflow: hidden;
  1625. height: 32px;
  1626. padding-left: 5px;
  1627. }
  1628. .geCommentUsername {
  1629. overflow: hidden;
  1630. height: 18px;
  1631. font-size: 15px;
  1632. font-weight: bold;
  1633. text-overflow: ellipsis;
  1634. }
  1635. .geCommentDate {
  1636. color: #707070;
  1637. overflow: hidden;
  1638. height: 14px;
  1639. font-size: 11px;
  1640. text-overflow: ellipsis;
  1641. }
  1642. .geCommentDate::first-letter {
  1643. text-transform: uppercase;
  1644. }
  1645. .geCommentTxt {
  1646. font-size: 14px;
  1647. padding-top: 5px;
  1648. white-space: normal;
  1649. min-height: 12px;
  1650. }
  1651. .geCommentEditTxtArea {
  1652. margin-top: 5px;
  1653. font-size: 14px !important;
  1654. min-height: 12px;
  1655. max-width: 100%;
  1656. min-width: 100%;
  1657. width: 100%;
  1658. box-sizing: border-box;
  1659. }
  1660. .geCommentEditBtns {
  1661. width: 100%;
  1662. box-sizing: border-box;
  1663. padding-top: 5px;
  1664. height: 20px;
  1665. }
  1666. .geCommentEditBtn {
  1667. padding: 3px 8px 3px 8px !important;
  1668. float: right !important;
  1669. margin-left: 5px;
  1670. }
  1671. .geCommentActions {
  1672. color: #707070;
  1673. font-size: 12px;
  1674. }
  1675. .geCommentActionsList {
  1676. list-style-type: disc;
  1677. margin: 0px;
  1678. padding: 10px 0 0 0;
  1679. }
  1680. .geCommentAction {
  1681. display: inline-block;
  1682. padding: 0;
  1683. }
  1684. .geCommentAction:before {
  1685. content: "\2022";
  1686. padding: 5px;
  1687. }
  1688. .geCommentAction:first-child:before {
  1689. content: "";
  1690. padding: 0;
  1691. }
  1692. .geCommentActionLnk {
  1693. cursor: pointer;
  1694. color: #707070;
  1695. text-decoration: none;
  1696. }
  1697. .geCommentActionLnk:hover {
  1698. text-decoration: underline;
  1699. }
  1700. .geCheckedBtn {
  1701. background-color: #ccc;
  1702. border-top: 1px solid black !important;
  1703. border-left: 1px solid black !important;
  1704. }
  1705. .geCommentBusyImg {
  1706. position: absolute;
  1707. top: 5px;
  1708. right: 5px;
  1709. }
  1710. .geAspectDlgListItem
  1711. {
  1712. width : 120px;
  1713. height : 120px;
  1714. display : inline-block;
  1715. border: 3px solid #F0F0F0;
  1716. border-radius: 5px;
  1717. padding: 5px;
  1718. margin : 2px 2px 20px 2px;
  1719. }
  1720. .geAspectDlgListItem:hover
  1721. {
  1722. border: 3px solid #c5c5c5;
  1723. }
  1724. .geAspectDlgListItemSelected
  1725. {
  1726. border: 3px solid #3b73af;
  1727. }
  1728. .geAspectDlgListItemSelected:hover
  1729. {
  1730. border: 3px solid #405a86;
  1731. }
  1732. .geAspectDlgListItemText
  1733. {
  1734. text-overflow: ellipsis;
  1735. max-width: 100%;
  1736. min-height : 2em;
  1737. overflow : hidden;
  1738. text-align : center;
  1739. margin-top : 10px;
  1740. }
  1741. .geAspectDlgList
  1742. {
  1743. min-height: 184px;
  1744. white-space: nowrap;
  1745. overflow-x: auto;
  1746. }
  1747. .geStripedTable
  1748. {
  1749. border-collapse: collapse;
  1750. width: 100%;
  1751. table-layout: fixed;
  1752. }
  1753. .geStripedTable td, .geStripedTable th
  1754. {
  1755. border: 1px solid #ddd;
  1756. text-align: left;
  1757. padding: 2px;
  1758. white-space: nowrap;
  1759. overflow: hidden;
  1760. text-overflow: ellipsis;
  1761. }
  1762. .geStripedTable tr:nth-child(odd){background-color: #f2f2f2;}
  1763. .geStripedTable tr:hover {background-color: #ddd;}
  1764. .geStripedTable th {
  1765. padding-top: 4px;
  1766. padding-bottom: 4px;
  1767. background-color: #bbb;
  1768. }
  1769. .geNotification-box {
  1770. display:flex;
  1771. text-align: center;
  1772. position: relative;
  1773. cursor: pointer;
  1774. width: 20px;
  1775. }
  1776. .geNotification-bell {
  1777. animation: geBellAnim 1s 1s both;
  1778. }
  1779. .geNotification-bell * {
  1780. display: block;
  1781. margin: 0 auto;
  1782. background-color: #656565;
  1783. }
  1784. .geBell-top {
  1785. width: 2px;
  1786. height: 2px;
  1787. border-radius: 1px 1px 0 0;
  1788. }
  1789. .geBell-middle {
  1790. width: 12px;
  1791. height: 12px;
  1792. margin-top: -1px;
  1793. border-radius: 7px 7px 0 0;
  1794. }
  1795. .geBell-bottom {
  1796. position: relative;
  1797. z-index: 0;
  1798. width: 16px;
  1799. height: 1px;
  1800. }
  1801. .geBell-bottom::before,
  1802. .geBell-bottom::after {
  1803. content: '';
  1804. position: absolute;
  1805. top: -4px;
  1806. }
  1807. .geBell-bottom::before {
  1808. left: 1px;
  1809. border-bottom-width: 4px;
  1810. border-right: 0 solid transparent;
  1811. border-left: 4px solid transparent;
  1812. }
  1813. .geBell-bottom::after {
  1814. right: 1px;
  1815. border-bottom-width: 4px;
  1816. border-right: 4px solid transparent;
  1817. border-left: 0 solid transparent;
  1818. }
  1819. .geBell-rad {
  1820. width: 3px;
  1821. height: 2px;
  1822. margin-top: 0.5px;
  1823. border-radius: 0 0 2px 2px;
  1824. animation: geRadAnim 1s 2s both;
  1825. }
  1826. .geNotification-count {
  1827. position: absolute;
  1828. z-index: 1;
  1829. top: -5px;
  1830. right: -4px;
  1831. width: 13px;
  1832. height: 13px;
  1833. line-height: 13px;
  1834. font-size: 8px;
  1835. border-radius: 50%;
  1836. background-color: #ff4927;
  1837. color: #FFF;
  1838. animation: geZoomAnim 1s 1s both;
  1839. }
  1840. @keyframes geBellAnim {
  1841. 0% { transform: rotate(0); }
  1842. 10% { transform: rotate(30deg); }
  1843. 20% { transform: rotate(0); }
  1844. 80% { transform: rotate(0); }
  1845. 90% { transform: rotate(-30deg); }
  1846. 100% { transform: rotate(0); }
  1847. }
  1848. @keyframes geRadAnim {
  1849. 0% { transform: translateX(0); }
  1850. 10% { transform: translateX(5px); }
  1851. 20% { transform: translateX(0); }
  1852. 80% { transform: translateX(0); }
  1853. 90% { transform: translateX(-5px); }
  1854. 100% { transform: translateX(0); }
  1855. }
  1856. @keyframes geZoomAnim {
  1857. 0% { opacity: 0; transform: scale(0); }
  1858. 50% { opacity: 1; transform: scale(1); }
  1859. 100% { opacity: 1; }
  1860. }
  1861. .geNotifPanel {
  1862. height: 300px;
  1863. width: 300px;
  1864. background: #fff;
  1865. border-radius: 3px;
  1866. overflow: hidden;
  1867. -webkit-box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
  1868. box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
  1869. -webkit-transition: all .5s ease-in-out;
  1870. transition: all .5s ease-in-out;
  1871. position: absolute;
  1872. right: 100px;
  1873. top: 42px;
  1874. z-index: 150;
  1875. }
  1876. .geNotifPanel .header {
  1877. background: #cecece;
  1878. color: #707070;
  1879. font-size: 15px;
  1880. }
  1881. .geNotifPanel .header .title {
  1882. display: block;
  1883. text-align: center;
  1884. line-height: 30px;
  1885. font-weight: 600;
  1886. }
  1887. .geNotifPanel .header .closeBtn {
  1888. position: absolute;
  1889. line-height: 30px;
  1890. cursor: pointer;
  1891. right: 15px;
  1892. top: 0;
  1893. }
  1894. .geNotifPanel .notifications {
  1895. position: relative;
  1896. height: 270px;
  1897. overflow-x: hidden;
  1898. overflow-y: auto;
  1899. }
  1900. .geNotifPanel .notifications .line {
  1901. position: absolute;
  1902. top: 0;
  1903. left: 27px;
  1904. height: 100%;
  1905. width: 3px;
  1906. background: #EBEBEB;
  1907. }
  1908. .geNotifPanel .notifications .notification {
  1909. position: relative;
  1910. z-index: 2;
  1911. margin: 25px 20px 25px 43px;
  1912. }
  1913. .geNotifPanel .notifications .notification:nth-child(n+1) {
  1914. animation: geHere-am-i 0.5s ease-out 0.4s;
  1915. animation-fill-mode: both;
  1916. }
  1917. .geNotifPanel .notifications .notification:hover {
  1918. color: #1B95E0;
  1919. cursor: pointer;
  1920. }
  1921. .geNotifPanel .notifications .notification .circle {
  1922. -webkit-box-sizing: border-box;
  1923. box-sizing: border-box;
  1924. position: absolute;
  1925. height: 11px;
  1926. width: 11px;
  1927. background: #fff;
  1928. border: 2px solid #1B95E0;
  1929. -webkit-box-shadow: 0 0 0 3px #fff;
  1930. box-shadow: 0 0 0 3px #fff;
  1931. border-radius: 6px;
  1932. top: 0;
  1933. left: -20px;
  1934. }
  1935. .geNotifPanel .notifications .notification .circle.active {
  1936. background: #1B95E0;
  1937. }
  1938. .geNotifPanel .notifications .notification .time {
  1939. display: block;
  1940. font-size: 11px;
  1941. line-height: 11px;
  1942. margin-bottom: 2px;
  1943. }
  1944. .geNotifPanel .notifications .notification p {
  1945. font-size: 15px;
  1946. line-height: 20px;
  1947. margin: 0;
  1948. }
  1949. .geNotifPanel .notifications .notification p b {
  1950. font-weight: 600;
  1951. }
  1952. @-webkit-keyframes geHere-am-i {
  1953. from {
  1954. -webkit-transform: translate3d(0, 50px, 0);
  1955. transform: translate3d(0, 50px, 0);
  1956. opacity: 0;
  1957. }
  1958. to {
  1959. -webkit-transform: translate3d(0, 0, 0);
  1960. transform: translate3d(0, 0, 0);
  1961. opacity: 1;
  1962. }
  1963. }
  1964. @keyframes geHere-am-i {
  1965. from {
  1966. -webkit-transform: translate3d(0, 50px, 0);
  1967. transform: translate3d(0, 50px, 0);
  1968. opacity: 0;
  1969. }
  1970. to {
  1971. -webkit-transform: translate3d(0, 0, 0);
  1972. transform: translate3d(0, 0, 0);
  1973. opacity: 1;
  1974. }
  1975. }
  1976. .geTempTree {
  1977. margin: 0;
  1978. padding: 0;
  1979. }
  1980. .geTempTree, .geTempTreeActive, .geTempTreeNested {
  1981. list-style-type: none;
  1982. transition: all 0.5s;
  1983. }
  1984. .geTempTreeCaret {
  1985. box-sizing: border-box;
  1986. cursor: pointer;
  1987. user-select: none;
  1988. padding: 6px;
  1989. width: 100%;
  1990. transition: all 0.5s;
  1991. }
  1992. .geTempTreeCaret::before {
  1993. content: "\25B6";
  1994. display: inline-block;
  1995. font-size: 10px;
  1996. margin-right: 6px;
  1997. }
  1998. .geTempTreeCaret-down::before {
  1999. transform: rotate(90deg);
  2000. }
  2001. .geTempTreeNested {
  2002. height: 0;
  2003. opacity: 0;
  2004. }
  2005. .geTempTreeActive {
  2006. height: 100%;
  2007. opacity: 1;
  2008. }
  2009. .geTempTreeActive, .geTempTreeNested {
  2010. padding-left: 15px;
  2011. }
  2012. .geTempTreeActive > li, .geTempTreeNested > li {
  2013. box-sizing: border-box;
  2014. padding: 3px;
  2015. width: 100%;
  2016. cursor: pointer;
  2017. user-select: none;
  2018. transition: all 0.5s;
  2019. }
  2020. /*Electron Window Controls*/
  2021. #geWindow-controls {
  2022. display: grid;
  2023. grid-template-columns: repeat(3, 30px);
  2024. position: absolute;
  2025. top: 2px;
  2026. right: 3px;
  2027. height: 22px;
  2028. -webkit-app-region: no-drag;
  2029. }
  2030. #geWindow-controls .button {
  2031. grid-row: 1 / span 1;
  2032. display: flex;
  2033. justify-content: center;
  2034. align-items: center;
  2035. width: 100%;
  2036. height: 100%;
  2037. user-select: none;
  2038. }
  2039. #min-button {
  2040. grid-column: 1;
  2041. }
  2042. #max-button, #restore-button {
  2043. grid-column: 2;
  2044. }
  2045. #close-button {
  2046. grid-column: 3;
  2047. }
  2048. #geWindow-controls .button.dark:hover {
  2049. background: rgba(255,255,255,0.1);
  2050. }
  2051. #geWindow-controls .button.dark:active {
  2052. background: rgba(255,255,255,0.2);
  2053. }
  2054. #geWindow-controls .button.white:hover {
  2055. background: rgba(0,0,0,0.1);
  2056. }
  2057. #geWindow-controls .button.white:active {
  2058. background: rgba(0,0,0,0.2);
  2059. }
  2060. #close-button:hover {
  2061. background: #E81123 !important;
  2062. }
  2063. #close-button:active {
  2064. background: #F1707A !important;
  2065. }
  2066. #restore-button {
  2067. display: none !important;
  2068. }
  2069. /*
  2070. .geMaximized #titlebar {
  2071. width: 100%;
  2072. padding: 0;
  2073. }
  2074. */
  2075. .geMaximized #restore-button {
  2076. display: flex !important;
  2077. }
  2078. .geMaximized #max-button {
  2079. display: none;
  2080. }
  2081. [draggable="true"] {
  2082. transform: translate(0, 0);
  2083. z-index: 0;
  2084. }