style.css 24 KB

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