style.css 21 KB

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