style.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125
  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. }
  845. .queue-item {
  846. width: 100px;
  847. padding: 0.5rem;
  848. padding-bottom: 0.25rem;
  849. text-align: center;
  850. cursor: pointer;
  851. }
  852. .queue-item:hover {
  853. background: aliceblue;
  854. }
  855. .current-work-indicator {
  856. /*
  857. position: fixed;
  858. top: 55px;
  859. right: 0;
  860. z-index: 9999;
  861. */
  862. background: #305ba0;
  863. color: #fff;
  864. font-size: 12px;
  865. padding: 3px 8px;
  866. border-radius: 3px;
  867. /* border-bottom-left-radius: 5px;*/
  868. }
  869. /* stag popups */
  870. .stag-popup {
  871. position: fixed;
  872. left: 0;
  873. top: 55px;
  874. width: 100%;
  875. height: calc(100% - 55px);
  876. overflow-x: auto;
  877. z-index: 97;
  878. justify-content: center;
  879. align-items: center;
  880. display: none;
  881. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  882. padding: 2rem 0;
  883. }
  884. .stag-popup.show {
  885. display: block;
  886. }
  887. .stag-popup>form {
  888. width: 80%;
  889. background: #fff;
  890. border: 1px solid #aaa;
  891. border-radius: 5px;
  892. overflow: hidden;
  893. box-shadow: 0 0 5px #ddd;
  894. margin: 0 auto;
  895. padding: 0.75rem;
  896. }
  897. .stag-popup.wide>form {
  898. width: calc(100% - 4rem);
  899. }
  900. .stag-popup.narrow>form {
  901. max-width: 500px;
  902. }
  903. .stag-popup.stag-popup-sm>form {
  904. max-width: 500px;
  905. }
  906. .stag-popup.stag-popup-md>form {
  907. max-width: 632pt;
  908. }
  909. .stag-popup.stag-popup-right>form {
  910. margin-right: 1.5rem;
  911. margin-left: auto;
  912. }
  913. .no-scroll {
  914. /*overflow: hidden;*/
  915. }
  916. .client-rs-contents p {
  917. margin-bottom: 0.25rem;
  918. }
  919. .pro-option {
  920. position: relative;
  921. display: block;
  922. padding-left: 30px;
  923. }
  924. .pro-option.pro-option-selected {
  925. display: inline-block;
  926. padding-left: 25px;
  927. }
  928. .pro-option .pro-option-initials {
  929. position: absolute;
  930. left: 5px;
  931. top: 2px;
  932. font-size: 10px;
  933. border-radius: 100%;
  934. height: 20px;
  935. width: 20px;
  936. line-height: 20px;
  937. text-align: center;
  938. font-weight: 400;
  939. }
  940. .pro-option.pro-option-selected .pro-option-initials {
  941. left: 3px;
  942. top: 0;
  943. font-size: 10px;
  944. border-radius: 100%;
  945. height: 18px;
  946. width: 18px;
  947. line-height: 19px;
  948. text-align: center;
  949. font-weight: 400;
  950. }
  951. span.pro-selection {
  952. padding: 0 5px;
  953. height: 18px;
  954. display: inline-block;
  955. border-top-right-radius: 3px;
  956. border-bottom-right-radius: 3px;
  957. }
  958. .select2-results__option--selectable {
  959. font-size: 13px;
  960. }
  961. #calendarApp .select2-selection__choice__display,
  962. #proCalendarApp .select2-selection__choice__display {
  963. padding: 0 !important;
  964. overflow: hidden !important;
  965. }
  966. span.select2-container.select2-container--default.select2-container--open {
  967. z-index: 999999;
  968. }
  969. .fc .fc-highlight {
  970. background: rgba(188, 232, 241, 0.6) !important;
  971. }
  972. .fc .add-overlay {
  973. padding: 1px 4px;
  974. display: inline-block;
  975. font-weight: bold;
  976. }
  977. .fc .add-overlay.add-overlay-day-grid {
  978. padding: 4px;
  979. }
  980. .stag-popup .stag-popup-title {
  981. border-bottom: 1px solid #eee;
  982. padding-bottom: 0.75rem;
  983. margin-bottom: 1rem;
  984. display: flex;
  985. align-items: center;
  986. }
  987. .stag-popup .stag-popup-title>span {
  988. font-size: 17px;
  989. }
  990. .fc .other-client {
  991. box-shadow: 1px 1px 2px deeppink !important;
  992. opacity: 0.5;
  993. }
  994. .fc .other-client:hover {
  995. opacity: 0.8;
  996. }
  997. .fc .availability {
  998. box-shadow: 0 0 3px green !important;
  999. }
  1000. .fc .inactive-appointment {
  1001. opacity: 0.6;
  1002. box-shadow: 0 0 3px grey !important;
  1003. }
  1004. .fc .fc-button-primary:not(:disabled):active,
  1005. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1006. border-color: #56a767 !important;
  1007. background-color: #56a767 !important;
  1008. }
  1009. .w-150 {
  1010. width: 150px !important;
  1011. min-width: 150px !important;
  1012. }
  1013. .w-180 {
  1014. width: 180px !important;
  1015. min-width: 180px !important;
  1016. }
  1017. .guest-view button.add-shortcut {
  1018. display: none;
  1019. }
  1020. .guest-view .note-section,
  1021. .guest-view .note-section:hover {
  1022. background: #fff !important;
  1023. }
  1024. #stagPdfViewer>form {
  1025. padding: 0;
  1026. background: #eee;
  1027. }
  1028. #stagPdfViewer>form .stag-popup-title {
  1029. background: #fff;
  1030. padding: 1rem;
  1031. }
  1032. canvas.pdf-viewer-page {
  1033. max-width: 100%;
  1034. margin: 1rem auto;
  1035. display: block;
  1036. box-shadow: 0 0 2px #aaa;
  1037. }
  1038. .hidden-link-input {
  1039. /*opacity: 0;
  1040. width: 0 !important;
  1041. border: 0 !important;
  1042. padding: 0 !important;*/
  1043. position: absolute;
  1044. left: -9999px;
  1045. }
  1046. table.table-edit-sheet tbody tr td {
  1047. padding: 0;
  1048. background: #f7f7f7;
  1049. }
  1050. table.table-edit-sheet tbody tr td>input,
  1051. table.table-edit-sheet tbody tr td>select {
  1052. box-shadow: none !important;
  1053. border-radius: 0 !important;
  1054. border: 0;
  1055. background: #fefefe;
  1056. width: 100% !important;
  1057. min-width: unset !important;
  1058. border-bottom: 1px solid #dee2e6;
  1059. }
  1060. table.table-edit-sheet tbody tr td>input:focus,
  1061. table.table-edit-sheet tbody tr td>select:focus {
  1062. background: #fff;
  1063. outline: 3px solid #4b88a633;
  1064. }
  1065. table.table-edit-sheet tbody tr [contenteditable] {
  1066. background: #fff;
  1067. }
  1068. table.table-edit-sheet .ql-toolbar {
  1069. border-top: 0 !important;
  1070. }
  1071. table.table-edit-sheet .ql-container {
  1072. border-bottom: 0 !important;
  1073. }
  1074. table.table-edit-sheet .ql-editor[contenteditable] {
  1075. min-height: 60px;
  1076. }
  1077. .w-35 {
  1078. width: 35%;
  1079. }
  1080. .client-single-dashboard .hide-if-dashboard {
  1081. display: none;
  1082. }
  1083. .notes-list .hide-if-note,
  1084. .note-section .hide-if-note {
  1085. display: none;
  1086. }
  1087. .data-option-list {
  1088. position: absolute;
  1089. background: #fff;
  1090. border: 1px solid #ddd;
  1091. margin-top: -1px;
  1092. width: 100%;
  1093. z-index: 1;
  1094. display: none;
  1095. }
  1096. input[data-option-list]:focus+.data-option-list {
  1097. display: block;
  1098. }
  1099. .data-option-list>div {
  1100. cursor: pointer;
  1101. padding: 0.3rem 0.5rem;
  1102. border-bottom: 1px solid #ddd;
  1103. color: #666;
  1104. }
  1105. .data-option-list>div:last-child {
  1106. border-bottom: 0;
  1107. }
  1108. .data-option-list>div:hover {
  1109. background: aliceblue;
  1110. }