style.css 25 KB

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