style.css 23 KB

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