style.css 60 KB

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