style.css 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236
  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: 2.75rem;
  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: 100px;
  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 {
  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-22px {
  269. width: 22px !important;
  270. }
  271. .mcp-theme-1 .width-30px {
  272. width: 30px !important;
  273. }
  274. .mcp-theme-1 .width-50px {
  275. width: 50px !important;
  276. }
  277. .mcp-theme-1 .width-70px {
  278. width: 70px !important;
  279. }
  280. .mcp-theme-1 .min-width-140px {
  281. min-width: 140px !important;
  282. }
  283. .mcp-theme-1 .min-width-200px {
  284. min-width: 200px !important;
  285. }
  286. .mcp-theme-1 .min-width-300px {
  287. min-width: 300px;
  288. }
  289. .mcp-theme-1 .width-100px {
  290. width: 100px;
  291. min-width: unset !important;
  292. max-width: unset !important;
  293. }
  294. .mcp-theme-1 .width-100pc {
  295. width: 100% !important;
  296. min-width: unset !important;
  297. }
  298. .mcp-theme-1 .max-width-200px {
  299. max-width: 200px;
  300. }
  301. .mcp-theme-1 .max-width-300px {
  302. max-width: 300px;
  303. }
  304. .mcp-theme-1 .outline-0 {
  305. outline: none !important;
  306. box-shadow: none !important;
  307. }
  308. .cancelled-item {
  309. opacity: 0.5;
  310. }
  311. .cancelled-item:not(.always-clickable) * {
  312. pointer-events: none;
  313. }
  314. .note-content {
  315. max-height: 300px;
  316. overflow-y: auto;
  317. }
  318. .note-content:not([auto-edit]) {
  319. padding: 1rem;
  320. padding-bottom: 0;
  321. cursor: pointer;
  322. position: relative;
  323. }
  324. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  325. content: '(click to change)';
  326. display: block;
  327. color: #535353;
  328. padding-bottom: 0.3rem;
  329. }
  330. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  331. border-left: 0;
  332. border-right: 0;
  333. }
  334. .mcp-theme-1 .ql-editor[contenteditable] {
  335. min-height: 100px;
  336. }
  337. .ql-container p {
  338. margin-top: 1rem;
  339. }
  340. .note-content ul {
  341. list-style: none !important;
  342. }
  343. .ql-editor ul > li::before {
  344. content: '';
  345. }
  346. .m-neg-4 {
  347. margin-left: -1.25rem;
  348. margin-right: -1.25rem;
  349. }
  350. .mcp-theme-1 .ql-toolbar .ql-formats * {
  351. font-size: 12px !important;
  352. }
  353. .mcp-theme-1 .ql-toolbar.ql-snow {
  354. padding: 3px;
  355. background: #f7f7f7;
  356. }
  357. .mcp-theme-1 .ql-snow .ql-picker {
  358. height: 22px;
  359. }
  360. .mcp-theme-1 .ql-snow.ql-toolbar button {
  361. height: 22px;
  362. width: 26px;
  363. }
  364. .rte-holder .ql-container p {
  365. margin-top: 0;
  366. margin-bottom: 0.3rem;
  367. }
  368. .note-section:not(.edit) .if-not-edit {
  369. display: block !important;
  370. }
  371. .note-section:not(.edit) div.if-not-edit {
  372. padding-left: 1rem;
  373. }
  374. .note-section:not(.edit):hover {
  375. background: #f6f9fc;
  376. cursor: pointer;
  377. }
  378. .note-signed-by-hcp .note-section:not(.edit):hover {
  379. background: #f6f9fc;
  380. cursor: auto;
  381. }
  382. .note-section.edit .if-edit {
  383. display: block !important;
  384. }
  385. .c-pointer {
  386. cursor: pointer;
  387. }
  388. .events-none {
  389. pointer-events: none;
  390. }
  391. .blocking-overlay {
  392. opacity: 0 !important;
  393. cursor: default;
  394. }
  395. .inset-comment p {
  396. margin-bottom: 0.3rem;
  397. }
  398. .inset-comment p:last-child {
  399. margin-bottom: 0 !important;
  400. }
  401. .note-section.edit {
  402. background: #f0f8ff7d;
  403. outline: 2px solid #9de3ff;
  404. }
  405. .note-section.edit .ql-editor,
  406. .note-section.edit .btn-default {
  407. background-color: #fff !important;
  408. }
  409. /*.note-section-item-row:not(:first-child) {
  410. padding-top: 10px;
  411. border-top: 1px solid #ccc;
  412. }*/
  413. /* override med ac css */
  414. #searchResults {
  415. z-index: 100001 !important;
  416. }
  417. input.search_field, textarea.search_field {
  418. background-position: right 7px center !important;
  419. padding-right: 23px !important;
  420. }
  421. .ansList:focus, .search_field:focus {
  422. background-color: #fff !important;
  423. }
  424. @media (min-width: 1000px) {
  425. .navbar.navbar-dark {
  426. height: 55px;
  427. position: fixed;
  428. top: 0;
  429. left: 0;
  430. width: 100%;
  431. z-index: 9999;
  432. }
  433. .main-row > .sidebar {
  434. width: 180px;
  435. min-width: 180px;
  436. position: fixed;
  437. left: 0;
  438. top: 55px;
  439. z-index: 8;
  440. height: calc(100% - 55px);
  441. overflow-y: overlay;
  442. }
  443. .main-row {
  444. padding-left: 180px;
  445. }
  446. .navbar.navbar-dark+[role="main"] {
  447. padding-top: 55px;
  448. }
  449. }
  450. .font-smaller {
  451. font-size: 11px !important;
  452. }
  453. .text-ellipsis {
  454. white-space: nowrap;
  455. overflow: hidden;
  456. text-overflow: ellipsis;
  457. }
  458. .outline-0 {
  459. outline: none !important;
  460. }
  461. .note-widget-item:hover {
  462. background: #eee;
  463. }
  464. .note-widget-title {
  465. background: #ccc !important;
  466. color: #333 !important;
  467. font-size: 12px !important;
  468. font-weight: bold !important;
  469. }
  470. .navbar-collapse.show {
  471. background: #1c4587;
  472. z-index: 999;
  473. padding: 0.5rem 1rem;
  474. margin: 0 -1rem;
  475. }
  476. .navbar-dark .nav-item .nav-link {
  477. font-size: 12px;
  478. white-space: nowrap;
  479. overflow: hidden;
  480. text-overflow: ellipsis;
  481. }
  482. #patient-search {
  483. min-width: 90px !important;
  484. max-width: 140px !important;
  485. }
  486. .suggestions-outer {
  487. top: calc(100% + 2px);
  488. background: #fff;
  489. border-radius: 3px;
  490. border: 1px solid #ccc;
  491. z-index: 9999;
  492. }
  493. .suggestions-outer {
  494. top: calc(100% + 2px);
  495. background: #fff;
  496. border-radius: 3px;
  497. border: 1px solid #ccc;
  498. z-index: 9999;
  499. max-height: 220px;
  500. overflow-y: auto;
  501. min-width: calc(100% - 0.5rem);
  502. right: 0.5rem;
  503. }
  504. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  505. padding: 0.25rem 0.5rem;
  506. text-decoration: none;
  507. font-size: 12px;
  508. }
  509. .suggestions-outer .no-suggest-items {
  510. color: #888;
  511. }
  512. .suggestions-outer .suggest-item.active {
  513. background: #ccc;
  514. }
  515. .suggestions-outer .suggest-item:hover {
  516. background: aliceblue;
  517. }
  518. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  519. .pro-dashboard-inline-calendar table.table-condensed {
  520. width: 100% !important;
  521. }
  522. .pro-dashboard-inline-calendar {
  523. border: 1px solid #ddd;
  524. border-radius: 3px
  525. }
  526. .pro-dashboard-inline-calendar table.table-condensed th {
  527. padding: 0.5rem 0;
  528. }
  529. .pro-dashboard-inline-calendar table.table-condensed td {
  530. padding: 0.25rem 0;
  531. }
  532. .pro-dashboard-inline-calendar table.table-condensed td[has-events] {
  533. background: #c5e4ff;
  534. }
  535. [v-cloak] {
  536. opacity: 0;
  537. }
  538. .patient-avatar {
  539. width: 50px;
  540. height: 50px;
  541. background: #ddd;
  542. display: inline-flex;
  543. align-items: center;
  544. justify-content: center;
  545. border-radius: 100%;
  546. }
  547. .large {
  548. font-size: 16px !important;
  549. }
  550. /* note templates */
  551. .note-template-container {
  552. position: absolute;
  553. z-index: 10002;
  554. background: #fff;
  555. border: 1px solid #ddd;
  556. border-radius: 3px;
  557. display: none;
  558. min-width: 200px;
  559. }
  560. .note-template-container .note-template-item {
  561. position: relative;
  562. height: 25px;
  563. }
  564. .note-template-container .note-template-item .note-template-text {
  565. border-bottom: 1px solid #eee;
  566. }
  567. .note-template-container .note-template-item .label {
  568. padding: 3px 6px;
  569. padding-right: 25px;
  570. white-space: nowrap;
  571. display: inline-flex;
  572. align-items: center;
  573. min-width: 120px;
  574. cursor: pointer;
  575. flex-grow: 1;
  576. }
  577. .note-template-container .note-template-item:hover,
  578. .note-template-container .note-template-item.selected {
  579. background: aliceblue;
  580. }
  581. .note-template-container .note-template-item .label>input[type="checkbox"] {
  582. pointer-events: none;
  583. margin: 0;
  584. margin-right: 4px;
  585. height: 11px;
  586. }
  587. .note-template-container .note-template-item:last-child label {
  588. border: 0;
  589. }
  590. .note-template-container .note-template-item .note-template-children {
  591. position: absolute;
  592. left: 100%;
  593. top: 0;
  594. background: #fff;
  595. border: 1px solid #ddd;
  596. border-radius: 3px;
  597. display: none;
  598. }
  599. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  600. display: block;
  601. }*/
  602. .note-template-container .note-template-item .has-children {
  603. position: absolute;
  604. right: 6px;
  605. top: 0;
  606. height: 25px;
  607. line-height: 25px;
  608. color: #bbb;
  609. }
  610. .note-template-container .note-template-item:hover>.has-children {
  611. color: #444;
  612. }
  613. .note-templates-underlay {
  614. position: fixed;
  615. top: 0;
  616. left: 0;
  617. height: 100%;
  618. width: 100%;
  619. background: rgba(0,0,0,0.13);
  620. display: none;
  621. z-index: 10001;
  622. }
  623. .note-template-container textarea {
  624. height: 100px;
  625. border-radius: 0;
  626. border-color: #ccc;
  627. padding: 5px 10px;
  628. display: block;
  629. }
  630. .note-template-buttons {
  631. position: absolute;
  632. bottom: 100%;
  633. right: 0;
  634. height: 27px;
  635. padding: 0 3px;
  636. background: #fff;
  637. }
  638. .note-template-buttons button {
  639. font-size: 10px;
  640. padding: 2px 5px;
  641. margin-left: 5px;
  642. border-radius: 2px;
  643. }
  644. .note-template-buttons button:first-child {
  645. margin-left: 0;
  646. }
  647. .note-template-output {
  648. position: absolute;
  649. bottom: calc(100% + 26px);
  650. left: 0;
  651. padding: 3px 6px;
  652. background: #f7f7f7;
  653. min-width: 100%;
  654. border-radius: 3px;
  655. }
  656. .note-template-output-text {
  657. }
  658. .note-template-output .note-template-output-line {
  659. font-size: 11px;
  660. width: max-content;
  661. max-width: 500px;
  662. margin: 0;
  663. }
  664. .note-template-set-chooser {
  665. height: 22px;
  666. line-height: 22px;
  667. padding: 0 0.22rem;
  668. font-size: 12px !important;
  669. }
  670. .ql-editor .note-template-output-line {
  671. white-space: normal;
  672. }
  673. [prefix="(+)"] a.plus-trigger {
  674. color: #23a923 !important;
  675. }
  676. [prefix="(-)"] a.minus-trigger {
  677. color: #a91e1e !important;
  678. }
  679. .rspace {
  680. width: 20px;
  681. display: inline-flex;
  682. text-align: center;
  683. justify-content: center;
  684. }
  685. .embed-mask {
  686. position: fixed;
  687. left: 0;
  688. top: 0;
  689. height: 100%;
  690. width: 100%;
  691. background: rgba(0, 0, 0, 0.1);
  692. z-index: 98;
  693. }
  694. .embed-section {
  695. background: #fff;
  696. z-index: 99;
  697. padding: 0;
  698. border: 1px solid #ccc;
  699. }
  700. .mask-text-addition {
  701. position: fixed;
  702. bottom: calc(50% - 60px);
  703. left: 0;
  704. width: 100%;
  705. text-align: center;
  706. font-size: 12px;
  707. z-index: 9999999;
  708. color: #000;
  709. }
  710. .note-summary p {
  711. margin-bottom: 0.25rem;
  712. }
  713. .aligned-icon {
  714. display: inline-block;
  715. width: 18px;
  716. text-align: center;
  717. }
  718. body #searchCount {
  719. display: none !important;
  720. }
  721. body .break-spaces {
  722. white-space: pre-wrap;
  723. }
  724. .stag-tooltip .stag-tooltip-content {
  725. display: none;
  726. min-width: 200px;
  727. }
  728. .stag-tooltip:hover .stag-tooltip-content {
  729. display: block;
  730. right: -10px;
  731. top: 100%;
  732. z-index: 1;
  733. }
  734. .gem-nodes .node {
  735. border: 1px solid #ddd;
  736. padding: 0.75rem;
  737. border-radius: 5px;
  738. }
  739. .gem-nodes>.node {
  740. border: 0 !important;
  741. padding-left: 0;
  742. padding-right: 0;
  743. }
  744. .gem-nodes>.node:first-child {
  745. margin-top: 0 !important;
  746. }
  747. .gem-nodes>.node>label {
  748. font-weight: bold;
  749. font-size: 14px;
  750. margin: 0;
  751. }
  752. .gem-nodes .subs .node:last-child {
  753. margin-bottom: 0 !important;
  754. }
  755. .gem-nodes>.node>.subs {
  756. padding-left: 0 !important;
  757. }
  758. .gem-nodes>.node>.subs>.node {
  759. background: #f2f2f2;
  760. }
  761. .gem-nodes>.node>.subs>.node>.subs>.node {
  762. background: #fff;
  763. }
  764. .gem-nodes .node span[field] {
  765. font-weight: bold;
  766. }
  767. body .node input[type="number"] {
  768. max-width: 70px;
  769. min-width: unset !important;
  770. }
  771. .section-edit-mask {
  772. top: 0;
  773. left: 0;
  774. width: 100%;
  775. height: 100%;
  776. }
  777. .signed-note {
  778. position: relative;
  779. pointer-events: none !important;
  780. }
  781. .signed-note::after {
  782. content: '';
  783. position: absolute;
  784. z-index: 2;
  785. cursor: not-allowed;
  786. left: 0;
  787. top: 0;
  788. width: 100%;
  789. height: 100%;
  790. background: rgba(0,0,0,0.01);
  791. }
  792. .slot-picker {
  793. padding: 4px;
  794. padding-right: 0;
  795. padding-bottom: 0;
  796. }
  797. .slot-picker.disabled {
  798. opacity: 0.5;
  799. pointer-events: none;
  800. cursor: not-allowed;
  801. }
  802. .slot-picker td {
  803. text-align: center;
  804. border: 1px solid #ddd !important;
  805. padding: 2px 5px;
  806. cursor: pointer;
  807. }
  808. .slot-picker th {
  809. border: 0 !important;
  810. }
  811. .slot-picker td:hover {
  812. background: aliceblue;
  813. }
  814. .slot-picker td.blocked {
  815. background: #ccc !important;
  816. cursor: not-allowed;
  817. }
  818. .slot-picker td.selected {
  819. background-image: linear-gradient(to bottom,#08c,#04c);
  820. background-repeat: repeat-x;
  821. color: #fff;
  822. }
  823. .pro-appointment-calendar.disabled {
  824. opacity: 0.5;
  825. pointer-events: none;
  826. cursor: not-allowed;
  827. }
  828. .pro-appointment-calendar .datepicker-inline {
  829. width: 195px;
  830. padding-left: 0;
  831. }
  832. .pro-appointment-calendar .datepicker td {
  833. height: 25px;
  834. }
  835. .datepicker td, .datepicker th {
  836. border: none !important;
  837. }
  838. .appt-form-col {
  839. width: 220px;
  840. }
  841. .appt-calendar-col {
  842. flex-grow: 1;
  843. }
  844. .appt-form td.fc-day.stag-selected {
  845. outline: 2px solid #007bff;
  846. background: #e5f2fd;
  847. }
  848. .appt-form .stag-current-appt {
  849. background: #89159cc7;
  850. color: #fff;
  851. border-color: #89159cc7;
  852. }
  853. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  854. border-color: #fff;
  855. }
  856. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  857. margin-bottom: 0.5rem;
  858. /*align-items: start;*/
  859. }
  860. .stag-calendar-header-extra {
  861. background: #cde8ff;
  862. padding: 3px 10px;
  863. margin-top: 7px;
  864. border-top-left-radius: 6px;
  865. border-top-right-radius: 6px;
  866. border: 1px solid #44a5f982;
  867. border-bottom: 0;
  868. }
  869. .stag-calendar-header-extra * {
  870. font-size: 14px !important;
  871. }
  872. /* call panel */
  873. #proCallComponent {
  874. padding-bottom: 150px;
  875. }
  876. .patient-queue {
  877. display: flex;
  878. flex-direction: column;
  879. position: fixed;
  880. left: 0;
  881. width: 100%;
  882. bottom: 0;
  883. z-index: 4;
  884. }
  885. .queue-item {
  886. width: 100px;
  887. padding: 0.5rem;
  888. padding-bottom: 0.25rem;
  889. text-align: center;
  890. cursor: pointer;
  891. }
  892. .queue-item:hover {
  893. background: aliceblue;
  894. }
  895. .current-work-indicator {
  896. /*
  897. position: fixed;
  898. top: 55px;
  899. right: 0;
  900. z-index: 9999;
  901. */
  902. background: #305ba0;
  903. color: #fff;
  904. font-size: 12px;
  905. padding: 3px 6px;
  906. border-radius: 3px;
  907. /* border-bottom-left-radius: 5px;*/
  908. white-space: nowrap;
  909. text-overflow: ellipsis;
  910. max-width: 100px;
  911. overflow: hidden;
  912. }
  913. /* stag popups */
  914. .stag-popup {
  915. position: fixed;
  916. left: 0;
  917. top: 55px;
  918. width: 100%;
  919. height: calc(100% - 55px);
  920. overflow-x: auto;
  921. z-index: 97;
  922. justify-content: center;
  923. align-items: center;
  924. display: none;
  925. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  926. padding: 2rem 0;
  927. }
  928. .stag-popup.show {
  929. display: block;
  930. }
  931. .stag-popup>form {
  932. width: 80%;
  933. background: #fff;
  934. border: 1px solid #aaa;
  935. border-radius: 5px;
  936. overflow: hidden;
  937. box-shadow: 0 0 5px #ddd;
  938. margin: 0 auto;
  939. padding: 0.75rem;
  940. }
  941. .stag-popup.wide>form {
  942. width: calc(100% - 4rem);
  943. }
  944. .stag-popup.narrow>form {
  945. max-width: 500px;
  946. }
  947. .stag-popup.stag-popup-sm>form {
  948. max-width: 500px;
  949. }
  950. .stag-popup.stag-popup-md>form {
  951. max-width: 632pt;
  952. }
  953. .stag-popup.stag-popup-right>form {
  954. margin-right: 1.5rem;
  955. margin-left: auto;
  956. }
  957. .no-scroll {
  958. /*overflow: hidden;*/
  959. }
  960. .client-rs-contents p {
  961. margin-bottom: 0.25rem;
  962. }
  963. .pro-option {
  964. position: relative;
  965. display: block;
  966. padding-left: 30px;
  967. }
  968. .pro-option.pro-option-selected {
  969. display: inline-block;
  970. padding-left: 25px;
  971. }
  972. .pro-option .pro-option-initials {
  973. position: absolute;
  974. left: 5px;
  975. top: 2px;
  976. font-size: 10px;
  977. border-radius: 100%;
  978. height: 20px;
  979. width: 20px;
  980. line-height: 20px;
  981. text-align: center;
  982. font-weight: 400;
  983. }
  984. .pro-option.pro-option-selected .pro-option-initials {
  985. left: 3px;
  986. top: 0;
  987. font-size: 10px;
  988. border-radius: 100%;
  989. height: 18px;
  990. width: 18px;
  991. line-height: 19px;
  992. text-align: center;
  993. font-weight: 400;
  994. }
  995. span.pro-selection {
  996. padding: 0 5px;
  997. height: 18px;
  998. display: inline-block;
  999. border-top-right-radius: 3px;
  1000. border-bottom-right-radius: 3px;
  1001. }
  1002. .select2-results__option--selectable {
  1003. font-size: 13px;
  1004. }
  1005. #calendarApp .select2-selection__choice__display,
  1006. #proCalendarApp .select2-selection__choice__display {
  1007. padding: 0 !important;
  1008. overflow: hidden !important;
  1009. }
  1010. span.select2-container.select2-container--default.select2-container--open {
  1011. z-index: 999999;
  1012. }
  1013. .fc .fc-highlight {
  1014. background: rgba(188, 232, 241, 0.6) !important;
  1015. }
  1016. .fc .add-overlay {
  1017. padding: 1px 4px;
  1018. display: inline-block;
  1019. font-weight: bold;
  1020. }
  1021. .fc .add-overlay.add-overlay-day-grid {
  1022. padding: 4px;
  1023. }
  1024. .stag-popup .stag-popup-title {
  1025. border-bottom: 1px solid #eee;
  1026. padding-bottom: 0.75rem;
  1027. margin-bottom: 1rem;
  1028. display: flex;
  1029. align-items: center;
  1030. }
  1031. .stag-popup .stag-popup-title>span {
  1032. font-size: 17px;
  1033. }
  1034. .fc .other-client {
  1035. box-shadow: 1px 1px 2px deeppink !important;
  1036. opacity: 0.5;
  1037. }
  1038. .fc .other-client:hover {
  1039. opacity: 0.8;
  1040. }
  1041. .fc .availability {
  1042. box-shadow: 0 0 3px green !important;
  1043. }
  1044. .fc .inactive-appointment {
  1045. opacity: 0.6;
  1046. box-shadow: 0 0 3px grey !important;
  1047. }
  1048. .fc .fc-button-primary:not(:disabled):active,
  1049. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1050. border-color: #56a767 !important;
  1051. background-color: #56a767 !important;
  1052. }
  1053. .w-150 {
  1054. width: 150px !important;
  1055. min-width: 150px !important;
  1056. }
  1057. .w-180 {
  1058. width: 180px !important;
  1059. min-width: 180px !important;
  1060. }
  1061. .guest-view button.add-shortcut {
  1062. display: none;
  1063. }
  1064. .guest-view .note-section,
  1065. .guest-view .note-section:hover {
  1066. background: #fff !important;
  1067. }
  1068. #stagPdfViewer>form {
  1069. padding: 0;
  1070. background: #eee;
  1071. }
  1072. #stagPdfViewer>form .stag-popup-title {
  1073. background: #fff;
  1074. padding: 1rem;
  1075. }
  1076. canvas.pdf-viewer-page {
  1077. max-width: 100%;
  1078. margin: 1rem auto;
  1079. display: block;
  1080. box-shadow: 0 0 2px #aaa;
  1081. }
  1082. .hidden-link-input {
  1083. /*opacity: 0;
  1084. width: 0 !important;
  1085. border: 0 !important;
  1086. padding: 0 !important;*/
  1087. position: absolute;
  1088. left: -9999px;
  1089. }
  1090. table.table-edit-sheet tbody tr td {
  1091. padding: 0;
  1092. background: #f7f7f7;
  1093. }
  1094. table.table-edit-sheet tbody tr td>input,
  1095. table.table-edit-sheet tbody tr td>select {
  1096. box-shadow: none !important;
  1097. border-radius: 0 !important;
  1098. border: 0;
  1099. background: #fefefe;
  1100. width: 100% !important;
  1101. min-width: unset !important;
  1102. border-bottom: 1px solid #dee2e6;
  1103. }
  1104. table.table-edit-sheet tbody tr td input[type="text"],
  1105. table.table-edit-sheet tbody tr td select,
  1106. table.table-edit-sheet tbody tr td textarea {
  1107. box-shadow: none !important;
  1108. border-radius: 0 !important;
  1109. border: 0;
  1110. background: #fefefe;
  1111. min-width: unset !important;
  1112. border-bottom: 1px solid #dee2e6;
  1113. }
  1114. table.table-edit-sheet tbody tr td>input:focus,
  1115. table.table-edit-sheet tbody tr td>select:focus {
  1116. background: #fff;
  1117. outline: 3px solid #4b88a633;
  1118. }
  1119. table.table-edit-sheet tbody tr [contenteditable] {
  1120. background: #fff;
  1121. }
  1122. table.table-edit-sheet .ql-toolbar {
  1123. border-top: 0 !important;
  1124. }
  1125. table.table-edit-sheet .ql-container {
  1126. border-bottom: 0 !important;
  1127. }
  1128. table.table-edit-sheet .ql-editor[contenteditable] {
  1129. min-height: 90px;
  1130. }
  1131. .w-35 {
  1132. width: 35%;
  1133. }
  1134. .client-single-dashboard .hide-if-dashboard {
  1135. display: none;
  1136. }
  1137. .notes-list .hide-if-note,
  1138. .note-section .hide-if-note {
  1139. display: none;
  1140. }
  1141. .data-option-list {
  1142. position: absolute;
  1143. background: #fff;
  1144. border: 2px solid #ddd;
  1145. margin-top: -1px;
  1146. width: 100%;
  1147. z-index: 1;
  1148. display: none;
  1149. max-width: 250px;
  1150. box-shadow: 0 0 3px #ddd;
  1151. border-top: 0;
  1152. }
  1153. .data-option-list>div {
  1154. cursor: pointer;
  1155. padding: 0.2rem 0.5rem;
  1156. border-bottom: 1px solid #ddd;
  1157. color: #666;
  1158. font-size: 90%;
  1159. }
  1160. .data-option-list>div:last-child {
  1161. border-bottom: 0;
  1162. }
  1163. .data-option-list>div:hover {
  1164. background: aliceblue;
  1165. }
  1166. .measurement-item:not(:last-child) {
  1167. border-bottom: 1px solid #e7e7e7;
  1168. }
  1169. .assessment-detail-template>span {
  1170. margin: 0 !important;
  1171. padding: 0 !important;
  1172. border: 0 !important;
  1173. margin-left: -0.5rem !important;
  1174. position: static !important;
  1175. }
  1176. .assessment-detail-template>span>a {
  1177. display: none;
  1178. }
  1179. button.add-shortcut,
  1180. button.note-templates-trigger-assessment {
  1181. outline: none !important;
  1182. box-shadow: none !important;
  1183. }
  1184. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1185. pointer-events: none !important;
  1186. }
  1187. .claim-line:last-child td {
  1188. padding-bottom: 1.3rem;
  1189. }
  1190. .in-table-markup p:last-of-type {
  1191. margin-bottom: 0;
  1192. }
  1193. .suggestions-outer.pharmacy-suggestions {
  1194. left: 1rem;
  1195. width: calc(100% - 2rem);
  1196. }
  1197. .flowsheets-table td {
  1198. padding: 0 10px;
  1199. height: 38px;
  1200. max-height: 38px;
  1201. min-height: 38px;
  1202. vertical-align: middle !important;
  1203. }
  1204. .flowsheets-table .expand {
  1205. display: none;
  1206. }
  1207. .flowsheets-table .collapse {
  1208. display: block;
  1209. }
  1210. .flowsheets-table .collapsed .expand {
  1211. display: block;
  1212. }
  1213. .flowsheets-table .collapsed .collapse {
  1214. display: none;
  1215. }
  1216. .flowsheets-table tr {
  1217. }
  1218. .flowsheets-table .collapsed tr:not(:first-child) {
  1219. display: none;
  1220. }