style.css 20 KB

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