style.css 21 KB

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