style.css 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484
  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: 2rem;
  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: 120px;
  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-40px {
  275. width: 40px !important;
  276. }
  277. .mcp-theme-1 .width-50px {
  278. width: 50px !important;
  279. }
  280. .mcp-theme-1 .width-70px {
  281. width: 70px !important;
  282. }
  283. .mcp-theme-1 .width-90px {
  284. width: 90px !important;
  285. }
  286. .mcp-theme-1 .min-width-140px {
  287. min-width: 140px !important;
  288. }
  289. .mcp-theme-1 .min-width-200px {
  290. min-width: 200px !important;
  291. }
  292. .mcp-theme-1 .min-width-300px {
  293. min-width: 300px;
  294. }
  295. .mcp-theme-1 .min-width-500px {
  296. min-width: 500px !important;
  297. }
  298. .mcp-theme-1 .width-100px {
  299. width: 100px;
  300. min-width: unset !important;
  301. max-width: unset !important;
  302. }
  303. .mcp-theme-1 .width-100pc {
  304. width: 100% !important;
  305. min-width: unset !important;
  306. }
  307. .mcp-theme-1 .max-width-200px {
  308. max-width: 200px;
  309. }
  310. .mcp-theme-1 .max-width-300px {
  311. max-width: 300px;
  312. }
  313. .mcp-theme-1 .outline-0 {
  314. outline: none !important;
  315. box-shadow: none !important;
  316. }
  317. .cancelled-item {
  318. opacity: 0.5;
  319. }
  320. .cancelled-item:not(.always-clickable) * {
  321. pointer-events: none;
  322. }
  323. .note-content {
  324. max-height: 300px;
  325. overflow-y: auto;
  326. }
  327. .note-content:not([auto-edit]) {
  328. padding: 1rem;
  329. padding-bottom: 0;
  330. cursor: pointer;
  331. position: relative;
  332. }
  333. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  334. content: '(click to change)';
  335. display: block;
  336. color: #535353;
  337. padding-bottom: 0.3rem;
  338. }
  339. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  340. border-left: 0;
  341. border-right: 0;
  342. }
  343. .mcp-theme-1 .ql-editor[contenteditable] {
  344. min-height: 100px;
  345. }
  346. .ql-container p {
  347. margin-top: 1rem;
  348. }
  349. .note-content ul {
  350. list-style: none !important;
  351. }
  352. .ql-editor ul > li::before {
  353. content: '';
  354. }
  355. .m-neg-4 {
  356. margin-left: -1.25rem;
  357. margin-right: -1.25rem;
  358. }
  359. .mcp-theme-1 .ql-toolbar .ql-formats * {
  360. font-size: 12px !important;
  361. }
  362. .mcp-theme-1 .ql-toolbar.ql-snow {
  363. padding: 3px;
  364. background: #f7f7f7;
  365. }
  366. .mcp-theme-1 .ql-snow .ql-picker {
  367. height: 22px;
  368. }
  369. .mcp-theme-1 .ql-snow.ql-toolbar button {
  370. height: 22px;
  371. width: 26px;
  372. }
  373. .rte-holder .ql-container p {
  374. margin-top: 0;
  375. margin-bottom: 0.3rem;
  376. }
  377. .note-section:not(.edit) .if-not-edit {
  378. display: block !important;
  379. }
  380. .note-section:not(.edit) div.if-not-edit {
  381. padding-left: 1rem;
  382. }
  383. .note-section:not(.edit):hover {
  384. background: #f6f9fc;
  385. cursor: pointer;
  386. }
  387. .note-signed-by-hcp .note-section:not(.edit):hover {
  388. background: #f6f9fc;
  389. cursor: auto;
  390. }
  391. .note-section.edit .if-edit {
  392. display: block !important;
  393. }
  394. .c-pointer {
  395. cursor: pointer;
  396. }
  397. .events-none {
  398. pointer-events: none;
  399. }
  400. .blocking-overlay {
  401. opacity: 0 !important;
  402. cursor: default;
  403. }
  404. .inset-comment p {
  405. margin-bottom: 0.3rem;
  406. }
  407. .inset-comment p:last-child {
  408. margin-bottom: 0 !important;
  409. }
  410. .note-section.edit {
  411. background: #f0f8ff7d;
  412. outline: 2px solid #9de3ff;
  413. }
  414. .note-section.edit .ql-editor,
  415. .note-section.edit .btn-default {
  416. background-color: #fff !important;
  417. }
  418. /*.note-section-item-row:not(:first-child) {
  419. padding-top: 10px;
  420. border-top: 1px solid #ccc;
  421. }*/
  422. /* override med ac css */
  423. #searchResults {
  424. z-index: 100001 !important;
  425. }
  426. input.search_field, textarea.search_field {
  427. background-position: right 7px center !important;
  428. padding-right: 23px !important;
  429. }
  430. .ansList:focus, .search_field:focus {
  431. background-color: #fff !important;
  432. }
  433. @media (min-width: 1000px) {
  434. .navbar.navbar-dark {
  435. height: 55px;
  436. position: fixed;
  437. top: 0;
  438. left: 0;
  439. width: 100%;
  440. z-index: 9999;
  441. }
  442. .main-row > .sidebar {
  443. width: 180px;
  444. min-width: 180px;
  445. position: fixed;
  446. left: 0;
  447. top: 55px;
  448. z-index: 8;
  449. height: calc(100% - 55px);
  450. overflow-y: overlay;
  451. }
  452. .main-row {
  453. padding-left: 180px;
  454. }
  455. .navbar.navbar-dark+[role="main"] {
  456. padding-top: 55px;
  457. }
  458. }
  459. .font-smaller {
  460. font-size: 11px !important;
  461. }
  462. .text-ellipsis {
  463. white-space: nowrap;
  464. overflow: hidden;
  465. text-overflow: ellipsis;
  466. }
  467. .outline-0 {
  468. outline: none !important;
  469. }
  470. .note-widget-item:hover {
  471. background: #eee;
  472. }
  473. .note-widget-title {
  474. background: #ccc !important;
  475. color: #333 !important;
  476. font-size: 12px !important;
  477. font-weight: bold !important;
  478. }
  479. .navbar-collapse.show {
  480. background: #1c4587;
  481. z-index: 999;
  482. padding: 0.5rem 1rem;
  483. margin: 0 -1rem;
  484. }
  485. .navbar-dark .nav-item .nav-link {
  486. font-size: 12px;
  487. white-space: nowrap;
  488. overflow: hidden;
  489. text-overflow: ellipsis;
  490. }
  491. #patient-search {
  492. min-width: 90px !important;
  493. max-width: 140px !important;
  494. }
  495. .suggestions-outer {
  496. top: calc(100% + 2px);
  497. background: #fff;
  498. border-radius: 3px;
  499. border: 1px solid #ccc;
  500. z-index: 9999;
  501. }
  502. .suggestions-outer {
  503. top: calc(100% + 2px);
  504. background: #fff;
  505. border-radius: 3px;
  506. border: 1px solid #ccc;
  507. z-index: 9999;
  508. max-height: 220px;
  509. overflow-y: auto;
  510. min-width: calc(100% - 0.5rem);
  511. right: 0.5rem;
  512. }
  513. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  514. padding: 0.25rem 0.5rem;
  515. text-decoration: none;
  516. font-size: 12px;
  517. }
  518. .suggestions-outer .no-suggest-items {
  519. color: #888;
  520. }
  521. .suggestions-outer .suggest-item.active {
  522. background: #ccc;
  523. }
  524. .suggestions-outer .suggest-item:hover {
  525. background: aliceblue;
  526. }
  527. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  528. .pro-dashboard-inline-calendar table.table-condensed {
  529. width: 100% !important;
  530. }
  531. .pro-dashboard-inline-calendar {
  532. border: 1px solid #ddd;
  533. border-radius: 3px
  534. }
  535. .pro-dashboard-inline-calendar table.table-condensed th {
  536. padding: 0.5rem 0;
  537. }
  538. .pro-dashboard-inline-calendar table.table-condensed td {
  539. padding: 0.25rem 0;
  540. }
  541. .pro-dashboard-inline-calendar table.table-condensed td[has-events] {
  542. background: #c5e4ff;
  543. }
  544. [v-cloak] {
  545. opacity: 0;
  546. }
  547. .patient-avatar {
  548. width: 50px;
  549. height: 50px;
  550. background: #ddd;
  551. display: inline-flex;
  552. align-items: center;
  553. justify-content: center;
  554. border-radius: 100%;
  555. }
  556. .large {
  557. font-size: 16px !important;
  558. }
  559. /* note templates */
  560. .note-template-container {
  561. position: absolute;
  562. z-index: 10002;
  563. background: #fff;
  564. border: 1px solid #ddd;
  565. border-radius: 3px;
  566. display: none;
  567. min-width: 200px;
  568. }
  569. .note-template-container .note-template-item {
  570. position: relative;
  571. height: 25px;
  572. }
  573. .note-template-container .note-template-item .note-template-text {
  574. border-bottom: 1px solid #eee;
  575. }
  576. .note-template-container .note-template-item .label {
  577. padding: 3px 6px;
  578. padding-right: 25px;
  579. white-space: nowrap;
  580. display: inline-flex;
  581. align-items: center;
  582. min-width: 120px;
  583. cursor: pointer;
  584. flex-grow: 1;
  585. }
  586. .note-template-container .note-template-item:hover,
  587. .note-template-container .note-template-item.selected {
  588. background: aliceblue;
  589. }
  590. .note-template-container .note-template-item .label>input[type="checkbox"] {
  591. pointer-events: none;
  592. margin: 0;
  593. margin-right: 4px;
  594. height: 11px;
  595. }
  596. .note-template-container .note-template-item:last-child label {
  597. border: 0;
  598. }
  599. .note-template-container .note-template-item .note-template-children {
  600. position: absolute;
  601. left: 100%;
  602. top: 0;
  603. background: #fff;
  604. border: 1px solid #ddd;
  605. border-radius: 3px;
  606. display: none;
  607. }
  608. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  609. display: block;
  610. }*/
  611. .note-template-container .note-template-item .has-children {
  612. position: absolute;
  613. right: 6px;
  614. top: 0;
  615. height: 25px;
  616. line-height: 25px;
  617. color: #bbb;
  618. }
  619. .note-template-container .note-template-item:hover>.has-children {
  620. color: #444;
  621. }
  622. .note-templates-underlay {
  623. position: fixed;
  624. top: 0;
  625. left: 0;
  626. height: 100%;
  627. width: 100%;
  628. background: rgba(0,0,0,0.13);
  629. display: none;
  630. z-index: 10001;
  631. }
  632. .note-template-container textarea {
  633. height: 100px;
  634. border-radius: 0;
  635. border-color: #ccc;
  636. padding: 5px 10px;
  637. display: block;
  638. }
  639. .note-template-buttons {
  640. position: absolute;
  641. bottom: 100%;
  642. right: 0;
  643. height: 27px;
  644. padding: 0 3px;
  645. background: #fff;
  646. }
  647. .note-template-buttons button {
  648. font-size: 10px;
  649. padding: 2px 5px;
  650. margin-left: 5px;
  651. border-radius: 2px;
  652. }
  653. .note-template-buttons button:first-child {
  654. margin-left: 0;
  655. }
  656. .note-template-output {
  657. position: absolute;
  658. bottom: calc(100% + 26px);
  659. left: 0;
  660. padding: 3px 6px;
  661. background: #f7f7f7;
  662. min-width: 100%;
  663. border-radius: 3px;
  664. }
  665. .note-template-output-text {
  666. }
  667. .note-template-output .note-template-output-line {
  668. font-size: 11px;
  669. width: max-content;
  670. max-width: 500px;
  671. margin: 0;
  672. }
  673. .note-template-set-chooser {
  674. height: 22px;
  675. line-height: 22px;
  676. padding: 0 0.22rem;
  677. font-size: 12px !important;
  678. }
  679. .ql-editor .note-template-output-line {
  680. white-space: normal;
  681. }
  682. [prefix="(+)"] a.plus-trigger {
  683. color: #23a923 !important;
  684. }
  685. [prefix="(-)"] a.minus-trigger {
  686. color: #a91e1e !important;
  687. }
  688. .rspace {
  689. width: 20px;
  690. display: inline-flex;
  691. text-align: center;
  692. justify-content: center;
  693. }
  694. .embed-mask {
  695. position: fixed;
  696. left: 0;
  697. top: 0;
  698. height: 100%;
  699. width: 100%;
  700. background: rgba(0, 0, 0, 0.1);
  701. z-index: 98;
  702. }
  703. .embed-section {
  704. background: #fff;
  705. z-index: 99;
  706. padding: 0;
  707. border: 1px solid #ccc;
  708. }
  709. .mask-text-addition {
  710. position: fixed;
  711. bottom: calc(50% - 60px);
  712. left: 0;
  713. width: 100%;
  714. text-align: center;
  715. font-size: 12px;
  716. z-index: 9999999;
  717. color: #000;
  718. }
  719. .note-summary p {
  720. margin-bottom: 0.25rem;
  721. }
  722. .aligned-icon {
  723. display: inline-block;
  724. width: 18px;
  725. text-align: center;
  726. }
  727. body #searchCount {
  728. display: none !important;
  729. }
  730. body .break-spaces {
  731. white-space: pre-wrap;
  732. }
  733. .stag-tooltip .stag-tooltip-content {
  734. display: none;
  735. min-width: 200px;
  736. }
  737. .stag-tooltip:hover .stag-tooltip-content {
  738. display: block;
  739. right: -10px;
  740. top: 100%;
  741. z-index: 1;
  742. }
  743. .gem-nodes .node {
  744. border: 1px solid #ddd;
  745. padding: 0.75rem;
  746. border-radius: 5px;
  747. }
  748. .gem-nodes>.node {
  749. border: 0 !important;
  750. padding-left: 0;
  751. padding-right: 0;
  752. }
  753. .gem-nodes>.node:first-child {
  754. margin-top: 0 !important;
  755. }
  756. .gem-nodes>.node>label {
  757. font-weight: bold;
  758. font-size: 14px;
  759. margin: 0;
  760. }
  761. .gem-nodes .subs .node:last-child {
  762. margin-bottom: 0 !important;
  763. }
  764. .gem-nodes>.node>.subs {
  765. padding-left: 0 !important;
  766. }
  767. .gem-nodes>.node>.subs>.node {
  768. background: #f2f2f2;
  769. }
  770. .gem-nodes>.node>.subs>.node>.subs>.node {
  771. background: #fff;
  772. }
  773. .gem-nodes .node span[field] {
  774. font-weight: bold;
  775. }
  776. body .node input[type="number"] {
  777. max-width: 70px;
  778. min-width: unset !important;
  779. }
  780. .section-edit-mask {
  781. top: 0;
  782. left: 0;
  783. width: 100%;
  784. height: 100%;
  785. }
  786. .signed-note {
  787. position: relative;
  788. pointer-events: none !important;
  789. }
  790. .signed-note::after {
  791. content: '';
  792. position: absolute;
  793. z-index: 2;
  794. cursor: not-allowed;
  795. left: 0;
  796. top: 0;
  797. width: 100%;
  798. height: 100%;
  799. background: rgba(0,0,0,0.01);
  800. }
  801. .slot-picker {
  802. padding: 4px;
  803. padding-right: 0;
  804. padding-bottom: 0;
  805. }
  806. .slot-picker.disabled {
  807. opacity: 0.5;
  808. pointer-events: none;
  809. cursor: not-allowed;
  810. }
  811. .slot-picker td {
  812. text-align: center;
  813. border: 1px solid #ddd !important;
  814. padding: 2px 5px;
  815. cursor: pointer;
  816. }
  817. .slot-picker th {
  818. border: 0 !important;
  819. }
  820. .slot-picker td:hover {
  821. background: aliceblue;
  822. }
  823. .slot-picker td.blocked {
  824. background: #ccc !important;
  825. cursor: not-allowed;
  826. }
  827. .slot-picker td.selected {
  828. background-image: linear-gradient(to bottom,#08c,#04c);
  829. background-repeat: repeat-x;
  830. color: #fff;
  831. }
  832. .pro-appointment-calendar.disabled {
  833. opacity: 0.5;
  834. pointer-events: none;
  835. cursor: not-allowed;
  836. }
  837. .pro-appointment-calendar .datepicker-inline {
  838. width: 195px;
  839. padding-left: 0;
  840. }
  841. .pro-appointment-calendar .datepicker td {
  842. height: 25px;
  843. }
  844. .datepicker td, .datepicker th {
  845. border: none !important;
  846. }
  847. .appt-form-col {
  848. width: 220px;
  849. }
  850. .appt-calendar-col {
  851. flex-grow: 1;
  852. }
  853. .appt-form td.fc-day.stag-selected {
  854. outline: 2px solid #007bff;
  855. background: #e5f2fd;
  856. }
  857. .appt-form .stag-current-appt {
  858. background: #89159cc7;
  859. color: #fff;
  860. border-color: #89159cc7;
  861. }
  862. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  863. border-color: #fff;
  864. }
  865. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  866. margin-bottom: 0.5rem;
  867. /*align-items: start;*/
  868. }
  869. .stag-calendar-header-extra {
  870. background: #cde8ff;
  871. padding: 3px 10px;
  872. margin-top: 7px;
  873. border-top-left-radius: 6px;
  874. border-top-right-radius: 6px;
  875. border: 1px solid #44a5f982;
  876. border-bottom: 0;
  877. }
  878. .stag-calendar-header-extra * {
  879. font-size: 14px !important;
  880. }
  881. /* call panel */
  882. #proCallComponent {
  883. padding-bottom: 150px;
  884. }
  885. .patient-queue {
  886. display: flex;
  887. flex-direction: column;
  888. position: fixed;
  889. left: 0;
  890. width: 100%;
  891. bottom: 0;
  892. z-index: 4;
  893. }
  894. .queue-item {
  895. width: 100px;
  896. padding: 0.5rem;
  897. padding-bottom: 0.25rem;
  898. text-align: center;
  899. cursor: pointer;
  900. }
  901. .queue-item:hover {
  902. background: aliceblue;
  903. }
  904. .current-work-indicator {
  905. /*
  906. position: fixed;
  907. top: 55px;
  908. right: 0;
  909. z-index: 9999;
  910. */
  911. background: #305ba0;
  912. color: #fff;
  913. font-size: 12px;
  914. padding: 3px 6px;
  915. border-radius: 3px;
  916. /* border-bottom-left-radius: 5px;*/
  917. white-space: nowrap;
  918. text-overflow: ellipsis;
  919. max-width: 100px;
  920. overflow: hidden;
  921. }
  922. /* stag popups */
  923. .stag-popup {
  924. position: fixed;
  925. left: 0;
  926. top: 55px;
  927. width: 100%;
  928. height: calc(100% - 55px);
  929. overflow-x: auto;
  930. z-index: 97;
  931. justify-content: center;
  932. align-items: center;
  933. display: none;
  934. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  935. padding: 2rem 0;
  936. }
  937. .stag-popup.show {
  938. display: block;
  939. }
  940. .stag-popup>form {
  941. width: 80%;
  942. background: #fff;
  943. border: 1px solid #aaa;
  944. border-radius: 5px;
  945. overflow: hidden;
  946. box-shadow: 0 0 5px #ddd;
  947. margin: 0 auto;
  948. padding: 0.75rem;
  949. }
  950. .stag-popup.wide>form {
  951. width: calc(100% - 4rem);
  952. }
  953. .stag-popup.narrow>form {
  954. max-width: 500px;
  955. }
  956. .stag-popup.stag-popup-sm>form {
  957. max-width: 500px;
  958. }
  959. .stag-popup.stag-popup-md>form {
  960. max-width: 632pt;
  961. }
  962. .stag-popup.stag-popup-right>form {
  963. margin-right: 1.5rem;
  964. margin-left: auto;
  965. }
  966. /* slide-in stag-popups */
  967. .stag-popup.stag-slide {
  968. display: block;
  969. background: center center no-repeat scroll rgba(0, 0, 0, 0);
  970. pointer-events: none;
  971. overflow: hidden;
  972. }
  973. .stag-popup.stag-slide.show {
  974. pointer-events: all;
  975. }
  976. .stag-popup.stag-slide>form {
  977. position: absolute;
  978. top: 0;
  979. height: 100% !important;
  980. overflow-y: auto;
  981. border-radius: 0;
  982. border-top: 0;
  983. border-bottom: 0;
  984. border-right: 0;
  985. transition: right 0.3s ease;
  986. width: 0;
  987. }
  988. .stag-popup.stag-slide.stag-popup-sm>form {
  989. width: 500px;
  990. right: -500px;
  991. }
  992. .stag-popup.stag-slide.stag-popup-md>form {
  993. width: 632pt;
  994. right: -632pt;
  995. }
  996. .stag-popup.stag-slide.show>form {
  997. right: 0;
  998. }
  999. /* asana style ticket management */
  1000. .pro-initials {
  1001. border-radius: 100%;
  1002. height: 24px;
  1003. width: 24px;
  1004. min-height: 24px;
  1005. min-width: 24px;
  1006. max-height: 24px;
  1007. max-width: 24px;
  1008. text-align: center;
  1009. font-weight: 400;
  1010. display: inline-flex;
  1011. align-items: center;
  1012. justify-content: center;
  1013. background-color: #6457f9;
  1014. color: #fff;
  1015. font-size: 10px !important;
  1016. opacity: 0.85;
  1017. }
  1018. .pro-initials.pro-initials-sm {
  1019. height: 18px;
  1020. width: 18px;
  1021. min-height: 18px;
  1022. min-width: 18px;
  1023. max-height: 18px;
  1024. max-width: 18px;
  1025. font-size: 9px !important;
  1026. }
  1027. .pro-initials:hover {
  1028. opacity: 1;
  1029. }
  1030. .ticket-section {
  1031. }
  1032. .ticket-section.ticket-section-collapsed {
  1033. max-height: 0;
  1034. overflow: hidden;
  1035. }
  1036. .tickets-table tbody tr {
  1037. transition: background-color 0.2s ease;
  1038. }
  1039. .tickets-table tbody tr:hover {
  1040. background-color: rgba(0,0,0,.04);
  1041. }
  1042. .tickets-table tbody tr.current {
  1043. background-color: aliceblue;
  1044. }
  1045. .stag-slide input.form-control:not(:focus) {
  1046. border-color: transparent;
  1047. background-color: transparent;
  1048. cursor: pointer;
  1049. font-weight: bold;
  1050. padding-left: 0;
  1051. }
  1052. .stag-slide input.form-control {
  1053. box-shadow: none !important;
  1054. }
  1055. .stag-slide input.form-control:not(:focus):not([readonly]):hover {
  1056. text-decoration: underline;
  1057. }
  1058. .stag-slide input.form-control[readonly] {
  1059. opacity: 0.75;
  1060. }
  1061. .stag-slide ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  1062. color: #bbb !important;
  1063. font-weight: normal !important;
  1064. opacity: 1; /* Firefox */
  1065. }
  1066. .stag-slide :-ms-input-placeholder { /* Internet Explorer 10-11 */
  1067. color: #bbb !important;
  1068. font-weight: normal !important;
  1069. }
  1070. .stag-slide ::-ms-input-placeholder { /* Microsoft Edge */
  1071. color: #bbb !important;
  1072. font-weight: normal !important;
  1073. }
  1074. .stag-slide .text-success {
  1075. color: #00bf9c !important;
  1076. }
  1077. .stag-slide .btn-success,
  1078. .stag-slide .btn-success:hover {
  1079. background: #00bf9c;
  1080. border-color: #00bf9c;
  1081. }
  1082. .stag-slide .comment-input-outer {
  1083. position: sticky;
  1084. bottom: 0;
  1085. }
  1086. .stag-slide .txt-comment {
  1087. padding-bottom: calc(23px + 1rem);
  1088. height: calc(23px + 1rem);
  1089. transition: height 0.3s ease;
  1090. overflow: hidden;
  1091. }
  1092. .stag-slide .txt-comment:focus {
  1093. height: 120px;
  1094. overflow: auto;
  1095. }
  1096. .stag-slide .txt-comment:focus~.btn-save-comment {
  1097. opacity: 1;
  1098. }
  1099. .stag-slide .btn-save-comment {
  1100. position: absolute;
  1101. bottom: 0.5rem;
  1102. right: 0.5rem;
  1103. height: 28px;
  1104. line-height: 28px;
  1105. padding: 0 1rem;
  1106. transition: opacity 0.3s ease;
  1107. opacity: 0.5;
  1108. }
  1109. .stag-slide input[type="text"]:invalid {
  1110. background-color: #f8ecec;
  1111. padding-left: 0.5rem;
  1112. }
  1113. .stag-slide input[type="text"]:focus:invalid {
  1114. background: #fff;
  1115. border-color: #e24848;
  1116. box-shadow: 0 0 2px #c10707 !important;
  1117. }
  1118. .erx-line-item:nth-child(2n+1) {
  1119. background: #f0f8ffbb
  1120. }
  1121. .no-scroll {
  1122. overflow: hidden;
  1123. }
  1124. .client-rs-contents p {
  1125. margin-bottom: 0.25rem;
  1126. }
  1127. .pro-option {
  1128. position: relative;
  1129. display: block;
  1130. padding-left: 30px;
  1131. }
  1132. .pro-option.pro-option-selected {
  1133. display: inline-block;
  1134. padding-left: 25px;
  1135. }
  1136. .pro-option .pro-option-initials {
  1137. position: absolute;
  1138. left: 5px;
  1139. top: 2px;
  1140. font-size: 10px;
  1141. border-radius: 100%;
  1142. height: 20px;
  1143. width: 20px;
  1144. line-height: 20px;
  1145. text-align: center;
  1146. font-weight: 400;
  1147. }
  1148. .pro-option.pro-option-selected .pro-option-initials {
  1149. left: 3px;
  1150. top: 0;
  1151. font-size: 10px;
  1152. border-radius: 100%;
  1153. height: 18px;
  1154. width: 18px;
  1155. line-height: 19px;
  1156. text-align: center;
  1157. font-weight: 400;
  1158. }
  1159. span.pro-selection {
  1160. padding: 0 5px;
  1161. height: 18px;
  1162. display: inline-block;
  1163. border-top-right-radius: 3px;
  1164. border-bottom-right-radius: 3px;
  1165. }
  1166. .select2-results__option--selectable {
  1167. font-size: 13px;
  1168. }
  1169. #calendarApp .select2-selection__choice__display,
  1170. #proCalendarApp .select2-selection__choice__display {
  1171. padding: 0 !important;
  1172. overflow: hidden !important;
  1173. }
  1174. span.select2-container.select2-container--default.select2-container--open {
  1175. z-index: 999999;
  1176. }
  1177. .fc .fc-highlight {
  1178. background: rgba(188, 232, 241, 0.6) !important;
  1179. }
  1180. .fc .add-overlay {
  1181. padding: 1px 4px;
  1182. display: inline-block;
  1183. font-weight: bold;
  1184. }
  1185. .fc .add-overlay.add-overlay-day-grid {
  1186. padding: 4px;
  1187. }
  1188. .stag-popup .stag-popup-title {
  1189. border-bottom: 1px solid #eee;
  1190. padding-bottom: 0.75rem;
  1191. margin-bottom: 1rem;
  1192. display: flex;
  1193. align-items: center;
  1194. }
  1195. .stag-popup .stag-popup-title>span {
  1196. font-size: 17px;
  1197. }
  1198. .fc .other-client {
  1199. box-shadow: 1px 1px 2px deeppink !important;
  1200. opacity: 0.5;
  1201. }
  1202. .fc .other-client:hover {
  1203. opacity: 0.8;
  1204. }
  1205. .fc .availability {
  1206. box-shadow: 0 0 3px green !important;
  1207. }
  1208. .fc .inactive-appointment {
  1209. opacity: 0.6;
  1210. box-shadow: 0 0 3px grey !important;
  1211. }
  1212. .fc .fc-button-primary:not(:disabled):active,
  1213. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1214. border-color: #56a767 !important;
  1215. background-color: #56a767 !important;
  1216. }
  1217. .w-150 {
  1218. width: 150px !important;
  1219. min-width: 150px !important;
  1220. }
  1221. .w-180 {
  1222. width: 180px !important;
  1223. min-width: 180px !important;
  1224. }
  1225. .guest-view button.add-shortcut {
  1226. display: none;
  1227. }
  1228. .guest-view .note-section,
  1229. .guest-view .note-section:hover {
  1230. background: #fff !important;
  1231. }
  1232. #stagPdfViewer>form {
  1233. padding: 0;
  1234. background: #eee;
  1235. }
  1236. #stagPdfViewer>form .stag-popup-title {
  1237. background: #fff;
  1238. padding: 1rem;
  1239. }
  1240. canvas.pdf-viewer-page {
  1241. max-width: 100%;
  1242. margin: 1rem auto;
  1243. display: block;
  1244. box-shadow: 0 0 2px #aaa;
  1245. }
  1246. .hidden-link-input {
  1247. /*opacity: 0;
  1248. width: 0 !important;
  1249. border: 0 !important;
  1250. padding: 0 !important;*/
  1251. position: absolute;
  1252. left: -9999px;
  1253. }
  1254. table.table-edit-sheet tbody tr td {
  1255. padding: 0;
  1256. background: #f7f7f7;
  1257. }
  1258. table.table-edit-sheet tbody tr td>input,
  1259. table.table-edit-sheet tbody tr td>select {
  1260. box-shadow: none !important;
  1261. border-radius: 0 !important;
  1262. border: 0;
  1263. background: #fefefe;
  1264. width: 100% !important;
  1265. min-width: unset !important;
  1266. border-bottom: 1px solid #dee2e6;
  1267. }
  1268. table.table-edit-sheet tbody tr td input[type="text"],
  1269. table.table-edit-sheet tbody tr td select,
  1270. table.table-edit-sheet tbody tr td textarea {
  1271. box-shadow: none !important;
  1272. border-radius: 0 !important;
  1273. border: 0;
  1274. background: #fefefe;
  1275. min-width: unset !important;
  1276. border-bottom: 1px solid #dee2e6;
  1277. }
  1278. table.table-edit-sheet tbody tr td>input:focus,
  1279. table.table-edit-sheet tbody tr td>select:focus {
  1280. background: #fff;
  1281. outline: 3px solid #4b88a633;
  1282. }
  1283. table.table-edit-sheet tbody tr [contenteditable] {
  1284. background: #fff;
  1285. }
  1286. table.table-edit-sheet .ql-toolbar {
  1287. border-top: 0 !important;
  1288. }
  1289. table.table-edit-sheet .ql-container {
  1290. border-bottom: 0 !important;
  1291. }
  1292. table.table-edit-sheet .ql-editor[contenteditable] {
  1293. min-height: 90px;
  1294. }
  1295. .w-35 {
  1296. width: 35%;
  1297. }
  1298. .client-single-dashboard .hide-if-dashboard {
  1299. display: none;
  1300. }
  1301. .notes-list .hide-if-note,
  1302. .note-section .hide-if-note {
  1303. display: none;
  1304. }
  1305. .data-option-list {
  1306. position: absolute;
  1307. background: #fff;
  1308. border: 2px solid #ddd;
  1309. margin-top: -1px;
  1310. width: 100%;
  1311. z-index: 1;
  1312. display: none;
  1313. max-width: 250px;
  1314. box-shadow: 0 0 3px #ddd;
  1315. border-top: 0;
  1316. }
  1317. .data-option-list>div {
  1318. cursor: pointer;
  1319. padding: 0.2rem 0.5rem;
  1320. border-bottom: 1px solid #ddd;
  1321. color: #666;
  1322. font-size: 90%;
  1323. }
  1324. .data-option-list>div:last-child {
  1325. border-bottom: 0;
  1326. }
  1327. .data-option-list>div:hover {
  1328. background: aliceblue;
  1329. }
  1330. .measurement-item:not(:last-child) {
  1331. border-bottom: 1px solid #e7e7e7;
  1332. }
  1333. .assessment-detail-template>span {
  1334. margin: 0 !important;
  1335. padding: 0 !important;
  1336. border: 0 !important;
  1337. margin-left: -0.5rem !important;
  1338. position: static !important;
  1339. }
  1340. .assessment-detail-template>span>a {
  1341. display: none;
  1342. }
  1343. button.add-shortcut,
  1344. button.note-templates-trigger-assessment {
  1345. outline: none !important;
  1346. box-shadow: none !important;
  1347. }
  1348. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1349. pointer-events: none !important;
  1350. }
  1351. .claim-line:last-child td {
  1352. padding-bottom: 1.3rem;
  1353. }
  1354. .in-table-markup p:last-of-type {
  1355. margin-bottom: 0;
  1356. }
  1357. .suggestions-outer.pharmacy-suggestions {
  1358. left: 1rem;
  1359. width: calc(100% - 2rem);
  1360. }
  1361. .flowsheets-table td {
  1362. padding: 0 10px;
  1363. height: 38px;
  1364. max-height: 38px;
  1365. min-height: 38px;
  1366. vertical-align: middle !important;
  1367. }
  1368. .flowsheets-table .expand {
  1369. display: none;
  1370. }
  1371. .flowsheets-table .collapse {
  1372. display: block;
  1373. }
  1374. .flowsheets-table .collapsed .expand {
  1375. display: block;
  1376. }
  1377. .flowsheets-table .collapsed .collapse {
  1378. display: none;
  1379. }
  1380. .flowsheets-table tr {
  1381. }
  1382. .flowsheets-table .collapsed tr:not(:first-child) {
  1383. display: none;
  1384. }
  1385. .col-2-button {
  1386. width: 88px;
  1387. text-align: left;
  1388. }
  1389. /* vitals graph */
  1390. .stag-chart {
  1391. min-height: 300px;
  1392. }
  1393. .stag-chart .safe-region>rect {
  1394. fill: green;
  1395. }
  1396. .stag-chart .safe-region>text {
  1397. fill: #888;
  1398. transform: translateY(-18px);
  1399. }
  1400. /* appt. confirmation history */
  1401. .appointment-confirmation-history-trigger .appointment-confirmation-history {
  1402. position: absolute;
  1403. width: 300px;
  1404. right: 0;
  1405. background: #fff;
  1406. opacity: 0;
  1407. padding: 0 0.75rem;
  1408. padding-bottom: 0.5rem;
  1409. box-shadow: 0 0 2px #999;
  1410. pointer-events: none;
  1411. transition: opacity 0.3s ease;
  1412. z-index: 2;
  1413. }
  1414. .appointment-confirmation-history-trigger:hover .appointment-confirmation-history {
  1415. opacity: 1;
  1416. pointer-events: all;
  1417. }
  1418. .on-hover-text-reveal {
  1419. white-space: nowrap;
  1420. overflow: hidden;
  1421. text-overflow: ellipsis;
  1422. }
  1423. /*.on-hover-text-reveal:hover {
  1424. white-space: normal;
  1425. overflow: unset;
  1426. text-overflow: unset;
  1427. }*/
  1428. .collapsible-tbody.collapsed {
  1429. display: none;
  1430. }
  1431. #send-fax-pdf-preview {
  1432. max-height: 350px;
  1433. overflow: auto;
  1434. box-shadow: 0 0 2px #ccc;
  1435. }
  1436. canvas.pdf-viewer-page.pdf-preview-page {
  1437. margin: 0.5rem auto;
  1438. }
  1439. .back-to-admin-button {
  1440. background: transparent;
  1441. border: 0;
  1442. padding: 0;
  1443. color: rgb(13, 89, 175);
  1444. }
  1445. .back-to-admin-button:hover {
  1446. text-decoration: underline;
  1447. }
  1448. .bg-aliceblue {
  1449. background: aliceblue !important;
  1450. }
  1451. .filter-head input[type="date"]::-webkit-calendar-picker-indicator {
  1452. display: none;
  1453. -webkit-appearance: none;
  1454. }
  1455. .filter-head input[type="number"]::-webkit-inner-spin-button {
  1456. display: none;
  1457. -webkit-appearance: none;
  1458. }
  1459. .filter-head input[type="date"] {
  1460. padding: 0;
  1461. min-width: 90px;
  1462. }