style.css 21 KB

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