style.css 51 KB

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