style.css 51 KB

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