style.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  1. :root {
  2. --w-70: 70%;
  3. --primary-color: #1c4587;
  4. --bg-grey: #EDEEF1;
  5. }
  6. /* login css */
  7. .login-container {
  8. background-color: var(--bg-grey);
  9. }
  10. .login-header {
  11. font-size: 30px;
  12. font-weight: 100;
  13. }
  14. .login-form {
  15. padding: 50px;
  16. }
  17. .login-form label {
  18. font-size: 14px;
  19. color: #454859;
  20. }
  21. .login-form .form-control {
  22. height: calc(1.5em + 0.75rem + 0.3px);;
  23. }
  24. .bg-holder {
  25. background-image: url(/login-rhs.jpg);
  26. background-size: cover;
  27. }
  28. .login-container .logo {
  29. font-size: 35px;
  30. font-weight: 800;
  31. color: rgb(13, 89, 175);
  32. }
  33. .login-container small {
  34. font-size: 12px;
  35. color: #999;
  36. }
  37. /* end of login */
  38. .w-70 {
  39. width: var(--w-70);
  40. }
  41. .stag-primary-bg {
  42. background-color: var(--primary-color) !important;
  43. color: #fff;
  44. }
  45. .stag-primary-border {
  46. border-color: var(--primary-color) !important;
  47. }
  48. .navbar-brand {
  49. font-size: 25px;
  50. font-weight: 900;
  51. }
  52. .sidebar .nav-link {
  53. padding: .25rem 1rem;
  54. }
  55. .sidebar .nav-item {
  56. margin-right: 0;
  57. }
  58. .navbar-dark .nav-item .nav-link {
  59. color: #fff;
  60. }
  61. .dropdown-menu {
  62. margin-top: 7px;
  63. border-radius: 0;
  64. }
  65. .dropdown-item:not(:last-child) {
  66. border-bottom:1px solid #ddd;
  67. }
  68. main {
  69. padding:0 1rem;
  70. }
  71. /* ability to toggle the video pane (rhs) */
  72. .stag_rhs_toggle, .stag_rhs_toggle:hover {
  73. position: fixed;
  74. bottom: 0;
  75. right: 0;
  76. padding: 0.25rem 0.75rem;
  77. border-top-left-radius: 6px;
  78. background-color: var(--primary-color);
  79. color: #fff;
  80. z-index: 2;
  81. }
  82. body.stag_rhs_collapsed .v-split,
  83. body.stag_rhs_collapsed .app-right-panel {
  84. display: none !important;
  85. }
  86. .delete-column {
  87. width: 60px;
  88. }
  89. .m-negator {
  90. margin-left: -1.25rem !important;
  91. margin-right: -1.25rem !important;
  92. }
  93. .pl-3-5 {
  94. padding-left: 1.25rem !important;
  95. }
  96. .lh-24px {
  97. height: 24px;
  98. line-height: 24px;
  99. }
  100. .mcp-theme-1 *:not(i) {
  101. font-family: Verdana, sans-serif;
  102. font-size: 12px;
  103. }
  104. .mcp-theme-1 .font-size-11 {
  105. font-size: 11px;
  106. }
  107. .mcp-theme-1 .font-size-13 {
  108. font-size: 13px;
  109. }
  110. .mcp-theme-1 .font-underline {
  111. text-decoration: underline;
  112. }
  113. .mcp-theme-1 .on-hover-opaque {
  114. opacity: 0.6;
  115. }
  116. .mcp-theme-1 .on-hover-opaque:hover {
  117. opacity: 1;
  118. }
  119. .mcp-theme-1 a, .mcp-theme-1 a:link {
  120. color: rgb(13, 89, 175);
  121. }
  122. .mcp-theme-1 .btn.btn-primary {
  123. background: rgb(13, 89, 175);
  124. border-color: rgb(13, 89, 175);
  125. box-shadow: none;
  126. }
  127. .mcp-theme-1 .nav-item {
  128. margin: 0;
  129. }
  130. .mcp-theme-1 .nav-link:hover {
  131. background: #e3e3e394;
  132. }
  133. .mcp-theme-1 .nav-link.active {
  134. background: #e2e2e2;
  135. }
  136. .mcp-theme-1 .text-sm {
  137. font-size: 85%;
  138. }
  139. .mcp-theme-1 .text-sm-incl-children,
  140. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  141. font-size: 0.8rem;
  142. }
  143. .mcp-theme-1 .minutes-label {
  144. width: 40px;
  145. }
  146. .mcp-theme-1 .memo-textarea {
  147. min-width: 200px;
  148. height: 60px;
  149. }
  150. .main-row {
  151. display: flex;
  152. flex-wrap: nowrap;
  153. margin-right: -15px;
  154. margin-left: -15px;
  155. }
  156. .main-row > .sidebar {
  157. width: 180px;
  158. min-width: 180px;
  159. }
  160. .main-row > main {
  161. flex-grow: 1;
  162. }
  163. html, body {
  164. height: 100%;
  165. }
  166. body>nav.navbar {
  167. height: 55px;
  168. }
  169. .stag-content {
  170. height: calc(100% - 55px);
  171. }
  172. [moe][large] form {
  173. width: 450px;
  174. }
  175. .moe-disabled[moe] {
  176. cursor: not-allowed;
  177. }
  178. .moe-disabled[moe] [start][show] {
  179. opacity: 0.5;
  180. pointer-events: none;
  181. }
  182. .mcp-theme-1 .stag-no-wrap-td {
  183. max-width: 260px;
  184. }
  185. .mcp-theme-1 .stag-no-wrap {
  186. max-width: 250px;
  187. overflow: hidden;
  188. text-overflow: ellipsis;
  189. white-space: nowrap;
  190. display: block;
  191. }
  192. .mcp-theme-1 .form-control.form-control-sm {
  193. min-width: 200px;
  194. }
  195. .mcp-theme-1 [large] .form-control.form-control-sm {
  196. min-width: unset;
  197. }
  198. [wide] .form-control.form-control-sm {
  199. min-width: 350px;
  200. }
  201. [moe][center] [url]:not([show]) {
  202. position: fixed;
  203. top: 15%;
  204. max-height: 70%;
  205. overflow-y: auto;
  206. left: calc(50% - 250px);
  207. width: 500px;
  208. }
  209. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  210. min-width: unset;
  211. max-width: 100%;
  212. }
  213. .mcp-theme-1 .min-width-200px {
  214. min-width: 200px;
  215. }
  216. .mcp-theme-1 .min-width-300px {
  217. min-width: 300px;
  218. }
  219. .mcp-theme-1 .width-100px {
  220. width: 100px;
  221. min-width: unset !important;
  222. max-width: unset !important;
  223. }
  224. .mcp-theme-1 .max-width-300px {
  225. max-width: 300px;
  226. }
  227. .cancelled-item {
  228. opacity: 0.5;
  229. }
  230. .cancelled-item:not(.always-clickable) * {
  231. pointer-events: none;
  232. }
  233. .note-content {
  234. max-height: 300px;
  235. overflow-y: auto;
  236. }
  237. .note-content:not([auto-edit]) {
  238. padding: 1rem;
  239. padding-bottom: 0;
  240. cursor: pointer;
  241. position: relative;
  242. }
  243. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  244. content: '(click to change)';
  245. display: block;
  246. color: #535353;
  247. padding-bottom: 0.3rem;
  248. }
  249. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  250. border-left: 0;
  251. border-right: 0;
  252. }
  253. .mcp-theme-1 .ql-editor[contenteditable] {
  254. min-height: 100px;
  255. }
  256. .ql-container p {
  257. margin-top: 1rem;
  258. }
  259. .note-content ul {
  260. list-style: none !important;
  261. }
  262. .ql-editor ul > li::before {
  263. content: '';
  264. }
  265. .m-neg-4 {
  266. margin-left: -1.25rem;
  267. margin-right: -1.25rem;
  268. }
  269. .mcp-theme-1 .ql-toolbar .ql-formats * {
  270. font-size: 12px !important;
  271. }
  272. .mcp-theme-1 .ql-toolbar.ql-snow {
  273. padding: 3px;
  274. background: #f7f7f7;
  275. }
  276. .mcp-theme-1 .ql-snow .ql-picker {
  277. height: 22px;
  278. }
  279. .mcp-theme-1 .ql-snow.ql-toolbar button {
  280. height: 22px;
  281. width: 26px;
  282. }
  283. .rte-holder .ql-container p {
  284. margin-top: 0;
  285. margin-bottom: 0.3rem;
  286. }
  287. .note-section:not(.edit) .if-not-edit {
  288. display: block !important;
  289. }
  290. .note-section:not(.edit) div.if-not-edit {
  291. padding-left: 1rem;
  292. }
  293. .note-section:not(.edit):hover {
  294. background: #f6f9fc;
  295. cursor: pointer;
  296. }
  297. .note-section.edit .if-edit {
  298. display: block !important;
  299. }
  300. .c-pointer {
  301. cursor: pointer;
  302. }
  303. .inset-comment p {
  304. margin-bottom: 0.3rem;
  305. }
  306. .inset-comment p:last-child {
  307. margin-bottom: 0 !important;
  308. }
  309. .note-section.edit {
  310. background: #f0f8ff7d;
  311. outline: 2px solid #9de3ff;
  312. }
  313. .note-section.edit .ql-editor,
  314. .note-section.edit .btn-default {
  315. background-color: #fff !important;
  316. }
  317. /*.note-section-item-row:not(:first-child) {
  318. padding-top: 10px;
  319. border-top: 1px solid #ccc;
  320. }*/
  321. /* override med ac css */
  322. #searchResults {
  323. z-index: 100001 !important;
  324. }
  325. input.search_field, textarea.search_field {
  326. background-position: right 7px center !important;
  327. padding-right: 23px !important;
  328. }
  329. .ansList:focus, .search_field:focus {
  330. background-color: #fff !important;
  331. }
  332. @media (min-width: 1000px) {
  333. .navbar.navbar-dark {
  334. height: 55px;
  335. position: fixed;
  336. top: 0;
  337. left: 0;
  338. width: 100%;
  339. z-index: 9999;
  340. }
  341. .main-row > .sidebar {
  342. width: 180px;
  343. min-width: 180px;
  344. position: fixed;
  345. left: 0;
  346. top: 55px;
  347. z-index: 8;
  348. height: calc(100% - 55px);
  349. overflow-y: auto;
  350. }
  351. .main-row {
  352. padding-left: 180px;
  353. }
  354. .navbar.navbar-dark+[role="main"] {
  355. padding-top: 55px;
  356. }
  357. }
  358. .font-smaller {
  359. font-size: 11px !important;
  360. }
  361. .text-ellipsis {
  362. white-space: nowrap;
  363. overflow: hidden;
  364. text-overflow: ellipsis;
  365. }
  366. .outline-0 {
  367. outline: none !important;
  368. }
  369. .note-widget-item:hover {
  370. background: #eee;
  371. }
  372. .note-widget-title {
  373. background: #ccc !important;
  374. color: #333 !important;
  375. font-size: 12px !important;
  376. font-weight: bold !important;
  377. }
  378. .navbar-collapse.show {
  379. background: #1c4587;
  380. z-index: 999;
  381. padding: 0.5rem 1rem;
  382. margin: 0 -1rem;
  383. }
  384. .navbar-dark .nav-item .nav-link {
  385. font-size: 13px;
  386. }
  387. .suggestions-outer {
  388. top: calc(100% + 2px);
  389. background: #fff;
  390. width: calc(100% - 1rem);
  391. border-radius: 3px;
  392. border: 1px solid #ccc;
  393. z-index: 9999;
  394. }
  395. .suggestions-outer {
  396. top: calc(100% + 2px);
  397. background: #fff;
  398. width: calc(100% - 1rem);
  399. border-radius: 3px;
  400. border: 1px solid #ccc;
  401. z-index: 9999;
  402. max-height: 220px;
  403. overflow-y: auto;
  404. }
  405. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  406. padding: 0.25rem 0.5rem;
  407. text-decoration: none;
  408. font-size: 12px;
  409. }
  410. .suggestions-outer .no-suggest-items {
  411. color: #888;
  412. }
  413. .suggestions-outer .suggest-item.active {
  414. background: #ccc;
  415. }
  416. .suggestions-outer .suggest-item:hover {
  417. background: aliceblue;
  418. }
  419. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  420. .pro-dashboard-inline-calendar table.table-condensed {
  421. width: 100% !important;
  422. }
  423. .pro-dashboard-inline-calendar {
  424. border: 1px solid #ddd;
  425. border-radius: 3px
  426. }
  427. .pro-dashboard-inline-calendar table.table-condensed th {
  428. padding: 0.5rem 0;
  429. }
  430. .pro-dashboard-inline-calendar table.table-condensed td {
  431. padding: 0.25rem 0;
  432. }
  433. .pro-dashboard-inline-calendar table.table-condensed td[has-events] {
  434. background: #c5e4ff;
  435. }
  436. [v-cloak] {
  437. opacity: 0;
  438. }
  439. .patient-avatar {
  440. width: 50px;
  441. height: 50px;
  442. background: #ddd;
  443. display: inline-flex;
  444. align-items: center;
  445. justify-content: center;
  446. border-radius: 100%;
  447. }
  448. .large {
  449. font-size: 16px !important;
  450. }
  451. /* note templates */
  452. .note-template-container {
  453. position: absolute;
  454. z-index: 10002;
  455. background: #fff;
  456. border: 1px solid #ddd;
  457. border-radius: 3px;
  458. display: none;
  459. min-width: 200px;
  460. }
  461. .note-template-container .note-template-item {
  462. position: relative;
  463. height: 25px;
  464. }
  465. .note-template-container .note-template-item .note-template-text {
  466. border-bottom: 1px solid #eee;
  467. }
  468. .note-template-container .note-template-item .label {
  469. padding: 3px 6px;
  470. padding-right: 25px;
  471. white-space: nowrap;
  472. display: inline-flex;
  473. align-items: center;
  474. min-width: 120px;
  475. cursor: pointer;
  476. flex-grow: 1;
  477. }
  478. .note-template-container .note-template-item:hover,
  479. .note-template-container .note-template-item.selected {
  480. background: aliceblue;
  481. }
  482. .note-template-container .note-template-item .label>input[type="checkbox"] {
  483. pointer-events: none;
  484. margin: 0;
  485. margin-right: 4px;
  486. height: 11px;
  487. }
  488. .note-template-container .note-template-item:last-child label {
  489. border: 0;
  490. }
  491. .note-template-container .note-template-item .note-template-children {
  492. position: absolute;
  493. left: 100%;
  494. top: 0;
  495. background: #fff;
  496. border: 1px solid #ddd;
  497. border-radius: 3px;
  498. display: none;
  499. }
  500. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  501. display: block;
  502. }*/
  503. .note-template-container .note-template-item .has-children {
  504. position: absolute;
  505. right: 6px;
  506. top: 0;
  507. height: 25px;
  508. line-height: 25px;
  509. color: #bbb;
  510. }
  511. .note-template-container .note-template-item:hover>.has-children {
  512. color: #444;
  513. }
  514. .note-templates-underlay {
  515. position: fixed;
  516. top: 0;
  517. left: 0;
  518. height: 100%;
  519. width: 100%;
  520. background: rgba(0,0,0,0.13);
  521. display: none;
  522. z-index: 10001;
  523. }
  524. .note-template-container textarea {
  525. height: 100px;
  526. border-radius: 0;
  527. border-color: #ccc;
  528. padding: 5px 10px;
  529. display: block;
  530. }
  531. .note-template-buttons {
  532. position: absolute;
  533. bottom: 100%;
  534. right: 0;
  535. height: 27px;
  536. padding: 0 3px;
  537. background: #fff;
  538. }
  539. .note-template-buttons button {
  540. font-size: 10px;
  541. padding: 2px 5px;
  542. margin-left: 5px;
  543. border-radius: 2px;
  544. }
  545. .note-template-buttons button:first-child {
  546. margin-left: 0;
  547. }
  548. .note-template-output {
  549. position: absolute;
  550. bottom: calc(100% + 26px);
  551. left: 0;
  552. padding: 3px 6px;
  553. background: #f7f7f7;
  554. min-width: 100%;
  555. border-radius: 3px;
  556. }
  557. .note-template-output-text {
  558. }
  559. .note-template-output .note-template-output-line {
  560. font-size: 11px;
  561. width: max-content;
  562. max-width: 500px;
  563. margin: 0;
  564. }
  565. .note-template-set-chooser {
  566. height: 22px;
  567. line-height: 22px;
  568. padding: 0 0.22rem;
  569. font-size: 12px !important;
  570. }
  571. .ql-editor .note-template-output-line {
  572. white-space: normal;
  573. }
  574. [prefix="(+)"] a.plus-trigger {
  575. color: #23a923 !important;
  576. }
  577. [prefix="(-)"] a.minus-trigger {
  578. color: #a91e1e !important;
  579. }
  580. .rspace {
  581. width: 20px;
  582. display: inline-flex;
  583. text-align: center;
  584. justify-content: center;
  585. }
  586. .embed-mask {
  587. position: fixed;
  588. left: 0;
  589. top: 0;
  590. height: 100%;
  591. width: 100%;
  592. background: rgba(0, 0, 0, 0.1);
  593. z-index: 98;
  594. }
  595. .embed-section {
  596. background: #fff;
  597. z-index: 99;
  598. padding: 0;
  599. border: 1px solid #ccc;
  600. }
  601. .mask-text-addition {
  602. position: fixed;
  603. bottom: calc(50% - 60px);
  604. left: 0;
  605. width: 100%;
  606. text-align: center;
  607. font-size: 12px;
  608. z-index: 9999999;
  609. color: #000;
  610. }
  611. .note-summary p {
  612. margin-bottom: 0.25rem;
  613. }
  614. .aligned-icon {
  615. display: inline-block;
  616. width: 18px;
  617. text-align: center;
  618. }
  619. body #searchCount {
  620. display: none !important;
  621. }
  622. body .break-spaces {
  623. white-space: pre-wrap;
  624. }
  625. .stag-tooltip .stag-tooltip-content {
  626. display: none;
  627. min-width: 200px;
  628. }
  629. .stag-tooltip:hover .stag-tooltip-content {
  630. display: block;
  631. right: -10px;
  632. top: 100%;
  633. z-index: 1;
  634. }
  635. .gem-nodes .node {
  636. border: 1px solid #ddd;
  637. padding: 0.75rem;
  638. border-radius: 5px;
  639. }
  640. .gem-nodes>.node {
  641. border: 0 !important;
  642. padding-left: 0;
  643. padding-right: 0;
  644. }
  645. .gem-nodes>.node:first-child {
  646. margin-top: 0 !important;
  647. }
  648. .gem-nodes>.node>label {
  649. font-weight: bold;
  650. font-size: 14px;
  651. margin: 0;
  652. }
  653. .gem-nodes .subs .node:last-child {
  654. margin-bottom: 0 !important;
  655. }
  656. .gem-nodes>.node>.subs {
  657. padding-left: 0 !important;
  658. }
  659. .gem-nodes>.node>.subs>.node {
  660. background: #f2f2f2;
  661. }
  662. .gem-nodes>.node>.subs>.node>.subs>.node {
  663. background: #fff;
  664. }
  665. .gem-nodes .node span[field] {
  666. font-weight: bold;
  667. }
  668. body .node input[type="number"] {
  669. max-width: 70px;
  670. min-width: unset !important;
  671. }
  672. .section-edit-mask {
  673. top: 0;
  674. left: 0;
  675. width: 100%;
  676. height: 100%;
  677. }