style.css 50 KB

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