style.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823
  1. :root {
  2. --w-70: 70%;
  3. --primary-color: #1c4587;
  4. --bg-grey: #EDEEF1;
  5. }
  6. .border-lighter {
  7. border: 1px solid #f3f3f3;
  8. }
  9. /* login css */
  10. .login-container {
  11. background-color: var(--bg-grey);
  12. }
  13. .login-header {
  14. font-size: 30px;
  15. font-weight: 100;
  16. }
  17. .login-form {
  18. padding: 50px;
  19. }
  20. .login-form label {
  21. font-size: 14px;
  22. color: #454859;
  23. }
  24. .login-form .form-control {
  25. height: calc(1.5em + 0.75rem + 0.3px);;
  26. }
  27. .bg-holder {
  28. background-image: url(/login-rhs.jpg);
  29. background-size: cover;
  30. }
  31. .login-container .logo {
  32. font-size: 35px;
  33. font-weight: 800;
  34. color: rgb(13, 89, 175);
  35. }
  36. .login-container small {
  37. font-size: 12px;
  38. color: #999;
  39. }
  40. /* end of login */
  41. .w-70 {
  42. width: var(--w-70);
  43. }
  44. .text-warning-mellow {
  45. color: #d8a714!important;
  46. }
  47. .bg-warning-mellow {
  48. background-color: #ffc10755 !important;
  49. }
  50. .text-link {
  51. color: rgb(13, 89, 175) !important;
  52. }
  53. .stag-primary-bg {
  54. background-color: var(--primary-color) !important;
  55. color: #fff;
  56. }
  57. .stag-primary-border {
  58. border-color: var(--primary-color) !important;
  59. }
  60. .navbar-brand {
  61. font-size: 16px !important;
  62. font-weight: 600;
  63. }
  64. .navbar-brand>img {
  65. max-width: 160px;
  66. }
  67. .sidebar .nav-link {
  68. padding: .25rem 1rem;
  69. }
  70. .sidebar .nav-item {
  71. margin-right: 0;
  72. }
  73. .sidebar .nav-item .nav-child-list {
  74. list-style: none;
  75. }
  76. .sidebar .nav-item .nav-child-list .nav-item .nav-link {
  77. padding-left: 2rem;
  78. }
  79. .sidebar .if-not-collapsed, .sidebar .if-collapsed {
  80. display: none;
  81. }
  82. .sidebar .nav-item.nav-child-collapsed .if-collapsed {
  83. display: block;
  84. }
  85. .sidebar .nav-item:not(.nav-child-collapsed) .if-not-collapsed {
  86. display: block;
  87. }
  88. .sidebar .nav-item.nav-child-collapsed .nav-child-list {
  89. display: none;
  90. }
  91. .navbar-dark .nav-item .nav-link {
  92. color: #fff;
  93. }
  94. .dropdown-menu {
  95. margin-top: 7px;
  96. border-radius: 0;
  97. min-width: 120px;
  98. }
  99. .dropdown-item:not(:last-child) {
  100. border-bottom:1px solid #ddd;
  101. }
  102. body>.navbar .dropdown-menu {
  103. margin-top: -3px;
  104. }
  105. main {
  106. padding:0 1rem;
  107. }
  108. /* ability to toggle the video pane (rhs) */
  109. .stag_rhs_toggle, .stag_rhs_toggle:hover {
  110. position: fixed;
  111. bottom: 0;
  112. right: 0;
  113. padding: 0.25rem 0.75rem;
  114. border-top-left-radius: 6px;
  115. background-color: var(--primary-color);
  116. color: #fff;
  117. z-index: 2;
  118. }
  119. body.stag_rhs_collapsed .v-split,
  120. body.stag_rhs_collapsed .app-right-panel {
  121. display: none !important;
  122. }
  123. .delete-column {
  124. width: 120px;
  125. }
  126. .m-negator {
  127. margin-left: -1.25rem !important;
  128. margin-right: -1.25rem !important;
  129. }
  130. .pl-3-5 {
  131. padding-left: 1.25rem !important;
  132. }
  133. .lh-24px {
  134. height: 24px;
  135. line-height: 24px;
  136. }
  137. .mcp-theme-1 input[type="file"] {
  138. position: relative;
  139. cursor: pointer;
  140. box-shadow: none;
  141. }
  142. .mcp-theme-1 input[type="file"]::after {
  143. content: attr(selected-file);
  144. position: absolute;
  145. left: 0;
  146. top: 0;
  147. width: 100%;
  148. height: 100%;
  149. background: #fff;
  150. display: flex;
  151. align-items: center;
  152. padding: 0 0.5rem;
  153. color: #0d59af;
  154. overflow: hidden;
  155. white-space: nowrap;
  156. text-overflow: ellipsis;
  157. }
  158. .mcp-theme-1 *:not(i) {
  159. font-family: Verdana, sans-serif;
  160. font-size: 12px;
  161. }
  162. .mcp-theme-1 .font-size-11 {
  163. font-size: 11px;
  164. }
  165. .mcp-theme-1 .font-size-13 {
  166. font-size: 13px;
  167. }
  168. .mcp-theme-1 .font-size-14 {
  169. font-size: 14px;
  170. }
  171. .mcp-theme-1 .font-size-16 {
  172. font-size: 16px;
  173. }
  174. .mcp-theme-1 .font-underline {
  175. text-decoration: underline;
  176. }
  177. .mcp-theme-1 .on-hover-opaque {
  178. opacity: 0.6;
  179. }
  180. .mcp-theme-1 .on-hover-opaque:hover {
  181. opacity: 1;
  182. }
  183. .mcp-theme-1 .on-hover-aliceblue:hover {
  184. background: aliceblue;
  185. }
  186. .mcp-theme-1 .opacity-0 {
  187. opacity: 0 !important;
  188. }
  189. .mcp-theme-1 .opacity-60 {
  190. opacity: .6;
  191. }
  192. .mcp-theme-1 .opacity-35 {
  193. opacity: .35;
  194. }
  195. .mcp-theme-1 .overflow-visible {
  196. overflow: visible;
  197. }
  198. .mcp-theme-1 .overflow-overlay-on-hover {
  199. overflow: hidden;
  200. }
  201. .mcp-theme-1 .overflow-overlay-on-hover:hover {
  202. overflow: overlay;
  203. }
  204. .mcp-theme-1 .text-secondary-light {
  205. color: #c9ddef !important;
  206. }
  207. .mcp-theme-1 a, .mcp-theme-1 a:link {
  208. color: rgb(13, 89, 175);
  209. }
  210. .mcp-theme-1 .text-primary {
  211. color: rgb(13, 89, 175) !important;
  212. }
  213. .mcp-theme-1 .btn.btn-primary {
  214. background: rgb(13, 89, 175);
  215. border-color: rgb(13, 89, 175);
  216. box-shadow: none;
  217. }
  218. .mcp-theme-1 .btn.btn-success,
  219. .mcp-theme-1 .btn.btn-success:active {
  220. background: #35b7b2;
  221. border-color: #35b7b2;
  222. }
  223. .mcp-theme-1 .btn.btn-success:focus {
  224. box-shadow: 0 0 0 0.2rem #35b7b277;
  225. }
  226. #sidebarMenu .mcp-theme-1 .nav-item {
  227. margin: 0;
  228. }
  229. #sidebarMenu .mcp-theme-1 .nav-link:hover {
  230. background: #e3e3e394;
  231. }
  232. #sidebarMenu .mcp-theme-1 .nav-link {
  233. border-top: 1px solid transparent;
  234. }
  235. #sidebarMenu .mcp-theme-1 .nav-link.active {
  236. border-top: 1px solid #f8f9fa;
  237. background: #e2e2e2;
  238. }
  239. .mcp-theme-1 .text-sm {
  240. font-size: 85%;
  241. }
  242. .mcp-theme-1 .text-sm-incl-children,
  243. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  244. font-size: 0.8rem;
  245. }
  246. .mcp-theme-1 .minutes-label {
  247. width: 40px;
  248. }
  249. .mcp-theme-1 .memo-textarea {
  250. min-width: 200px;
  251. height: 60px;
  252. }
  253. .main-row {
  254. display: flex;
  255. flex-wrap: nowrap;
  256. margin-right: -15px;
  257. margin-left: -15px;
  258. }
  259. .main-row > .sidebar {
  260. width: 180px;
  261. min-width: 180px;
  262. }
  263. .main-row > main {
  264. flex-grow: 1;
  265. }
  266. html, body {
  267. height: 100%;
  268. }
  269. body>nav.navbar {
  270. height: 55px;
  271. }
  272. .body-height {
  273. height: calc(100vh - 55px);
  274. }
  275. .stag-content {
  276. height: calc(100% - 55px);
  277. }
  278. [moe][large] form, [moe][large] [url] {
  279. width: 450px;
  280. }
  281. [moe][wide] form, [moe][wide] [url] {
  282. width: 550px;
  283. }
  284. [moe][huge] form, [moe][huge] [url] {
  285. width: 750px;
  286. }
  287. [moe][bottom] form,
  288. [moe][bottom] div[url]{
  289. bottom: 100%;
  290. }
  291. .moe-disabled[moe] {
  292. cursor: not-allowed;
  293. }
  294. .moe-disabled[moe] [start][show] {
  295. opacity: 0.5;
  296. pointer-events: none;
  297. }
  298. .mcp-theme-1 .stag-no-wrap-td {
  299. max-width: 260px;
  300. }
  301. .mcp-theme-1 .stag-no-wrap {
  302. max-width: 250px;
  303. overflow: hidden;
  304. text-overflow: ellipsis;
  305. white-space: nowrap;
  306. display: block;
  307. }
  308. .mcp-theme-1 .form-control.form-control-sm:not(.min-width-unset) {
  309. min-width: 200px;
  310. }
  311. .mcp-theme-1 .min-width-unset>.form-control.form-control-sm {
  312. min-width: unset !important;
  313. }
  314. .mcp-theme-1 [large] .form-control.form-control-sm {
  315. min-width: unset;
  316. }
  317. [wide] .form-control.form-control-sm:not(.min-width-unset) {
  318. min-width: 480px;
  319. }
  320. [moe][center] [url]:not([show]) {
  321. position: fixed;
  322. top: 10%;
  323. max-height: 88%;
  324. overflow-y: auto;
  325. overflow-x: hidden;
  326. left: calc(50% - 250px);
  327. width: 500px;
  328. }
  329. [moe][center][wide] [url]:not([show]) {
  330. left: calc(50% - 400px);
  331. width: 800px;
  332. }
  333. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  334. min-width: unset;
  335. max-width: 100%;
  336. }
  337. .mcp-theme-1 .width-200px {
  338. width: 200px !important;
  339. }
  340. .mcp-theme-1 .width-300px {
  341. width: 300px !important;
  342. }
  343. .mcp-theme-1 .width-22px {
  344. width: 22px !important;
  345. }
  346. .mcp-theme-1 .width-30px {
  347. width: 30px !important;
  348. }
  349. .mcp-theme-1 .width-40px {
  350. width: 40px !important;
  351. }
  352. .mcp-theme-1 .width-50px {
  353. width: 50px !important;
  354. }
  355. .mcp-theme-1 .width-60px {
  356. width: 60px !important;
  357. }
  358. .mcp-theme-1 .width-70px {
  359. width: 70px !important;
  360. }
  361. .mcp-theme-1 .min-width-30px {
  362. min-width: 30px !important;
  363. }
  364. .mcp-theme-1 .min-width-50 {
  365. min-width: 50% !important;
  366. }
  367. .mcp-theme-1 .max-width-50 {
  368. max-width: 50% !important;
  369. }
  370. .mcp-theme-1 .min-width-70px {
  371. min-width: 70px !important;
  372. }
  373. .mcp-theme-1 .min-width-80px {
  374. min-width: 80px !important;
  375. }
  376. .mcp-theme-1 .width-90px {
  377. width: 90px !important;
  378. }
  379. .mcp-theme-1 .min-width-110px {
  380. min-width: 110px !important;
  381. }
  382. .mcp-theme-1 .min-width-140px {
  383. min-width: 140px !important;
  384. }
  385. .mcp-theme-1 .min-width-200px {
  386. min-width: 200px !important;
  387. }
  388. .mcp-theme-1 .min-width-300px {
  389. min-width: 300px;
  390. }
  391. .mcp-theme-1 .min-width-500px {
  392. min-width: 500px !important;
  393. }
  394. .mcp-theme-1 .max-width-500px {
  395. max-width: 500px !important;
  396. }
  397. .mcp-theme-1 .min-width-700px {
  398. min-width: 700px !important;
  399. }
  400. .mcp-theme-1 .max-width-700px {
  401. max-width: 700px !important;
  402. }
  403. .mcp-theme-1 .width-100px {
  404. width: 100px;
  405. min-width: unset !important;
  406. max-width: unset !important;
  407. }
  408. .mcp-theme-1 .width-150px {
  409. width: 150px;
  410. min-width: unset !important;
  411. max-width: unset !important;
  412. }
  413. .mcp-theme-1 .width-100pc {
  414. width: 100% !important;
  415. min-width: unset !important;
  416. }
  417. .mcp-theme-1 .max-width-200px {
  418. max-width: 200px;
  419. }
  420. .mcp-theme-1 .max-width-300px {
  421. max-width: 300px;
  422. }
  423. .mcp-theme-1 .height-35px {
  424. min-height: 35px !important;
  425. max-height: 35px !important;
  426. }
  427. .mcp-theme-1 .outline-0 {
  428. outline: none !important;
  429. box-shadow: none !important;
  430. }
  431. .cancelled-item {
  432. opacity: 0.5;
  433. }
  434. .cancelled-item:not(.always-clickable) * {
  435. pointer-events: none;
  436. }
  437. .note-content {
  438. max-height: 300px;
  439. overflow-y: auto;
  440. }
  441. .note-content:not([auto-edit]) {
  442. padding: 1rem;
  443. padding-bottom: 0;
  444. cursor: pointer;
  445. position: relative;
  446. }
  447. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  448. content: '(click to change)';
  449. display: block;
  450. color: #535353;
  451. padding-bottom: 0.3rem;
  452. }
  453. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  454. border-left: 0;
  455. border-right: 0;
  456. }
  457. .mcp-theme-1 .ql-editor[contenteditable] {
  458. min-height: 100px;
  459. }
  460. body [note-rte][slim-rte]:not(.border-0),
  461. body [note-rte][data-field-name="reviewValue"],
  462. body [note-rte][data-field-name="planValue"] {
  463. border: 1px solid #ced4da !important;
  464. }
  465. body [note-rte][slim-rte] .ql-editor[contenteditable],
  466. body [note-rte][data-field-name="reviewValue"] .ql-editor[contenteditable],
  467. body [note-rte][data-field-name="planValue"] .ql-editor[contenteditable] {
  468. min-height: 56px !important;
  469. padding: .25rem .5rem !important;
  470. }
  471. .ql-container p {
  472. margin-top: 1rem;
  473. }
  474. .note-content ul {
  475. list-style: none !important;
  476. }
  477. .ql-editor ul > li::before {
  478. content: '';
  479. }
  480. .m-neg-3 {
  481. margin-left: -1rem;
  482. margin-right: -1rem;
  483. }
  484. .m-neg-4 {
  485. margin-left: -1.25rem;
  486. margin-right: -1.25rem;
  487. }
  488. .mcp-theme-1 .ql-toolbar .ql-formats * {
  489. font-size: 12px !important;
  490. }
  491. .mcp-theme-1 .ql-toolbar.ql-snow {
  492. padding: 3px;
  493. background: #f7f7f7;
  494. }
  495. .mcp-theme-1 .ql-snow .ql-picker {
  496. height: 22px;
  497. }
  498. .mcp-theme-1 .ql-snow.ql-toolbar button {
  499. height: 22px;
  500. width: 26px;
  501. }
  502. .rte-holder .ql-container p {
  503. margin-top: 0;
  504. }
  505. .note-section:not(.edit) .if-not-edit {
  506. display: block !important;
  507. }
  508. .note-section:not(.edit) div.if-not-edit {
  509. padding-left: 1rem;
  510. }
  511. .note-section:not(.edit):hover {
  512. background: #f6f9fc;
  513. cursor: pointer;
  514. }
  515. [data-non-segment-section]:hover {
  516. background: #f6f9fc;
  517. }
  518. .note-signed-by-hcp .note-section:not(.edit):hover {
  519. background: #f6f9fc;
  520. cursor: auto;
  521. }
  522. .note-section.edit .if-edit {
  523. display: block !important;
  524. }
  525. .c-pointer {
  526. cursor: pointer;
  527. }
  528. .events-none {
  529. pointer-events: none;
  530. }
  531. .blocking-overlay {
  532. opacity: 0 !important;
  533. cursor: default;
  534. }
  535. .inset-comment p {
  536. margin-bottom: 0.3rem;
  537. }
  538. .inset-comment p:last-child {
  539. margin-bottom: 0 !important;
  540. }
  541. .note-section.edit {
  542. background: #f0f8ff7d;
  543. outline: 2px solid #9de3ff;
  544. }
  545. .note-section.edit .ql-editor,
  546. .note-section.edit .btn-default {
  547. background-color: #fff !important;
  548. }
  549. /*.note-section-item-row:not(:first-child) {
  550. padding-top: 10px;
  551. border-top: 1px solid #ccc;
  552. }*/
  553. /* override med ac css */
  554. #searchResults {
  555. z-index: 100001 !important;
  556. }
  557. input.search_field, textarea.search_field {
  558. background-position: right 7px center !important;
  559. padding-right: 23px !important;
  560. }
  561. .ansList:focus, .search_field:focus {
  562. background-color: #fff !important;
  563. }
  564. .navbar.navbar-dark {
  565. height: 55px;
  566. position: fixed;
  567. top: 0;
  568. left: 0;
  569. width: 100%;
  570. z-index: 9999;
  571. }
  572. .main-row {
  573. padding-left: 180px;
  574. }
  575. .main-row.autohide-leftnav {
  576. padding-left: 30px;
  577. }
  578. .main-row > .sidebar {
  579. width: 180px;
  580. min-width: 180px;
  581. position: fixed;
  582. left: 0;
  583. top: 55px;
  584. z-index: 8;
  585. height: calc(100% - 55px);
  586. padding-bottom: 4rem;
  587. border-right: 1px solid #ddd;
  588. overflow: hidden;
  589. }
  590. .main-row > .sidebar:hover {
  591. overflow-y: overlay
  592. }
  593. @media screen {
  594. .navbar.navbar-dark + [role="main"] {
  595. padding-top: 55px;
  596. }
  597. }
  598. .main-row > .sidebar .nav .nav-item a {
  599. white-space: nowrap;
  600. }
  601. .main-row.autohide-leftnav > .sidebar {
  602. width: 30px;
  603. min-width: 30px;
  604. transition: width 0.2s ease;
  605. }
  606. .main-row.autohide-leftnav > .sidebar:not(:hover):after {
  607. content: '(hover for menu)';
  608. position: fixed;
  609. top: 200px;
  610. left: 5px;
  611. transform-origin: top left;
  612. transform: rotate(-90deg);
  613. white-space: nowrap;
  614. font-size: 12px;
  615. font-family: verdana;
  616. color: #666;
  617. }
  618. .main-row.autohide-leftnav > .sidebar ul {
  619. opacity: 0;
  620. }
  621. .main-row.autohide-leftnav > .sidebar:hover {
  622. width: 180px;
  623. }
  624. .main-row.autohide-leftnav > .sidebar:hover ul {
  625. opacity: 1;
  626. }
  627. .stag-popup .navbar.navbar-dark + [role="main"] {
  628. padding-top: 0;
  629. }
  630. .font-smaller {
  631. font-size: 11px !important;
  632. }
  633. .text-ellipsis {
  634. white-space: nowrap;
  635. overflow: hidden;
  636. text-overflow: ellipsis;
  637. }
  638. .outline-0 {
  639. outline: none !important;
  640. }
  641. .note-widget-item:hover {
  642. background: #eee;
  643. }
  644. .note-widget-title {
  645. background: #ccc !important;
  646. color: #333 !important;
  647. font-size: 12px !important;
  648. font-weight: bold !important;
  649. }
  650. .navbar-collapse.show {
  651. background: #1c4587;
  652. z-index: 999;
  653. padding: 0.5rem 1rem;
  654. margin: 0 -1rem;
  655. }
  656. .navbar-dark .nav-item .nav-link {
  657. font-size: 12px;
  658. white-space: nowrap;
  659. overflow: hidden;
  660. text-overflow: ellipsis;
  661. }
  662. #patient-search {
  663. min-width: 90px !important;
  664. max-width: 140px !important;
  665. }
  666. .suggestions-outer {
  667. top: calc(100% + 2px);
  668. background: #fff;
  669. border-radius: 3px;
  670. border: 1px solid #ccc;
  671. z-index: 9999;
  672. }
  673. .suggestions-outer {
  674. top: calc(100% + 1px);
  675. background: #fff;
  676. border-radius: 3px;
  677. border: 1px solid #ccc;
  678. z-index: 9999;
  679. max-height: 220px;
  680. overflow-y: overlay;
  681. min-width: 100%;
  682. right: 0;
  683. }
  684. [stag-suggest-bottom-left]~.stag-suggestions-container .suggestions-outer {
  685. bottom: 30px;
  686. left: 0;
  687. top: auto;
  688. right: auto;
  689. }
  690. [stag-suggest-left]~.stag-suggestions-container .suggestions-outer {
  691. left: 0;
  692. right: auto;
  693. min-width: 100%;
  694. }
  695. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  696. padding: 0.25rem 0.5rem;
  697. text-decoration: none;
  698. font-size: 12px;
  699. }
  700. .suggestions-outer .no-suggest-items {
  701. color: #888;
  702. }
  703. .suggestions-outer .suggest-item.active {
  704. background: #ccc;
  705. }
  706. .suggestions-outer .suggest-item:hover {
  707. background: aliceblue;
  708. }
  709. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  710. .pro-dashboard-inline-calendar table.table-condensed {
  711. width: 100% !important;
  712. }
  713. .pro-dashboard-inline-calendar {
  714. border: 1px solid #ddd;
  715. border-radius: 3px
  716. }
  717. .pro-dashboard-inline-calendar table.table-condensed th {
  718. padding: 0.5rem 0;
  719. border-radius: 0;
  720. }
  721. .pro-dashboard-inline-calendar table.table-condensed td {
  722. padding: 0.25rem 0;
  723. border-radius: 0;
  724. }
  725. .pro-dashboard-inline-calendar table.table-condensed td[has-events],
  726. .pro-dashboard-inline-calendar td.has-events:not(.ui-datepicker-today) a {
  727. background: #c5e4ff !important;
  728. font-weight: bold !important;
  729. color: #000 !important;
  730. }
  731. .caremonth-measurements-calendar table.table-condensed td[has-events],
  732. .caremonth-measurements-calendar td.has-events a {
  733. background: #c5e4ff !important;
  734. font-weight: bold !important;
  735. color: #000 !important;
  736. }
  737. .ui-state-active,
  738. .ui-widget-content .ui-state-active,
  739. .ui-widget-header .ui-state-active,
  740. a.ui-button:active,
  741. .ui-button:active,
  742. .ui-button.ui-state-active:hover {
  743. border: 1px solid #4396da !important;
  744. }
  745. .pro-dashboard-inline-calendar td.has-events.ui-datepicker-today a {
  746. font-weight: bold !important;
  747. color: #0d59af !important;
  748. }
  749. .pro-dashboard-inline-calendar td a {
  750. text-align: center !important;
  751. }
  752. [v-cloak] {
  753. opacity: 0;
  754. }
  755. .patient-avatar {
  756. width: 50px;
  757. height: 50px;
  758. background: #eee;
  759. display: inline-flex;
  760. align-items: center;
  761. justify-content: center;
  762. border-radius: 100%;
  763. border: 1px solid #ccc;
  764. }
  765. .large {
  766. font-size: 16px !important;
  767. }
  768. /* note templates */
  769. .note-template-container {
  770. position: absolute;
  771. z-index: 10002;
  772. background: #fff;
  773. border: 1px solid #ddd;
  774. border-radius: 3px;
  775. display: none;
  776. min-width: 200px;
  777. }
  778. .note-template-container .note-template-item {
  779. position: relative;
  780. height: 25px;
  781. }
  782. .note-template-container .note-template-item .note-template-text {
  783. border-bottom: 1px solid #eee;
  784. }
  785. .note-template-container .note-template-item .label {
  786. padding: 3px 6px;
  787. padding-right: 25px;
  788. white-space: nowrap;
  789. display: inline-flex;
  790. align-items: center;
  791. min-width: 120px;
  792. cursor: pointer;
  793. flex-grow: 1;
  794. }
  795. .note-template-container .note-template-item:hover,
  796. .note-template-container .note-template-item.selected {
  797. background: aliceblue;
  798. }
  799. .note-template-container .note-template-item .label>input[type="checkbox"] {
  800. pointer-events: none;
  801. margin: 0;
  802. margin-right: 4px;
  803. height: 11px;
  804. }
  805. .note-template-container .note-template-item:last-child label {
  806. border: 0;
  807. }
  808. .note-template-container .note-template-item .note-template-children {
  809. position: absolute;
  810. left: 100%;
  811. top: 0;
  812. background: #fff;
  813. border: 1px solid #ddd;
  814. border-radius: 3px;
  815. display: none;
  816. }
  817. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  818. display: block;
  819. }*/
  820. .note-template-container .note-template-item .has-children {
  821. position: absolute;
  822. right: 6px;
  823. top: 0;
  824. height: 25px;
  825. line-height: 25px;
  826. color: #bbb;
  827. }
  828. .note-template-container .note-template-item:hover>.has-children {
  829. color: #444;
  830. }
  831. .note-templates-underlay {
  832. position: fixed;
  833. top: 0;
  834. left: 0;
  835. height: 100%;
  836. width: 100%;
  837. background: rgba(0,0,0,0.13);
  838. display: none;
  839. z-index: 10001;
  840. }
  841. .note-template-container textarea {
  842. height: 100px;
  843. border-radius: 0;
  844. border-color: #ccc;
  845. padding: 5px 10px;
  846. display: block;
  847. }
  848. .note-template-buttons {
  849. position: absolute;
  850. bottom: 100%;
  851. right: 0;
  852. height: 27px;
  853. padding: 0 3px;
  854. background: #fff;
  855. }
  856. .note-template-buttons button {
  857. font-size: 10px;
  858. padding: 2px 5px;
  859. margin-left: 5px;
  860. border-radius: 2px;
  861. }
  862. .note-template-buttons button:first-child {
  863. margin-left: 0;
  864. }
  865. .note-template-output {
  866. position: absolute;
  867. bottom: calc(100% + 26px);
  868. left: 0;
  869. padding: 3px 6px;
  870. background: #f7f7f7;
  871. min-width: 100%;
  872. border-radius: 3px;
  873. }
  874. .note-template-output-text {
  875. }
  876. .note-template-output .note-template-output-line {
  877. font-size: 11px;
  878. width: max-content;
  879. max-width: 500px;
  880. margin: 0;
  881. }
  882. .note-template-set-chooser {
  883. height: 22px;
  884. line-height: 22px;
  885. padding: 0 0.22rem;
  886. font-size: 12px !important;
  887. }
  888. .ql-editor .note-template-output-line {
  889. white-space: normal;
  890. }
  891. [prefix="(+)"] a.plus-trigger {
  892. color: #23a923 !important;
  893. }
  894. [prefix="(-)"] a.minus-trigger {
  895. color: #a91e1e !important;
  896. }
  897. .rspace {
  898. width: 16px;
  899. display: inline-flex;
  900. text-align: center;
  901. justify-content: center;
  902. }
  903. .embed-mask {
  904. position: fixed;
  905. left: 0;
  906. top: 0;
  907. height: 100%;
  908. width: 100%;
  909. background: rgba(0, 0, 0, 0.1);
  910. z-index: 98;
  911. }
  912. .embed-section {
  913. background: #fff;
  914. z-index: 99;
  915. padding: 0;
  916. border: 1px solid #ccc;
  917. }
  918. .mask-text-addition {
  919. position: fixed;
  920. bottom: calc(50% - 60px);
  921. left: 0;
  922. width: 100%;
  923. text-align: center;
  924. font-size: 12px;
  925. z-index: 9999999;
  926. color: #000;
  927. }
  928. .note-summary p {
  929. margin-bottom: 0.25rem;
  930. }
  931. .aligned-icon {
  932. display: inline-block;
  933. width: 18px;
  934. text-align: center;
  935. }
  936. body #searchCount {
  937. display: none !important;
  938. }
  939. body .break-spaces {
  940. white-space: pre-wrap;
  941. }
  942. .stag-tooltip .stag-tooltip-content {
  943. display: none;
  944. min-width: 200px;
  945. }
  946. .stag-tooltip:hover .stag-tooltip-content {
  947. display: block;
  948. right: -10px;
  949. top: 100%;
  950. z-index: 1;
  951. }
  952. .gem-nodes .node {
  953. border: 1px solid #ddd;
  954. padding: 0.75rem;
  955. border-radius: 5px;
  956. }
  957. .gem-nodes>.node {
  958. border: 0 !important;
  959. padding-left: 0;
  960. padding-right: 0;
  961. }
  962. .gem-nodes>.node:first-child {
  963. margin-top: 0 !important;
  964. }
  965. .gem-nodes>.node>label {
  966. font-weight: bold;
  967. font-size: 14px;
  968. margin: 0;
  969. }
  970. .gem-nodes .subs .node:last-child {
  971. margin-bottom: 0 !important;
  972. }
  973. .gem-nodes>.node>.subs {
  974. padding-left: 0 !important;
  975. }
  976. .gem-nodes>.node>.subs>.node {
  977. background: #f2f2f2;
  978. }
  979. .gem-nodes>.node>.subs>.node>.subs>.node {
  980. background: #fff;
  981. }
  982. .gem-nodes .node span[field] {
  983. font-weight: bold;
  984. }
  985. body .node input[type="number"] {
  986. max-width: 70px;
  987. min-width: unset !important;
  988. }
  989. .section-edit-mask {
  990. top: 0;
  991. left: 0;
  992. width: 100%;
  993. height: 100%;
  994. }
  995. .signed-note {
  996. position: relative;
  997. pointer-events: none !important;
  998. }
  999. .signed-note::after {
  1000. content: '';
  1001. position: absolute;
  1002. z-index: 2;
  1003. cursor: not-allowed;
  1004. left: 0;
  1005. top: 0;
  1006. width: 100%;
  1007. height: 100%;
  1008. background: rgba(0,0,0,0.01);
  1009. }
  1010. .slot-picker {
  1011. padding: 4px;
  1012. padding-right: 0;
  1013. padding-bottom: 0;
  1014. }
  1015. .slot-picker.disabled {
  1016. opacity: 0.5;
  1017. pointer-events: none;
  1018. cursor: not-allowed;
  1019. }
  1020. .slot-picker td {
  1021. text-align: center;
  1022. border: 1px solid #ddd !important;
  1023. padding: 2px 5px;
  1024. cursor: pointer;
  1025. }
  1026. .slot-picker th {
  1027. border: 0 !important;
  1028. }
  1029. .slot-picker td:hover {
  1030. background: aliceblue;
  1031. }
  1032. .slot-picker td.blocked {
  1033. background: #ccc !important;
  1034. cursor: not-allowed;
  1035. }
  1036. .slot-picker td.selected {
  1037. background-image: linear-gradient(to bottom,#08c,#04c);
  1038. background-repeat: repeat-x;
  1039. color: #fff;
  1040. }
  1041. .pro-appointment-calendar.disabled {
  1042. opacity: 0.5;
  1043. pointer-events: none;
  1044. cursor: not-allowed;
  1045. }
  1046. .pro-appointment-calendar .datepicker-inline {
  1047. width: 195px;
  1048. padding-left: 0;
  1049. }
  1050. .pro-appointment-calendar .datepicker td {
  1051. height: 25px;
  1052. }
  1053. .datepicker td, .datepicker th {
  1054. border: none !important;
  1055. }
  1056. .appt-form-col {
  1057. width: 220px;
  1058. }
  1059. .appt-calendar-col {
  1060. flex-grow: 1;
  1061. }
  1062. .appt-form td.fc-day.stag-selected {
  1063. outline: 2px solid #007bff;
  1064. background: #e5f2fd;
  1065. }
  1066. .appt-form .stag-current-appt {
  1067. background: #89159cc7;
  1068. color: #fff;
  1069. border-color: #89159cc7;
  1070. }
  1071. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  1072. border-color: #fff;
  1073. }
  1074. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  1075. margin-bottom: 0.5rem;
  1076. /*align-items: start;*/
  1077. }
  1078. .stag-calendar-header-extra {
  1079. background: #cde8ff;
  1080. padding: 3px 10px;
  1081. margin-top: 7px;
  1082. border-top-left-radius: 6px;
  1083. border-top-right-radius: 6px;
  1084. border: 1px solid #44a5f982;
  1085. border-bottom: 0;
  1086. }
  1087. .stag-calendar-header-extra * {
  1088. font-size: 14px !important;
  1089. }
  1090. /* call panel */
  1091. #proCallComponent {
  1092. padding-bottom: 150px;
  1093. }
  1094. .patient-queue {
  1095. display: flex;
  1096. flex-direction: column;
  1097. position: fixed;
  1098. left: 0;
  1099. width: 100%;
  1100. bottom: 0;
  1101. z-index: 4;
  1102. }
  1103. .queue-item {
  1104. width: 100px;
  1105. padding: 0.5rem;
  1106. padding-bottom: 0.25rem;
  1107. text-align: center;
  1108. cursor: pointer;
  1109. }
  1110. .queue-item:hover {
  1111. background: aliceblue;
  1112. }
  1113. .current-work-indicator {
  1114. /*
  1115. position: fixed;
  1116. top: 55px;
  1117. right: 0;
  1118. z-index: 9999;
  1119. */
  1120. background: #305ba0;
  1121. color: #fff;
  1122. font-size: 12px;
  1123. padding: 3px 6px;
  1124. border-radius: 3px;
  1125. /* border-bottom-left-radius: 5px;*/
  1126. white-space: nowrap;
  1127. text-overflow: ellipsis;
  1128. max-width: 100px;
  1129. overflow: hidden;
  1130. }
  1131. /* stag popups */
  1132. .stag-popup {
  1133. position: fixed;
  1134. left: 0;
  1135. top: 55px;
  1136. width: 100%;
  1137. height: calc(100% - 55px);
  1138. overflow-x: auto;
  1139. z-index: 97;
  1140. justify-content: center;
  1141. align-items: center;
  1142. display: none;
  1143. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  1144. padding: 2rem 0;
  1145. }
  1146. .stag-popup.show {
  1147. display: block;
  1148. }
  1149. .stag-popup>form, .stag-popup>.stag-popup-content {
  1150. width: 80%;
  1151. background: #fff;
  1152. border: 1px solid #aaa;
  1153. border-radius: 5px;
  1154. overflow: hidden;
  1155. box-shadow: 0 0 5px #ddd;
  1156. margin: 0 auto;
  1157. padding: 0.75rem;
  1158. min-height: 220px;
  1159. }
  1160. .stag-popup.overflow-visible>.stag-popup-content {
  1161. overflow: visible;
  1162. }
  1163. .stag-popup.min-height-unset>form {
  1164. min-height: unset !important;
  1165. }
  1166. .stag-popup.medium>form, .stag-popup.medium>.stag-popup-content {
  1167. width: calc(80vw - 4rem);
  1168. }
  1169. .stag-popup.medium-large>form, .stag-popup.medium-large>.stag-popup-content {
  1170. width: 90vw;
  1171. }
  1172. .stag-popup.wide>form, .stag-popup.wide>.stag-popup-content {
  1173. width: calc(100vw - 4rem);
  1174. }
  1175. .stag-popup.tall>form, .stag-popup.tall>.stag-popup-content {
  1176. min-height: 500px;
  1177. }
  1178. .stag-popup.narrow>form, .stag-popup.narrow>.stag-popup-content {
  1179. max-width: 500px;
  1180. }
  1181. .stag-popup.stag-popup-sm>form, .stag-popup.stag-popup-sm>.stag-popup-content {
  1182. max-width: 500px;
  1183. }
  1184. .stag-popup.stag-popup-md>form, .stag-popup.stag-popup-md>.stag-popup-content {
  1185. max-width: 632pt;
  1186. }
  1187. .stag-popup.stag-popup-right>form, .stag-popup.stag-popup-right>.stag-popup-content {
  1188. margin-right: 1.5rem;
  1189. margin-left: auto;
  1190. }
  1191. /* slide-in stag-popups */
  1192. .stag-popup.stag-slide {
  1193. display: block;
  1194. background: center center no-repeat scroll rgba(0, 0, 0, 0);
  1195. pointer-events: none;
  1196. overflow: hidden;
  1197. }
  1198. .stag-popup.stag-slide.show {
  1199. pointer-events: all;
  1200. }
  1201. .stag-popup.stag-slide>form {
  1202. position: absolute;
  1203. top: 0;
  1204. height: 100% !important;
  1205. overflow-y: auto;
  1206. border-radius: 0;
  1207. border-top: 0;
  1208. border-bottom: 0;
  1209. border-right: 0;
  1210. transition: right 0.3s ease;
  1211. width: 0;
  1212. }
  1213. .stag-popup.stag-slide.stag-popup-sm>form {
  1214. width: 500px;
  1215. right: -500px;
  1216. }
  1217. .stag-popup.stag-slide.stag-popup-md>form {
  1218. width: 632pt;
  1219. right: -632pt;
  1220. }
  1221. .stag-popup.stag-slide.show>form {
  1222. right: 0;
  1223. }
  1224. /* asana style ticket management */
  1225. .pro-initials {
  1226. border-radius: 100%;
  1227. height: 24px;
  1228. width: 24px;
  1229. min-height: 24px;
  1230. min-width: 24px;
  1231. max-height: 24px;
  1232. max-width: 24px;
  1233. text-align: center;
  1234. font-weight: 400;
  1235. display: inline-flex;
  1236. align-items: center;
  1237. justify-content: center;
  1238. background-color: #6457f9;
  1239. color: #fff;
  1240. font-size: 10px !important;
  1241. opacity: 0.85;
  1242. }
  1243. .pro-initials.pro-initials-sm {
  1244. height: 18px;
  1245. width: 18px;
  1246. min-height: 18px;
  1247. min-width: 18px;
  1248. max-height: 18px;
  1249. max-width: 18px;
  1250. font-size: 9px !important;
  1251. }
  1252. .pro-initials:hover {
  1253. opacity: 1;
  1254. }
  1255. .ticket-section {
  1256. }
  1257. .ticket-section.ticket-section-collapsed {
  1258. max-height: 0;
  1259. overflow: hidden;
  1260. }
  1261. .tickets-table tbody tr {
  1262. transition: background-color 0.2s ease;
  1263. }
  1264. .tickets-table tbody tr:hover {
  1265. background-color: rgba(0,0,0,.04);
  1266. }
  1267. .tickets-table tbody tr.current {
  1268. background-color: aliceblue;
  1269. }
  1270. .stag-slide input.form-control:not(:focus),
  1271. .stag-slide select.form-control:not(:focus) {
  1272. border-color: transparent;
  1273. background-color: transparent;
  1274. cursor: pointer;
  1275. font-weight: bold;
  1276. padding-left: 0;
  1277. }
  1278. .stag-slide select.form-control:not(:focus) {
  1279. appearance: none;
  1280. }
  1281. .stag-slide input.form-control {
  1282. box-shadow: none !important;
  1283. }
  1284. .stag-slide input.form-control:not(:focus):not([readonly]):hover {
  1285. text-decoration: underline;
  1286. }
  1287. .stag-slide input.form-control[readonly] {
  1288. opacity: 0.75;
  1289. }
  1290. .stag-slide ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  1291. color: #bbb !important;
  1292. font-weight: normal !important;
  1293. opacity: 1; /* Firefox */
  1294. }
  1295. .stag-slide :-ms-input-placeholder { /* Internet Explorer 10-11 */
  1296. color: #bbb !important;
  1297. font-weight: normal !important;
  1298. }
  1299. .stag-slide ::-ms-input-placeholder { /* Microsoft Edge */
  1300. color: #bbb !important;
  1301. font-weight: normal !important;
  1302. }
  1303. .stag-slide .text-success {
  1304. color: #00bf9c !important;
  1305. }
  1306. .stag-slide .btn-success,
  1307. .stag-slide .btn-success:hover {
  1308. background: #00bf9c;
  1309. border-color: #00bf9c;
  1310. }
  1311. .stag-slide .comment-input-outer {
  1312. position: sticky;
  1313. bottom: 0;
  1314. }
  1315. .stag-slide .txt-comment {
  1316. padding-bottom: calc(23px + 1rem);
  1317. height: calc(23px + 1rem);
  1318. transition: height 0.3s ease;
  1319. overflow: hidden;
  1320. }
  1321. .stag-slide .txt-comment:focus {
  1322. height: 120px;
  1323. overflow: auto;
  1324. }
  1325. .stag-slide .txt-comment:focus~.btn-save-comment {
  1326. opacity: 1;
  1327. }
  1328. .stag-slide .btn-save-comment {
  1329. position: absolute;
  1330. bottom: 0.5rem;
  1331. right: 0.5rem;
  1332. height: 28px;
  1333. line-height: 28px;
  1334. padding: 0 1rem;
  1335. transition: opacity 0.3s ease;
  1336. opacity: 0.5;
  1337. }
  1338. .stag-slide select.form-control:invalid,
  1339. .stag-slide input[type="text"].form-control:invalid {
  1340. background-color: #f8ecec;
  1341. padding-left: 0.5rem;
  1342. }
  1343. .stag-slide select:focus:invalid,
  1344. .stag-slide input[type="text"]:focus:invalid {
  1345. background: #fff;
  1346. border-color: #e24848;
  1347. box-shadow: 0 0 2px #c10707 !important;
  1348. }
  1349. .erx-line-item:nth-child(2n+1) {
  1350. background: #f0f8ffbb
  1351. }
  1352. .no-scroll {
  1353. overflow: hidden;
  1354. }
  1355. .client-rs-contents p {
  1356. margin-bottom: 0.25rem;
  1357. }
  1358. .pro-option {
  1359. position: relative;
  1360. display: block;
  1361. padding-left: 30px;
  1362. }
  1363. .pro-option.pro-option-selected {
  1364. display: inline-block;
  1365. padding-left: 25px;
  1366. }
  1367. .pro-option .pro-option-initials {
  1368. position: absolute;
  1369. left: 5px;
  1370. top: 2px;
  1371. font-size: 10px;
  1372. border-radius: 100%;
  1373. height: 20px;
  1374. width: 20px;
  1375. line-height: 20px;
  1376. text-align: center;
  1377. font-weight: 400;
  1378. }
  1379. .pro-option.pro-option-selected .pro-option-initials {
  1380. left: 3px;
  1381. top: 0;
  1382. font-size: 10px;
  1383. border-radius: 100%;
  1384. height: 18px;
  1385. width: 18px;
  1386. line-height: 19px;
  1387. text-align: center;
  1388. font-weight: 400;
  1389. }
  1390. span.pro-selection {
  1391. padding: 0 5px;
  1392. height: 18px;
  1393. display: inline-block;
  1394. border-top-right-radius: 3px;
  1395. border-bottom-right-radius: 3px;
  1396. }
  1397. .select2-results__option--selectable {
  1398. font-size: 13px;
  1399. }
  1400. #calendarApp .select2-selection__choice__display,
  1401. #proCalendarApp .select2-selection__choice__display {
  1402. padding: 0 !important;
  1403. overflow: hidden !important;
  1404. }
  1405. span.select2-container.select2-container--default.select2-container--open {
  1406. z-index: 999999;
  1407. }
  1408. .fc .fc-highlight {
  1409. background: rgba(188, 232, 241, 0.6) !important;
  1410. }
  1411. .fc .fc-day-past {
  1412. background: #e7e7e7 !important;
  1413. }
  1414. .fc .add-overlay {
  1415. padding: 1px 4px;
  1416. display: inline-block;
  1417. font-weight: bold;
  1418. }
  1419. .fc .add-overlay.add-overlay-day-grid {
  1420. padding: 4px;
  1421. }
  1422. .stag-popup .stag-popup-title {
  1423. border-bottom: 1px solid #eee;
  1424. padding-bottom: 0.75rem;
  1425. margin-bottom: 1rem;
  1426. display: flex;
  1427. align-items: center;
  1428. }
  1429. .stag-popup .stag-popup-title>span {
  1430. font-size: 17px;
  1431. display: inline-flex;
  1432. align-items: center;
  1433. }
  1434. .stag-popup .stag-popup-title>span>img {
  1435. max-height: 26px;
  1436. margin-right: 8px;
  1437. }
  1438. .fc .other-client {
  1439. box-shadow: 1px 1px 2px deeppink !important;
  1440. opacity: 0.5;
  1441. }
  1442. .fc .other-client:hover {
  1443. opacity: 0.8;
  1444. }
  1445. .fc .availability {
  1446. box-shadow: 0 0 3px green !important;
  1447. }
  1448. .fc .inactive-appointment {
  1449. opacity: 0.6;
  1450. box-shadow: 0 0 3px grey !important;
  1451. }
  1452. .fc .fc-button-primary:not(:disabled):active,
  1453. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1454. border-color: #56a767 !important;
  1455. background-color: #56a767 !important;
  1456. }
  1457. .w-150 {
  1458. width: 150px !important;
  1459. min-width: 150px !important;
  1460. }
  1461. .w-180 {
  1462. width: 180px !important;
  1463. min-width: 180px !important;
  1464. }
  1465. .guest-view button.add-shortcut {
  1466. display: none;
  1467. }
  1468. .guest-view .note-section,
  1469. .guest-view .note-section:hover {
  1470. background: #fff !important;
  1471. }
  1472. .form-check-label {
  1473. display: flex;
  1474. align-items: center;
  1475. }
  1476. #stagPdfViewer>form {
  1477. padding: 0;
  1478. background: #eee;
  1479. }
  1480. #stagPdfViewer>form .stag-popup-title {
  1481. background: #fff;
  1482. padding: 1rem;
  1483. }
  1484. canvas.pdf-viewer-page {
  1485. max-width: 100%;
  1486. margin: 1rem auto;
  1487. display: block;
  1488. box-shadow: 0 0 2px #aaa;
  1489. }
  1490. .hidden-link-input {
  1491. /*opacity: 0;
  1492. width: 0 !important;
  1493. border: 0 !important;
  1494. padding: 0 !important;*/
  1495. position: absolute;
  1496. left: -9999px;
  1497. }
  1498. table.table-edit-sheet tbody tr td {
  1499. padding: 0;
  1500. background: #f7f7f7;
  1501. }
  1502. table.table-edit-sheet tbody tr td>input,
  1503. table.table-edit-sheet tbody tr td>select {
  1504. box-shadow: none !important;
  1505. border-radius: 0 !important;
  1506. border: 0;
  1507. background: #fefefe;
  1508. width: 100% !important;
  1509. min-width: unset !important;
  1510. border-bottom: 1px solid #dee2e6;
  1511. }
  1512. table.table-edit-sheet tbody tr td input[type="text"],
  1513. table.table-edit-sheet tbody tr td select,
  1514. table.table-edit-sheet tbody tr td textarea {
  1515. box-shadow: none !important;
  1516. border-radius: 0 !important;
  1517. border: 0;
  1518. background: #fefefe;
  1519. min-width: unset !important;
  1520. border-bottom: 1px solid #dee2e6;
  1521. }
  1522. table.table-edit-sheet tbody tr td>input.w-auto-input {
  1523. width: auto !important;
  1524. }
  1525. table.table-edit-sheet tbody tr td>input:focus,
  1526. table.table-edit-sheet tbody tr td>select:focus,
  1527. table.table-edit-sheet tbody tr td input.edit:focus {
  1528. /*outline: 3px solid #4b88a633;*/
  1529. /*border: 1px inset #4b88a633 !important;*/
  1530. background: aliceblue !important;
  1531. }
  1532. table.table-edit-sheet tbody tr [contenteditable] {
  1533. background: #fff;
  1534. }
  1535. table.table-edit-sheet .ql-toolbar {
  1536. border-top: 0 !important;
  1537. }
  1538. table.table-edit-sheet .ql-container {
  1539. border-bottom: 0 !important;
  1540. }
  1541. table.table-edit-sheet .ql-editor[contenteditable] {
  1542. min-height: 90px;
  1543. }
  1544. .w-30 {
  1545. width: 30%;
  1546. }
  1547. .w-33 {
  1548. width: 33%;
  1549. }
  1550. .w-35 {
  1551. width: 35%;
  1552. }
  1553. .w-40 {
  1554. width: 40%;
  1555. }
  1556. .client-single-dashboard .hide-if-dashboard {
  1557. display: none;
  1558. }
  1559. .notes-list .hide-if-note,
  1560. .note-section .hide-if-note {
  1561. display: none;
  1562. }
  1563. .data-option-list {
  1564. position: absolute;
  1565. background: #fff;
  1566. border: 2px solid #ddd;
  1567. margin-top: -1px;
  1568. width: 100%;
  1569. z-index: 1;
  1570. display: none;
  1571. max-width: 250px;
  1572. box-shadow: 0 0 3px #ddd;
  1573. border-top: 0;
  1574. max-height: 200px;
  1575. overflow-y: auto;
  1576. }
  1577. .data-option-list>div {
  1578. cursor: pointer;
  1579. padding: 0.2rem 0.5rem;
  1580. border-bottom: 1px solid #ddd;
  1581. color: #222;
  1582. font-size: 90%;
  1583. }
  1584. .data-option-list>div[desc]::after {
  1585. content: attr(desc);
  1586. opacity: 0.75;
  1587. padding-left: 0.5rem;
  1588. font-size: 90%;
  1589. font-family: Verdana, sans-serif;
  1590. }
  1591. .data-option-list>div:last-child {
  1592. border-bottom: 0;
  1593. }
  1594. .data-option-list>div:hover {
  1595. background: aliceblue;
  1596. }
  1597. .measurement-item:not(:last-child) {
  1598. border-bottom: 1px solid #e7e7e7;
  1599. }
  1600. .assessment-detail-template>span {
  1601. margin: 0 !important;
  1602. padding: 0 !important;
  1603. border: 0 !important;
  1604. margin-left: -0.5rem !important;
  1605. position: static !important;
  1606. }
  1607. .assessment-detail-template>span>a {
  1608. display: none;
  1609. }
  1610. button.add-shortcut,
  1611. button.note-templates-trigger-assessment {
  1612. outline: none !important;
  1613. box-shadow: none !important;
  1614. }
  1615. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1616. pointer-events: none !important;
  1617. }
  1618. .claim-line:last-child td {
  1619. padding-bottom: 1.3rem;
  1620. }
  1621. .in-table-markup p:last-of-type {
  1622. margin-bottom: 0;
  1623. }
  1624. .suggestions-outer.pharmacy-suggestions {
  1625. left: 1rem;
  1626. width: calc(100% - 2rem);
  1627. }
  1628. .flowsheets-table td {
  1629. padding: 0 10px;
  1630. height: 38px;
  1631. max-height: 38px;
  1632. min-height: 38px;
  1633. vertical-align: middle !important;
  1634. }
  1635. .flowsheets-table .expand {
  1636. display: none;
  1637. }
  1638. .flowsheets-table .collapse {
  1639. display: block;
  1640. }
  1641. .flowsheets-table .collapsed .expand {
  1642. display: block;
  1643. }
  1644. .flowsheets-table .collapsed .collapse {
  1645. display: none;
  1646. }
  1647. .flowsheets-table tr {
  1648. }
  1649. .flowsheets-table .collapsed tr:not(:first-child) {
  1650. display: none;
  1651. }
  1652. .col-2-button {
  1653. width: 88px;
  1654. text-align: left;
  1655. }
  1656. /* vitals graph */
  1657. .stag-chart {
  1658. min-height: 300px;
  1659. }
  1660. .stag-chart .safe-region>rect {
  1661. fill: green;
  1662. }
  1663. .stag-chart .safe-region>text {
  1664. fill: #888;
  1665. transform: translateY(-18px);
  1666. }
  1667. .on-hover-text-reveal {
  1668. white-space: nowrap;
  1669. overflow: hidden;
  1670. text-overflow: ellipsis;
  1671. }
  1672. .on-hover-text-reveal:hover {
  1673. white-space: normal;
  1674. overflow: unset;
  1675. text-overflow: unset;
  1676. }
  1677. .on-hover-show {
  1678. position: relative;
  1679. }
  1680. .on-hover-show:hover .on-hover-content {
  1681. opacity: 1;
  1682. pointer-events: all;
  1683. }
  1684. .on-hover-show .on-hover-content {
  1685. position: absolute;
  1686. max-width: 300px;
  1687. right: 0;
  1688. top: 100%;
  1689. background: #fff;
  1690. opacity: 0;
  1691. padding: 0 0.75rem;
  1692. padding-bottom: 0.5rem;
  1693. box-shadow: 0 0 2px #999;
  1694. pointer-events: none;
  1695. transition: opacity 0.3s ease;
  1696. z-index: 2;
  1697. }
  1698. .on-hover-show.left .on-hover-content {
  1699. right: auto;
  1700. left: 0;
  1701. }
  1702. .collapsible-tbody.collapsed {
  1703. display: none;
  1704. }
  1705. #send-fax-pdf-preview, #transmit-pdf-preview {
  1706. max-height: 350px;
  1707. overflow: auto;
  1708. box-shadow: 0 0 2px #ccc;
  1709. }
  1710. canvas.pdf-viewer-page.pdf-preview-page {
  1711. margin: 0.5rem auto;
  1712. }
  1713. .back-to-admin-button {
  1714. background: transparent;
  1715. border: 0;
  1716. padding: 0;
  1717. color: rgb(13, 89, 175);
  1718. }
  1719. .back-to-admin-button:hover {
  1720. text-decoration: underline;
  1721. }
  1722. .bg-aliceblue {
  1723. background: aliceblue !important;
  1724. }
  1725. .text-danger-dark {
  1726. color: #8b1621 !important;
  1727. }
  1728. .filter-head input[type="date"]::-webkit-calendar-picker-indicator {
  1729. display: none;
  1730. -webkit-appearance: none;
  1731. }
  1732. .filter-head input[type="number"]::-webkit-inner-spin-button {
  1733. display: none;
  1734. -webkit-appearance: none;
  1735. }
  1736. .filter-head input[type="date"] {
  1737. padding: 0;
  1738. min-width: 90px;
  1739. }
  1740. .filter-head input[type="number"],
  1741. .filter-head input[type="date"] {
  1742. min-width: 90px;
  1743. }
  1744. .filter-head select {
  1745. padding: 0 5px;
  1746. }
  1747. tr.sep td {
  1748. padding: 0;
  1749. background: #eee;
  1750. height: 6px;
  1751. }
  1752. #practice-shipments-ready-to-print ::marker {
  1753. color: #0009;
  1754. font-size: 90%;
  1755. }
  1756. .only-print {
  1757. display: none;
  1758. }
  1759. @media print {
  1760. .only-print {
  1761. display: block;
  1762. }
  1763. th.only-print, td.only-print {
  1764. display: table-cell;
  1765. }
  1766. }
  1767. .only-screen {
  1768. display: block;
  1769. }
  1770. th.only-screen, td.only-screen {
  1771. display: table-cell;
  1772. }
  1773. @media print {
  1774. .only-screen {
  1775. display: none !important;
  1776. }
  1777. .only-pick-list, .only-order-slip {
  1778. display: none;
  1779. }
  1780. .pick-list .only-pick-list, .order-slip .only-order-slip {
  1781. display: block;
  1782. }
  1783. }
  1784. .suggest-item.patient-suggest>img {
  1785. width: 10px;
  1786. height: 10px;
  1787. opacity: 0.75;
  1788. }
  1789. .suggest-item.patient-suggest>img.claimed {
  1790. filter: grayscale(100%);
  1791. opacity: 0.5;
  1792. }
  1793. .pdf-viewer-auto {
  1794. max-height: 600px;
  1795. overflow: auto;
  1796. }
  1797. .ticket-popup .stag-popup.stag-slide.show {
  1798. position: static;
  1799. min-width: 100% !important;
  1800. max-width: unset !important;
  1801. padding-bottom: 2rem;
  1802. }
  1803. .ticket-popup .stag-popup.stag-slide.show form {
  1804. min-width: 100% !important;
  1805. max-width: unset !important;
  1806. }
  1807. .ticket-popup .stag-popup.stag-slide>form {
  1808. position: absolute;
  1809. top: 0;
  1810. height: auto !important;
  1811. overflow: hidden;
  1812. border-radius: 5px;
  1813. transition: none;
  1814. border: 1px solid #aaa;
  1815. }
  1816. .ticket-popup .stag-popup.stag-slide .stag-popup-title.sticky-top {
  1817. position: static;
  1818. }
  1819. .ticket-popup.stag-popup.stag-popup-md>.container-fluid {
  1820. max-width: 632pt;
  1821. }
  1822. .ticket-popup.stag-popup.stag-popup-md>.container-fluid>.main-row>main>.card {
  1823. border: 0;
  1824. /*background: transparent;*/
  1825. }
  1826. .ticket-popup .hide-inside-ticket-popup {
  1827. display: none !important;
  1828. }
  1829. .ticket-popup .disable-inside-ticket-popup {
  1830. pointer-events: none !important;
  1831. opacity: 0.5;
  1832. }
  1833. .fill-percent-value {
  1834. width: 60px;
  1835. }
  1836. .fill-percent-content {
  1837. width: 100px;
  1838. }
  1839. .fill-bar {
  1840. height: 20px !important;
  1841. border: 1px solid #ddd;
  1842. }
  1843. .if-in-clinic {
  1844. display: none;
  1845. }
  1846. .stag-table-container {
  1847. max-height: calc(100vh - 230px - 1rem);
  1848. width: 100%;
  1849. overflow: auto !important;
  1850. }
  1851. .stag-table-container-lg>table{
  1852. min-width: 1450px;
  1853. }
  1854. .stag-table-container.stag-table-container-no-x-scroll {
  1855. overflow-x: hidden !important;
  1856. }
  1857. .stag-fc-container .fc-toolbar-title .tz-display {
  1858. font-size: inherit;
  1859. font-family: inherit;
  1860. }
  1861. .caremonth-measurements-calendar .fc-event.m-weight {
  1862. background: #38908f;
  1863. color: #fff;
  1864. padding-left: 5px;
  1865. margin-bottom: 2px;
  1866. }
  1867. .caremonth-measurements-calendar .fc-event.m-bp {
  1868. background: #5e96ae;
  1869. color: #fff;
  1870. padding-left: 5px;
  1871. margin-bottom: 2px;
  1872. }
  1873. .caremonth-measurements-calendar .fc-event.m-weight *,
  1874. .caremonth-measurements-calendar .fc-event.m-bp *{
  1875. font-size: 10px !important;
  1876. }
  1877. .caremonth-measurements-calendar .fc-daygrid-event-dot {
  1878. display: none;
  1879. }
  1880. .pro-dashboard-inline-calendar>.ui-datepicker-inline {
  1881. width: 100%;
  1882. border: 0 !important;
  1883. }
  1884. .caremonth-measurements-calendar>.ui-datepicker-inline {
  1885. width: 100%;
  1886. }
  1887. .caremonth-measurements-calendar .ui-datepicker-prev,
  1888. .caremonth-measurements-calendar .ui-datepicker-next {
  1889. display: none;
  1890. }
  1891. #simpleSMSReminderComponent input[type="time"] {
  1892. max-width: 90px;
  1893. min-width: unset !important;
  1894. }
  1895. form.non-interactive .form-content {
  1896. opacity: 0.5;
  1897. cursor: not-allowed;
  1898. }
  1899. form.non-interactive .form-content * {
  1900. pointer-events: none;
  1901. }
  1902. #eventPros {
  1903. max-height: 28px;
  1904. opacity: 0;
  1905. }
  1906. .training-event {
  1907. position: relative;
  1908. background: #f0feff;
  1909. border-color: #32a2b89e !important;
  1910. }
  1911. .training-event::after {
  1912. position: absolute;
  1913. content: 'Training';
  1914. font-size: 10px;
  1915. font-weight: normal;
  1916. color: #17a2b8;
  1917. left: 1px;
  1918. bottom: -13px;
  1919. transform-origin: left top;
  1920. transform: rotate(
  1921. -90deg
  1922. );
  1923. width: 90px;
  1924. text-align: center;
  1925. letter-spacing: 0.75px;
  1926. }
  1927. .training-event .training-icon {
  1928. font-size: 22px;
  1929. color: #0d59af;
  1930. }
  1931. .training-event .patient-avatar {
  1932. border-color: #0d59af7d !important;
  1933. }
  1934. /* print-note */
  1935. @media print {
  1936. .stag-content #sidebarMenu {
  1937. display: none !important;
  1938. }
  1939. .stag-content .main-row {
  1940. padding-left: 0 !important;
  1941. }
  1942. .stag-content [moe] {
  1943. display: none !important;
  1944. }
  1945. .stag-content .screen-only {
  1946. display: none !important;
  1947. }
  1948. }
  1949. @media screen {
  1950. .stag-content .print-only {
  1951. display: none !important;
  1952. }
  1953. }
  1954. .child-sections>.note-section:not(.edit) {
  1955. position: relative;
  1956. }
  1957. .child-sections>.note-section:not(.edit):before {
  1958. content: '';
  1959. width: 9px;
  1960. border-top: 1px solid #ccc;
  1961. left: 0;
  1962. top: calc(1rem + 8px);
  1963. height: 1px;
  1964. position: absolute;
  1965. }
  1966. .child-sections>.note-section.edit {
  1967. margin-left: 1rem;
  1968. }
  1969. .rhs-absolute-fh-link {
  1970. position: absolute;
  1971. right: 0;
  1972. padding: 0 0.5rem;
  1973. background-color: inherit;
  1974. }
  1975. .mcp-theme-1 .click-to-copy {
  1976. background-color: #e4f7ed36;
  1977. cursor: copy;
  1978. border-bottom: 1px dotted #c0f7e86e;
  1979. }
  1980. .mcp-theme-1 .click-to-copy:hover {
  1981. border-bottom: 1px dotted #c0f7e8;
  1982. }
  1983. [data-type="removed"] {
  1984. color: gray;
  1985. font-style: italic;
  1986. }
  1987. [data-type="existing"] {
  1988. }
  1989. [data-type="updated"] {
  1990. font-weight: bold;
  1991. color: #d8a714;
  1992. }
  1993. [data-type="prescribed today"] {
  1994. font-weight: bold;
  1995. color: #2ea745
  1996. }
  1997. .process-notes-badge {
  1998. border: 1px solid #ddd;
  1999. cursor: pointer;
  2000. padding: 0.35rem 0.6rem;
  2001. border-radius: 4px;
  2002. text-decoration: none !important;
  2003. }
  2004. .process-notes-badge:hover {
  2005. color: #000 !important;
  2006. border-color: #349caf;
  2007. }
  2008. .process-notes-badge.active {
  2009. /*font-weight: bold;*/
  2010. color: #fff !important;
  2011. background: #349caf;
  2012. border-color: #349caf;
  2013. }
  2014. .process-notes-badge.success {
  2015. font-weight: bold;
  2016. color: #fff !important;
  2017. background: #31b574;
  2018. border-color: #31b574;
  2019. cursor: auto;
  2020. }
  2021. .process-notes-badge.error {
  2022. font-weight: bold;
  2023. color: #fff !important;
  2024. background: #a72132;
  2025. border-color: #a72132;
  2026. cursor: auto;
  2027. }
  2028. /*
  2029. .process-notes-badge {
  2030. position: relative;
  2031. }
  2032. .process-notes-badge:after {
  2033. position: absolute;
  2034. content: attr(data-index);
  2035. top: -14px;
  2036. left: 10px;
  2037. background: #fff;
  2038. border: 1px solid;
  2039. width: 20px;
  2040. text-align: center;
  2041. border-radius: 100%;
  2042. }*/
  2043. .no-overflow-menu {
  2044. overflow-y: auto;
  2045. max-height: calc(100vh - 44px);
  2046. }
  2047. .zero-height-field {
  2048. height: 1px !important;
  2049. opacity: 0 !important;
  2050. pointer-events: none;
  2051. position: absolute;
  2052. }
  2053. table.dashboard-stats-table th {
  2054. padding: 0.5rem 0.75rem
  2055. }
  2056. .max-height-200px {
  2057. max-height: 200px;
  2058. }
  2059. .min-height-300px {
  2060. min-height: 300px;
  2061. }
  2062. .max-height-400px {
  2063. max-height: 400px;
  2064. }
  2065. .min-height-500px {
  2066. min-height: 500px;
  2067. }
  2068. .inline-html-container p {
  2069. margin-bottom: 0;
  2070. }
  2071. body.in-iframe>.navbar {
  2072. display: none !important;
  2073. }
  2074. body.in-iframe .stag-content {
  2075. padding-top: 0 !important;
  2076. }
  2077. body.in-iframe .main-row > .sidebar {
  2078. top: 0;
  2079. height: 100%;
  2080. }
  2081. .hide-outside-popup {
  2082. display: none !important;
  2083. }
  2084. .stag-popup .hide-outside-popup {
  2085. display: block !important;
  2086. }
  2087. .stag-popup .hide-inside-popup {
  2088. display: none !important;
  2089. }
  2090. .strike-through {
  2091. text-decoration: line-through;
  2092. }
  2093. .visit-segment .strike-through {
  2094. color: #8b1621 !important;
  2095. text-decoration: none !important;
  2096. opacity: 0.9;
  2097. }
  2098. /* visit-moe */
  2099. [visit-moe] [url]:not([show]){
  2100. display: none;
  2101. }
  2102. [visit-moe] {
  2103. display: inline-block;
  2104. }
  2105. [visit-moe][relative] {
  2106. position: relative;
  2107. }
  2108. [visit-moe] [url]:not([show]) {
  2109. z-index: 99999;
  2110. position: absolute;
  2111. background-color: white;
  2112. padding: 10px;
  2113. border: 1px solid gray;
  2114. }
  2115. [visit-moe][fixed-center] [url]:not([show]) {
  2116. position: fixed !important;
  2117. top: 200px !important;
  2118. left: calc(50% - 360px) !important;
  2119. width: 720px;
  2120. }
  2121. [visit-moe] [url][right] {
  2122. right: 0;
  2123. min-width: 200px;
  2124. }
  2125. [visit-moe] [url][left] {
  2126. left: 0;
  2127. }
  2128. [visit-moe][large] form, [visit-moe][large] [url] {
  2129. width: 450px;
  2130. }
  2131. [visit-moe][larger] form, [visit-moe][large] [url] {
  2132. width: 600px;
  2133. }
  2134. [visit-moe][largest] form, [visit-moe][largest] [url] {
  2135. width: 750px;
  2136. }
  2137. [visit-moe][bottom] form {
  2138. bottom: 100%;
  2139. }
  2140. .note-container {
  2141. display: flex;
  2142. align-items: start;
  2143. }
  2144. .note-container .note-lhs-tree {
  2145. min-width: 220px;
  2146. max-width: 220px;
  2147. align-self: stretch;
  2148. border-right: 1px solid #ddd;
  2149. padding-top: 0.85rem;
  2150. height: 300px;
  2151. overflow: hidden;
  2152. max-height: calc(100vh - 55px);
  2153. background-color: #fff;
  2154. }
  2155. .note-container.note_template_soap_visit .note-lhs-tree {
  2156. width: 0 !important;
  2157. opacity: 0 !important;
  2158. }
  2159. .note-container .note-lhs-tree:hover {
  2160. overflow: overlay;
  2161. }
  2162. .note-container .note-lhs-tree.fixed, .note-container .note-lhs-tree.fixed-left {
  2163. position: fixed;
  2164. top: 55px;
  2165. max-height: calc(100vh - 55px) !important;
  2166. height: calc(100vh - 55px) !important;
  2167. z-index: 1;
  2168. }
  2169. .note-container .note-lhs-tree.fixed ~ .note-rhs-content {
  2170. margin-left: 220px;
  2171. margin-right: 180px;
  2172. }
  2173. .note-container .note-lhs-tree.fixed-left ~ .note-rhs-content {
  2174. margin-left: 220px;
  2175. }
  2176. .note-container .note-lhs-tree .note-tree-node.note-tree-heading>a {
  2177. }
  2178. .note-container .note-lhs-tree .note-tree-node>a {
  2179. display: block;
  2180. padding: 0.15rem 0;
  2181. padding-left: 0.75rem;
  2182. white-space: nowrap;
  2183. text-overflow: ellipsis;
  2184. overflow: hidden;
  2185. text-decoration: none;
  2186. color: #333;
  2187. }
  2188. .note-container .note-lhs-tree>.note-tree-node>a:not([data-non-segment-target]) {
  2189. font-weight: bold;
  2190. color: #333;
  2191. }
  2192. .note-container .note-lhs-tree .note-tree-node>a:hover {
  2193. background-color: aliceblue;
  2194. color: #0d59af !important;
  2195. }
  2196. .note-container .note-lhs-tree .note-tree-node:hover>a,
  2197. .note-container .note-lhs-tree .note-tree-node.hovered>a {
  2198. background-color: aliceblue;
  2199. }
  2200. .note-container .note-lhs-tree .note-tree-node.active>a {
  2201. font-weight: bold !important;
  2202. color: #0d59af !important;
  2203. }
  2204. .note-container .note-lhs-tree .note-tree-children>.note-tree-node>a {
  2205. padding-left: 2rem;
  2206. }
  2207. .note-container .note-lhs-tree .note-tree-children .note-tree-children>.note-tree-node>a {
  2208. padding-left: 4rem;
  2209. }
  2210. .note-container .note-rhs-content {
  2211. flex-grow: 1;
  2212. }
  2213. .note-container .segments-list .note-content-node>a {
  2214. display: block;
  2215. padding: 0.15rem 0;
  2216. padding-left: 0.75rem;
  2217. white-space: nowrap;
  2218. text-overflow: ellipsis;
  2219. overflow: hidden;
  2220. text-decoration: none;
  2221. color: #333;
  2222. }
  2223. .note-container .segments-list>.note-content-node>a:not([data-non-segment-target]) {
  2224. font-weight: bold;
  2225. color: #333;
  2226. }
  2227. .note-container .segments-list .note-content-node>a:hover {
  2228. background-color: aliceblue;
  2229. color: #0d59af !important;
  2230. }
  2231. .note-container .segments-list .note-content-node:hover>a,
  2232. .note-container .segments-list .note-content-node.hovered>a {
  2233. background-color: aliceblue;
  2234. }
  2235. .note-container .segments-list .note-content-node.active>a {
  2236. font-weight: bold !important;
  2237. color: #0d59af !important;
  2238. }
  2239. .note-container .segments-list .note-content-children>.note-content-node>a {
  2240. padding-left: 2rem;
  2241. }
  2242. .note-container .segments-list .note-content-children .note-content-children>.note-tree-node>a {
  2243. padding-left: 4rem;
  2244. }
  2245. .note-container:not(.note_template_soap_visit) .note-rhs-sidebar {
  2246. min-width: 180px;
  2247. max-width: 180px;
  2248. align-self: stretch;
  2249. border-right: 1px solid #ddd;
  2250. height: 300px;
  2251. overflow: hidden;
  2252. max-height: calc(100vh - 55px);
  2253. background-color: #fff;
  2254. }
  2255. .note-container:not(.note_template_soap_visit) .note-rhs-sidebar:hover {
  2256. overflow: overlay;
  2257. }
  2258. .note-container:not(.note_template_soap_visit) .note-rhs-sidebar.fixed {
  2259. position: fixed;
  2260. top: 55px;
  2261. right: 0;
  2262. max-height: calc(100vh - 55px) !important;
  2263. height: calc(100vh - 55px) !important;
  2264. z-index: 1;
  2265. }
  2266. .note-container:not(.note_template_soap_visit) .note-rhs-sidebar.fixed ~ .note-rhs-content {
  2267. margin-right: 180px;
  2268. }
  2269. .spot-highlight {
  2270. background: aliceblue !important;
  2271. }
  2272. .on-click-menu [menu] {
  2273. position: absolute;
  2274. display: none;
  2275. top: 100%;
  2276. right: 0;
  2277. z-index: 1;
  2278. box-shadow: 0 0 4px #ccc;
  2279. }
  2280. .on-click-menu [menu][right] {
  2281. right: auto;
  2282. left: 0;
  2283. }
  2284. .on-click-menu [menu][bottom] {
  2285. bottom: 100%;
  2286. top: auto;
  2287. left: 0;
  2288. right: auto;
  2289. }
  2290. .zero-height {
  2291. height: 0 !important;
  2292. padding: 0 !important;
  2293. border: 0 !important;
  2294. overflow: hidden;
  2295. }
  2296. /*.note-section[data-segment-template-name="medrisk_vigilence"] {
  2297. position: fixed;
  2298. right: 0;
  2299. top: 55px;
  2300. width: 40px;
  2301. height: calc(100vh - 54px);
  2302. background: aliceblue;
  2303. padding: 0 !important;
  2304. border-left: 1px solid #ddd;
  2305. transition: width 0.1s ease;
  2306. }*/
  2307. .on-trigger-only,
  2308. .on-content-only {
  2309. display: none !important;
  2310. }
  2311. .mrv-trigger .on-trigger-only,
  2312. .mrv-content .on-content-only {
  2313. display: inherit !important;
  2314. }
  2315. .mrv-badge {
  2316. border-radius: 100%;
  2317. height: 24px;
  2318. width: 24px;
  2319. min-height: 24px;
  2320. min-width: 24px;
  2321. max-height: 24px;
  2322. max-width: 24px;
  2323. text-align: center;
  2324. font-weight: 400;
  2325. display: flex;
  2326. align-items: center;
  2327. justify-content: center;
  2328. background-color: #6457f9;
  2329. color: #fff;
  2330. opacity: 0.85;
  2331. }
  2332. .mrv-badge>span {
  2333. font-size: 10px !important;
  2334. }
  2335. .note-bottom-toolbar {
  2336. bottom: 0;
  2337. z-index: 3;
  2338. }
  2339. .note-bottom-toolbar .nbt-container:hover {
  2340. cursor: pointer;
  2341. background: #fff !important;
  2342. }
  2343. [open-in-stag-popup] * {
  2344. pointer-events: none;
  2345. }
  2346. .stag-menu {
  2347. position: absolute;
  2348. z-index: 4;
  2349. }
  2350. .visit-segment .mcp-theme-1 .ql-editor[contenteditable] {
  2351. min-height: 200px;
  2352. }
  2353. .visit-segment tr .vitals-copy-trigger {
  2354. position: absolute;
  2355. top: 0;
  2356. left: -10px;
  2357. width: 20px;
  2358. height: 100%;
  2359. align-items: center;
  2360. justify-content: center;
  2361. display: none;
  2362. cursor: pointer;
  2363. text-decoration: none !important;
  2364. }
  2365. .visit-segment tr:hover .vitals-copy-trigger {
  2366. display: flex;
  2367. }
  2368. [tab-links] {
  2369. }
  2370. [tab-links] [tab-link] {
  2371. padding: 0.5rem 0.75rem;
  2372. border: 1px solid #ccc;
  2373. color: #222;
  2374. background: #eee;
  2375. text-decoration: none;
  2376. }
  2377. [tab-links] [tab-link]:not(:last-child) {
  2378. border-right: 0;
  2379. }
  2380. [tab-links] [tab-link]:not(.tab-link-active):hover {
  2381. background: #f7f7f7;
  2382. }
  2383. [tab-links] [tab-link].tab-link-active {
  2384. font-weight: bold;
  2385. background: #fff;
  2386. }
  2387. tr.relevant-to-visit td:nth-child(1) {
  2388. color: #17a2b8;
  2389. }
  2390. .autosave-indicator {
  2391. display: none;
  2392. }
  2393. .autosave-indicator.show {
  2394. display: block;
  2395. }
  2396. table .stag-filter-hide {
  2397. display: none !important;
  2398. }
  2399. table .stag-filter-highlight {
  2400. background: rgb(255 215 215);
  2401. }
  2402. .event-bg-green {
  2403. background-color: #f6ffeb;
  2404. }
  2405. .event-bg-gray {
  2406. background-color: #ececec;
  2407. }
  2408. .popover-header {
  2409. padding: 3px 10px;
  2410. font-size: 13px;
  2411. font-weight: bold;
  2412. }
  2413. .popover-body {
  2414. font-size: 13px;
  2415. }
  2416. td.row-selection-highlight {
  2417. position: relative;
  2418. }
  2419. td.row-selection-highlight:after {
  2420. content: '';
  2421. position: absolute;
  2422. top: 0;
  2423. left: -4px;
  2424. width: 4px;
  2425. height: 100%;
  2426. background-color: #0d59af;
  2427. border-top-left-radius: 2px;
  2428. border-bottom-left-radius: 2px;
  2429. }
  2430. /* stag-collapsible-card */
  2431. [stag-collapsible-card] .stag-collapse-trigger {
  2432. padding: 0;
  2433. width: 22px;
  2434. align-self: stretch;
  2435. margin-right: -11px;
  2436. align-items: center;
  2437. justify-content: center;
  2438. display: inline-flex;
  2439. border-radius: 2px;
  2440. }
  2441. [stag-collapsible-card] .stag-collapse-trigger:hover {
  2442. text-decoration: none !important;
  2443. background: #4441;
  2444. }
  2445. [stag-collapsible-card] .stag-collapse-trigger i {
  2446. display: none;
  2447. }
  2448. [stag-collapsible-card][collapsed] .stag-collapse-trigger i.if-collapsed {
  2449. display: block;
  2450. }
  2451. [stag-collapsible-card]:not([collapsed]) .stag-collapse-trigger i.if-not-collapsed {
  2452. display: block;
  2453. }
  2454. [stag-collapsible-card][collapsed] .card-body {
  2455. display: none;
  2456. }
  2457. /* lifestyle rx specific */
  2458. .border-top-nutrition-rx {
  2459. border-top: 3px solid #a4d067;
  2460. }
  2461. .border-top-exercise-rx {
  2462. border-top: 3px solid #43c2cb;
  2463. }
  2464. .border-top-behavior-rx {
  2465. border-top: 3px solid #ffa82e;
  2466. }
  2467. .icon-nutrition-rx-md {
  2468. max-height: 22px;
  2469. }
  2470. .icon-nutrition-rx-row {
  2471. max-height: 18px;
  2472. }
  2473. .icon-nutrition-rx-row-sm {
  2474. max-height: 14px;
  2475. }
  2476. .table td.fit,
  2477. .table th.fit {
  2478. white-space: nowrap;
  2479. width: 1%;
  2480. }
  2481. table.table-cage {
  2482. border: 0px;
  2483. color: #2b4259;
  2484. }
  2485. table.table-cage tr:first-child td {
  2486. border-top: 0;
  2487. }
  2488. table.table-cage tr:last-child td {
  2489. border-bottom: 0;
  2490. }
  2491. table.table-cage tr td:first-child {
  2492. border-left: 0;
  2493. }
  2494. table.table-cage tr td:last-child {
  2495. border-right: 0;
  2496. border-left: 0 !important;
  2497. }
  2498. table.table-cage tr td:nth-last-child(2) {
  2499. border-right: 0 !important;
  2500. }
  2501. table.table-xs tr td {
  2502. padding: 0.15rem;
  2503. }
  2504. [if-edit-mode], [if-read-mode] {
  2505. display: none;
  2506. }
  2507. .edit [if-edit-mode] {
  2508. display: block;
  2509. }
  2510. .read [if-read-mode] {
  2511. display: block;
  2512. }
  2513. /* colored radios */
  2514. .rspace input[type="radio"][value="-"]:checked,
  2515. .rspace input[type="radio"][value="+"]:checked{
  2516. position: relative;
  2517. }
  2518. .rspace input[type="radio"][value="-"]:checked:before,
  2519. .rspace input[type="radio"][value="+"]:checked:before,
  2520. .rspace input[type="radio"][value="-"]:checked:after,
  2521. .rspace input[type="radio"][value="+"]:checked:after{
  2522. content: '';
  2523. position: absolute;
  2524. border-radius: 100%;
  2525. background:#fff;
  2526. }
  2527. .rspace input[type="radio"][value="-"]:checked:before,
  2528. .rspace input[type="radio"][value="+"]:checked:before{
  2529. top: 0;
  2530. left: 0;
  2531. width: 100%;
  2532. height: 100%;
  2533. }
  2534. .rspace input[type="radio"][value="-"]:checked:after,
  2535. .rspace input[type="radio"][value="+"]:checked:after{
  2536. top: 3px;
  2537. left: 3px;
  2538. width: calc(100% - 6px);
  2539. height: calc(100% - 6px);
  2540. }
  2541. .rspace input[type="radio"][value="-"]:checked:before {
  2542. border: 1px solid #e7848f;
  2543. }
  2544. .rspace input[type="radio"][value="+"]:checked:before {
  2545. border: 1px solid #2d9f2d91;
  2546. }
  2547. .rspace input[type="radio"][value="-"]:checked:after {
  2548. background-color: #e7848f;
  2549. }
  2550. .rspace input[type="radio"][value="+"]:checked:after {
  2551. background-color: #2d9f2d91;
  2552. }
  2553. @page
  2554. {
  2555. margin: 10mm 10mm 10mm 10mm;
  2556. }
  2557. .note-left-panel ~ .v-split {
  2558. height: 100%;
  2559. background: #DDD;
  2560. opacity: 1;
  2561. z-index: 2;
  2562. margin-left: -3px;
  2563. border-radius: 0;
  2564. margin-top: 0;
  2565. width: 6px;
  2566. }
  2567. .stag-scrollbar {
  2568. overflow: overlay;
  2569. }
  2570. .stag-scrollbar .stag-scrollbar-horiz-container {
  2571. position: fixed;
  2572. left: 849px;
  2573. bottom: 35px;
  2574. width: 633px;
  2575. height: 7px;
  2576. /*background: #aaa3;*/
  2577. transition: opacity 0.2s ease;
  2578. opacity: 0;
  2579. }
  2580. .stag-scrollbar[stag-h-scrollbar]:hover .stag-scrollbar-horiz-container,
  2581. body.stag-scrollbar-scrolling .stag-scrollbar[stag-h-scrollbar] .stag-scrollbar-horiz-container {
  2582. opacity: 1;
  2583. }
  2584. .stag-scrollbar .stag-scrollbar-horiz-tracker {
  2585. height: 7px;
  2586. background: #ddd;
  2587. border-radius: 10px;
  2588. }
  2589. .stag-scrollbar .stag-scrollbar-horiz-tracker:hover {
  2590. background: #ccc;
  2591. cursor: ew-resize;
  2592. }
  2593. .form-read-mode textarea, .form-read-mode input[type="text"] {
  2594. background: transparent;
  2595. border: 0;
  2596. padding: 0;
  2597. }
  2598. .conditions-tree {
  2599. /*padding: 0.5rem;*/
  2600. }
  2601. .conditions-tree .condition>a {
  2602. display: block;
  2603. padding: 3px 5px;
  2604. }
  2605. .conditions-tree .condition-children {
  2606. padding-left: 22px;
  2607. margin-left: -4px;
  2608. margin-top: -10px;
  2609. padding-top: 10px;
  2610. }
  2611. /* tree lines CSS */
  2612. .conditions-tree {
  2613. margin-left: 10px;
  2614. }
  2615. .conditions-tree .condition {
  2616. position: relative;
  2617. }
  2618. .conditions-tree .condition>a {
  2619. position: relative;
  2620. display: block;
  2621. padding-left: 9px;
  2622. white-space: nowrap;
  2623. text-overflow: ellipsis;
  2624. }
  2625. .conditions-tree .condition>a:before {
  2626. position: absolute;
  2627. content: '';
  2628. left: -7px;
  2629. background: url(/img/node.png);
  2630. width: 8px;
  2631. height: 7px;
  2632. background-size: 100% 100%;
  2633. top: calc(50% - 4px);
  2634. }
  2635. .conditions-tree .condition-children .condition>a:after {
  2636. position: absolute;
  2637. content: '';
  2638. left: -92px;
  2639. border-top: 1px solid #aaa;
  2640. width: 90px;
  2641. top: calc(50% - 1px);
  2642. }
  2643. .conditions-tree .condition-children .condition>a>.rm-count:after {
  2644. position: absolute;
  2645. content: '';
  2646. left: -22px;
  2647. border-left: 1px solid #aaa;
  2648. height: 200px;
  2649. bottom: 50%;
  2650. }
  2651. .conditions-tree .condition-children {
  2652. overflow: hidden;
  2653. }
  2654. table.stag-compact-grid>tbody>tr>td {
  2655. white-space: nowrap;
  2656. max-height: 1rem !important;
  2657. }
  2658. table.stag-compact-grid>tbody>tr>td>ul>li {
  2659. display: none;
  2660. }
  2661. table.stag-compact-grid>tbody>tr>td ul>li:nth-child(1) {
  2662. display: block;
  2663. margin-left: 0 !important;
  2664. }
  2665. table.stag-compact-grid>tbody>tr>td .alert {
  2666. padding: 0;
  2667. margin: 0;
  2668. }
  2669. table.stag-compact-grid>tbody>tr>td table>thead,
  2670. table.stag-compact-grid>tbody>tr>td table>tbody tr{
  2671. display: none;
  2672. }
  2673. table.stag-compact-grid>tbody>tr>td table>tbody tr:nth-child(1) {
  2674. display: table-row;
  2675. }
  2676. table.stag-compact-grid>tbody>tr>td {
  2677. border-left: 1px solid #ddd;
  2678. }
  2679. table.stag-compact-grid>tbody>tr>td:first-child {
  2680. border-left: 0;
  2681. }
  2682. table tr td [if-details-view] {
  2683. display: block;
  2684. }
  2685. table tr td [if-grid-view] {
  2686. display: none;
  2687. }
  2688. table.stag-compact-grid>tbody>tr>td [if-details-view] {
  2689. display: none;
  2690. }
  2691. table.stag-compact-grid>tbody>tr>td [if-grid-view] {
  2692. display: block;
  2693. }
  2694. .segment-template-summary-value {
  2695. font-weight: bold;
  2696. text-decoration: underline;
  2697. margin-left: 10px;
  2698. }
  2699. .stat-tree-view .stat-tree-node {
  2700. padding: 0.1rem 0.3rem;
  2701. }
  2702. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2703. padding-left: 1.5rem
  2704. }
  2705. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2706. padding-left: 2.6rem;
  2707. }
  2708. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2709. padding-left: 3.7rem;
  2710. }
  2711. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2712. padding-left: 4.8rem;
  2713. }
  2714. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2715. padding-left: 5.9rem;
  2716. }
  2717. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2718. padding-left: 7rem;
  2719. }
  2720. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2721. padding-left: 8.1rem;
  2722. }
  2723. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2724. padding-left: 9.2rem;
  2725. }
  2726. /* jstree overrides */
  2727. .stat-tree-view .jstree-wholerow {
  2728. border-bottom: 1px solid #f1f1f1;
  2729. }
  2730. .stat-tree-view .jstree-anchor.has-drop-visualization::after {
  2731. content: attr(data-drop-percent);
  2732. margin-left: 1rem;
  2733. font-size: 80%;
  2734. }
  2735. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-0-25::after {
  2736. color: grey;
  2737. }
  2738. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-26-50::after {
  2739. color: saddlebrown;
  2740. }
  2741. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-51-75::after {
  2742. color: #dc7024;
  2743. }
  2744. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-76-100::after {
  2745. color: red;
  2746. }
  2747. body .vakata-context li>a {
  2748. padding: 1px 5px;
  2749. padding-right: 10px;
  2750. line-height: unset;
  2751. font-size: 13px
  2752. }
  2753. body .vakata-context li>a>i {
  2754. display: none;
  2755. }
  2756. body .vakata-context li>a .vakata-contextmenu-sep {
  2757. display: none;
  2758. }
  2759. /*body .clauses-view li>i.jstree-icon {
  2760. display: none;
  2761. }*/
  2762. body #vakata-dnd {
  2763. font-family: Verdana, sans-serif;
  2764. font-size: 12px;
  2765. background: rgba(240, 248, 255, 0.76);
  2766. }
  2767. body .vakata-context .vakata-context-separator>a {
  2768. margin: 0;
  2769. }