style.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659
  1. :root {
  2. --w-70: 70%;
  3. --primary-color: #1c4587;
  4. --bg-grey: #EDEEF1;
  5. }
  6. /* login css */
  7. .login-container {
  8. background-color: var(--bg-grey);
  9. }
  10. .login-header {
  11. font-size: 30px;
  12. font-weight: 100;
  13. }
  14. .login-form {
  15. padding: 50px;
  16. }
  17. .login-form label {
  18. font-size: 14px;
  19. color: #454859;
  20. }
  21. .login-form .form-control {
  22. height: calc(1.5em + 0.75rem + 0.3px);;
  23. }
  24. .bg-holder {
  25. background-image: url(/login-rhs.jpg);
  26. background-size: cover;
  27. }
  28. .login-container .logo {
  29. font-size: 35px;
  30. font-weight: 800;
  31. color: rgb(13, 89, 175);
  32. }
  33. .login-container small {
  34. font-size: 12px;
  35. color: #999;
  36. }
  37. /* end of login */
  38. .w-70 {
  39. width: var(--w-70);
  40. }
  41. .text-warning-mellow {
  42. color: #d8a714!important;
  43. }
  44. .stag-primary-bg {
  45. background-color: var(--primary-color) !important;
  46. color: #fff;
  47. }
  48. .stag-primary-border {
  49. border-color: var(--primary-color) !important;
  50. }
  51. .navbar-brand {
  52. font-size: 16px !important;
  53. font-weight: 600;
  54. }
  55. .navbar-brand>img {
  56. max-width: 160px;
  57. }
  58. .sidebar .nav-link {
  59. padding: .25rem 1rem;
  60. }
  61. .sidebar .nav-item {
  62. margin-right: 0;
  63. }
  64. .sidebar .nav-item .nav-child-list {
  65. list-style: none;
  66. }
  67. .sidebar .nav-item .nav-child-list .nav-item .nav-link {
  68. padding-left: 2rem;
  69. }
  70. .sidebar .if-not-collapsed, .sidebar .if-collapsed {
  71. display: none;
  72. }
  73. .sidebar .nav-item.nav-child-collapsed .if-collapsed {
  74. display: block;
  75. }
  76. .sidebar .nav-item:not(.nav-child-collapsed) .if-not-collapsed {
  77. display: block;
  78. }
  79. .sidebar .nav-item.nav-child-collapsed .nav-child-list {
  80. display: none;
  81. }
  82. .navbar-dark .nav-item .nav-link {
  83. color: #fff;
  84. }
  85. .dropdown-menu {
  86. margin-top: 7px;
  87. border-radius: 0;
  88. min-width: 120px;
  89. }
  90. .dropdown-item:not(:last-child) {
  91. border-bottom:1px solid #ddd;
  92. }
  93. main {
  94. padding:0 1rem;
  95. }
  96. /* ability to toggle the video pane (rhs) */
  97. .stag_rhs_toggle, .stag_rhs_toggle:hover {
  98. position: fixed;
  99. bottom: 0;
  100. right: 0;
  101. padding: 0.25rem 0.75rem;
  102. border-top-left-radius: 6px;
  103. background-color: var(--primary-color);
  104. color: #fff;
  105. z-index: 2;
  106. }
  107. body.stag_rhs_collapsed .v-split,
  108. body.stag_rhs_collapsed .app-right-panel {
  109. display: none !important;
  110. }
  111. .delete-column {
  112. width: 120px;
  113. }
  114. .m-negator {
  115. margin-left: -1.25rem !important;
  116. margin-right: -1.25rem !important;
  117. }
  118. .pl-3-5 {
  119. padding-left: 1.25rem !important;
  120. }
  121. .lh-24px {
  122. height: 24px;
  123. line-height: 24px;
  124. }
  125. .mcp-theme-1 *:not(i) {
  126. font-family: Verdana, sans-serif;
  127. font-size: 12px;
  128. }
  129. .mcp-theme-1 .font-size-11 {
  130. font-size: 11px;
  131. }
  132. .mcp-theme-1 .font-size-13 {
  133. font-size: 13px;
  134. }
  135. .mcp-theme-1 .font-size-14 {
  136. font-size: 14px;
  137. }
  138. .mcp-theme-1 .font-size-16 {
  139. font-size: 16px;
  140. }
  141. .mcp-theme-1 .font-underline {
  142. text-decoration: underline;
  143. }
  144. .mcp-theme-1 .on-hover-opaque {
  145. opacity: 0.6;
  146. }
  147. .mcp-theme-1 .on-hover-opaque:hover {
  148. opacity: 1;
  149. }
  150. .mcp-theme-1 .opacity-60 {
  151. opacity: .6;
  152. }
  153. .mcp-theme-1 .overflow-visible {
  154. overflow: visible;
  155. }
  156. .mcp-theme-1 .text-secondary-light {
  157. color: #c9ddef !important;
  158. }
  159. .mcp-theme-1 a, .mcp-theme-1 a:link {
  160. color: rgb(13, 89, 175);
  161. }
  162. .mcp-theme-1 .btn.btn-primary {
  163. background: rgb(13, 89, 175);
  164. border-color: rgb(13, 89, 175);
  165. box-shadow: none;
  166. }
  167. #sidebarMenu .mcp-theme-1 .nav-item {
  168. margin: 0;
  169. }
  170. #sidebarMenu .mcp-theme-1 .nav-link:hover {
  171. background: #e3e3e394;
  172. }
  173. #sidebarMenu .mcp-theme-1 .nav-link {
  174. border-top: 1px solid transparent;
  175. }
  176. #sidebarMenu .mcp-theme-1 .nav-link.active {
  177. border-top: 1px solid #f8f9fa;
  178. background: #e2e2e2;
  179. }
  180. .mcp-theme-1 .text-sm {
  181. font-size: 85%;
  182. }
  183. .mcp-theme-1 .text-sm-incl-children,
  184. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  185. font-size: 0.8rem;
  186. }
  187. .mcp-theme-1 .minutes-label {
  188. width: 40px;
  189. }
  190. .mcp-theme-1 .memo-textarea {
  191. min-width: 200px;
  192. height: 60px;
  193. }
  194. .main-row {
  195. display: flex;
  196. flex-wrap: nowrap;
  197. margin-right: -15px;
  198. margin-left: -15px;
  199. }
  200. .main-row > .sidebar {
  201. width: 180px;
  202. min-width: 180px;
  203. }
  204. .main-row > main {
  205. flex-grow: 1;
  206. }
  207. html, body {
  208. height: 100%;
  209. }
  210. body>nav.navbar {
  211. height: 55px;
  212. }
  213. .stag-content {
  214. height: calc(100% - 55px);
  215. }
  216. [moe][large] form, [moe][large] [url] {
  217. width: 450px;
  218. }
  219. [moe][bottom] form {
  220. bottom: 100%;
  221. }
  222. .moe-disabled[moe] {
  223. cursor: not-allowed;
  224. }
  225. .moe-disabled[moe] [start][show] {
  226. opacity: 0.5;
  227. pointer-events: none;
  228. }
  229. .mcp-theme-1 .stag-no-wrap-td {
  230. max-width: 260px;
  231. }
  232. .mcp-theme-1 .stag-no-wrap {
  233. max-width: 250px;
  234. overflow: hidden;
  235. text-overflow: ellipsis;
  236. white-space: nowrap;
  237. display: block;
  238. }
  239. .mcp-theme-1 .form-control.form-control-sm:not(.min-width-unset) {
  240. min-width: 200px;
  241. }
  242. .mcp-theme-1 [large] .form-control.form-control-sm {
  243. min-width: unset;
  244. }
  245. [wide] .form-control.form-control-sm {
  246. min-width: 480px;
  247. }
  248. [moe][center] [url]:not([show]) {
  249. position: fixed;
  250. top: 10%;
  251. max-height: 88%;
  252. overflow-y: auto;
  253. overflow-x: hidden;
  254. left: calc(50% - 250px);
  255. width: 500px;
  256. }
  257. [moe][center][wide] [url]:not([show]) {
  258. left: calc(50% - 400px);
  259. width: 800px;
  260. }
  261. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  262. min-width: unset;
  263. max-width: 100%;
  264. }
  265. .mcp-theme-1 .width-200px {
  266. width: 200px !important;
  267. }
  268. .mcp-theme-1 .width-300px {
  269. width: 300px !important;
  270. }
  271. .mcp-theme-1 .width-22px {
  272. width: 22px !important;
  273. }
  274. .mcp-theme-1 .width-30px {
  275. width: 30px !important;
  276. }
  277. .mcp-theme-1 .width-40px {
  278. width: 40px !important;
  279. }
  280. .mcp-theme-1 .width-50px {
  281. width: 50px !important;
  282. }
  283. .mcp-theme-1 .width-70px {
  284. width: 70px !important;
  285. }
  286. .mcp-theme-1 .width-90px {
  287. width: 90px !important;
  288. }
  289. .mcp-theme-1 .min-width-140px {
  290. min-width: 140px !important;
  291. }
  292. .mcp-theme-1 .min-width-200px {
  293. min-width: 200px !important;
  294. }
  295. .mcp-theme-1 .min-width-300px {
  296. min-width: 300px;
  297. }
  298. .mcp-theme-1 .min-width-500px {
  299. min-width: 500px !important;
  300. }
  301. .mcp-theme-1 .max-width-500px {
  302. max-width: 500px !important;
  303. }
  304. .mcp-theme-1 .min-width-700px {
  305. min-width: 700px !important;
  306. }
  307. .mcp-theme-1 .max-width-700px {
  308. max-width: 700px !important;
  309. }
  310. .mcp-theme-1 .width-100px {
  311. width: 100px;
  312. min-width: unset !important;
  313. max-width: unset !important;
  314. }
  315. .mcp-theme-1 .width-100pc {
  316. width: 100% !important;
  317. min-width: unset !important;
  318. }
  319. .mcp-theme-1 .max-width-200px {
  320. max-width: 200px;
  321. }
  322. .mcp-theme-1 .max-width-300px {
  323. max-width: 300px;
  324. }
  325. .mcp-theme-1 .outline-0 {
  326. outline: none !important;
  327. box-shadow: none !important;
  328. }
  329. .cancelled-item {
  330. opacity: 0.5;
  331. }
  332. .cancelled-item:not(.always-clickable) * {
  333. pointer-events: none;
  334. }
  335. .note-content {
  336. max-height: 300px;
  337. overflow-y: auto;
  338. }
  339. .note-content:not([auto-edit]) {
  340. padding: 1rem;
  341. padding-bottom: 0;
  342. cursor: pointer;
  343. position: relative;
  344. }
  345. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  346. content: '(click to change)';
  347. display: block;
  348. color: #535353;
  349. padding-bottom: 0.3rem;
  350. }
  351. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  352. border-left: 0;
  353. border-right: 0;
  354. }
  355. .mcp-theme-1 .ql-editor[contenteditable] {
  356. min-height: 100px;
  357. }
  358. .ql-container p {
  359. margin-top: 1rem;
  360. }
  361. .note-content ul {
  362. list-style: none !important;
  363. }
  364. .ql-editor ul > li::before {
  365. content: '';
  366. }
  367. .m-neg-4 {
  368. margin-left: -1.25rem;
  369. margin-right: -1.25rem;
  370. }
  371. .mcp-theme-1 .ql-toolbar .ql-formats * {
  372. font-size: 12px !important;
  373. }
  374. .mcp-theme-1 .ql-toolbar.ql-snow {
  375. padding: 3px;
  376. background: #f7f7f7;
  377. }
  378. .mcp-theme-1 .ql-snow .ql-picker {
  379. height: 22px;
  380. }
  381. .mcp-theme-1 .ql-snow.ql-toolbar button {
  382. height: 22px;
  383. width: 26px;
  384. }
  385. .rte-holder .ql-container p {
  386. margin-top: 0;
  387. margin-bottom: 0.3rem;
  388. }
  389. .note-section:not(.edit) .if-not-edit {
  390. display: block !important;
  391. }
  392. .note-section:not(.edit) div.if-not-edit {
  393. padding-left: 1rem;
  394. }
  395. .note-section:not(.edit):hover {
  396. background: #f6f9fc;
  397. cursor: pointer;
  398. }
  399. .note-signed-by-hcp .note-section:not(.edit):hover {
  400. background: #f6f9fc;
  401. cursor: auto;
  402. }
  403. .note-section.edit .if-edit {
  404. display: block !important;
  405. }
  406. .c-pointer {
  407. cursor: pointer;
  408. }
  409. .events-none {
  410. pointer-events: none;
  411. }
  412. .blocking-overlay {
  413. opacity: 0 !important;
  414. cursor: default;
  415. }
  416. .inset-comment p {
  417. margin-bottom: 0.3rem;
  418. }
  419. .inset-comment p:last-child {
  420. margin-bottom: 0 !important;
  421. }
  422. .note-section.edit {
  423. background: #f0f8ff7d;
  424. outline: 2px solid #9de3ff;
  425. }
  426. .note-section.edit .ql-editor,
  427. .note-section.edit .btn-default {
  428. background-color: #fff !important;
  429. }
  430. /*.note-section-item-row:not(:first-child) {
  431. padding-top: 10px;
  432. border-top: 1px solid #ccc;
  433. }*/
  434. /* override med ac css */
  435. #searchResults {
  436. z-index: 100001 !important;
  437. }
  438. input.search_field, textarea.search_field {
  439. background-position: right 7px center !important;
  440. padding-right: 23px !important;
  441. }
  442. .ansList:focus, .search_field:focus {
  443. background-color: #fff !important;
  444. }
  445. @media (min-width: 1000px) {
  446. .navbar.navbar-dark {
  447. height: 55px;
  448. position: fixed;
  449. top: 0;
  450. left: 0;
  451. width: 100%;
  452. z-index: 9999;
  453. }
  454. .main-row > .sidebar {
  455. width: 180px;
  456. min-width: 180px;
  457. position: fixed;
  458. left: 0;
  459. top: 55px;
  460. z-index: 8;
  461. height: calc(100% - 55px);
  462. overflow-y: overlay;
  463. }
  464. .main-row {
  465. padding-left: 180px;
  466. }
  467. .navbar.navbar-dark+[role="main"] {
  468. padding-top: 55px;
  469. }
  470. .stag-popup .navbar.navbar-dark+[role="main"] {
  471. padding-top: 0;
  472. }
  473. }
  474. .font-smaller {
  475. font-size: 11px !important;
  476. }
  477. .text-ellipsis {
  478. white-space: nowrap;
  479. overflow: hidden;
  480. text-overflow: ellipsis;
  481. }
  482. .outline-0 {
  483. outline: none !important;
  484. }
  485. .note-widget-item:hover {
  486. background: #eee;
  487. }
  488. .note-widget-title {
  489. background: #ccc !important;
  490. color: #333 !important;
  491. font-size: 12px !important;
  492. font-weight: bold !important;
  493. }
  494. .navbar-collapse.show {
  495. background: #1c4587;
  496. z-index: 999;
  497. padding: 0.5rem 1rem;
  498. margin: 0 -1rem;
  499. }
  500. .navbar-dark .nav-item .nav-link {
  501. font-size: 12px;
  502. white-space: nowrap;
  503. overflow: hidden;
  504. text-overflow: ellipsis;
  505. }
  506. #patient-search {
  507. min-width: 90px !important;
  508. max-width: 140px !important;
  509. }
  510. .suggestions-outer {
  511. top: calc(100% + 2px);
  512. background: #fff;
  513. border-radius: 3px;
  514. border: 1px solid #ccc;
  515. z-index: 9999;
  516. }
  517. .suggestions-outer {
  518. top: calc(100% + 2px);
  519. background: #fff;
  520. border-radius: 3px;
  521. border: 1px solid #ccc;
  522. z-index: 9999;
  523. max-height: 220px;
  524. overflow-y: auto;
  525. min-width: calc(100% - 0.5rem);
  526. right: 0.5rem;
  527. }
  528. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  529. padding: 0.25rem 0.5rem;
  530. text-decoration: none;
  531. font-size: 12px;
  532. }
  533. .suggestions-outer .no-suggest-items {
  534. color: #888;
  535. }
  536. .suggestions-outer .suggest-item.active {
  537. background: #ccc;
  538. }
  539. .suggestions-outer .suggest-item:hover {
  540. background: aliceblue;
  541. }
  542. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  543. .pro-dashboard-inline-calendar table.table-condensed {
  544. width: 100% !important;
  545. }
  546. .pro-dashboard-inline-calendar {
  547. border: 1px solid #ddd;
  548. border-radius: 3px
  549. }
  550. .pro-dashboard-inline-calendar table.table-condensed th {
  551. padding: 0.5rem 0;
  552. border-radius: 0;
  553. }
  554. .pro-dashboard-inline-calendar table.table-condensed td {
  555. padding: 0.25rem 0;
  556. border-radius: 0;
  557. }
  558. .pro-dashboard-inline-calendar table.table-condensed td[has-events],
  559. .pro-dashboard-inline-calendar td.has-events a {
  560. background: #c5e4ff !important;
  561. font-weight: bold !important;
  562. color: #000 !important;
  563. }
  564. .pro-dashboard-inline-calendar td a {
  565. text-align: center !important;
  566. }
  567. [v-cloak] {
  568. opacity: 0;
  569. }
  570. .patient-avatar {
  571. width: 50px;
  572. height: 50px;
  573. background: #ddd;
  574. display: inline-flex;
  575. align-items: center;
  576. justify-content: center;
  577. border-radius: 100%;
  578. }
  579. .large {
  580. font-size: 16px !important;
  581. }
  582. /* note templates */
  583. .note-template-container {
  584. position: absolute;
  585. z-index: 10002;
  586. background: #fff;
  587. border: 1px solid #ddd;
  588. border-radius: 3px;
  589. display: none;
  590. min-width: 200px;
  591. }
  592. .note-template-container .note-template-item {
  593. position: relative;
  594. height: 25px;
  595. }
  596. .note-template-container .note-template-item .note-template-text {
  597. border-bottom: 1px solid #eee;
  598. }
  599. .note-template-container .note-template-item .label {
  600. padding: 3px 6px;
  601. padding-right: 25px;
  602. white-space: nowrap;
  603. display: inline-flex;
  604. align-items: center;
  605. min-width: 120px;
  606. cursor: pointer;
  607. flex-grow: 1;
  608. }
  609. .note-template-container .note-template-item:hover,
  610. .note-template-container .note-template-item.selected {
  611. background: aliceblue;
  612. }
  613. .note-template-container .note-template-item .label>input[type="checkbox"] {
  614. pointer-events: none;
  615. margin: 0;
  616. margin-right: 4px;
  617. height: 11px;
  618. }
  619. .note-template-container .note-template-item:last-child label {
  620. border: 0;
  621. }
  622. .note-template-container .note-template-item .note-template-children {
  623. position: absolute;
  624. left: 100%;
  625. top: 0;
  626. background: #fff;
  627. border: 1px solid #ddd;
  628. border-radius: 3px;
  629. display: none;
  630. }
  631. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  632. display: block;
  633. }*/
  634. .note-template-container .note-template-item .has-children {
  635. position: absolute;
  636. right: 6px;
  637. top: 0;
  638. height: 25px;
  639. line-height: 25px;
  640. color: #bbb;
  641. }
  642. .note-template-container .note-template-item:hover>.has-children {
  643. color: #444;
  644. }
  645. .note-templates-underlay {
  646. position: fixed;
  647. top: 0;
  648. left: 0;
  649. height: 100%;
  650. width: 100%;
  651. background: rgba(0,0,0,0.13);
  652. display: none;
  653. z-index: 10001;
  654. }
  655. .note-template-container textarea {
  656. height: 100px;
  657. border-radius: 0;
  658. border-color: #ccc;
  659. padding: 5px 10px;
  660. display: block;
  661. }
  662. .note-template-buttons {
  663. position: absolute;
  664. bottom: 100%;
  665. right: 0;
  666. height: 27px;
  667. padding: 0 3px;
  668. background: #fff;
  669. }
  670. .note-template-buttons button {
  671. font-size: 10px;
  672. padding: 2px 5px;
  673. margin-left: 5px;
  674. border-radius: 2px;
  675. }
  676. .note-template-buttons button:first-child {
  677. margin-left: 0;
  678. }
  679. .note-template-output {
  680. position: absolute;
  681. bottom: calc(100% + 26px);
  682. left: 0;
  683. padding: 3px 6px;
  684. background: #f7f7f7;
  685. min-width: 100%;
  686. border-radius: 3px;
  687. }
  688. .note-template-output-text {
  689. }
  690. .note-template-output .note-template-output-line {
  691. font-size: 11px;
  692. width: max-content;
  693. max-width: 500px;
  694. margin: 0;
  695. }
  696. .note-template-set-chooser {
  697. height: 22px;
  698. line-height: 22px;
  699. padding: 0 0.22rem;
  700. font-size: 12px !important;
  701. }
  702. .ql-editor .note-template-output-line {
  703. white-space: normal;
  704. }
  705. [prefix="(+)"] a.plus-trigger {
  706. color: #23a923 !important;
  707. }
  708. [prefix="(-)"] a.minus-trigger {
  709. color: #a91e1e !important;
  710. }
  711. .rspace {
  712. width: 20px;
  713. display: inline-flex;
  714. text-align: center;
  715. justify-content: center;
  716. }
  717. .embed-mask {
  718. position: fixed;
  719. left: 0;
  720. top: 0;
  721. height: 100%;
  722. width: 100%;
  723. background: rgba(0, 0, 0, 0.1);
  724. z-index: 98;
  725. }
  726. .embed-section {
  727. background: #fff;
  728. z-index: 99;
  729. padding: 0;
  730. border: 1px solid #ccc;
  731. }
  732. .mask-text-addition {
  733. position: fixed;
  734. bottom: calc(50% - 60px);
  735. left: 0;
  736. width: 100%;
  737. text-align: center;
  738. font-size: 12px;
  739. z-index: 9999999;
  740. color: #000;
  741. }
  742. .note-summary p {
  743. margin-bottom: 0.25rem;
  744. }
  745. .aligned-icon {
  746. display: inline-block;
  747. width: 18px;
  748. text-align: center;
  749. }
  750. body #searchCount {
  751. display: none !important;
  752. }
  753. body .break-spaces {
  754. white-space: pre-wrap;
  755. }
  756. .stag-tooltip .stag-tooltip-content {
  757. display: none;
  758. min-width: 200px;
  759. }
  760. .stag-tooltip:hover .stag-tooltip-content {
  761. display: block;
  762. right: -10px;
  763. top: 100%;
  764. z-index: 1;
  765. }
  766. .gem-nodes .node {
  767. border: 1px solid #ddd;
  768. padding: 0.75rem;
  769. border-radius: 5px;
  770. }
  771. .gem-nodes>.node {
  772. border: 0 !important;
  773. padding-left: 0;
  774. padding-right: 0;
  775. }
  776. .gem-nodes>.node:first-child {
  777. margin-top: 0 !important;
  778. }
  779. .gem-nodes>.node>label {
  780. font-weight: bold;
  781. font-size: 14px;
  782. margin: 0;
  783. }
  784. .gem-nodes .subs .node:last-child {
  785. margin-bottom: 0 !important;
  786. }
  787. .gem-nodes>.node>.subs {
  788. padding-left: 0 !important;
  789. }
  790. .gem-nodes>.node>.subs>.node {
  791. background: #f2f2f2;
  792. }
  793. .gem-nodes>.node>.subs>.node>.subs>.node {
  794. background: #fff;
  795. }
  796. .gem-nodes .node span[field] {
  797. font-weight: bold;
  798. }
  799. body .node input[type="number"] {
  800. max-width: 70px;
  801. min-width: unset !important;
  802. }
  803. .section-edit-mask {
  804. top: 0;
  805. left: 0;
  806. width: 100%;
  807. height: 100%;
  808. }
  809. .signed-note {
  810. position: relative;
  811. pointer-events: none !important;
  812. }
  813. .signed-note::after {
  814. content: '';
  815. position: absolute;
  816. z-index: 2;
  817. cursor: not-allowed;
  818. left: 0;
  819. top: 0;
  820. width: 100%;
  821. height: 100%;
  822. background: rgba(0,0,0,0.01);
  823. }
  824. .slot-picker {
  825. padding: 4px;
  826. padding-right: 0;
  827. padding-bottom: 0;
  828. }
  829. .slot-picker.disabled {
  830. opacity: 0.5;
  831. pointer-events: none;
  832. cursor: not-allowed;
  833. }
  834. .slot-picker td {
  835. text-align: center;
  836. border: 1px solid #ddd !important;
  837. padding: 2px 5px;
  838. cursor: pointer;
  839. }
  840. .slot-picker th {
  841. border: 0 !important;
  842. }
  843. .slot-picker td:hover {
  844. background: aliceblue;
  845. }
  846. .slot-picker td.blocked {
  847. background: #ccc !important;
  848. cursor: not-allowed;
  849. }
  850. .slot-picker td.selected {
  851. background-image: linear-gradient(to bottom,#08c,#04c);
  852. background-repeat: repeat-x;
  853. color: #fff;
  854. }
  855. .pro-appointment-calendar.disabled {
  856. opacity: 0.5;
  857. pointer-events: none;
  858. cursor: not-allowed;
  859. }
  860. .pro-appointment-calendar .datepicker-inline {
  861. width: 195px;
  862. padding-left: 0;
  863. }
  864. .pro-appointment-calendar .datepicker td {
  865. height: 25px;
  866. }
  867. .datepicker td, .datepicker th {
  868. border: none !important;
  869. }
  870. .appt-form-col {
  871. width: 220px;
  872. }
  873. .appt-calendar-col {
  874. flex-grow: 1;
  875. }
  876. .appt-form td.fc-day.stag-selected {
  877. outline: 2px solid #007bff;
  878. background: #e5f2fd;
  879. }
  880. .appt-form .stag-current-appt {
  881. background: #89159cc7;
  882. color: #fff;
  883. border-color: #89159cc7;
  884. }
  885. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  886. border-color: #fff;
  887. }
  888. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  889. margin-bottom: 0.5rem;
  890. /*align-items: start;*/
  891. }
  892. .stag-calendar-header-extra {
  893. background: #cde8ff;
  894. padding: 3px 10px;
  895. margin-top: 7px;
  896. border-top-left-radius: 6px;
  897. border-top-right-radius: 6px;
  898. border: 1px solid #44a5f982;
  899. border-bottom: 0;
  900. }
  901. .stag-calendar-header-extra * {
  902. font-size: 14px !important;
  903. }
  904. /* call panel */
  905. #proCallComponent {
  906. padding-bottom: 150px;
  907. }
  908. .patient-queue {
  909. display: flex;
  910. flex-direction: column;
  911. position: fixed;
  912. left: 0;
  913. width: 100%;
  914. bottom: 0;
  915. z-index: 4;
  916. }
  917. .queue-item {
  918. width: 100px;
  919. padding: 0.5rem;
  920. padding-bottom: 0.25rem;
  921. text-align: center;
  922. cursor: pointer;
  923. }
  924. .queue-item:hover {
  925. background: aliceblue;
  926. }
  927. .current-work-indicator {
  928. /*
  929. position: fixed;
  930. top: 55px;
  931. right: 0;
  932. z-index: 9999;
  933. */
  934. background: #305ba0;
  935. color: #fff;
  936. font-size: 12px;
  937. padding: 3px 6px;
  938. border-radius: 3px;
  939. /* border-bottom-left-radius: 5px;*/
  940. white-space: nowrap;
  941. text-overflow: ellipsis;
  942. max-width: 100px;
  943. overflow: hidden;
  944. }
  945. /* stag popups */
  946. .stag-popup {
  947. position: fixed;
  948. left: 0;
  949. top: 55px;
  950. width: 100%;
  951. height: calc(100% - 55px);
  952. overflow-x: auto;
  953. z-index: 97;
  954. justify-content: center;
  955. align-items: center;
  956. display: none;
  957. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  958. padding: 2rem 0;
  959. }
  960. .stag-popup.show {
  961. display: block;
  962. }
  963. .stag-popup>form, .stag-popup>.stag-popup-content {
  964. width: 80%;
  965. background: #fff;
  966. border: 1px solid #aaa;
  967. border-radius: 5px;
  968. overflow: hidden;
  969. box-shadow: 0 0 5px #ddd;
  970. margin: 0 auto;
  971. padding: 0.75rem;
  972. }
  973. .stag-popup.wide>form, .stag-popup.wide>.stag-popup-content {
  974. width: calc(100% - 4rem);
  975. }
  976. .stag-popup.narrow>form, .stag-popup.narrow>.stag-popup-content {
  977. max-width: 500px;
  978. }
  979. .stag-popup.stag-popup-sm>form, .stag-popup.stag-popup-sm>.stag-popup-content {
  980. max-width: 500px;
  981. }
  982. .stag-popup.stag-popup-md>form, .stag-popup.stag-popup-md>.stag-popup-content {
  983. max-width: 632pt;
  984. }
  985. .stag-popup.stag-popup-right>form, .stag-popup.stag-popup-right>.stag-popup-content {
  986. margin-right: 1.5rem;
  987. margin-left: auto;
  988. }
  989. /* slide-in stag-popups */
  990. .stag-popup.stag-slide {
  991. display: block;
  992. background: center center no-repeat scroll rgba(0, 0, 0, 0);
  993. pointer-events: none;
  994. overflow: hidden;
  995. }
  996. .stag-popup.stag-slide.show {
  997. pointer-events: all;
  998. }
  999. .stag-popup.stag-slide>form {
  1000. position: absolute;
  1001. top: 0;
  1002. height: 100% !important;
  1003. overflow-y: auto;
  1004. border-radius: 0;
  1005. border-top: 0;
  1006. border-bottom: 0;
  1007. border-right: 0;
  1008. transition: right 0.3s ease;
  1009. width: 0;
  1010. }
  1011. .stag-popup.stag-slide.stag-popup-sm>form {
  1012. width: 500px;
  1013. right: -500px;
  1014. }
  1015. .stag-popup.stag-slide.stag-popup-md>form {
  1016. width: 632pt;
  1017. right: -632pt;
  1018. }
  1019. .stag-popup.stag-slide.show>form {
  1020. right: 0;
  1021. }
  1022. /* asana style ticket management */
  1023. .pro-initials {
  1024. border-radius: 100%;
  1025. height: 24px;
  1026. width: 24px;
  1027. min-height: 24px;
  1028. min-width: 24px;
  1029. max-height: 24px;
  1030. max-width: 24px;
  1031. text-align: center;
  1032. font-weight: 400;
  1033. display: inline-flex;
  1034. align-items: center;
  1035. justify-content: center;
  1036. background-color: #6457f9;
  1037. color: #fff;
  1038. font-size: 10px !important;
  1039. opacity: 0.85;
  1040. }
  1041. .pro-initials.pro-initials-sm {
  1042. height: 18px;
  1043. width: 18px;
  1044. min-height: 18px;
  1045. min-width: 18px;
  1046. max-height: 18px;
  1047. max-width: 18px;
  1048. font-size: 9px !important;
  1049. }
  1050. .pro-initials:hover {
  1051. opacity: 1;
  1052. }
  1053. .ticket-section {
  1054. }
  1055. .ticket-section.ticket-section-collapsed {
  1056. max-height: 0;
  1057. overflow: hidden;
  1058. }
  1059. .tickets-table tbody tr {
  1060. transition: background-color 0.2s ease;
  1061. }
  1062. .tickets-table tbody tr:hover {
  1063. background-color: rgba(0,0,0,.04);
  1064. }
  1065. .tickets-table tbody tr.current {
  1066. background-color: aliceblue;
  1067. }
  1068. .stag-slide input.form-control:not(:focus),
  1069. .stag-slide select.form-control:not(:focus) {
  1070. border-color: transparent;
  1071. background-color: transparent;
  1072. cursor: pointer;
  1073. font-weight: bold;
  1074. padding-left: 0;
  1075. }
  1076. .stag-slide select.form-control:not(:focus) {
  1077. appearance: none;
  1078. }
  1079. .stag-slide input.form-control {
  1080. box-shadow: none !important;
  1081. }
  1082. .stag-slide input.form-control:not(:focus):not([readonly]):hover {
  1083. text-decoration: underline;
  1084. }
  1085. .stag-slide input.form-control[readonly] {
  1086. opacity: 0.75;
  1087. }
  1088. .stag-slide ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  1089. color: #bbb !important;
  1090. font-weight: normal !important;
  1091. opacity: 1; /* Firefox */
  1092. }
  1093. .stag-slide :-ms-input-placeholder { /* Internet Explorer 10-11 */
  1094. color: #bbb !important;
  1095. font-weight: normal !important;
  1096. }
  1097. .stag-slide ::-ms-input-placeholder { /* Microsoft Edge */
  1098. color: #bbb !important;
  1099. font-weight: normal !important;
  1100. }
  1101. .stag-slide .text-success {
  1102. color: #00bf9c !important;
  1103. }
  1104. .stag-slide .btn-success,
  1105. .stag-slide .btn-success:hover {
  1106. background: #00bf9c;
  1107. border-color: #00bf9c;
  1108. }
  1109. .stag-slide .comment-input-outer {
  1110. position: sticky;
  1111. bottom: 0;
  1112. }
  1113. .stag-slide .txt-comment {
  1114. padding-bottom: calc(23px + 1rem);
  1115. height: calc(23px + 1rem);
  1116. transition: height 0.3s ease;
  1117. overflow: hidden;
  1118. }
  1119. .stag-slide .txt-comment:focus {
  1120. height: 120px;
  1121. overflow: auto;
  1122. }
  1123. .stag-slide .txt-comment:focus~.btn-save-comment {
  1124. opacity: 1;
  1125. }
  1126. .stag-slide .btn-save-comment {
  1127. position: absolute;
  1128. bottom: 0.5rem;
  1129. right: 0.5rem;
  1130. height: 28px;
  1131. line-height: 28px;
  1132. padding: 0 1rem;
  1133. transition: opacity 0.3s ease;
  1134. opacity: 0.5;
  1135. }
  1136. .stag-slide select.form-control:invalid,
  1137. .stag-slide input[type="text"].form-control:invalid {
  1138. background-color: #f8ecec;
  1139. padding-left: 0.5rem;
  1140. }
  1141. .stag-slide select:focus:invalid,
  1142. .stag-slide input[type="text"]:focus:invalid {
  1143. background: #fff;
  1144. border-color: #e24848;
  1145. box-shadow: 0 0 2px #c10707 !important;
  1146. }
  1147. .erx-line-item:nth-child(2n+1) {
  1148. background: #f0f8ffbb
  1149. }
  1150. .no-scroll {
  1151. overflow: hidden;
  1152. }
  1153. .client-rs-contents p {
  1154. margin-bottom: 0.25rem;
  1155. }
  1156. .pro-option {
  1157. position: relative;
  1158. display: block;
  1159. padding-left: 30px;
  1160. }
  1161. .pro-option.pro-option-selected {
  1162. display: inline-block;
  1163. padding-left: 25px;
  1164. }
  1165. .pro-option .pro-option-initials {
  1166. position: absolute;
  1167. left: 5px;
  1168. top: 2px;
  1169. font-size: 10px;
  1170. border-radius: 100%;
  1171. height: 20px;
  1172. width: 20px;
  1173. line-height: 20px;
  1174. text-align: center;
  1175. font-weight: 400;
  1176. }
  1177. .pro-option.pro-option-selected .pro-option-initials {
  1178. left: 3px;
  1179. top: 0;
  1180. font-size: 10px;
  1181. border-radius: 100%;
  1182. height: 18px;
  1183. width: 18px;
  1184. line-height: 19px;
  1185. text-align: center;
  1186. font-weight: 400;
  1187. }
  1188. span.pro-selection {
  1189. padding: 0 5px;
  1190. height: 18px;
  1191. display: inline-block;
  1192. border-top-right-radius: 3px;
  1193. border-bottom-right-radius: 3px;
  1194. }
  1195. .select2-results__option--selectable {
  1196. font-size: 13px;
  1197. }
  1198. #calendarApp .select2-selection__choice__display,
  1199. #proCalendarApp .select2-selection__choice__display {
  1200. padding: 0 !important;
  1201. overflow: hidden !important;
  1202. }
  1203. span.select2-container.select2-container--default.select2-container--open {
  1204. z-index: 999999;
  1205. }
  1206. .fc .fc-highlight {
  1207. background: rgba(188, 232, 241, 0.6) !important;
  1208. }
  1209. .fc .add-overlay {
  1210. padding: 1px 4px;
  1211. display: inline-block;
  1212. font-weight: bold;
  1213. }
  1214. .fc .add-overlay.add-overlay-day-grid {
  1215. padding: 4px;
  1216. }
  1217. .stag-popup .stag-popup-title {
  1218. border-bottom: 1px solid #eee;
  1219. padding-bottom: 0.75rem;
  1220. margin-bottom: 1rem;
  1221. display: flex;
  1222. align-items: center;
  1223. }
  1224. .stag-popup .stag-popup-title>span {
  1225. font-size: 17px;
  1226. }
  1227. .fc .other-client {
  1228. box-shadow: 1px 1px 2px deeppink !important;
  1229. opacity: 0.5;
  1230. }
  1231. .fc .other-client:hover {
  1232. opacity: 0.8;
  1233. }
  1234. .fc .availability {
  1235. box-shadow: 0 0 3px green !important;
  1236. }
  1237. .fc .inactive-appointment {
  1238. opacity: 0.6;
  1239. box-shadow: 0 0 3px grey !important;
  1240. }
  1241. .fc .fc-button-primary:not(:disabled):active,
  1242. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1243. border-color: #56a767 !important;
  1244. background-color: #56a767 !important;
  1245. }
  1246. .w-150 {
  1247. width: 150px !important;
  1248. min-width: 150px !important;
  1249. }
  1250. .w-180 {
  1251. width: 180px !important;
  1252. min-width: 180px !important;
  1253. }
  1254. .guest-view button.add-shortcut {
  1255. display: none;
  1256. }
  1257. .guest-view .note-section,
  1258. .guest-view .note-section:hover {
  1259. background: #fff !important;
  1260. }
  1261. #stagPdfViewer>form {
  1262. padding: 0;
  1263. background: #eee;
  1264. }
  1265. #stagPdfViewer>form .stag-popup-title {
  1266. background: #fff;
  1267. padding: 1rem;
  1268. }
  1269. canvas.pdf-viewer-page {
  1270. max-width: 100%;
  1271. margin: 1rem auto;
  1272. display: block;
  1273. box-shadow: 0 0 2px #aaa;
  1274. }
  1275. .hidden-link-input {
  1276. /*opacity: 0;
  1277. width: 0 !important;
  1278. border: 0 !important;
  1279. padding: 0 !important;*/
  1280. position: absolute;
  1281. left: -9999px;
  1282. }
  1283. table.table-edit-sheet tbody tr td {
  1284. padding: 0;
  1285. background: #f7f7f7;
  1286. }
  1287. table.table-edit-sheet tbody tr td>input,
  1288. table.table-edit-sheet tbody tr td>select {
  1289. box-shadow: none !important;
  1290. border-radius: 0 !important;
  1291. border: 0;
  1292. background: #fefefe;
  1293. width: 100% !important;
  1294. min-width: unset !important;
  1295. border-bottom: 1px solid #dee2e6;
  1296. }
  1297. table.table-edit-sheet tbody tr td input[type="text"],
  1298. table.table-edit-sheet tbody tr td select,
  1299. table.table-edit-sheet tbody tr td textarea {
  1300. box-shadow: none !important;
  1301. border-radius: 0 !important;
  1302. border: 0;
  1303. background: #fefefe;
  1304. min-width: unset !important;
  1305. border-bottom: 1px solid #dee2e6;
  1306. }
  1307. table.table-edit-sheet tbody tr td>input:focus,
  1308. table.table-edit-sheet tbody tr td>select:focus {
  1309. background: #fff;
  1310. outline: 3px solid #4b88a633;
  1311. }
  1312. table.table-edit-sheet tbody tr [contenteditable] {
  1313. background: #fff;
  1314. }
  1315. table.table-edit-sheet .ql-toolbar {
  1316. border-top: 0 !important;
  1317. }
  1318. table.table-edit-sheet .ql-container {
  1319. border-bottom: 0 !important;
  1320. }
  1321. table.table-edit-sheet .ql-editor[contenteditable] {
  1322. min-height: 90px;
  1323. }
  1324. .w-35 {
  1325. width: 35%;
  1326. }
  1327. .client-single-dashboard .hide-if-dashboard {
  1328. display: none;
  1329. }
  1330. .notes-list .hide-if-note,
  1331. .note-section .hide-if-note {
  1332. display: none;
  1333. }
  1334. .data-option-list {
  1335. position: absolute;
  1336. background: #fff;
  1337. border: 2px solid #ddd;
  1338. margin-top: -1px;
  1339. width: 100%;
  1340. z-index: 1;
  1341. display: none;
  1342. max-width: 250px;
  1343. box-shadow: 0 0 3px #ddd;
  1344. border-top: 0;
  1345. }
  1346. .data-option-list>div {
  1347. cursor: pointer;
  1348. padding: 0.2rem 0.5rem;
  1349. border-bottom: 1px solid #ddd;
  1350. color: #666;
  1351. font-size: 90%;
  1352. }
  1353. .data-option-list>div:last-child {
  1354. border-bottom: 0;
  1355. }
  1356. .data-option-list>div:hover {
  1357. background: aliceblue;
  1358. }
  1359. .measurement-item:not(:last-child) {
  1360. border-bottom: 1px solid #e7e7e7;
  1361. }
  1362. .assessment-detail-template>span {
  1363. margin: 0 !important;
  1364. padding: 0 !important;
  1365. border: 0 !important;
  1366. margin-left: -0.5rem !important;
  1367. position: static !important;
  1368. }
  1369. .assessment-detail-template>span>a {
  1370. display: none;
  1371. }
  1372. button.add-shortcut,
  1373. button.note-templates-trigger-assessment {
  1374. outline: none !important;
  1375. box-shadow: none !important;
  1376. }
  1377. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1378. pointer-events: none !important;
  1379. }
  1380. .claim-line:last-child td {
  1381. padding-bottom: 1.3rem;
  1382. }
  1383. .in-table-markup p:last-of-type {
  1384. margin-bottom: 0;
  1385. }
  1386. .suggestions-outer.pharmacy-suggestions {
  1387. left: 1rem;
  1388. width: calc(100% - 2rem);
  1389. }
  1390. .flowsheets-table td {
  1391. padding: 0 10px;
  1392. height: 38px;
  1393. max-height: 38px;
  1394. min-height: 38px;
  1395. vertical-align: middle !important;
  1396. }
  1397. .flowsheets-table .expand {
  1398. display: none;
  1399. }
  1400. .flowsheets-table .collapse {
  1401. display: block;
  1402. }
  1403. .flowsheets-table .collapsed .expand {
  1404. display: block;
  1405. }
  1406. .flowsheets-table .collapsed .collapse {
  1407. display: none;
  1408. }
  1409. .flowsheets-table tr {
  1410. }
  1411. .flowsheets-table .collapsed tr:not(:first-child) {
  1412. display: none;
  1413. }
  1414. .col-2-button {
  1415. width: 88px;
  1416. text-align: left;
  1417. }
  1418. /* vitals graph */
  1419. .stag-chart {
  1420. min-height: 300px;
  1421. }
  1422. .stag-chart .safe-region>rect {
  1423. fill: green;
  1424. }
  1425. .stag-chart .safe-region>text {
  1426. fill: #888;
  1427. transform: translateY(-18px);
  1428. }
  1429. /* appt. confirmation history */
  1430. .appointment-confirmation-history-trigger .appointment-confirmation-history {
  1431. position: absolute;
  1432. width: 300px;
  1433. right: 0;
  1434. background: #fff;
  1435. opacity: 0;
  1436. padding: 0 0.75rem;
  1437. padding-bottom: 0.5rem;
  1438. box-shadow: 0 0 2px #999;
  1439. pointer-events: none;
  1440. transition: opacity 0.3s ease;
  1441. z-index: 2;
  1442. }
  1443. .appointment-confirmation-history-trigger:hover .appointment-confirmation-history {
  1444. opacity: 1;
  1445. pointer-events: all;
  1446. }
  1447. .on-hover-text-reveal {
  1448. white-space: nowrap;
  1449. overflow: hidden;
  1450. text-overflow: ellipsis;
  1451. }
  1452. /*.on-hover-text-reveal:hover {
  1453. white-space: normal;
  1454. overflow: unset;
  1455. text-overflow: unset;
  1456. }*/
  1457. .collapsible-tbody.collapsed {
  1458. display: none;
  1459. }
  1460. #send-fax-pdf-preview {
  1461. max-height: 350px;
  1462. overflow: auto;
  1463. box-shadow: 0 0 2px #ccc;
  1464. }
  1465. canvas.pdf-viewer-page.pdf-preview-page {
  1466. margin: 0.5rem auto;
  1467. }
  1468. .back-to-admin-button {
  1469. background: transparent;
  1470. border: 0;
  1471. padding: 0;
  1472. color: rgb(13, 89, 175);
  1473. }
  1474. .back-to-admin-button:hover {
  1475. text-decoration: underline;
  1476. }
  1477. .bg-aliceblue {
  1478. background: aliceblue !important;
  1479. }
  1480. .filter-head input[type="date"]::-webkit-calendar-picker-indicator {
  1481. display: none;
  1482. -webkit-appearance: none;
  1483. }
  1484. .filter-head input[type="number"]::-webkit-inner-spin-button {
  1485. display: none;
  1486. -webkit-appearance: none;
  1487. }
  1488. .filter-head input[type="date"] {
  1489. padding: 0;
  1490. min-width: 90px;
  1491. }
  1492. .filter-head input[type="number"],
  1493. .filter-head input[type="date"] {
  1494. min-width: 90px;
  1495. }
  1496. .filter-head select {
  1497. padding: 0 5px;
  1498. }
  1499. tr.sep td {
  1500. padding: 0;
  1501. background: #eee;
  1502. height: 6px;
  1503. }
  1504. #practice-shipments-ready-to-print ::marker {
  1505. color: #0009;
  1506. font-size: 90%;
  1507. }
  1508. .only-print {
  1509. display: none;
  1510. }
  1511. @media print {
  1512. .only-print {
  1513. display: block;
  1514. }
  1515. th.only-print, td.only-print {
  1516. display: table-cell;
  1517. }
  1518. }
  1519. .only-screen {
  1520. display: block;
  1521. }
  1522. th.only-screen, td.only-screen {
  1523. display: table-cell;
  1524. }
  1525. @media print {
  1526. .only-screen {
  1527. display: none !important;
  1528. }
  1529. .only-pick-list, .only-order-slip {
  1530. display: none;
  1531. }
  1532. .pick-list .only-pick-list, .order-slip .only-order-slip {
  1533. display: block;
  1534. }
  1535. }
  1536. .suggest-item.patient-suggest>img {
  1537. width: 10px;
  1538. height: 10px;
  1539. opacity: 0.75;
  1540. }
  1541. .suggest-item.patient-suggest>img.claimed {
  1542. filter: grayscale(100%);
  1543. opacity: 0.5;
  1544. }
  1545. .pdf-viewer-auto {
  1546. max-height: 600px;
  1547. overflow: auto;
  1548. }
  1549. .ticket-popup .stag-popup.stag-slide.show {
  1550. position: static;
  1551. min-width: 100% !important;
  1552. max-width: unset !important;
  1553. padding-bottom: 2rem;
  1554. }
  1555. .ticket-popup .stag-popup.stag-slide.show form {
  1556. min-width: 100% !important;
  1557. max-width: unset !important;
  1558. }
  1559. .ticket-popup .stag-popup.stag-slide>form {
  1560. position: absolute;
  1561. top: 0;
  1562. height: auto !important;
  1563. overflow: hidden;
  1564. border-radius: 5px;
  1565. transition: none;
  1566. border: 1px solid #aaa;
  1567. }
  1568. .ticket-popup .stag-popup.stag-slide .stag-popup-title.sticky-top {
  1569. position: static;
  1570. }
  1571. .ticket-popup.stag-popup.stag-popup-md>.container-fluid {
  1572. max-width: 632pt;
  1573. }
  1574. .ticket-popup.stag-popup.stag-popup-md>.container-fluid>.main-row>main>.card {
  1575. border: 0;
  1576. /*background: transparent;*/
  1577. }
  1578. .ticket-popup .hide-inside-ticket-popup {
  1579. display: none !important;
  1580. }
  1581. .ticket-popup .disable-inside-ticket-popup {
  1582. pointer-events: none !important;
  1583. opacity: 0.5;
  1584. }
  1585. .fill-percent-value {
  1586. width: 60px;
  1587. }
  1588. .fill-percent-content {
  1589. width: 100px;
  1590. }
  1591. .fill-bar {
  1592. height: 20px !important;
  1593. border: 1px solid #ddd;
  1594. }
  1595. .if-in-clinic {
  1596. display: none;
  1597. }
  1598. .stag-table-container {
  1599. max-height: calc(100vh - 230px - 1rem);
  1600. width: 100%;
  1601. overflow: auto !important;
  1602. }
  1603. .stag-table-container-lg>table{
  1604. min-width: 1450px;
  1605. }
  1606. #caremonth-measurements-calendar .fc-event.m-weight {
  1607. background: #38908f;
  1608. color: #fff;
  1609. padding-left: 5px;
  1610. margin-bottom: 2px;
  1611. }
  1612. #caremonth-measurements-calendar .fc-event.m-bp {
  1613. background: #5e96ae;
  1614. color: #fff;
  1615. padding-left: 5px;
  1616. margin-bottom: 2px;
  1617. }
  1618. #caremonth-measurements-calendar .fc-event.m-weight *,
  1619. #caremonth-measurements-calendar .fc-event.m-bp *{
  1620. font-size: 10px !important;
  1621. }
  1622. #caremonth-measurements-calendar .fc-daygrid-event-dot {
  1623. display: none;
  1624. }
  1625. .pro-dashboard-inline-calendar>.ui-datepicker-inline {
  1626. width: 100%;
  1627. border: 0 !important;
  1628. }
  1629. #simpleSMSReminderComponent input[type="time"] {
  1630. max-width: 90px;
  1631. min-width: unset !important;
  1632. }