style.css 49 KB

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