style.css 49 KB

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