style.css 47 KB

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