style.css 24 KB

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