style.css 47 KB

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