style.css 30 KB

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