style.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830
  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-16 {
  111. font-size: 16px;
  112. }
  113. .mcp-theme-1 .font-underline {
  114. text-decoration: underline;
  115. }
  116. .mcp-theme-1 .on-hover-opaque {
  117. opacity: 0.6;
  118. }
  119. .mcp-theme-1 .on-hover-opaque:hover {
  120. opacity: 1;
  121. }
  122. .mcp-theme-1 a, .mcp-theme-1 a:link {
  123. color: rgb(13, 89, 175);
  124. }
  125. .mcp-theme-1 .btn.btn-primary {
  126. background: rgb(13, 89, 175);
  127. border-color: rgb(13, 89, 175);
  128. box-shadow: none;
  129. }
  130. .mcp-theme-1 .nav-item {
  131. margin: 0;
  132. }
  133. .mcp-theme-1 .nav-link:hover {
  134. background: #e3e3e394;
  135. }
  136. .mcp-theme-1 .nav-link.active {
  137. background: #e2e2e2;
  138. }
  139. .mcp-theme-1 .text-sm {
  140. font-size: 85%;
  141. }
  142. .mcp-theme-1 .text-sm-incl-children,
  143. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  144. font-size: 0.8rem;
  145. }
  146. .mcp-theme-1 .minutes-label {
  147. width: 40px;
  148. }
  149. .mcp-theme-1 .memo-textarea {
  150. min-width: 200px;
  151. height: 60px;
  152. }
  153. .main-row {
  154. display: flex;
  155. flex-wrap: nowrap;
  156. margin-right: -15px;
  157. margin-left: -15px;
  158. }
  159. .main-row > .sidebar {
  160. width: 180px;
  161. min-width: 180px;
  162. }
  163. .main-row > main {
  164. flex-grow: 1;
  165. }
  166. html, body {
  167. height: 100%;
  168. }
  169. body>nav.navbar {
  170. height: 55px;
  171. }
  172. .stag-content {
  173. height: calc(100% - 55px);
  174. }
  175. [moe][large] form {
  176. width: 450px;
  177. }
  178. .moe-disabled[moe] {
  179. cursor: not-allowed;
  180. }
  181. .moe-disabled[moe] [start][show] {
  182. opacity: 0.5;
  183. pointer-events: none;
  184. }
  185. .mcp-theme-1 .stag-no-wrap-td {
  186. max-width: 260px;
  187. }
  188. .mcp-theme-1 .stag-no-wrap {
  189. max-width: 250px;
  190. overflow: hidden;
  191. text-overflow: ellipsis;
  192. white-space: nowrap;
  193. display: block;
  194. }
  195. .mcp-theme-1 .form-control.form-control-sm {
  196. min-width: 200px;
  197. }
  198. .mcp-theme-1 [large] .form-control.form-control-sm {
  199. min-width: unset;
  200. }
  201. [wide] .form-control.form-control-sm {
  202. min-width: 480px;
  203. }
  204. [moe][center] [url]:not([show]) {
  205. position: fixed;
  206. top: 10%;
  207. max-height: 88%;
  208. overflow-y: auto;
  209. overflow-x: hidden;
  210. left: calc(50% - 250px);
  211. width: 500px;
  212. }
  213. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  214. min-width: unset;
  215. max-width: 100%;
  216. }
  217. .mcp-theme-1 .min-width-200px {
  218. min-width: 200px;
  219. }
  220. .mcp-theme-1 .min-width-300px {
  221. min-width: 300px;
  222. }
  223. .mcp-theme-1 .width-100px {
  224. width: 100px;
  225. min-width: unset !important;
  226. max-width: unset !important;
  227. }
  228. .mcp-theme-1 .max-width-300px {
  229. max-width: 300px;
  230. }
  231. .cancelled-item {
  232. opacity: 0.5;
  233. }
  234. .cancelled-item:not(.always-clickable) * {
  235. pointer-events: none;
  236. }
  237. .note-content {
  238. max-height: 300px;
  239. overflow-y: auto;
  240. }
  241. .note-content:not([auto-edit]) {
  242. padding: 1rem;
  243. padding-bottom: 0;
  244. cursor: pointer;
  245. position: relative;
  246. }
  247. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  248. content: '(click to change)';
  249. display: block;
  250. color: #535353;
  251. padding-bottom: 0.3rem;
  252. }
  253. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  254. border-left: 0;
  255. border-right: 0;
  256. }
  257. .mcp-theme-1 .ql-editor[contenteditable] {
  258. min-height: 100px;
  259. }
  260. .ql-container p {
  261. margin-top: 1rem;
  262. }
  263. .note-content ul {
  264. list-style: none !important;
  265. }
  266. .ql-editor ul > li::before {
  267. content: '';
  268. }
  269. .m-neg-4 {
  270. margin-left: -1.25rem;
  271. margin-right: -1.25rem;
  272. }
  273. .mcp-theme-1 .ql-toolbar .ql-formats * {
  274. font-size: 12px !important;
  275. }
  276. .mcp-theme-1 .ql-toolbar.ql-snow {
  277. padding: 3px;
  278. background: #f7f7f7;
  279. }
  280. .mcp-theme-1 .ql-snow .ql-picker {
  281. height: 22px;
  282. }
  283. .mcp-theme-1 .ql-snow.ql-toolbar button {
  284. height: 22px;
  285. width: 26px;
  286. }
  287. .rte-holder .ql-container p {
  288. margin-top: 0;
  289. margin-bottom: 0.3rem;
  290. }
  291. .note-section:not(.edit) .if-not-edit {
  292. display: block !important;
  293. }
  294. .note-section:not(.edit) div.if-not-edit {
  295. padding-left: 1rem;
  296. }
  297. .note-section:not(.edit):hover {
  298. background: #f6f9fc;
  299. cursor: pointer;
  300. }
  301. .note-section.edit .if-edit {
  302. display: block !important;
  303. }
  304. .c-pointer {
  305. cursor: pointer;
  306. }
  307. .inset-comment p {
  308. margin-bottom: 0.3rem;
  309. }
  310. .inset-comment p:last-child {
  311. margin-bottom: 0 !important;
  312. }
  313. .note-section.edit {
  314. background: #f0f8ff7d;
  315. outline: 2px solid #9de3ff;
  316. }
  317. .note-section.edit .ql-editor,
  318. .note-section.edit .btn-default {
  319. background-color: #fff !important;
  320. }
  321. /*.note-section-item-row:not(:first-child) {
  322. padding-top: 10px;
  323. border-top: 1px solid #ccc;
  324. }*/
  325. /* override med ac css */
  326. #searchResults {
  327. z-index: 100001 !important;
  328. }
  329. input.search_field, textarea.search_field {
  330. background-position: right 7px center !important;
  331. padding-right: 23px !important;
  332. }
  333. .ansList:focus, .search_field:focus {
  334. background-color: #fff !important;
  335. }
  336. @media (min-width: 1000px) {
  337. .navbar.navbar-dark {
  338. height: 55px;
  339. position: fixed;
  340. top: 0;
  341. left: 0;
  342. width: 100%;
  343. z-index: 9999;
  344. }
  345. .main-row > .sidebar {
  346. width: 180px;
  347. min-width: 180px;
  348. position: fixed;
  349. left: 0;
  350. top: 55px;
  351. z-index: 8;
  352. height: calc(100% - 55px);
  353. overflow-y: auto;
  354. }
  355. .main-row {
  356. padding-left: 180px;
  357. }
  358. .navbar.navbar-dark+[role="main"] {
  359. padding-top: 55px;
  360. }
  361. }
  362. .font-smaller {
  363. font-size: 11px !important;
  364. }
  365. .text-ellipsis {
  366. white-space: nowrap;
  367. overflow: hidden;
  368. text-overflow: ellipsis;
  369. }
  370. .outline-0 {
  371. outline: none !important;
  372. }
  373. .note-widget-item:hover {
  374. background: #eee;
  375. }
  376. .note-widget-title {
  377. background: #ccc !important;
  378. color: #333 !important;
  379. font-size: 12px !important;
  380. font-weight: bold !important;
  381. }
  382. .navbar-collapse.show {
  383. background: #1c4587;
  384. z-index: 999;
  385. padding: 0.5rem 1rem;
  386. margin: 0 -1rem;
  387. }
  388. .navbar-dark .nav-item .nav-link {
  389. font-size: 12px;
  390. white-space: nowrap;
  391. overflow: hidden;
  392. text-overflow: ellipsis;
  393. }
  394. #patient-search {
  395. min-width: 100px !important;
  396. max-width: 140px !important;
  397. }
  398. .suggestions-outer {
  399. top: calc(100% + 2px);
  400. background: #fff;
  401. width: calc(100% - 1rem);
  402. border-radius: 3px;
  403. border: 1px solid #ccc;
  404. z-index: 9999;
  405. }
  406. .suggestions-outer {
  407. top: calc(100% + 2px);
  408. background: #fff;
  409. width: calc(100% - 1rem);
  410. border-radius: 3px;
  411. border: 1px solid #ccc;
  412. z-index: 9999;
  413. max-height: 220px;
  414. overflow-y: auto;
  415. }
  416. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  417. padding: 0.25rem 0.5rem;
  418. text-decoration: none;
  419. font-size: 12px;
  420. }
  421. .suggestions-outer .no-suggest-items {
  422. color: #888;
  423. }
  424. .suggestions-outer .suggest-item.active {
  425. background: #ccc;
  426. }
  427. .suggestions-outer .suggest-item:hover {
  428. background: aliceblue;
  429. }
  430. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  431. .pro-dashboard-inline-calendar table.table-condensed {
  432. width: 100% !important;
  433. }
  434. .pro-dashboard-inline-calendar {
  435. border: 1px solid #ddd;
  436. border-radius: 3px
  437. }
  438. .pro-dashboard-inline-calendar table.table-condensed th {
  439. padding: 0.5rem 0;
  440. }
  441. .pro-dashboard-inline-calendar table.table-condensed td {
  442. padding: 0.25rem 0;
  443. }
  444. .pro-dashboard-inline-calendar table.table-condensed td[has-events] {
  445. background: #c5e4ff;
  446. }
  447. [v-cloak] {
  448. opacity: 0;
  449. }
  450. .patient-avatar {
  451. width: 50px;
  452. height: 50px;
  453. background: #ddd;
  454. display: inline-flex;
  455. align-items: center;
  456. justify-content: center;
  457. border-radius: 100%;
  458. }
  459. .large {
  460. font-size: 16px !important;
  461. }
  462. /* note templates */
  463. .note-template-container {
  464. position: absolute;
  465. z-index: 10002;
  466. background: #fff;
  467. border: 1px solid #ddd;
  468. border-radius: 3px;
  469. display: none;
  470. min-width: 200px;
  471. }
  472. .note-template-container .note-template-item {
  473. position: relative;
  474. height: 25px;
  475. }
  476. .note-template-container .note-template-item .note-template-text {
  477. border-bottom: 1px solid #eee;
  478. }
  479. .note-template-container .note-template-item .label {
  480. padding: 3px 6px;
  481. padding-right: 25px;
  482. white-space: nowrap;
  483. display: inline-flex;
  484. align-items: center;
  485. min-width: 120px;
  486. cursor: pointer;
  487. flex-grow: 1;
  488. }
  489. .note-template-container .note-template-item:hover,
  490. .note-template-container .note-template-item.selected {
  491. background: aliceblue;
  492. }
  493. .note-template-container .note-template-item .label>input[type="checkbox"] {
  494. pointer-events: none;
  495. margin: 0;
  496. margin-right: 4px;
  497. height: 11px;
  498. }
  499. .note-template-container .note-template-item:last-child label {
  500. border: 0;
  501. }
  502. .note-template-container .note-template-item .note-template-children {
  503. position: absolute;
  504. left: 100%;
  505. top: 0;
  506. background: #fff;
  507. border: 1px solid #ddd;
  508. border-radius: 3px;
  509. display: none;
  510. }
  511. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  512. display: block;
  513. }*/
  514. .note-template-container .note-template-item .has-children {
  515. position: absolute;
  516. right: 6px;
  517. top: 0;
  518. height: 25px;
  519. line-height: 25px;
  520. color: #bbb;
  521. }
  522. .note-template-container .note-template-item:hover>.has-children {
  523. color: #444;
  524. }
  525. .note-templates-underlay {
  526. position: fixed;
  527. top: 0;
  528. left: 0;
  529. height: 100%;
  530. width: 100%;
  531. background: rgba(0,0,0,0.13);
  532. display: none;
  533. z-index: 10001;
  534. }
  535. .note-template-container textarea {
  536. height: 100px;
  537. border-radius: 0;
  538. border-color: #ccc;
  539. padding: 5px 10px;
  540. display: block;
  541. }
  542. .note-template-buttons {
  543. position: absolute;
  544. bottom: 100%;
  545. right: 0;
  546. height: 27px;
  547. padding: 0 3px;
  548. background: #fff;
  549. }
  550. .note-template-buttons button {
  551. font-size: 10px;
  552. padding: 2px 5px;
  553. margin-left: 5px;
  554. border-radius: 2px;
  555. }
  556. .note-template-buttons button:first-child {
  557. margin-left: 0;
  558. }
  559. .note-template-output {
  560. position: absolute;
  561. bottom: calc(100% + 26px);
  562. left: 0;
  563. padding: 3px 6px;
  564. background: #f7f7f7;
  565. min-width: 100%;
  566. border-radius: 3px;
  567. }
  568. .note-template-output-text {
  569. }
  570. .note-template-output .note-template-output-line {
  571. font-size: 11px;
  572. width: max-content;
  573. max-width: 500px;
  574. margin: 0;
  575. }
  576. .note-template-set-chooser {
  577. height: 22px;
  578. line-height: 22px;
  579. padding: 0 0.22rem;
  580. font-size: 12px !important;
  581. }
  582. .ql-editor .note-template-output-line {
  583. white-space: normal;
  584. }
  585. [prefix="(+)"] a.plus-trigger {
  586. color: #23a923 !important;
  587. }
  588. [prefix="(-)"] a.minus-trigger {
  589. color: #a91e1e !important;
  590. }
  591. .rspace {
  592. width: 20px;
  593. display: inline-flex;
  594. text-align: center;
  595. justify-content: center;
  596. }
  597. .embed-mask {
  598. position: fixed;
  599. left: 0;
  600. top: 0;
  601. height: 100%;
  602. width: 100%;
  603. background: rgba(0, 0, 0, 0.1);
  604. z-index: 98;
  605. }
  606. .embed-section {
  607. background: #fff;
  608. z-index: 99;
  609. padding: 0;
  610. border: 1px solid #ccc;
  611. }
  612. .mask-text-addition {
  613. position: fixed;
  614. bottom: calc(50% - 60px);
  615. left: 0;
  616. width: 100%;
  617. text-align: center;
  618. font-size: 12px;
  619. z-index: 9999999;
  620. color: #000;
  621. }
  622. .note-summary p {
  623. margin-bottom: 0.25rem;
  624. }
  625. .aligned-icon {
  626. display: inline-block;
  627. width: 18px;
  628. text-align: center;
  629. }
  630. body #searchCount {
  631. display: none !important;
  632. }
  633. body .break-spaces {
  634. white-space: pre-wrap;
  635. }
  636. .stag-tooltip .stag-tooltip-content {
  637. display: none;
  638. min-width: 200px;
  639. }
  640. .stag-tooltip:hover .stag-tooltip-content {
  641. display: block;
  642. right: -10px;
  643. top: 100%;
  644. z-index: 1;
  645. }
  646. .gem-nodes .node {
  647. border: 1px solid #ddd;
  648. padding: 0.75rem;
  649. border-radius: 5px;
  650. }
  651. .gem-nodes>.node {
  652. border: 0 !important;
  653. padding-left: 0;
  654. padding-right: 0;
  655. }
  656. .gem-nodes>.node:first-child {
  657. margin-top: 0 !important;
  658. }
  659. .gem-nodes>.node>label {
  660. font-weight: bold;
  661. font-size: 14px;
  662. margin: 0;
  663. }
  664. .gem-nodes .subs .node:last-child {
  665. margin-bottom: 0 !important;
  666. }
  667. .gem-nodes>.node>.subs {
  668. padding-left: 0 !important;
  669. }
  670. .gem-nodes>.node>.subs>.node {
  671. background: #f2f2f2;
  672. }
  673. .gem-nodes>.node>.subs>.node>.subs>.node {
  674. background: #fff;
  675. }
  676. .gem-nodes .node span[field] {
  677. font-weight: bold;
  678. }
  679. body .node input[type="number"] {
  680. max-width: 70px;
  681. min-width: unset !important;
  682. }
  683. .section-edit-mask {
  684. top: 0;
  685. left: 0;
  686. width: 100%;
  687. height: 100%;
  688. }
  689. .signed-note {
  690. position: relative;
  691. pointer-events: none !important;
  692. }
  693. .signed-note::after {
  694. content: '';
  695. position: absolute;
  696. z-index: 2;
  697. cursor: not-allowed;
  698. left: 0;
  699. top: 0;
  700. width: 100%;
  701. height: 100%;
  702. background: rgba(0,0,0,0.01);
  703. }
  704. .slot-picker {
  705. padding: 4px;
  706. padding-right: 0;
  707. padding-bottom: 0;
  708. }
  709. .slot-picker.disabled {
  710. opacity: 0.5;
  711. pointer-events: none;
  712. cursor: not-allowed;
  713. }
  714. .slot-picker td {
  715. text-align: center;
  716. border: 1px solid #ddd !important;
  717. padding: 2px 5px;
  718. cursor: pointer;
  719. }
  720. .slot-picker th {
  721. border: 0 !important;
  722. }
  723. .slot-picker td:hover {
  724. background: aliceblue;
  725. }
  726. .slot-picker td.blocked {
  727. background: #ccc !important;
  728. cursor: not-allowed;
  729. }
  730. .slot-picker td.selected {
  731. background-image: linear-gradient(to bottom,#08c,#04c);
  732. background-repeat: repeat-x;
  733. color: #fff;
  734. }
  735. .pro-appointment-calendar.disabled {
  736. opacity: 0.5;
  737. pointer-events: none;
  738. cursor: not-allowed;
  739. }
  740. .pro-appointment-calendar .datepicker-inline {
  741. width: 195px;
  742. padding-left: 0;
  743. }
  744. .pro-appointment-calendar .datepicker td {
  745. height: 25px;
  746. }
  747. .datepicker td, .datepicker th {
  748. border: none !important;
  749. }
  750. .appt-form-col {
  751. width: 220px;
  752. }
  753. .appt-calendar-col {
  754. flex-grow: 1;
  755. }
  756. .appt-form td.fc-day.stag-selected {
  757. outline: 2px solid #007bff;
  758. background: #e5f2fd;
  759. }
  760. .appt-form .stag-current-appt {
  761. background: #89159cc7;
  762. color: #fff;
  763. border-color: #89159cc7;
  764. }
  765. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  766. border-color: #fff;
  767. }
  768. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  769. margin-bottom: 0;
  770. align-items: start;
  771. }
  772. .stag-calendar-header-extra {
  773. background: #cde8ff;
  774. padding: 3px 10px;
  775. margin-top: 7px;
  776. border-top-left-radius: 6px;
  777. border-top-right-radius: 6px;
  778. border: 1px solid #44a5f982;
  779. border-bottom: 0;
  780. }
  781. .stag-calendar-header-extra * {
  782. font-size: 14px !important;
  783. }
  784. /* call panel */
  785. #proCallComponent {
  786. max-height: calc(100% - 151px);
  787. }
  788. .patient-queue {
  789. height: 150px;
  790. position: absolute;
  791. left: 0;
  792. width: 100%;
  793. bottom: 0;
  794. }
  795. .queue-item {
  796. width: 100px;
  797. padding: 0.5rem;
  798. padding-bottom: 0.25rem;
  799. text-align: center;
  800. cursor: pointer;
  801. }
  802. .queue-item:hover {
  803. background: aliceblue;
  804. }
  805. .current-work-indicator {
  806. position: fixed;
  807. top: 55px;
  808. right: 0;
  809. z-index: 9999;
  810. background: #1c45879c;
  811. color: #fff;
  812. font-size: 12px;
  813. padding: 3px 8px;
  814. border-bottom-left-radius: 5px;
  815. }
  816. .w-60px {
  817. width: 60px;
  818. }