style.css 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318
  1. 
  2. :focus {
  3. outline: 0;
  4. }
  5. html, body {
  6. width: 100%;
  7. height: 100%;
  8. }
  9. body {
  10. margin: 0;
  11. padding: 0;
  12. border: 0;
  13. color: black;
  14. font-size: 13px;
  15. font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  16. background-color: #d3d9d6;
  17. /* overflow-y: hidden; */
  18. }
  19. .night .collapseImage {
  20. filter: invert(100%);
  21. }
  22. #container {
  23. background-color: #fff;
  24. width: 960px;
  25. min-width: 960px;
  26. max-height: 100vh;
  27. margin: 0 auto;
  28. border-top: 0;
  29. border-right: 1px solid #b7b7b7;
  30. border-bottom: 0;
  31. border-left: 1px solid #b7b7b7;
  32. padding: 0;
  33. }
  34. .night #container {
  35. color: #bbb;
  36. background-color: #000;
  37. }
  38. .fullscreen.login #container {
  39. -ms-grid-rows: 66px 24px 1fr 45px;
  40. grid-template-rows: 66px 24px auto 45px;
  41. -ms-grid-columns: 90px 1fr;
  42. /*grid-template-columns: 90px repeat(auto-fit, minmax(900px, 1fr));*/
  43. grid-template-areas: "header header" "nav nav" "content content" "footer footer";
  44. }
  45. .fullscreen.arg_hide #container {
  46. -ms-grid-rows: 66px 24px 1fr 45px;
  47. grid-template-rows: 66px 24px auto 45px;
  48. -ms-grid-columns: 90px 1fr;
  49. /*grid-template-columns: 90px repeat(auto-fit, minmax(900px, 1fr));*/
  50. grid-template-areas: "header header" "nav nav" "content content" "footer footer";
  51. }
  52. .fullscreen.menu_stack #container {
  53. -ms-grid-rows: 66px minmax(24px, max-content) 1fr 45px;
  54. grid-template-rows: 66px minmax(24px, max-content) auto 45px;
  55. -ms-grid-columns: 90px 1fr;
  56. /*grid-template-columns: 90px repeat(auto-fit, minmax(900px, 1fr));*/
  57. grid-template-areas: "header header" "nav nav" "content content" "footer footer";
  58. }
  59. .nofooter.fullscreen.menu_stack #container {
  60. -ms-grid-rows: 66px minmax(24px, max-content) 1fr 0px;
  61. grid-template-rows: 66px minmax(24px, max-content) auto 0px;
  62. -ms-grid-columns: 90px 1fr;
  63. /*grid-template-columns: 90px repeat(auto-fit, minmax(900px, 1fr));*/
  64. grid-template-areas: "header header" "nav nav" "content content" "footer footer";
  65. }
  66. .fullscreen #container {
  67. width: 100%;
  68. min-width: 100%;
  69. min-height: 0px;
  70. border-right: 0px none #b7b7b7;
  71. border-left: 0px none #b7b7b7;
  72. height: calc(100% - 0px);
  73. position: relative;
  74. display: -ms-grid;
  75. display: grid;
  76. grid-gap: 0px;
  77. grid-template-areas: "header header" "sidebar nav" "sidebar content" "sidebar footer";
  78. -ms-grid-columns: 90px 1fr;
  79. grid-template-columns: 90px auto;
  80. -ms-grid-rows: 66px 24px 1fr 45px;
  81. grid-template-rows: 66px 24px auto 45px;
  82. }
  83. .nofooter #container {
  84. -ms-grid-rows: 66px 24px 1fr 0px;
  85. grid-template-rows: 66px 24px auto 0px;
  86. }
  87. .fulldesk #container {
  88. width: 100%;
  89. height: 100%;
  90. min-width: 700px;
  91. min-height: 0px;
  92. border-right: 0px none #b7b7b7;
  93. border-left: 0px none #b7b7b7;
  94. position: unset;
  95. position: relative;
  96. display: -ms-grid !important;
  97. display: grid !important;
  98. grid-gap: 0px;
  99. grid-template-areas: "content" !important;
  100. -ms-grid-columns: 1fr;
  101. grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
  102. -ms-grid-rows: 1fr;
  103. grid-template-rows: repeat(auto-fit, minmax(100px, 1fr)) !important;
  104. }
  105. .AgentInviteMasthead {
  106. background:url(logo.png) 0px 0px;
  107. background-color:#036;
  108. background-repeat:no-repeat;height:66px;width:100%;overflow:hidden;
  109. }
  110. #masthead {
  111. width: auto;
  112. margin: 0;
  113. padding: 0;
  114. overflow: hidden;
  115. text-align: right;
  116. background-color: #036;
  117. background-image: url(../logo.png);
  118. background-position-x: 0px;
  119. background-position-y: 0px;
  120. background-attachment: initial;
  121. background-repeat: no-repeat;
  122. /*width: 960px;*/
  123. height: 66px;
  124. }
  125. .fullscreen #masthead {
  126. width: 100%;
  127. grid-area: header;
  128. -ms-grid-column: 1;
  129. -ms-grid-column-span: 2;
  130. -ms-grid-row: 1;
  131. }
  132. .fulldesk #masthead {
  133. display: none;
  134. }
  135. .fulldesk #mastheadx {
  136. display: none;
  137. }
  138. .fulldesk #p11deviceNameHeader {
  139. display: none;
  140. }
  141. #masthead .title {
  142. float: left;
  143. height: 66px;
  144. color: #c8c8c8;
  145. padding-left: 14px;
  146. padding-top: 7px;
  147. font-size: 46px;
  148. font-family: Arial,Helvetica,sans-serif;
  149. font-weight: bold;
  150. text-shadow: 1px 1px 2px #000;
  151. }
  152. #masthead .title2 {
  153. float: left;
  154. height: 66px;
  155. color: #c8c8c8;
  156. padding-left: 5px;
  157. padding-top: 14px;
  158. font-size: 14px;
  159. font-family: Arial,Helvetica,sans-serif;
  160. font-weight: bold;
  161. text-shadow: 1px 1px 2px #000;
  162. }
  163. #page_leftbar {
  164. -ms-grid-column: 1;
  165. -ms-grid-row: 2;
  166. -ms-grid-row-span: 3;
  167. height: 100%;
  168. /* height: calc(100vh - 66px); */
  169. width: 90px;
  170. z-index: 1000;
  171. background: #113962;
  172. background: linear-gradient(to bottom, #104893 0%,#113962 100%);
  173. color: white;
  174. overflow-y: hidden;
  175. display: none;
  176. }
  177. .fullscreen #page_leftbar {
  178. grid-area: sidebar;
  179. display: block;
  180. }
  181. .menu_stack #page_leftbar {
  182. display: none;
  183. }
  184. .arg_hide #page_leftbar {
  185. display: none;
  186. }
  187. .fulldesk #page_leftbar {
  188. display: none;
  189. }
  190. #topbar {
  191. position: relative;
  192. grid-area: nav;
  193. -ms-grid-column: 2;
  194. -ms-grid-row: 2;
  195. }
  196. .fulldesk #topbar {
  197. display: none;
  198. }
  199. .menu_stack #topbar, .login #topbar, .arg_hide #topbar {
  200. -ms-grid-column: 1;
  201. -ms-grid-column-span: 2;
  202. -ms-grid-row: 2;
  203. }
  204. .logoncontrolspan, .logoncontrolspan2 {
  205. color: white;
  206. }
  207. .topbar_td {
  208. width: 100px;
  209. height: 24px;
  210. cursor: pointer;
  211. }
  212. .nonenglish .topbar_td {
  213. width: 10px;
  214. height: 24px;
  215. cursor: pointer;
  216. padding-left:16px;
  217. padding-right:16px;
  218. }
  219. .topbar_td_end {
  220. text-align: right;
  221. height: 24px;
  222. }
  223. #uiMenuButton {
  224. cursor: pointer;
  225. color: white;
  226. position: absolute;
  227. padding: 3px;
  228. right: 3px;
  229. }
  230. .textnewui {
  231. color: white;
  232. font-weight: bold;
  233. padding-top: 5px;
  234. cursor: pointer;
  235. position: absolute;
  236. right: 0;
  237. margin-right: 10px;
  238. }
  239. .LogoffLinkColor {
  240. color:white;
  241. }
  242. #logoutControlSpan2 {
  243. cursor: pointer;
  244. color: white;
  245. position: absolute;
  246. top: 5px;
  247. right: 24px;
  248. }
  249. #uiMenu {
  250. position: absolute;
  251. top: 17px;
  252. right: 0;
  253. background-color: #eee;
  254. z-index: 10;
  255. border-radius: 5px;
  256. box-shadow: 1px 0px 10px 5px #333;
  257. padding: 5px;
  258. }
  259. /* #UserDummyMenuSpan, */
  260. #MainSubMenuSpan, #MeshSubMenuSpan, #EventsSubMenuSpan, #UserSubMenuSpan, #UsersSubMenuSpan, #ServerSubMenuSpan, #MainMenuSpan, #MainSubMenu, #MeshSubMenu, #UserSubMenu, #ServerSubMenu, #UserDummyMenu, #PluginSubMenu {
  261. width: 100%;
  262. height: 24px;
  263. color: white;
  264. background-color: #808080;
  265. }
  266. .menu_stack #UserDummyMenu {
  267. display: none;
  268. }
  269. .menu_stack #PluginSubMenu {
  270. display: none;
  271. }
  272. #MainMenuSpan {
  273. display: table;
  274. }
  275. .fullscreen #MainMenuSpan {
  276. display: none;
  277. }
  278. .fulldesk #MainMenuSpan {
  279. display: none;
  280. }
  281. .menu_stack #MainMenuSpan {
  282. display: block;
  283. }
  284. #column_l {
  285. position: relative;
  286. /* float: left; */
  287. width: 100%;
  288. box-sizing: border-box;
  289. margin: 0;
  290. padding: 0 15px;
  291. background-color: #fff;
  292. /* max-height: calc(100vh - 151px); */
  293. min-width: unset;
  294. overflow: hidden;
  295. }
  296. .boxsize {
  297. -ms-box-sizing:border-box;
  298. -moz-box-sizing:border-box;
  299. box-sizing:border-box;
  300. -webkit-box-sizing:border-box;
  301. }
  302. .night #column_l {
  303. background-color: #000;
  304. }
  305. .menu_stack.fullscreen.fulldesk #column_l {
  306. -ms-grid-column: 1;
  307. -ms-grid-row: 1;
  308. -ms-grid-column-span: 2;
  309. -ms-grid-row-span: 4;
  310. }
  311. .fullscreen #column_l {
  312. -ms-grid-column: 2;
  313. -ms-grid-row: 3;
  314. grid-area: content;
  315. width: unset;
  316. /* height: calc(100vh - 111px);
  317. width: calc(100% - 30px); */
  318. overflow: hidden;
  319. }
  320. .menu_stack.fullscreen #column_l, .login #column_l, .arg_hide #column_l {
  321. -ms-grid-column: 1;
  322. -ms-grid-column-span: 2;
  323. -ms-grid-row: 3;
  324. }
  325. .fulldesk #column_l {
  326. height: 100%;
  327. width: 100%;
  328. height: unset;
  329. margin-left: unset;
  330. overflow-y: hidden;
  331. padding: 0;
  332. max-height: none;
  333. -ms-grid-column: 1;
  334. -ms-grid-row: 1;
  335. background-color: rgb(0, 51, 102);
  336. }
  337. .fulldesk #column_l_bottomgap {
  338. display: none;
  339. }
  340. .room4submenu {
  341. /*min-height: calc(100vh - 159px);*/
  342. min-height: calc(100vh - 184px);
  343. }
  344. #centralTable {
  345. width: 100%;
  346. }
  347. #welcomeimage {
  348. text-align: center;
  349. width:50%;
  350. }
  351. @media (max-width: 800px) {
  352. .fullscreen #welcomeimage {
  353. display: none;
  354. }
  355. }
  356. #welcomeimage img {
  357. height: 310px;
  358. width: 359px;
  359. }
  360. #logincell {
  361. text-align: center;
  362. width:50%;
  363. }
  364. .night #logincell a {
  365. color: blue;
  366. }
  367. #loginpanel, #createpanel, #resetpanel, #tokenpanel, #resettokenpanel, #resetpasswordpanel, #resetpasswordpanel, #checkemailpanel, #waitpushpanel {
  368. display: inline-block;
  369. margin: 0;
  370. background-color: #979797;
  371. border-radius: 16px;
  372. width: 300px;
  373. padding: 16px;
  374. text-align: center;
  375. color: black;
  376. }
  377. #passwordPolicyCallout, #rpasswordPolicyCallout {
  378. left: -10px;
  379. width: 100px;
  380. position: absolute;
  381. background-color: #FFC;
  382. border-radius: 5px;
  383. padding: 5px;
  384. box-shadow: 0px 0px 15px #666;
  385. font-size: 10px;
  386. }
  387. #passWarning {
  388. padding-top: 6px;
  389. }
  390. #footer {
  391. -ms-grid-column: 2;
  392. -ms-grid-row: 4;
  393. grid-area: footer;
  394. clear: both;
  395. overflow: auto;
  396. width: 100%;
  397. text-align: center;
  398. background-color: #113962;
  399. padding-top: 5px;
  400. padding-bottom: 5px;
  401. }
  402. .fulldesk #footer {
  403. display: none;
  404. }
  405. .menu_stack.fullscreen #footer, .login #footer, .arg_hide #footer {
  406. -ms-grid-column: 1;
  407. -ms-grid-column-span: 2;
  408. -ms-grid-row: 4;
  409. }
  410. /* Support for footer made with table */
  411. #footer table {
  412. width: 100%;
  413. border-spacing: 10px;
  414. border-collapse: separate;
  415. }
  416. #footer td:first-child {
  417. text-align: left;
  418. color: white;
  419. }
  420. #footer td {
  421. padding: 0px;
  422. text-align: right;
  423. color: white;
  424. }
  425. .footer1 {
  426. text-align: left;
  427. float: left;
  428. padding: 10px;
  429. color: white;
  430. }
  431. .footer2 {
  432. padding: 10px;
  433. text-align: right;
  434. color: white;
  435. }
  436. #masthead img {
  437. float: left;
  438. }
  439. #masthead p {
  440. font-size: 11px;
  441. color: #fff;
  442. margin: 10px 10px 0;
  443. }
  444. #footer a {
  445. color: #fff;
  446. text-decoration: underline;
  447. }
  448. #footer a:hover {
  449. color: #fff;
  450. text-decoration: none;
  451. }
  452. #verifyEmailId2 {
  453. color: yellow;
  454. margin-left: 3px;
  455. cursor: pointer;
  456. }
  457. #dialog {
  458. z-index: 1000;
  459. background-color: #EEE;
  460. box-shadow: 0px 0px 15px #666;
  461. font-family: Arial,Helvetica,sans-serif;
  462. border-radius: 5px;
  463. position: fixed;
  464. top: 180px;
  465. left: calc((100% / 2) - 200px);
  466. width: 400px;
  467. color: black;
  468. }
  469. #dialogHeader {
  470. width: 100%;
  471. background-color: #003366;
  472. color: #FFF;
  473. border-radius: 5px 5px 0 0;
  474. margin-bottom: 6px;
  475. cursor: move;
  476. }
  477. #id_dialogclose {
  478. float: right;
  479. padding: 3px;
  480. margin-right: 3px;
  481. cursor: pointer;
  482. }
  483. #id_dialogtitle {
  484. padding: 5px;
  485. }
  486. #dialogBody {
  487. margin-right: 16px;
  488. margin-left: 8px;
  489. }
  490. .dialogText {
  491. width: 100%;
  492. max-height: 260px;
  493. overflow-x: hidden;
  494. overflow-y: auto;
  495. line-height: 160%;
  496. }
  497. .dialogTextLog {
  498. font-size: 10px;
  499. }
  500. #dialog1 {
  501. margin: auto;
  502. text-align: center;
  503. margin: 3px;
  504. }
  505. #id_dialogMessage {
  506. padding: 10px;
  507. }
  508. #dialog2, #dialog3, #dialog7 {
  509. margin: 3px;
  510. }
  511. #d3uploadMode, #d3localFile {
  512. float: right;
  513. width: 260px;
  514. }
  515. #d3serveraction, #d2serveraction {
  516. width: 100%;
  517. background-color: #d3d9d6;
  518. text-align: left;
  519. padding: 3px;
  520. }
  521. #d3serverfiles, #d2serverfiles {
  522. width: 100%;
  523. height: 150px;
  524. background-color: white;
  525. padding: 2px;
  526. border: 1px solid gray;
  527. overflow-y: scroll;
  528. }
  529. #d7bitmapquality, #d7bitmapquality, #d7bitmapscaling, #d7framelimiter, #d7desktopmode, #d7rdpsize, #d7encoding {
  530. float: right;
  531. width: 200px;
  532. height: 20px;
  533. }
  534. #dialog7 h4 {
  535. width: 100%;
  536. border-bottom: 1px solid gray;
  537. }
  538. #d7meshkvm div, #d7amtkvm div, #d7rdpkvm div, #d3upload, #d3localmode {
  539. margin: 3px 0 3px 0;
  540. display: flex;
  541. justify-content: space-between;
  542. }
  543. #d7otherset, #d7rdpflags {
  544. border: 1px solid #666;
  545. width: 230px;
  546. height: 100px;
  547. overflow-y: scroll;
  548. background-color: white;
  549. }
  550. #idx_dlgButtonBar {
  551. padding: 10px;
  552. margin-bottom: 5px;
  553. margin-right: 10px;
  554. overflow: auto;
  555. }
  556. #idx_dlgCancelButton, #idx_dlgCancelButton2 {
  557. float: right;
  558. min-width: 80px;
  559. margin-left: 5px;
  560. }
  561. #idx_dlgOkButton, #idx_dlgOkButton2 {
  562. float: right;
  563. min-width: 80px;
  564. margin-left: 5px;
  565. }
  566. #idx_dlgDeleteButton {
  567. float: left;
  568. min-width: 80px;
  569. margin-left: 5px;
  570. }
  571. #ua_fileaccessquota {
  572. width: 80px;
  573. text-align: right;
  574. }
  575. #broadcastMessage {
  576. width: 370px;
  577. height: 100px;
  578. resize: none;
  579. }
  580. #idx_deskFullBtn2, #idx_termFullBtn2 {
  581. float: left;
  582. font-size: 16px;
  583. cursor: pointer;
  584. display: none;
  585. margin-right: 5px;
  586. }
  587. .fulldesk #idx_deskFullBtn2, .fulldesk #idx_termFullBtn2 {
  588. display: block;
  589. }
  590. .fulldesk #deskFullBtn {
  591. display: none;
  592. }
  593. #p0message {
  594. margin: 50px;
  595. text-align: center;
  596. }
  597. .deviceBarCheckbox {
  598. width:22px;
  599. float:left;
  600. background-color:white;
  601. }
  602. .night .deviceBarCheckbox {
  603. background-color:black;
  604. }
  605. #devs {
  606. color:black;
  607. }
  608. .deviceBarIcon {
  609. float:left;
  610. height:18px;
  611. width:18px;
  612. background-color:white
  613. }
  614. .night .deviceBarIcon {
  615. background-color:black;
  616. }
  617. #devListToolbarViewIcons {
  618. float: right;
  619. }
  620. #devListToolbarViewIcons3 {
  621. float: right;
  622. }
  623. #devListToolbarSpan {
  624. width: 100%;
  625. height: 24px;
  626. background-color: #d3d9d6;
  627. vertical-align: middle;
  628. border-spacing: 0;
  629. }
  630. .night #devListToolbarSpan {
  631. color: black;
  632. background-color: #d3d9d6;
  633. }
  634. #SearchInput {
  635. width: 120px;
  636. }
  637. #devListToolbarView, #devListToolbarSort, #devListToolbarSize, #devListToolbarSettings {
  638. float: right;
  639. }
  640. #refreshmap {
  641. margin-left: 5px;
  642. }
  643. /* Example if <table> is relplaced with <div><p> then image can be defined in css
  644. #NoMeshesPanel {
  645. background: url(../images/info.png) no-repeat 23px 20px;
  646. height: 48px;
  647. width: 47px;
  648. width: 100%;
  649. border: none;
  650. margin: auto;
  651. padding: 20px;
  652. }
  653. #NoMeshesPanel p {
  654. display: inline-block;
  655. vertical-align: middle;
  656. margin-left: 60px;
  657. } */
  658. #NoMeshesPanel a {
  659. cursor: pointer;
  660. }
  661. #NoMeshesPanel table {
  662. width: 100%;
  663. padding: 20px;
  664. }
  665. NoMeshesPanel img {
  666. height: 48px;
  667. width: 47px;
  668. }
  669. .deviceNotifyDot {
  670. position:absolute;
  671. right:10px;
  672. top:0px;
  673. height:16px;
  674. }
  675. .deviceNotifyDotSub {
  676. text-align:center;
  677. color:#FFF;
  678. height:16px;
  679. width:16px;
  680. background-color:#00F;
  681. padding:2px;
  682. border-radius:10px;
  683. box-shadow: 2px 2px 10px black;
  684. cursor:pointer;
  685. margin-left:3px;
  686. font-size: 14px;
  687. float:left;
  688. }
  689. .deviceNotifyDotSub:hover {
  690. background-color:#44F;
  691. }
  692. .deviceNotifySmallDot {
  693. position:absolute;
  694. right:10px;
  695. top:0px;
  696. height:10px;
  697. }
  698. .deviceNotifySmallDotSub {
  699. text-align:center;
  700. color:#FFF;
  701. height:10px;
  702. width:10px;
  703. padding:2px;
  704. background-color:#00F;
  705. border-radius:10px;
  706. box-shadow: 2px 2px 10px black;
  707. cursor:pointer;
  708. margin-left:2px;
  709. font-size: 6px;
  710. float:left;
  711. }
  712. .deviceNotifySmallDotSub:hover {
  713. background-color:#44F;
  714. }
  715. .NotifyIcon1 { width:48px; height:48px; background: url(../images/notify48.png) 0px 0px; }
  716. .NotifyIcon2 { width:48px; height:48px; background: url(../images/notify48.png) -48px 0px; }
  717. .NotifyIcon3 { width:48px; height:48px; background: url(../images/notify48.png) -96px 0px; }
  718. .NotifyIcon4 { width:48px; height:48px; background: url(../images/notify48.png) -144px 0px; }
  719. .NotifyIcon5 { width:48px; height:48px; background: url(../images/notify48.png) -192px 0px; }
  720. .NotifyIcon6 { width:48px; height:48px; background: url(../images/notify48.png) -240px 0px; }
  721. .NotifyIcon7 { width:48px; height:48px; background: url(../images/notify48.png) -288px 0px; }
  722. .NotifyIcon8 { width:48px; height:48px; background: url(../images/notify48.png) -336px 0px; }
  723. .NotifyIcon9 { width:48px; height:48px; background: url(../images/notify48.png) -384px 0px; }
  724. .NotifyIconSmall1 { width:24px; height:24px; background: url(../images/notify24.png) 0px 0px; }
  725. .NotifyIconSmall2 { width:24px; height:24px; background: url(../images/notify24.png) -24px 0px; }
  726. .NotifyIconSmall3 { width:24px; height:24px; background: url(../images/notify24.png) -48px 0px; }
  727. .NotifyIconSmall4 { width:24px; height:24px; background: url(../images/notify24.png) -72px 0px; }
  728. .NotifyIconSmall5 { width:24px; height:24px; background: url(../images/notify24.png) -96px 0px; }
  729. .NotifyIconSmall6 { width:24px; height:24px; background: url(../images/notify24.png) -120px 0px; }
  730. .NotifyIconSmall7 { width:24px; height:24px; background: url(../images/notify24.png) -144px 0px; }
  731. .NotifyIconSmall8 { width:24px; height:24px; background: url(../images/notify24.png) -168px 0px; }
  732. .NotifyIconSmall9 { width:24px; height:24px; background: url(../images/notify24.png) -192px 0px; }
  733. .NotifyIconTiny1 { width:16px; height:16px; background: url(../images/notify16.png) 0px 0px; }
  734. .NotifyIconTiny2 { width:16px; height:16px; background: url(../images/notify16.png) -16px 0px; }
  735. .NotifyIconTiny3 { width:16px; height:16px; background: url(../images/notify16.png) -32px 0px; }
  736. .NotifyIconTiny4 { width:16px; height:16px; background: url(../images/notify16.png) -48px 0px; }
  737. .NotifyIconTiny5 { width:16px; height:16px; background: url(../images/notify16.png) -64px 0px; }
  738. .NotifyIconTiny6 { width:16px; height:16px; background: url(../images/notify16.png) -80px 0px; }
  739. .NotifyIconTiny7 { width:16px; height:16px; background: url(../images/notify16.png) -96px 0px; }
  740. .NotifyIconTiny8 { width:16px; height:16px; background: url(../images/notify16.png) -112px 0px; }
  741. .NotifyIconTiny9 { width:16px; height:16px; background: url(../images/notify16.png) -128px 0px; }
  742. .deviceBatteryLarge {
  743. position:absolute;
  744. left:10px;
  745. top:140px;
  746. width:28px;
  747. height:48px;
  748. border:none;
  749. box-shadow:none;
  750. }
  751. .deviceBatteryLarge1 { background: url(../images/batteries48.png) 0px 0px; }
  752. .deviceBatteryLarge2 { background: url(../images/batteries48.png) -28px 0px; }
  753. .deviceBatteryLarge3 { background: url(../images/batteries48.png) -56px 0px; }
  754. .deviceBatteryLarge4 { background: url(../images/batteries48.png) -84px 0px; }
  755. .deviceBatteryLarge5 { background: url(../images/batteries48.png) -112px 0px; }
  756. .deviceBatteryLarge6 { background: url(../images/batteries48.png) -140px 0px; }
  757. .deviceBatteryLarge7 { background: url(../images/batteries48.png) -168px 0px; }
  758. .deviceBatteryLarge8 { background: url(../images/batteries48.png) -196px 0px; }
  759. .deviceBatteryLarge9 { background: url(../images/batteries48.png) -224px 0px; }
  760. .deviceBatteryLarge10 { background: url(../images/batteries48.png) -252px 0px; }
  761. .deviceBatteryLarge11 { background: url(../images/batteries48.png) -280px 0px; }
  762. .deviceBatterySmall {
  763. position:absolute;
  764. left:26px;
  765. top:32px;
  766. width:14px;
  767. height:24px;
  768. border:none;
  769. box-shadow:none;
  770. }
  771. .deviceBatterySmall1 { background: url(../images/batteries24.png) 0px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  772. .deviceBatterySmall2 { background: url(../images/batteries24.png) -14px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  773. .deviceBatterySmall3 { background: url(../images/batteries24.png) -28px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  774. .deviceBatterySmall4 { background: url(../images/batteries24.png) -42px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  775. .deviceBatterySmall5 { background: url(../images/batteries24.png) -56px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  776. .deviceBatterySmall6 { background: url(../images/batteries24.png) -70px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  777. .deviceBatterySmall7 { background: url(../images/batteries24.png) -84px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  778. .deviceBatterySmall8 { background: url(../images/batteries24.png) -98px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  779. .deviceBatterySmall9 { background: url(../images/batteries24.png) -112px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  780. .deviceBatterySmall10 { background: url(../images/batteries24.png) -126px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  781. .deviceBatterySmall11 { background: url(../images/batteries24.png) -140px 0px; background-image: image-set(url(../images/batteries24.png) 1x, url(../images/batteries48.png) 2x); }
  782. .deviceNotifyLargeDot {
  783. position:absolute;
  784. right:10px;
  785. top:170px;
  786. height:40px;
  787. }
  788. .deviceNotifyLargeDotSub {
  789. text-align:center;
  790. width:40px;
  791. height:40px;
  792. color:#FFF;
  793. padding:2px;
  794. background-color:#00F;
  795. border-radius:20px;
  796. box-shadow: 2px 2px 10px black;
  797. cursor:pointer;
  798. margin-left:4px;
  799. }
  800. .deviceNotifyLargeDotSub:hover {
  801. background-color:#44F;
  802. }
  803. .userAuthStrategyLogo {
  804. text-align:center;
  805. position:absolute;
  806. right:20px;
  807. top:125px;
  808. width:64px;
  809. height:64px;
  810. color:#FFF;
  811. padding:2px;
  812. background-color:#FFF;
  813. border-radius:20px;
  814. box-shadow: 2px 2px 10px black;
  815. z-index:1;
  816. }
  817. #xdevices {
  818. max-height: calc(100vh - 242px);
  819. overflow-y: auto;
  820. overflow-x: hidden;
  821. -webkit-overflow-scrolling: touch;
  822. }
  823. #xdevicesmap {
  824. height: calc(100vh - 239px);
  825. width: 100%;
  826. overflow: hidden;
  827. position: relative;
  828. }
  829. #xmapSearchResultsDlg {
  830. position: absolute;
  831. max-height: 280px;
  832. left: 5px;
  833. top: 5px;
  834. max-width: 250px;
  835. z-index: 1000;
  836. background-color: #EEE;
  837. box-shadow: 0px 0px 15px #666;
  838. }
  839. #xmapSearchResultsBck {
  840. width: 100%;
  841. background-color: #003366;
  842. color: #FFF;
  843. border-radius: 5px 5px 0 0;
  844. }
  845. #xmapSearchClose {
  846. float: right;
  847. padding: 5px;
  848. cursor: pointer;
  849. }
  850. .xmapItem {
  851. overflow-y: auto;
  852. width: 100%;
  853. max-height: 240px;
  854. }
  855. .xmapItemSel1 {
  856. cursor: pointer;
  857. padding: 5px;
  858. background-color: #F5F5F5;
  859. }
  860. .xmapItemSel1 {
  861. cursor: pointer;
  862. padding: 5px;
  863. background-color: #EBEBEB;
  864. }
  865. #xmap-info-window {
  866. text-shadow: 0px 0px 15px #FFF;
  867. }
  868. #p2 a, #p6 a, #p10 a {
  869. cursor: pointer;
  870. }
  871. #p2AccountImageFrame {
  872. float: right;
  873. text-align: center;
  874. margin-bottom: 10px;
  875. margin-right: 10px;
  876. margin-top: 7px;
  877. }
  878. #p2AccountImage, #p2AccountImage2, #MainUserImageEx {
  879. width: 200px;
  880. height: 200px;
  881. border-radius: 8px;
  882. cursor: pointer;
  883. margin: 8px;
  884. box-shadow: 0px 0px 7px #000;
  885. }
  886. .p2AccountActions {
  887. width: 15px;
  888. display: inline-block;
  889. }
  890. .p2AccountActions span {
  891. color: green;
  892. font-size: 10px;
  893. }
  894. #p2AccountActions .mL {
  895. margin-left: 40px;
  896. }
  897. #p2ServerActions .mL {
  898. margin-left: 40px;
  899. }
  900. .newMeshBtn {
  901. background: url(../images/icon-addnew.png) no-repeat 0px 0px;
  902. height: 12px;
  903. width: 12px;
  904. cursor: pointer;
  905. border: none;
  906. padding-left: 15px;
  907. }
  908. #p2noMeshFound, #serverStats, #serverWarnings, #serverCertWarnings {
  909. margin-left: 40px;
  910. }
  911. #p2ServerActionsBackup, #p2ServerActionsRestore, #p2ServerActionsVersion, #p2ServerActionsErrors {
  912. margin-left: 0px;
  913. }
  914. .pTable {
  915. width: 100%;
  916. height: 24px;
  917. background-color: #d3d9d6;
  918. margin-bottom: 4px;
  919. vertical-align: middle;
  920. border-spacing: 0;
  921. }
  922. #p50groups {
  923. max-height: calc(100vh - 244px);
  924. overflow-y: auto;
  925. }
  926. #p3users {
  927. max-height: calc(100vh - 244px);
  928. overflow-y: auto;
  929. }
  930. .p3usersTable {
  931. width: 100%;
  932. border-spacing: 0;
  933. padding: 0;
  934. }
  935. .p3usersTable th {
  936. color: gray;
  937. }
  938. #p3events, #p16events, #p31events, #p41events {
  939. height: calc(100vh - 245px);
  940. overflow-y: scroll;
  941. }
  942. .p3eventsTable {
  943. width: 100%;
  944. border-spacing: 0;
  945. padding: 0;
  946. }
  947. #p4name, #p4email, #p4pass1, #p4pass2 {
  948. width: 230px;
  949. }
  950. #p5toolbar {
  951. width: 100%;
  952. }
  953. #p5filehead {
  954. width: 100%;
  955. background-color: #d3d9d6;
  956. text-align: left;
  957. padding: 4px;
  958. }
  959. .night #p5filehead {
  960. background-color: #333;
  961. }
  962. #p5filesubhead {
  963. background-color: #E4E9E7;
  964. height: 28px;
  965. }
  966. .night #p5filesubhead {
  967. background-color: #222;
  968. }
  969. #p5rightOfButtons {
  970. float: right;
  971. margin-top: 3px;
  972. }
  973. #p5filetable {
  974. width: 100%;
  975. height: calc(100vh - 295px);
  976. overflow: auto;
  977. -webkit-user-select: none;
  978. user-select: none;
  979. position: relative;
  980. }
  981. #p5PublicShare {
  982. display: none;
  983. width: 100%;
  984. overflow: auto;
  985. -webkit-user-select: none;
  986. user-select: none;
  987. background-color: lightsteelblue;
  988. }
  989. #p5PublicShare div {
  990. padding: 4px;
  991. }
  992. #bigok, #p11bigok, #p13bigok {
  993. width: 256px;
  994. overflow: hidden;
  995. position: absolute;
  996. left: 337px;
  997. top: 20px;
  998. text-align: center;
  999. font-size: 1600%;
  1000. color: #AAAAAA;
  1001. z-index: 99999;
  1002. }
  1003. #bigfail, #p11bigfail, #p13bigfail {
  1004. width: 256px;
  1005. overflow: hidden;
  1006. position: absolute;
  1007. left: 337px;
  1008. top: 20px;
  1009. text-align: center;
  1010. font-size: 1600%;
  1011. color: #AAAAAA;
  1012. z-index: 99999;
  1013. }
  1014. .chartViewCanvas {
  1015. width: 80px;
  1016. display: inline-block;
  1017. }
  1018. .chartViewText {
  1019. width: 200px;
  1020. display: inline-block;
  1021. }
  1022. #serverCpuChart, #serverMemoryChart {
  1023. width: 60px;
  1024. height: 60px;
  1025. }
  1026. #serverMainStats {
  1027. height: calc(100vh - 251px);
  1028. max-height: calc(100vh - 251px);
  1029. width: 100%;
  1030. }
  1031. #p10BackButton, #p11BackButton {
  1032. float: left;
  1033. }
  1034. #p10html2 table {
  1035. color: black;
  1036. background-color: #EEE;
  1037. border-color: #AAA;
  1038. border-width: 1px;
  1039. border-style: solid;
  1040. border-collapse: collapse;
  1041. width: 100%;
  1042. }
  1043. #p10html2 thead {
  1044. background-color: #AAA;
  1045. font-weight: bold;
  1046. }
  1047. #p10html2 thead tr {
  1048. background-color: #AAA;
  1049. font-weight: bold;
  1050. }
  1051. #p10html2 thead img {
  1052. float: right;
  1053. cursor: pointer;
  1054. padding: 3px;
  1055. }
  1056. #p10html2 .altBack {
  1057. background-color: #DDD;
  1058. }
  1059. .pwState {
  1060. display: table-cell;
  1061. height: 16px;
  1062. }
  1063. .pwsYellow {
  1064. background-color: yellow;
  1065. }
  1066. .pwsTransparent {
  1067. background-color: #00000000;
  1068. }
  1069. .pwsBlack {
  1070. background-color: black;
  1071. }
  1072. .pwsBlue {
  1073. background-color: blue;
  1074. }
  1075. .pwsBlue2 {
  1076. background-color: blue;
  1077. }
  1078. .pwsLightblue {
  1079. background-color: lightblue;
  1080. }
  1081. .pwsBlueviolet {
  1082. background-color: blueviolet;
  1083. }
  1084. .pwsDarkgreen {
  1085. background-color: darkgreen;
  1086. }
  1087. .pwsLightseagreen {
  1088. background-color: lightseagreen;
  1089. }
  1090. .pwsLightseagreen2 {
  1091. background-color: lightseagreen;
  1092. }
  1093. .p10html3right {
  1094. float: right;
  1095. font-size: small;
  1096. }
  1097. .p10html3left {
  1098. font-size: small;
  1099. }
  1100. #dp10devicevalue {
  1101. width: 230px;
  1102. }
  1103. .fulldesk #p11 {
  1104. height: 100%;
  1105. }
  1106. #MainComputerImage {
  1107. border-width: 0px;
  1108. height: 200px;
  1109. width: 200px;
  1110. }
  1111. #MainComputerState {
  1112. font-size: 12px;
  1113. font-weight: bold;
  1114. width: 100%;
  1115. text-align: center;
  1116. }
  1117. #d2groupop {
  1118. float: right;
  1119. width: 250px;
  1120. }
  1121. #d2netinfo .dialogText {
  1122. padding-right: 10px;
  1123. }
  1124. #p12warning, #p12warning2, #p11warning, #p11warning2 {
  1125. max-width: 100%;
  1126. display: none;
  1127. cursor: pointer;
  1128. margin-bottom: 5px;
  1129. }
  1130. #MainMeshImage {
  1131. border-width: 0px;
  1132. height: 200px;
  1133. width: 200px;
  1134. float: right;
  1135. }
  1136. #DeskTools {
  1137. position: absolute;
  1138. width: 400px;
  1139. height: 100%;
  1140. background-color: gray;
  1141. top: 0;
  1142. right: 0;
  1143. border-left: 2px solid lightgray;
  1144. }
  1145. #DeskToolsRefreshButton {
  1146. float: right;
  1147. padding: 3px;
  1148. cursor: pointer;
  1149. }
  1150. a {
  1151. color: #036;
  1152. text-decoration: underline;
  1153. cursor: pointer;
  1154. }
  1155. .night a {
  1156. color: #69B;
  1157. }
  1158. .i1 {
  1159. background: url(../images/icons50.png) 0px 0px;
  1160. background-image: image-set(url(../images/icons50.png) 1x, url(../images/icons100.png) 2x);
  1161. height: 50px;
  1162. width: 50px;
  1163. cursor: pointer;
  1164. border: none;
  1165. }
  1166. .i2 {
  1167. background: url(../images/icons50.png) -50px 0px;
  1168. background-image: image-set(url(../images/icons50.png) 1x, url(../images/icons100.png) 2x);
  1169. height: 50px;
  1170. width: 50px;
  1171. cursor: pointer;
  1172. border: none;
  1173. }
  1174. .i3 {
  1175. background: url(../images/icons50.png) -100px 0px;
  1176. background-image: image-set(url(../images/icons50.png) 1x, url(../images/icons100.png) 2x);
  1177. height: 50px;
  1178. width: 50px;
  1179. cursor: pointer;
  1180. border: none;
  1181. }
  1182. .i4 {
  1183. background: url(../images/icons50.png) -150px 0px;
  1184. background-image: image-set(url(../images/icons50.png) 1x, url(../images/icons100.png) 2x);
  1185. height: 50px;
  1186. width: 50px;
  1187. cursor: pointer;
  1188. border: none;
  1189. }
  1190. .i5 {
  1191. background: url(../images/icons50.png) -200px 0px;
  1192. background-image: image-set(url(../images/icons50.png) 1x, url(../images/icons100.png) 2x);
  1193. height: 50px;
  1194. width: 50px;
  1195. cursor: pointer;
  1196. border: none;
  1197. }
  1198. .i6 {
  1199. background: url(../images/icons50.png) -250px 0px;
  1200. background-image: image-set(url(../images/icons50.png) 1x, url(../images/icons100.png) 2x);
  1201. height: 50px;
  1202. width: 50px;
  1203. cursor: pointer;
  1204. border: none;
  1205. }
  1206. .i7 {
  1207. background: url(../images/icons50.png) -300px 0px;
  1208. background-image: image-set(url(../images/icons50.png) 1x, url(../images/icons100.png) 2x);
  1209. height: 50px;
  1210. width: 50px;
  1211. cursor: pointer;
  1212. border: none;
  1213. }
  1214. .i8 {
  1215. background: url(../images/icons50.png) -350px 0px;
  1216. background-image: image-set(url(../images/icons50.png) 1x, url(../images/icons100.png) 2x);
  1217. height: 50px;
  1218. width: 50px;
  1219. cursor: pointer;
  1220. border: none;
  1221. }
  1222. .j1 {
  1223. background: url(../images/icons16.png) 0px 0px;
  1224. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1225. height: 16px;
  1226. width: 16px;
  1227. cursor: pointer;
  1228. border: none;
  1229. }
  1230. .j2 {
  1231. background: url(../images/icons16.png) -16px 0px;
  1232. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1233. height: 16px;
  1234. width: 16px;
  1235. cursor: pointer;
  1236. border: none;
  1237. }
  1238. .j3 {
  1239. background: url(../images/icons16.png) -32px 0px;
  1240. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1241. height: 16px;
  1242. width: 16px;
  1243. cursor: pointer;
  1244. border: none;
  1245. }
  1246. .j4 {
  1247. background: url(../images/icons16.png) -48px 0px;
  1248. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1249. height: 16px;
  1250. width: 16px;
  1251. cursor: pointer;
  1252. border: none;
  1253. }
  1254. .j5 {
  1255. background: url(../images/icons16.png) -64px 0px;
  1256. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1257. height: 16px;
  1258. width: 16px;
  1259. cursor: pointer;
  1260. border: none;
  1261. }
  1262. .j6 {
  1263. background: url(../images/icons16.png) -80px 0px;
  1264. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1265. height: 16px;
  1266. width: 16px;
  1267. cursor: pointer;
  1268. border: none;
  1269. }
  1270. .j7 {
  1271. background: url(../images/icons16.png) -96px 0px;
  1272. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1273. height: 16px;
  1274. width: 16px;
  1275. cursor: pointer;
  1276. border: none;
  1277. }
  1278. .j8 {
  1279. background: url(../images/icons16.png) -112px 0px;
  1280. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1281. height: 16px;
  1282. width: 16px;
  1283. cursor: pointer;
  1284. border: none;
  1285. }
  1286. .relayIcon16 {
  1287. background: url(../images/icon-relay.png);
  1288. height: 16px;
  1289. width: 16px;
  1290. cursor: pointer;
  1291. border: none;
  1292. }
  1293. .lbbutton {
  1294. width: 74px;
  1295. height: 74px;
  1296. border-radius: 5px;
  1297. background-color: white;
  1298. margin-left: 8px;
  1299. margin-top: 8px;
  1300. position: relative;
  1301. cursor: pointer;
  1302. opacity: 0.5;
  1303. }
  1304. .night .lbbutton {
  1305. background-color: black;
  1306. }
  1307. .lbbutton:hover {
  1308. opacity: 1;
  1309. }
  1310. .lbbuttonsel {
  1311. opacity: 0.9;
  1312. }
  1313. .lbbuttonsel2 {
  1314. width: 82px;
  1315. border-radius: 5px 0px 0px 5px;
  1316. opacity: 1;
  1317. }
  1318. /*groups all buttons repeated code into one block*/
  1319. .lbtg {
  1320. height: 62px;
  1321. width: 62px;
  1322. cursor: pointer;
  1323. border: none;
  1324. position: absolute;
  1325. top: 6px;
  1326. left: 6px;
  1327. }
  1328. .lb1 {
  1329. background: url(../images/leftbar-64.png) -1px -2px;
  1330. background-image: image-set(url(../images/leftbar-64.png) 1x, url(../images/leftbar-128.png) 2x);
  1331. }
  1332. .lb2 {
  1333. background: url(../images/leftbar-64.png) -66px -2px;
  1334. background-image: image-set(url(../images/leftbar-64.png) 1x, url(../images/leftbar-128.png) 2x);
  1335. }
  1336. .lb3 {
  1337. background: url(../images/leftbar-64.png) -130px -2px;
  1338. background-image: image-set(url(../images/leftbar-64.png) 1x, url(../images/leftbar-128.png) 2x);
  1339. }
  1340. .lb4 {
  1341. background: url(../images/leftbar-64.png) -194px -2px;
  1342. background-image: image-set(url(../images/leftbar-64.png) 1x, url(../images/leftbar-128.png) 2x);
  1343. }
  1344. .lb5 {
  1345. background: url(../images/leftbar-64.png) -257px -2px;
  1346. background-image: image-set(url(../images/leftbar-64.png) 1x, url(../images/leftbar-128.png) 2x);
  1347. }
  1348. .lb6 {
  1349. background: url(../images/leftbar-64.png) -318px -2px;
  1350. background-image: image-set(url(../images/leftbar-64.png) 1x, url(../images/leftbar-128.png) 2x);
  1351. }
  1352. .m0 {
  1353. background: url(../images/images16.png) -32px 0px;
  1354. height: 16px;
  1355. width: 16px;
  1356. border: none;
  1357. float: left;
  1358. }
  1359. .m1 {
  1360. background: url(../images/images16.png) -16px 0px;
  1361. height: 16px;
  1362. width: 16px;
  1363. border: none;
  1364. float: left;
  1365. }
  1366. .m2 {
  1367. background: url(../images/images16.png) -96px 0px;
  1368. height: 16px;
  1369. width: 16px;
  1370. border: none;
  1371. float: left;
  1372. }
  1373. .m3 {
  1374. background: url(../images/images16.png) -112px 0px;
  1375. height: 16px;
  1376. width: 16px;
  1377. border: none;
  1378. float: left;
  1379. }
  1380. .m4 {
  1381. background: url(../images/images16.png) -128px 0px;
  1382. height: 16px;
  1383. width: 16px;
  1384. border: none;
  1385. float: left;
  1386. }
  1387. .m99 {
  1388. background: url(../images/meshicon16.png);
  1389. height: 16px;
  1390. width: 16px;
  1391. border: none;
  1392. float: left;
  1393. }
  1394. .si1 {
  1395. background: url(../images/icons16.png) 0px 0px;
  1396. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1397. height: 16px;
  1398. width: 16px;
  1399. border: none;
  1400. float: left;
  1401. }
  1402. .si2 {
  1403. background: url(../images/icons16.png) -16px 0px;
  1404. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1405. height: 16px;
  1406. width: 16px;
  1407. border: none;
  1408. float: left;
  1409. }
  1410. .si3 {
  1411. background: url(../images/icons16.png) -32px 0px;
  1412. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1413. height: 16px;
  1414. width: 16px;
  1415. border: none;
  1416. float: left;
  1417. }
  1418. .si4 {
  1419. background: url(../images/icons16.png) -48px 0px;
  1420. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1421. height: 16px;
  1422. width: 16px;
  1423. border: none;
  1424. float: left;
  1425. }
  1426. .si5 {
  1427. background: url(../images/icons16.png) -64px 0px;
  1428. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1429. height: 16px;
  1430. width: 16px;
  1431. border: none;
  1432. float: left;
  1433. }
  1434. .si6 {
  1435. background: url(../images/icons16.png) -80px 0px;
  1436. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1437. height: 16px;
  1438. width: 16px;
  1439. border: none;
  1440. float: left;
  1441. }
  1442. .si7 {
  1443. background: url(../images/icons16.png) -96px 0px;
  1444. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1445. height: 16px;
  1446. width: 16px;
  1447. border: none;
  1448. float: left;
  1449. }
  1450. .si8 {
  1451. background: url(../images/icons16.png) -112px 0px;
  1452. background-image: image-set(url(../images/icons16.png) 1x, url(../images/icons32.png) 2x);
  1453. height: 16px;
  1454. width: 16px;
  1455. border: none;
  1456. float: left;
  1457. }
  1458. .mi {
  1459. background: url(../images/meshicon50.png) 0px 0px;
  1460. background-image: image-set(url(../images/meshicon50.png) 1x, url(../images/meshicon100.png) 2x);
  1461. height: 50px;
  1462. width: 50px;
  1463. cursor: pointer;
  1464. border: none;
  1465. }
  1466. #floatframe {
  1467. position: fixed;
  1468. top: 200px;
  1469. height: 300px;
  1470. z-index: 200;
  1471. display: none;
  1472. }
  1473. .style1 {
  1474. text-align: center;
  1475. }
  1476. .style2 {
  1477. text-align: center;
  1478. background-color: #808080;
  1479. font-weight: bold;
  1480. }
  1481. .style3 {
  1482. text-align: center;
  1483. color: white;
  1484. background-color: #808080;
  1485. font-weight: bold;
  1486. }
  1487. .style3x {
  1488. text-align: center;
  1489. color: white;
  1490. background-color: #808080;
  1491. font-weight: bold;
  1492. }
  1493. .style3x:hover {
  1494. background-color: #606060;
  1495. }
  1496. .style3x.fullselect {
  1497. background-color: #003366;
  1498. }
  1499. .style3x.semiselect {
  1500. background-color: #606060;
  1501. }
  1502. .style3sel {
  1503. text-align: center;
  1504. color: white;
  1505. background-color: #003366;
  1506. font-weight: bold;
  1507. }
  1508. .style4 {
  1509. color: white;
  1510. text-decoration: none;
  1511. }
  1512. .style5 {
  1513. text-align: center;
  1514. background-color: #808080;
  1515. font-weight: normal;
  1516. }
  1517. .style6 {
  1518. text-align: left;
  1519. background-color: #D3D9D6;
  1520. padding: 3px;
  1521. }
  1522. .night .style6 {
  1523. background-color: #333;
  1524. }
  1525. .style7 {
  1526. font-size: large;
  1527. width: 180px;
  1528. }
  1529. .style9 {
  1530. max-width: 400px;
  1531. overflow: hidden;
  1532. }
  1533. .style10 {
  1534. background-color: #C9C9C9;
  1535. color: #000;
  1536. }
  1537. .night .style10 {
  1538. background-color: #333;
  1539. color: #CCC;
  1540. }
  1541. .style10s {
  1542. background-color: #b9b9b9;
  1543. }
  1544. .night .style10s {
  1545. background-color: #444;
  1546. }
  1547. .style11 {
  1548. font-size: large;
  1549. background-color: #C9C9C9;
  1550. }
  1551. .style14 {
  1552. height: 100%;
  1553. text-align: left;
  1554. background-color: #D3D9D6;
  1555. }
  1556. .night .style14 {
  1557. background-color: #333;
  1558. color: #CCC;
  1559. }
  1560. .auto-style1 {
  1561. background-color: #D3D9D6;
  1562. text-align: right;
  1563. }
  1564. #pTable .auto-style1 {
  1565. height: 100%;
  1566. float: right;
  1567. }
  1568. .night .auto-style1 {
  1569. background-color: #333;
  1570. color: #CCC;
  1571. }
  1572. .night #pTable {
  1573. color: black;
  1574. }
  1575. .icon2 {
  1576. float: left;
  1577. margin: 7px;
  1578. }
  1579. .warningbox {
  1580. width: auto;
  1581. border-radius: 8px;
  1582. padding: 8px;
  1583. background-color: lightsalmon;
  1584. }
  1585. .fileIcon1 {
  1586. background: url(data:image/gif;base64,R0lGODlhEAAQAJEDAPb49Y2Sj9LT2f///yH5BAEAAAMALAAAAAAQABAAAAImnI+py+1vhJwyUYAzHTL4D3qdlJWaIFJqmKod607sDKIiDUP63hQAOw==);
  1587. height: 16px;
  1588. width: 16px;
  1589. cursor: pointer;
  1590. border: none;
  1591. float: left;
  1592. margin-top: 1px;
  1593. }
  1594. .fileIcon2 {
  1595. background: url(data:image/gif;base64,R0lGODlhEAAQAJEDAM2xV/Xur+XPgP///yH5BAEAAAMALAAAAAAQABAAAAJD3ISZIGHWUGihznesYDYATFVM+D2hJ4lgN1olxALAtAlmPCJvuMmJd6PJckDYwicrHhTD5o7plJmg0Uc0asNMkphHAQA7);
  1596. height: 16px;
  1597. width: 16px;
  1598. cursor: pointer;
  1599. border: none;
  1600. float: left;
  1601. margin-top: 1px;
  1602. }
  1603. .fileIcon3 {
  1604. background: url(data:image/gif;base64,R0lGODlhEAAQAJEDAPb19IGBgbq6uv///yH5BAEAAAMALAAAAAAQABAAAAIy3ISpxgcPH2ouQgFEw1YmxnUXKEaaEZZnVWZk66JwzKpvuwZzwOgwb/C1gIOA8Yg8DgoAOw==);
  1605. height: 16px;
  1606. width: 16px;
  1607. cursor: pointer;
  1608. border: none;
  1609. float: left;
  1610. margin-top: 1px;
  1611. }
  1612. .fileIcon4 {
  1613. background: url(../images/meshicon16.png);
  1614. height: 16px;
  1615. width: 16px;
  1616. cursor: pointer;
  1617. border: none;
  1618. float: left;
  1619. margin-top: 1px;
  1620. }
  1621. .fileIcon5 {
  1622. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABVklEQVQ4T42Ty22DUBBFzW9PB3EJpoKYDpwKIiQ+YpW4grSQHRIgESqIO3A6CB3YHYQlCz65F/Gslwe2gzTCwNwzd2aetdU/rqIo7KZp7DiOz2q6dk+fpulG1/XPYRhshBuGYSVrbgIkcQ0RY6NCFgEUappWIFiVwpJ3PD+rkBlAqrqerLoUIR6CINhnWXaUIX8AC2IyamEb4lfZSdu2zgVwRSzmNUIQOwyUrTzi95bvRkCSJGvLso54IWwvLYezeIL4heK+770oig4jIM9zrmk3qZjIfbPvRZAQ86PGQ4JefqbMyjRN1/O8etrEt0qAg7NhGA5zRgAGs8Wdk+X1DiclV4iJO/hGgOyklqvPHED44fu+RyicVHB2QpItWlPFI2CawUkMEJBD13Ulpv0mVZ9VFq2NAKUNte2r4osDAWHvyiq/8LxX/0ByhdlRntyseOJuCQXkFwkT7PS0vyFtAAAAAElFTkSuQmCC);
  1623. height: 16px;
  1624. width: 16px;
  1625. cursor: pointer;
  1626. border: none;
  1627. float: left;
  1628. margin-top: 1px;
  1629. }
  1630. .fileIcon6 {
  1631. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABCUlEQVQ4T6WT3Q2CMBSFLTAAbiAb4AhuIBvYBEJ40wkcQV/5SXAEN9ANdAPZwL5DwNOENm2xxoQmPLT3nq/3nAaymLnITP3CCqjr2m/bdkUI8ZMkudsumgC4sOu6IwQ7fL4iPAN0MEEaYBTf0BRabmSALNWaBijL8oTi/lcusHSN4zgSPSbgbYzNIGDDMKxUqOd5S0op42cSUBRFiOaHJBPSuK675o1VVb0MyEYEawUAJP3CGgfLXPq+j9I0vWoTjAFyC+p6jhstVLxSkGVZowH4BqPWGJU/n3XB5gUh0q8h/vOMCDAQAU4mEFTLJHeII1VsBQhQnudbx3EYhE9T+NXCL++22uy/8QNYGm0RH2Rb4gAAAABJRU5ErkJggg==);
  1632. height: 16px;
  1633. width: 16px;
  1634. cursor: pointer;
  1635. border: none;
  1636. float: left;
  1637. margin-top: 1px;
  1638. }
  1639. .filelist {
  1640. -moz-user-select: none;
  1641. -khtml-user-select: none;
  1642. -webkit-user-select: none;
  1643. -o-user-select: none;
  1644. user-select: none;
  1645. cursor: default;
  1646. -khtml-user-drag: element;
  1647. clear: both;
  1648. overflow: hidden;
  1649. text-overflow: ellipsis;
  1650. white-space: nowrap;
  1651. }
  1652. .filelist:hover {
  1653. background: #EEE;
  1654. border-radius: 3px;
  1655. }
  1656. .night .filelist:hover {
  1657. background: #444;
  1658. }
  1659. .noselect {
  1660. -webkit-touch-callout: none;
  1661. -webkit-user-select: none;
  1662. -khtml-user-select: none;
  1663. -moz-user-select: none;
  1664. -ms-user-select: none;
  1665. user-select: none;
  1666. }
  1667. .selecttext {
  1668. -webkit-touch-callout: text;
  1669. -webkit-user-select: text;
  1670. -khtml-user-select: text;
  1671. -moz-user-select: text;
  1672. -ms-user-select: text;
  1673. user-select: text;
  1674. }
  1675. .fsize {
  1676. float: right;
  1677. text-align: right;
  1678. width: 180px;
  1679. }
  1680. .g1t {
  1681. background-position: 0% 0%;
  1682. width: 14px;
  1683. height: 100%;
  1684. /* fallback (Opera) */
  1685. /* Mozilla: */
  1686. /* Chrome, Safari:*/
  1687. background-image: linear-gradient(to right, #fff 0%, #c9c9c9 100%);
  1688. background-color: #c9c9c9;
  1689. background-repeat: repeat;
  1690. background-attachment: scroll;
  1691. }
  1692. .night .g1t {
  1693. background-image: linear-gradient(to right, #000 0%, #333 100%);
  1694. }
  1695. .g1 {
  1696. background-position: 0% 0%;
  1697. width: 14px;
  1698. height: 100%;
  1699. float: left;
  1700. /* fallback (Opera) */
  1701. /* Mozilla: */
  1702. /* Chrome, Safari:*/
  1703. background-image: linear-gradient(to right, #fff 0%, #c9c9c9 100%);
  1704. background-color: #c9c9c9;
  1705. background-repeat: repeat;
  1706. background-attachment: scroll;
  1707. }
  1708. .night .g1 {
  1709. background-image: linear-gradient(to right, #000 0%, #333 100%);
  1710. }
  1711. #p3events .g1 {
  1712. float: none;
  1713. }
  1714. #p16events .g1 {
  1715. float: none;
  1716. }
  1717. #p31events .g1 {
  1718. float: none;
  1719. }
  1720. #p3users .g1 {
  1721. height: 24px;
  1722. float: left;
  1723. }
  1724. .g1s {
  1725. background-image: linear-gradient(to right, #fff 0%, #b9b9b9 100%);
  1726. }
  1727. .night .g1s {
  1728. background-image: linear-gradient(to right, #000 0%, #444 100%);
  1729. }
  1730. .g2t {
  1731. background-position: 0% 0%;
  1732. width: 14px;
  1733. height: 100%;
  1734. /* fallback (Opera) */
  1735. /* Mozilla: */
  1736. /* Chrome, Safari:*/
  1737. background-image: linear-gradient(to right, #c9c9c9 0%, #fff 100%);
  1738. background-color: #c9c9c9;
  1739. background-repeat: repeat;
  1740. background-attachment: scroll;
  1741. }
  1742. .night .g2t {
  1743. background-image: linear-gradient(to right, #333 0%, #000 100%);
  1744. }
  1745. .g2 {
  1746. background-position: 0% 0%;
  1747. width: 14px;
  1748. height: 100%;
  1749. float: right;
  1750. /* fallback (Opera) */
  1751. /* Mozilla: */
  1752. /* Chrome, Safari:*/
  1753. background-image: linear-gradient(to right, #c9c9c9 0%, #fff 100%);
  1754. background-color: #c9c9c9;
  1755. background-repeat: repeat;
  1756. background-attachment: scroll;
  1757. }
  1758. .night .g2 {
  1759. background-image: linear-gradient(to right, #333 0%, #000 100%);
  1760. }
  1761. #p3events .g2 {
  1762. float: none;
  1763. }
  1764. #p16events .g2 {
  1765. float: none;
  1766. }
  1767. #p31events .g2 {
  1768. float: none;
  1769. }
  1770. #p3users .g2 {
  1771. height: 24px;
  1772. float: right;
  1773. }
  1774. .g2s {
  1775. background-image: linear-gradient(to right, #b9b9b9 0%, #fff 100%);
  1776. }
  1777. .night .g2s {
  1778. background-image: linear-gradient(to right, #444 0%, #000 100%);
  1779. }
  1780. .h1pre {
  1781. width: 16px;
  1782. height: 100%;
  1783. float: left;
  1784. font-size: large;
  1785. background-color: #FFFFFF;
  1786. }
  1787. .h1 {
  1788. background-position: 0% 0%;
  1789. width: 14px;
  1790. height: 24px;
  1791. /* fallback (Opera) */
  1792. /* Mozilla: */
  1793. /* Chrome, Safari:*/
  1794. background-image: linear-gradient(to right, #fff 0%, #d3d9d6 100%);
  1795. background-color: #d3d9d6;
  1796. background-repeat: repeat;
  1797. background-attachment: scroll;
  1798. }
  1799. .night .h1 {
  1800. background-image: linear-gradient(to right, #000 0%, #333 100%);
  1801. }
  1802. .h2end {
  1803. height: 100%;
  1804. width: 20px;
  1805. float: right;
  1806. background-color: #ffffff;
  1807. }
  1808. .h2 {
  1809. background-position: 0% 0%;
  1810. width: 14px;
  1811. height: 24px;
  1812. /* fallback (Opera) */
  1813. /* Mozilla: */
  1814. /* Chrome, Safari:*/
  1815. background-image: linear-gradient(to right, #d3d9d6 0%, #fff 100%);
  1816. background-color: #d3d9d6;
  1817. background-repeat: repeat;
  1818. background-attachment: scroll;
  1819. }
  1820. .night .h2 {
  1821. background-image: linear-gradient(to right, #333 0%, #000 100%);
  1822. }
  1823. .e1t {
  1824. font-size: large;
  1825. margin-bottom: 3px;
  1826. overflow: hidden;
  1827. word-wrap: hyphenate;
  1828. white-space: nowrap;
  1829. text-overflow: ellipsis;
  1830. }
  1831. .e1 {
  1832. font-size: large;
  1833. margin-top: 4px;
  1834. margin-bottom: 3px;
  1835. overflow: hidden;
  1836. word-wrap: hyphenate;
  1837. white-space: nowrap;
  1838. text-overflow: ellipsis;
  1839. }
  1840. .e2 {
  1841. float: left;
  1842. height: 100%;
  1843. background-color: #c9c9c9;
  1844. }
  1845. .night .e2 {
  1846. color: #CCC;
  1847. background-color: #333;
  1848. }
  1849. .e2t {
  1850. height: 100%;
  1851. background-color: #c9c9c9;
  1852. }
  1853. .night .e2t {
  1854. color: #CCC;
  1855. background-color: #333;
  1856. }
  1857. .e2s {
  1858. background-color: #b9b9b9;
  1859. }
  1860. .night .e2s {
  1861. background-color: #444;
  1862. }
  1863. .bar {
  1864. font-size: large;
  1865. background-color: #C9C9C9;
  1866. height: 24px;
  1867. float: left;
  1868. margin-bottom: 2px;
  1869. }
  1870. .night .bar {
  1871. color: #CCC;
  1872. background-color: #333;
  1873. }
  1874. .sbar {
  1875. background-color: #b9b9b9;
  1876. }
  1877. .night .sbar {
  1878. background-color: #444;
  1879. }
  1880. #p3users .bar {
  1881. width: 100%;
  1882. font-size: medium;
  1883. }
  1884. .baricon {
  1885. float: left;
  1886. height: 24px;
  1887. width: 24px;
  1888. background-color: white;
  1889. }
  1890. .night .baricon {
  1891. background-color: black;
  1892. }
  1893. .baricon div {
  1894. width: 16px;
  1895. margin-top: 4px;
  1896. margin-left: 2px;
  1897. height: 16px;
  1898. }
  1899. .bar2 {
  1900. font-size: large;
  1901. height: 24px;
  1902. float: left;
  1903. margin-bottom: 2px;
  1904. }
  1905. .bar18 {
  1906. font-size: large;
  1907. background-color: #C9C9C9;
  1908. height: 18px;
  1909. float: left;
  1910. margin-bottom: 2px;
  1911. color: black;
  1912. }
  1913. .night .bar18 {
  1914. background-color: #333;
  1915. color: #CCC;
  1916. }
  1917. .bar182 {
  1918. font-size: large;
  1919. height: 18px;
  1920. float: left;
  1921. margin-bottom: 2px;
  1922. }
  1923. .devHeaderx {
  1924. color: lightgray;
  1925. }
  1926. .DevSt {
  1927. border-bottom-style: solid;
  1928. border-bottom-width: 1px;
  1929. border-bottom-color: #DDDDDD;
  1930. }
  1931. .night .DevSt {
  1932. color: white;
  1933. }
  1934. .contextMenu {
  1935. background: #F9F9F9;
  1936. box-shadow: 0 0 12px rgba( 0, 0, 0, .3 );
  1937. border: 1px solid #ccc;
  1938. /*border-radius: 4px;*/
  1939. display: none;
  1940. position: absolute;
  1941. list-style: none;
  1942. margin: 0;
  1943. padding: 5px;
  1944. min-width: 100px;
  1945. max-width: 150px;
  1946. z-index: 500;
  1947. }
  1948. .cmtext {
  1949. color: #444;
  1950. display: inline-block;
  1951. padding-left: 8px;
  1952. padding-right: 8px;
  1953. padding-top: 5px;
  1954. padding-bottom: 5px;
  1955. text-decoration: none;
  1956. width: 85%;
  1957. cursor: default;
  1958. overflow: hidden;
  1959. position: relative;
  1960. }
  1961. .cmtext:hover {
  1962. color: #f9f9f9;
  1963. background: #444;
  1964. }
  1965. .gray {
  1966. /*filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");*/ /* Firefox 10+, Firefox on Android */
  1967. filter: gray; /* IE6-9 */
  1968. -webkit-filter: grayscale(100%) opacity(60%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  1969. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  1970. -moz-opacity: 0.60;
  1971. opacity: .60;
  1972. filter: alpha(opacity=60);
  1973. }
  1974. .unselectable {
  1975. -webkit-touch-callout: none;
  1976. -webkit-user-select: none;
  1977. -khtml-user-select: none;
  1978. -moz-user-select: none;
  1979. -ms-user-select: none;
  1980. user-select: none;
  1981. }
  1982. .notifiyBox {
  1983. position: absolute;
  1984. z-index: 1000;
  1985. top: 50px;
  1986. right: 26px;
  1987. width: 300px;
  1988. text-align: left;
  1989. background-color: #F0ECCD;
  1990. border: 4px solid #666;
  1991. -webkit-border-radius: 10px;
  1992. -moz-border-radius: 10px;
  1993. border-radius: 10px;
  1994. -webkit-box-shadow: 2px 2px 4px #888;
  1995. -moz-box-shadow: 2px 2px 4px #888;
  1996. box-shadow: 2px 2px 4px #888;
  1997. max-height: 200px;
  1998. }
  1999. .night .notifiyBox {
  2000. color: black;
  2001. }
  2002. .notifiyBox:before {
  2003. content: ' ';
  2004. position: absolute;
  2005. width: 0;
  2006. height: 0;
  2007. right: 5px;
  2008. top: -30px;
  2009. border: 15px solid;
  2010. border-color: transparent #666 #666 transparent;
  2011. }
  2012. .notifiyBox:after {
  2013. content: ' ';
  2014. position: absolute;
  2015. width: 0;
  2016. height: 0;
  2017. right: 7px;
  2018. top: -24px;
  2019. border: 12px solid;
  2020. border-color: transparent #F0ECCD #F0ECCD transparent;
  2021. }
  2022. .notification {
  2023. width: 100%;
  2024. min-height: 30px;
  2025. }
  2026. .notification:hover {
  2027. background-color: #EFE8B6;
  2028. }
  2029. #notificationCount {
  2030. min-width: 28px;
  2031. font-size: 20px;
  2032. border-radius: 5px;
  2033. background-color: lightblue;
  2034. text-align: center;
  2035. margin: 8px;
  2036. cursor: pointer;
  2037. padding: 4px;
  2038. }
  2039. .night #notificationCount {
  2040. color: black;
  2041. }
  2042. .deskareaicon {
  2043. cursor: pointer;
  2044. border: none;
  2045. float: right;
  2046. font-size: 130%;
  2047. margin-right: 4px;
  2048. }
  2049. .areaHead {
  2050. padding-left: 4px;
  2051. padding-top: 2px;
  2052. padding-bottom: 2px;
  2053. background: #C0C0C0;
  2054. }
  2055. .night .areaHead {
  2056. color: #CCC;
  2057. background: #333;
  2058. }
  2059. .areaProgress {
  2060. background-color: gray;
  2061. }
  2062. .areaProgress div {
  2063. height: 2px;
  2064. width: 0%;
  2065. background-color: red;
  2066. }
  2067. .areaFoot {
  2068. padding-top: 2px;
  2069. padding-bottom: 2px;
  2070. background: #C0C0C0;
  2071. height: 22px;
  2072. }
  2073. .night .areaFoot {
  2074. color: #CCC;
  2075. background: #333;
  2076. }
  2077. .toright2 {
  2078. float: right;
  2079. text-align: right;
  2080. padding-right: 4px;
  2081. }
  2082. #deskarea0 {
  2083. width: 100%;
  2084. padding: 0px;
  2085. margin-top: 0px;
  2086. }
  2087. .night #deskarea0 {
  2088. color: black;
  2089. }
  2090. .fulldesk #deskarea0 {
  2091. min-width: 100%;
  2092. min-height: 0px;
  2093. height: 100%;
  2094. position: relative;
  2095. display: -ms-grid;
  2096. display: grid;
  2097. grid-gap: 0px;
  2098. grid-template-areas: "deskarea1" "deskarea2" "deskarea3" "deskarea4";
  2099. /* grid-template-columns: 90px auto; */
  2100. grid-template-rows: 24px max-content auto max-content;
  2101. -ms-grid-columns: 1fr;
  2102. -ms-grid-rows: 24px max-content 1fr max-content;
  2103. }
  2104. #deskarea0 .mR {
  2105. margin-right: 3px;
  2106. }
  2107. #deskarea1 {
  2108. grid-area: deskarea1;
  2109. -ms-grid-column: 1;
  2110. -ms-grid-row: 1;
  2111. min-height: 20px;
  2112. }
  2113. #deskarea2 {
  2114. grid-area: deskarea2;
  2115. background-color: gray;
  2116. -ms-grid-column: 1;
  2117. -ms-grid-row: 2;
  2118. }
  2119. #progressbar {
  2120. height: 2px;
  2121. width: 0%;
  2122. background-color: red;
  2123. }
  2124. #deskarea3x {
  2125. background: black;
  2126. text-align: center;
  2127. position: relative;
  2128. overflow: hidden;
  2129. width: 100%;
  2130. max-height: calc(100vh - 270px); /* + 24px height of submenu */
  2131. height: calc(100vh - 270px);
  2132. }
  2133. .room4submenu #deskarea3x {
  2134. max-height: calc(100vh - 296px);
  2135. height: calc(100vh - 296px);
  2136. }
  2137. .fulldesk #deskarea3x {
  2138. grid-area: deskarea3;
  2139. max-height: 100%;
  2140. height: 100%;
  2141. -ms-grid-column: 1;
  2142. -ms-grid-row: 3;
  2143. }
  2144. #DeskFocus {
  2145. overflow: hidden;
  2146. color: transparent;
  2147. border: 3px dotted rgba(255,0,0,.2);
  2148. position: absolute;
  2149. border-radius: 5px;
  2150. }
  2151. #DeskParent {
  2152. margin: 0;
  2153. overflow: hidden;
  2154. height: 100%;
  2155. width: 100%;
  2156. position: absolute;
  2157. right: 0;
  2158. top: 0;
  2159. }
  2160. #Desk {
  2161. overflow: hidden;
  2162. width: 100%;
  2163. -ms-touch-action: none;
  2164. touch-action: none;
  2165. position: absolute;
  2166. top: 0px;
  2167. bottom: 0px;
  2168. left: 0px;
  2169. right: 0px;
  2170. margin: auto;
  2171. }
  2172. .deskToolsTopTab {
  2173. position:absolute;
  2174. background-color:lightgray;
  2175. padding:2px;
  2176. top:2px;
  2177. left:0px;
  2178. width:80px;
  2179. bottom:2px;
  2180. border-top-left-radius:4px;
  2181. border-top-right-radius:4px;
  2182. cursor:pointer;
  2183. }
  2184. #deskToolsAreaTop {
  2185. position: absolute;
  2186. /*
  2187. padding: 3px;
  2188. border-radius: 3px 3px 0px 0px;
  2189. top: 5px;
  2190. left: 4px;
  2191. bottom: 26px;
  2192. cursor: pointer;
  2193. */
  2194. top: 0px;
  2195. left: 4px;
  2196. right: 4px;
  2197. height: 26px;
  2198. background-color: gray;
  2199. }
  2200. .night #deskToolsAreaTop {
  2201. background-color: #222;
  2202. }
  2203. #deskToolsArea {
  2204. position: absolute;
  2205. top: 26px;
  2206. left: 4px;
  2207. right: 4px;
  2208. bottom: 4px;
  2209. background-color: lightgray;
  2210. text-align: left;
  2211. }
  2212. .night #deskToolsArea {
  2213. background-color: #222;
  2214. }
  2215. #deskToolsHeader {
  2216. border-bottom: 1px solid darkgray;
  2217. padding: 3px;
  2218. }
  2219. #deskToolsHeader .colmn1 {
  2220. width: 50px;
  2221. padding-right: 5px;
  2222. float: left;
  2223. }
  2224. #deskToolsServiceHeader {
  2225. border-bottom: 1px solid darkgray;
  2226. padding: 3px;
  2227. }
  2228. #deskToolsServiceHeader .colmn1 {
  2229. width: 50px;
  2230. padding-right: 5px;
  2231. float: left;
  2232. }
  2233. #DeskToolsProcesses {
  2234. overflow-y: scroll;
  2235. position: absolute;
  2236. top: 24px;
  2237. bottom: 0px;
  2238. width: 100%;
  2239. color:black;
  2240. }
  2241. #DeskToolsServices {
  2242. overflow-y: scroll;
  2243. position: absolute;
  2244. top: 24px;
  2245. bottom: 0px;
  2246. width: 100%;
  2247. color:black;
  2248. }
  2249. .deskToolsBar {
  2250. padding: 3px;
  2251. }
  2252. .deskToolsBar:hover {
  2253. background-color: #EFE8B6;
  2254. }
  2255. .night .deskToolsBar {
  2256. color: #ddd;
  2257. }
  2258. .night .deskToolsBar:hover {
  2259. background-color: #444;
  2260. }
  2261. #deskarea4 {
  2262. grid-area: deskarea4;
  2263. -ms-grid-column: 1;
  2264. -ms-grid-row: 4;
  2265. }
  2266. #DeskRunButton, #DeskChatButton, #DeskNotifyButton, #DeskOpenWebButton, #DeskBackgroundButton, #DeskSaveImageButton, #DeskRecordButton, #DeskClipboardInButton, #DeskClipboardOutButton, #DeskRefreshButton, #DeskLockButton, #DeskInputLockedButton, #DeskInputUnLockedButton, #DeskGuestShareButton, #DeskMonitorSelectionSpan {
  2267. float: right;
  2268. margin-top: 1px;
  2269. margin-right: 4px;
  2270. cursor: pointer;
  2271. }
  2272. #DeskClip, #DeskControlSpan, #specialkeylist {
  2273. padding-left: 6px;
  2274. }
  2275. .serverStateTableCell {
  2276. width: 300px;
  2277. height: 24px;
  2278. background-color: #d3d9d6;
  2279. margin-bottom: 4px;
  2280. vertical-align: middle;
  2281. border-spacing: 0;
  2282. }
  2283. .night .serverStateTableCell {
  2284. background-color: #333;
  2285. color: #CCC;
  2286. }
  2287. .userTableHeader {
  2288. border-bottom: 1pt solid lightgray;
  2289. padding-top: 4px;
  2290. padding-bottom: 4px;
  2291. }
  2292. #deskkeys {
  2293. margin-left: 6px;
  2294. }
  2295. #p12BackButton {
  2296. float: left;
  2297. }
  2298. #termTable {
  2299. width: 100%;
  2300. padding: 0px;
  2301. margin-top: 0px;
  2302. }
  2303. .fulldesk #termTable {
  2304. position: absolute;
  2305. top: 0;
  2306. bottom: 0;
  2307. left: 0;
  2308. right: 0;
  2309. }
  2310. #termarea3x {
  2311. background: black;
  2312. text-align: center;
  2313. height: 500px;
  2314. position: relative;
  2315. }
  2316. #Term {
  2317. background: black;
  2318. margin: 0;
  2319. padding: 0;
  2320. }
  2321. #p13toolbar {
  2322. width: 100%;
  2323. }
  2324. #p13toolbar .areaHead {
  2325. border-bottom: 2px solid black;
  2326. }
  2327. #p13toolbar .areaHead2 {
  2328. width: 100%;
  2329. background-color: #d3d9d6;
  2330. text-align: left;
  2331. padding: 4px;
  2332. }
  2333. .night #p13toolbar .areaHead2 {
  2334. background-color: #333;
  2335. }
  2336. #p13toolbar .areaHead3 {
  2337. background-color: #E4E9E7;
  2338. height: 28px;
  2339. }
  2340. .night #p13toolbar .areaHead3 {
  2341. background-color: #333;
  2342. }
  2343. #p13filetable {
  2344. width: 100%;
  2345. height: calc(100vh - 323px);
  2346. overflow: auto;
  2347. -webkit-user-select: none;
  2348. user-select: none;
  2349. }
  2350. .room4submenu #p13filetable {
  2351. height: calc(100vh - 349px);
  2352. }
  2353. .fulldesk #p14title {
  2354. margin-left: 16px;
  2355. margin-right: 16px;
  2356. color: #CCC;
  2357. }
  2358. #p14iframe {
  2359. width: 100%;
  2360. height: calc(100vh - 218px);
  2361. border: 0;
  2362. overflow: hidden;
  2363. }
  2364. .menu_stack #p14iframe {
  2365. height: calc(100vh - 246px);
  2366. }
  2367. .fulldesk #p14iframe {
  2368. height: calc(100vh - 65px);
  2369. }
  2370. #p13toolbarBottom, #p13toolbar {
  2371. width: 100%;
  2372. }
  2373. #consoleTable {
  2374. width: 100%;
  2375. padding: 0px;
  2376. padding: 0px;
  2377. margin-top: 0px;
  2378. }
  2379. .night #consoleTable {
  2380. color: black;
  2381. }
  2382. #p15statetext {
  2383. padding: 4px;
  2384. height: 15px;
  2385. }
  2386. #p15agentConsole {
  2387. background: black;
  2388. margin: 0;
  2389. padding: 0;
  2390. color: lightgray;
  2391. width: 100%;
  2392. height: calc(100vh - 276px);
  2393. max-height: calc(100vh - 276px);
  2394. position: relative;
  2395. }
  2396. .menu_stack.fullscreen #p15agentConsole {
  2397. height: calc(100vh - 305px);
  2398. max-height: calc(100vh - 305px);
  2399. }
  2400. #p15coreName {
  2401. padding: 4px;
  2402. display: inline-block;
  2403. }
  2404. #p15agentConsoleText {
  2405. margin: 0;
  2406. padding: 0;
  2407. top: 0;
  2408. bottom: 0;
  2409. overflow-y: scroll;
  2410. overflow-x: auto;
  2411. height: calc(100vh - 279px);
  2412. max-height: calc(100vh - 279px);
  2413. width: 930px;
  2414. }
  2415. .menu_stack.fullscreen #p15agentConsoleText {
  2416. width: calc(100vw - 30px);
  2417. height: calc(100vh - 305px);
  2418. max-height: calc(100vh - 305px);
  2419. }
  2420. .fullscreen #p15agentConsoleText {
  2421. width: calc(100vw - 120px);
  2422. }
  2423. /*
  2424. #p16events, #p31events {
  2425. max-height: calc(100vh - 245px);
  2426. overflow-y: auto;
  2427. }
  2428. .room4submenu #p16events, #p31events {
  2429. max-height: calc(100vh - 269px);
  2430. }
  2431. */
  2432. .night #p16events, #p31events {
  2433. color: #222;
  2434. }
  2435. #p40 {
  2436. height: calc(100vh - 191px);
  2437. }
  2438. .viewSelector {
  2439. width: 32px;
  2440. height: 32px;
  2441. background-color: #DDD;
  2442. border-radius: 3px;
  2443. float: left;
  2444. margin-left: 5px;
  2445. cursor: pointer;
  2446. opacity: 0.3;
  2447. }
  2448. .viewSelectorSel {
  2449. background-color: #BBB;
  2450. opacity: 0.8;
  2451. }
  2452. .viewSelector:hover {
  2453. opacity: 0.5;
  2454. background-color: #AAA;
  2455. }
  2456. .viewSelector1 {
  2457. margin-left: 2px;
  2458. margin-top: 2px;
  2459. background: url(../images/views.png) -0px 0px;
  2460. height: 28px;
  2461. width: 28px;
  2462. }
  2463. .viewSelector2 {
  2464. margin-left: 2px;
  2465. margin-top: 2px;
  2466. background: url(../images/views.png) -28px 0px;
  2467. height: 28px;
  2468. width: 28px;
  2469. }
  2470. .viewSelector3, .uiSelector7 {
  2471. margin-left: 2px;
  2472. margin-top: 2px;
  2473. background: url(../images/views.png) -56px 0px;
  2474. height: 28px;
  2475. width: 28px;
  2476. }
  2477. .viewSelector4 {
  2478. margin-left: 2px;
  2479. margin-top: 2px;
  2480. background: url(../images/views.png) -84px 0px;
  2481. height: 28px;
  2482. width: 28px;
  2483. }
  2484. .viewSelector5 {
  2485. margin-left: 2px;
  2486. margin-top: 2px;
  2487. background: url(../images/views.png) -112px 0px;
  2488. height: 28px;
  2489. width: 28px;
  2490. }
  2491. .viewSelector6 {
  2492. margin-left: 2px;
  2493. margin-top: 2px;
  2494. background: url(../images/views.png) -336px 0px;
  2495. height: 28px;
  2496. width: 28px;
  2497. }
  2498. .viewSelector7 {
  2499. margin-left: 2px;
  2500. margin-top: 2px;
  2501. background: url(../images/views.png) -364px 0px;
  2502. height: 28px;
  2503. width: 28px;
  2504. }
  2505. .viewSelector8 {
  2506. margin-left: 2px;
  2507. margin-top: 2px;
  2508. background: url(../images/views.png) -420px 0px;
  2509. height: 28px;
  2510. width: 28px;
  2511. }
  2512. .viewSelector9 {
  2513. margin-left: 2px;
  2514. margin-top: 2px;
  2515. background: url(../images/views.png) -448px 0px;
  2516. height: 28px;
  2517. width: 28px;
  2518. }
  2519. .viewSelector10 {
  2520. margin-left: 2px;
  2521. margin-top: 2px;
  2522. background: url(../images/views.png) -476px 0px;
  2523. height: 28px;
  2524. width: 28px;
  2525. }
  2526. .viewSelector11 {
  2527. margin-left: 2px;
  2528. margin-top: 2px;
  2529. background: url(../images/views.png) -504px 0px;
  2530. height: 28px;
  2531. width: 28px;
  2532. }
  2533. .viewSelector12 {
  2534. margin-left: 2px;
  2535. margin-top: 2px;
  2536. background: url(../images/icon-refresh.png) no-repeat center;
  2537. height: 28px;
  2538. width: 28px;
  2539. }
  2540. .fulldesk .viewSelector5 {
  2541. background: url(../images/views.png) -252px 0px;
  2542. }
  2543. .backButtonEx {
  2544. margin-left: 2px;
  2545. margin-top: 2px;
  2546. background: url(../images/views.png) -140px 0px;
  2547. height: 28px;
  2548. width: 28px;
  2549. }
  2550. .uiSelector {
  2551. width: 32px;
  2552. height: 32px;
  2553. background-color: #BBB;
  2554. border-radius: 3px;
  2555. float: left;
  2556. margin: 3px;
  2557. cursor: pointer;
  2558. opacity: 0.3;
  2559. }
  2560. .uiSelector:hover {
  2561. opacity: 0.5;
  2562. background-color: #AAA;
  2563. }
  2564. .uiSelector_end {
  2565. width: 32px;
  2566. height: 32px;
  2567. float: left;
  2568. margin: 3px;
  2569. }
  2570. .uiSelectorSel {
  2571. background-color: #BBB;
  2572. opacity: 0.8;
  2573. }
  2574. .uiSelector1 {
  2575. margin: 2px;
  2576. background: url(../images/views.png) -168px 0px;
  2577. height: 28px;
  2578. width: 28px;
  2579. }
  2580. .uiSelector2 {
  2581. margin: 2px;
  2582. background: url(../images/views.png) -196px 0px;
  2583. height: 28px;
  2584. width: 28px;
  2585. }
  2586. .uiSelector3 {
  2587. margin: 2px;
  2588. background: url(../images/views.png) -224px 0px;
  2589. height: 28px;
  2590. width: 28px;
  2591. }
  2592. .uiSelector4 {
  2593. margin: 2px;
  2594. background: url(../images/views.png) -280px 0px;
  2595. height: 28px;
  2596. width: 28px;
  2597. }
  2598. .uiSelector5 {
  2599. margin: 2px;
  2600. background: url(../images/views.png) -308px 0px;
  2601. height: 28px;
  2602. width: 28px;
  2603. }
  2604. .uiSelector6 {
  2605. margin: 2px;
  2606. background: url(../images/views.png) -392px 0px;
  2607. height: 28px;
  2608. width: 28px;
  2609. }
  2610. .backButton {
  2611. width: 32px;
  2612. height: 32px;
  2613. background-color: #DDD;
  2614. border-radius: 3px;
  2615. float: left;
  2616. margin-right: 5px;
  2617. cursor: pointer;
  2618. opacity: 0.3;
  2619. }
  2620. .backButton:hover {
  2621. opacity: 0.5;
  2622. background-color: #AAA;
  2623. }
  2624. .hoverButton {
  2625. opacity: 0.5;
  2626. width: 10px;
  2627. height: 10px;
  2628. }
  2629. .hoverButton:hover {
  2630. opacity: 1;
  2631. }
  2632. .tagSpan {
  2633. background-color: lightgray;
  2634. padding: 3px;
  2635. border-radius: 5px;
  2636. }
  2637. .night .tagSpan {
  2638. color: black;
  2639. }
  2640. .suggestionBox {
  2641. position:absolute;
  2642. background-color: #6CC;
  2643. border-radius:4px;
  2644. padding:6px;
  2645. box-shadow: 0px 0px 15px #666;
  2646. }
  2647. .suggestionBoxItem {
  2648. background-color:#5BB;
  2649. padding: 4px;
  2650. cursor: pointer;
  2651. margin-top: 2px;
  2652. margin-bottom: 2px;
  2653. border-radius: 4px;
  2654. }
  2655. .suggestionBoxItem:hover {
  2656. background-color:#4AA;
  2657. }
  2658. .suggestionBoxSubItem {
  2659. font-size: 11px;
  2660. margin-left: 4px;
  2661. color: #555;
  2662. }
  2663. .traceEvent {
  2664. white-space: nowrap;
  2665. overflow: hidden;
  2666. text-overflow: ellipsis;
  2667. margin: 3px 3px 3px 0;
  2668. padding: 3px;
  2669. border-radius: 3px;
  2670. background-color: #DDD;
  2671. cursor: pointer;
  2672. }
  2673. .traceEvent:hover {
  2674. background-color:#BBB;
  2675. }
  2676. .night .traceEvent {
  2677. background-color: #222;
  2678. }
  2679. .p42tblRow {
  2680. height: 36px;
  2681. max-height: 40px;
  2682. }
  2683. #p42tbl {
  2684. width: 100%;
  2685. border-collapse: separate;
  2686. border-spacing:0 5px;
  2687. }
  2688. #p42tbl th, #p7tbl td {
  2689. text-align: left;
  2690. padding: 4px;
  2691. }
  2692. #p42tbl .chName {
  2693. width: 20%;
  2694. }
  2695. #p42tbl .chDescription {
  2696. width: 38%;
  2697. }
  2698. #p42tbl .chSite {
  2699. width: 7%;
  2700. }
  2701. #p42tbl .chVersion {
  2702. width: 5%;
  2703. }
  2704. #p42tbl .chUpgradeAvail {
  2705. width: 10%;
  2706. }
  2707. #p42tbl .chStatus {
  2708. width: 10%;
  2709. }
  2710. #p42tbl .chAction {
  2711. width: 10%;
  2712. }
  2713. .pActDisable, .pActDelete, .pActInstall, .pActUpgrade {
  2714. cursor: pointer;
  2715. }
  2716. #addPlugin {
  2717. background-image: url(../images/plus32.png);
  2718. width: 32px;
  2719. height: 32px;
  2720. float: right;
  2721. cursor: pointer;
  2722. margin-right: 12px;
  2723. }
  2724. #pluginRestartNotice {
  2725. /*
  2726. width: 40em;
  2727. font-weight: bold;
  2728. border: 1px solid red;
  2729. text-align: center;
  2730. padding: 14px;
  2731. margin: 50px auto;
  2732. */
  2733. }
  2734. .pluginContent {
  2735. width: 100%;
  2736. height: 100%;
  2737. }
  2738. #p19headers {
  2739. padding-right: 7px;
  2740. padding-bottom: 10px;
  2741. font-weight: bold;
  2742. border-bottom: 1px dotted blue;
  2743. }
  2744. #p19headers > span:nth-child(n+2) {
  2745. border-left: 1px solid black;
  2746. }
  2747. #p19headers > span {
  2748. padding-left: 4px;
  2749. padding-right: 4px;
  2750. cursor: pointer;
  2751. font-weight: lighter;
  2752. }
  2753. #p19headers > span.on {
  2754. font-weight: bold;
  2755. }
  2756. .thermalSensor {
  2757. float: left;
  2758. padding: 5px;
  2759. background-color: gold;
  2760. margin-right: 6px;
  2761. border-radius: 4px;
  2762. margin-bottom: 5px;
  2763. }
  2764. .night .thermalSensor {
  2765. color: #000;
  2766. }
  2767. .desktopButtons {
  2768. padding-top: 2px;
  2769. }
  2770. .night .desktopButtons {
  2771. filter: invert(60%);
  2772. -webkit-filter: invert(60%);
  2773. }
  2774. .dtab {
  2775. overflow: hidden;
  2776. border-bottom: 1px solid #ccc;
  2777. background-color: #f1f1f1;
  2778. }
  2779. .dtab button {
  2780. background-color: inherit;
  2781. float: left;
  2782. border: none;
  2783. outline: none;
  2784. cursor: pointer;
  2785. padding: 4px 6px;
  2786. transition: 0.3s;
  2787. }
  2788. .dtab button:hover {
  2789. background-color: #ddd;
  2790. }
  2791. .dtab button.active {
  2792. background-color: #ccc;
  2793. }
  2794. .dtabcontent {
  2795. display: none;
  2796. padding: 6px 12px;
  2797. border: 1px solid #ccc;
  2798. border-top: none;
  2799. }
  2800. #notesPanel table {
  2801. color: black;
  2802. background-color: #EEE;
  2803. border-color: #AAA;
  2804. border-width: 1px;
  2805. border-style: solid;
  2806. border-collapse: collapse;
  2807. width: 100%;
  2808. }
  2809. #notesPanel thead {
  2810. background-color: #AAA;
  2811. font-weight: bold;
  2812. }
  2813. #notesPanel thead tr {
  2814. background-color: #AAA;
  2815. font-weight: bold;
  2816. }