style.css 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315
  1. :root {
  2. --w-70: 70%;
  3. --primary-color: #1c4587;
  4. --bg-grey: #EDEEF1;
  5. }
  6. .border-lighter {
  7. border: 1px solid #f3f3f3;
  8. }
  9. /* login css */
  10. .login-container {
  11. background-color: var(--bg-grey);
  12. }
  13. .login-header {
  14. font-size: 30px;
  15. font-weight: 100;
  16. }
  17. .login-form {
  18. padding: 50px;
  19. }
  20. .login-form label {
  21. font-size: 14px;
  22. color: #454859;
  23. }
  24. .login-form .form-control {
  25. height: calc(1.5em + 0.75rem + 0.3px);;
  26. }
  27. .bg-holder {
  28. background-image: url(/login-rhs.jpg);
  29. background-size: cover;
  30. }
  31. .login-container .logo {
  32. font-size: 35px;
  33. font-weight: 800;
  34. color: rgb(13, 89, 175);
  35. }
  36. .login-container small {
  37. font-size: 12px;
  38. color: #999;
  39. }
  40. /* end of login */
  41. .w-70 {
  42. width: var(--w-70);
  43. }
  44. .text-warning-mellow {
  45. color: #d8a714!important;
  46. }
  47. .bg-warning-mellow {
  48. background-color: #ffc10755 !important;
  49. }
  50. .text-link {
  51. color: rgb(13, 89, 175) !important;
  52. }
  53. .stag-primary-bg {
  54. background-color: var(--primary-color) !important;
  55. color: #fff;
  56. }
  57. .stag-primary-border {
  58. border-color: var(--primary-color) !important;
  59. }
  60. .navbar-brand {
  61. font-size: 16px !important;
  62. font-weight: 600;
  63. }
  64. .navbar-brand>img {
  65. max-width: 160px;
  66. }
  67. .sidebar .nav-link {
  68. padding: .25rem 1rem;
  69. }
  70. .sidebar .nav-item {
  71. margin-right: 0;
  72. }
  73. .sidebar .nav-item .nav-child-list {
  74. list-style: none;
  75. }
  76. .sidebar .nav-item .nav-child-list .nav-item .nav-link {
  77. padding-left: 2rem;
  78. }
  79. .sidebar .if-not-collapsed, .sidebar .if-collapsed {
  80. display: none;
  81. }
  82. .sidebar .nav-item.nav-child-collapsed .if-collapsed {
  83. display: block;
  84. }
  85. .sidebar .nav-item:not(.nav-child-collapsed) .if-not-collapsed {
  86. display: block;
  87. }
  88. .sidebar .nav-item.nav-child-collapsed .nav-child-list {
  89. display: none;
  90. }
  91. .navbar-dark .nav-item .nav-link {
  92. color: #fff;
  93. }
  94. .dropdown-menu {
  95. margin-top: 7px;
  96. border-radius: 0;
  97. min-width: 120px;
  98. }
  99. .dropdown-item:not(:last-child) {
  100. border-bottom:1px solid #ddd;
  101. }
  102. body>.navbar .dropdown-menu {
  103. margin-top: -3px;
  104. }
  105. main {
  106. padding:0 1rem;
  107. }
  108. /* ability to toggle the video pane (rhs) */
  109. .stag_rhs_toggle, .stag_rhs_toggle:hover {
  110. position: fixed;
  111. bottom: 0;
  112. right: 0;
  113. padding: 0.25rem 0.75rem;
  114. border-top-left-radius: 6px;
  115. background-color: var(--primary-color);
  116. color: #fff;
  117. z-index: 2;
  118. }
  119. body.stag_rhs_collapsed .v-split,
  120. body.stag_rhs_collapsed .app-right-panel {
  121. display: none !important;
  122. }
  123. .delete-column {
  124. width: 120px;
  125. }
  126. .m-negator {
  127. margin-left: -1.25rem !important;
  128. margin-right: -1.25rem !important;
  129. }
  130. .pl-3-5 {
  131. padding-left: 1.25rem !important;
  132. }
  133. .lh-24px {
  134. height: 24px;
  135. line-height: 24px;
  136. }
  137. .mcp-theme-1 input[type="file"] {
  138. position: relative;
  139. cursor: pointer;
  140. box-shadow: none;
  141. }
  142. .mcp-theme-1 input[type="file"]::after {
  143. content: attr(selected-file);
  144. position: absolute;
  145. left: 0;
  146. top: 0;
  147. width: 100%;
  148. height: 100%;
  149. background: #fff;
  150. display: flex;
  151. align-items: center;
  152. padding: 0 0.5rem;
  153. color: #0d59af;
  154. overflow: hidden;
  155. white-space: nowrap;
  156. text-overflow: ellipsis;
  157. }
  158. .mcp-theme-1 *:not(i) {
  159. font-family: Verdana, sans-serif;
  160. font-size: 12px;
  161. }
  162. .mcp-theme-1 .font-size-11 {
  163. font-size: 11px;
  164. }
  165. .mcp-theme-1 .font-size-13 {
  166. font-size: 13px;
  167. }
  168. .mcp-theme-1 .font-size-14 {
  169. font-size: 14px;
  170. }
  171. .mcp-theme-1 .font-size-16 {
  172. font-size: 16px;
  173. }
  174. .mcp-theme-1 .font-underline {
  175. text-decoration: underline;
  176. }
  177. .mcp-theme-1 .on-hover-opaque {
  178. opacity: 0.6;
  179. }
  180. .mcp-theme-1 .on-hover-opaque:hover {
  181. opacity: 1;
  182. }
  183. .mcp-theme-1 .on-hover-aliceblue:hover {
  184. background: aliceblue;
  185. }
  186. .mcp-theme-1 .opacity-0 {
  187. opacity: 0 !important;
  188. }
  189. .mcp-theme-1 .opacity-60 {
  190. opacity: .6;
  191. }
  192. .mcp-theme-1 .opacity-35 {
  193. opacity: .35;
  194. }
  195. .mcp-theme-1 .overflow-visible {
  196. overflow: visible;
  197. }
  198. .mcp-theme-1 .overflow-overlay-on-hover {
  199. overflow: hidden;
  200. }
  201. .mcp-theme-1 .overflow-overlay-on-hover:hover {
  202. overflow: overlay;
  203. }
  204. .mcp-theme-1 .overflow-x-scroll {
  205. overflow-x: scroll !important;
  206. }
  207. .mcp-theme-1 .text-secondary-light {
  208. color: #c9ddef !important;
  209. }
  210. .mcp-theme-1 a, .mcp-theme-1 a:link {
  211. color: rgb(13, 89, 175);
  212. }
  213. .mcp-theme-1 .text-primary {
  214. color: rgb(13, 89, 175) !important;
  215. }
  216. .mcp-theme-1 .btn.btn-primary {
  217. background: rgb(13, 89, 175);
  218. border-color: rgb(13, 89, 175);
  219. box-shadow: none;
  220. }
  221. .mcp-theme-1 .btn.btn-success,
  222. .mcp-theme-1 .btn.btn-success:active {
  223. background: #35b7b2;
  224. border-color: #35b7b2;
  225. }
  226. .mcp-theme-1 .btn.btn-success:focus {
  227. box-shadow: 0 0 0 0.2rem #35b7b277;
  228. }
  229. #sidebarMenu .mcp-theme-1 .nav-item {
  230. margin: 0;
  231. }
  232. #sidebarMenu .mcp-theme-1 .nav-link:hover {
  233. background: #e3e3e394;
  234. }
  235. #sidebarMenu .mcp-theme-1 .nav-link {
  236. border-top: 1px solid transparent;
  237. }
  238. #sidebarMenu .mcp-theme-1 .nav-link.active {
  239. border-top: 1px solid #f8f9fa;
  240. background: #e2e2e2;
  241. }
  242. .mcp-theme-1 .text-sm {
  243. font-size: 85%;
  244. }
  245. .mcp-theme-1 .text-sm-incl-children,
  246. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  247. font-size: 0.8rem;
  248. }
  249. .mcp-theme-1 .minutes-label {
  250. width: 40px;
  251. }
  252. .mcp-theme-1 .memo-textarea {
  253. min-width: 200px;
  254. height: 60px;
  255. }
  256. .main-row {
  257. display: flex;
  258. flex-wrap: nowrap;
  259. margin-right: -15px;
  260. margin-left: -15px;
  261. }
  262. .main-row > .sidebar {
  263. width: 180px;
  264. min-width: 180px;
  265. }
  266. .main-row > main {
  267. flex-grow: 1;
  268. }
  269. html, body {
  270. height: 100%;
  271. }
  272. body>nav.navbar {
  273. height: 55px;
  274. }
  275. .body-height {
  276. height: calc(100vh - 55px);
  277. }
  278. .stag-content {
  279. height: calc(100% - 55px);
  280. }
  281. [moe][large] form, [moe][large] [url] {
  282. width: 450px;
  283. }
  284. [moe][wide] form, [moe][wide] [url] {
  285. width: 550px;
  286. }
  287. [moe][huge] form, [moe][huge] [url] {
  288. width: 750px;
  289. }
  290. [moe][extra-huge] form, [moe][extra-huge] [url] {
  291. width: 900px;
  292. }
  293. [moe][bottom] form,
  294. [moe][bottom] div[url]{
  295. bottom: 100%;
  296. }
  297. .moe-disabled[moe] {
  298. cursor: not-allowed;
  299. }
  300. .moe-disabled[moe] [start][show] {
  301. opacity: 0.5;
  302. pointer-events: none;
  303. }
  304. .mcp-theme-1 .stag-no-wrap-td {
  305. max-width: 260px;
  306. }
  307. .mcp-theme-1 .stag-no-wrap {
  308. max-width: 250px;
  309. overflow: hidden;
  310. text-overflow: ellipsis;
  311. white-space: nowrap;
  312. display: block;
  313. }
  314. .mcp-theme-1 .form-control.form-control-sm:not(.min-width-unset) {
  315. min-width: 200px;
  316. }
  317. .mcp-theme-1 .min-width-unset>.form-control.form-control-sm,
  318. .mcp-theme-1 select.min-width-unset+.pro-suggest-input {
  319. min-width: unset !important;
  320. }
  321. .mcp-theme-1 .width-auto {
  322. width: auto !important;
  323. }
  324. .mcp-theme-1 [large] .form-control.form-control-sm {
  325. min-width: unset;
  326. }
  327. [wide] .form-control.form-control-sm:not(.min-width-unset) {
  328. min-width: 480px;
  329. }
  330. [moe][center] [url]:not([show]) {
  331. position: fixed;
  332. top: 10%;
  333. max-height: 88%;
  334. overflow-y: auto;
  335. overflow-x: hidden;
  336. left: calc(50% - 250px);
  337. width: 500px;
  338. }
  339. [moe][center][wide] [url]:not([show]) {
  340. left: calc(50% - 400px);
  341. width: 800px;
  342. }
  343. [moe][center][extra-wide] [url]:not([show]) {
  344. left: calc(50% - 500px);
  345. width: 1000px;
  346. }
  347. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  348. min-width: unset;
  349. max-width: 100%;
  350. }
  351. .form-check-label {
  352. padding-top: 2px;
  353. }
  354. .mcp-theme-1 .rotateh {
  355. transform: rotateY(180deg);
  356. }
  357. .mcp-theme-1 .icon-16 {
  358. width: 16px !important;
  359. height: 16px !important;
  360. }
  361. .mcp-theme-1 .width-200px {
  362. width: 200px !important;
  363. }
  364. .mcp-theme-1 .width-300px {
  365. width: 300px !important;
  366. }
  367. .mcp-theme-1 .width-22px {
  368. width: 22px !important;
  369. }
  370. .mcp-theme-1 .width-30px {
  371. width: 30px !important;
  372. }
  373. .mcp-theme-1 .width-40px {
  374. width: 40px !important;
  375. }
  376. .mcp-theme-1 .width-50px {
  377. width: 50px !important;
  378. }
  379. .mcp-theme-1 .width-60px {
  380. width: 60px !important;
  381. }
  382. .mcp-theme-1 .width-70px {
  383. width: 70px !important;
  384. }
  385. .mcp-theme-1 .min-width-30px {
  386. min-width: 30px !important;
  387. }
  388. .mcp-theme-1 .min-width-50 {
  389. min-width: 50% !important;
  390. }
  391. .mcp-theme-1 .max-width-50 {
  392. max-width: 50% !important;
  393. }
  394. .mcp-theme-1 .min-width-70px {
  395. min-width: 70px !important;
  396. }
  397. .mcp-theme-1 .min-width-80px {
  398. min-width: 80px !important;
  399. }
  400. .mcp-theme-1 .width-90px {
  401. width: 90px !important;
  402. }
  403. .mcp-theme-1 .min-width-110px {
  404. min-width: 110px !important;
  405. }
  406. .mcp-theme-1 .min-width-140px {
  407. min-width: 140px !important;
  408. }
  409. .mcp-theme-1 .min-width-200px {
  410. min-width: 200px !important;
  411. }
  412. .mcp-theme-1 .min-width-300px {
  413. min-width: 300px;
  414. }
  415. .mcp-theme-1 .min-width-500px {
  416. min-width: 500px !important;
  417. }
  418. .mcp-theme-1 .max-width-500px {
  419. max-width: 500px !important;
  420. }
  421. .mcp-theme-1 .min-width-700px {
  422. min-width: 700px !important;
  423. }
  424. .mcp-theme-1 .max-width-700px {
  425. max-width: 700px !important;
  426. }
  427. .mcp-theme-1 .width-100px {
  428. width: 100px;
  429. min-width: unset !important;
  430. max-width: unset !important;
  431. }
  432. .mcp-theme-1 .width-140px {
  433. width: 140px;
  434. min-width: unset !important;
  435. max-width: unset !important;
  436. }
  437. .mcp-theme-1 .width-150px {
  438. width: 150px;
  439. min-width: unset !important;
  440. max-width: unset !important;
  441. }
  442. .mcp-theme-1 .width-500px {
  443. width: 500px;
  444. min-width: unset !important;
  445. max-width: unset !important;
  446. }
  447. .mcp-theme-1 .width-100pc {
  448. width: 100% !important;
  449. min-width: unset !important;
  450. }
  451. .mcp-theme-1 .max-width-200px {
  452. max-width: 200px;
  453. }
  454. .mcp-theme-1 .max-width-300px {
  455. max-width: 300px;
  456. }
  457. .mcp-theme-1 .height-35px {
  458. min-height: 35px !important;
  459. max-height: 35px !important;
  460. }
  461. .mcp-theme-1 .outline-0 {
  462. outline: none !important;
  463. box-shadow: none !important;
  464. }
  465. .cancelled-item {
  466. opacity: 0.5;
  467. }
  468. .cancelled-item:not(.always-clickable) * {
  469. pointer-events: none;
  470. }
  471. .note-content {
  472. max-height: 300px;
  473. overflow-y: auto;
  474. }
  475. .note-content:not([auto-edit]) {
  476. padding: 1rem;
  477. padding-bottom: 0;
  478. cursor: pointer;
  479. position: relative;
  480. }
  481. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  482. content: '(click to change)';
  483. display: block;
  484. color: #535353;
  485. padding-bottom: 0.3rem;
  486. }
  487. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  488. border-left: 0;
  489. border-right: 0;
  490. }
  491. .mcp-theme-1 .ql-editor[contenteditable] {
  492. min-height: 100px;
  493. }
  494. body [note-rte][slim-rte]:not(.border-0),
  495. body [note-rte][data-field-name="reviewValue"],
  496. body [note-rte][data-field-name="planValue"] {
  497. border: 1px solid #ced4da !important;
  498. }
  499. body [note-rte][slim-rte] .ql-editor[contenteditable],
  500. body [note-rte][data-field-name="reviewValue"] .ql-editor[contenteditable],
  501. body [note-rte][data-field-name="planValue"] .ql-editor[contenteditable] {
  502. min-height: 56px !important;
  503. padding: .25rem .5rem !important;
  504. }
  505. .ql-container p {
  506. margin-top: 1rem;
  507. }
  508. .note-content ul {
  509. list-style: none !important;
  510. }
  511. .ql-editor ul > li::before {
  512. content: '';
  513. }
  514. .m-neg-3 {
  515. margin-left: -1rem;
  516. margin-right: -1rem;
  517. }
  518. .m-neg-4 {
  519. margin-left: -1.25rem;
  520. margin-right: -1.25rem;
  521. }
  522. .mcp-theme-1 .ql-toolbar .ql-formats * {
  523. font-size: 12px !important;
  524. }
  525. .mcp-theme-1 .ql-toolbar.ql-snow {
  526. padding: 3px;
  527. background: #f7f7f7;
  528. }
  529. .mcp-theme-1 .ql-snow .ql-picker {
  530. height: 22px;
  531. }
  532. .mcp-theme-1 .ql-snow.ql-toolbar button {
  533. height: 22px;
  534. width: 26px;
  535. }
  536. .rte-holder .ql-container p {
  537. margin-top: 0;
  538. }
  539. .note-section:not(.edit) .if-not-edit {
  540. display: block !important;
  541. }
  542. .note-section:not(.edit) div.if-not-edit {
  543. /* padding-left: 1rem; */
  544. padding-left: 0;
  545. }
  546. .note-section:not(.edit):hover {
  547. background: #f6f9fc;
  548. cursor: pointer;
  549. }
  550. [data-non-segment-section]:hover {
  551. background: #f6f9fc;
  552. }
  553. .note-signed-by-hcp .note-section:not(.edit):hover {
  554. background: #f6f9fc;
  555. cursor: auto;
  556. }
  557. .note-section.edit .if-edit {
  558. display: block !important;
  559. }
  560. .c-pointer {
  561. cursor: pointer;
  562. }
  563. .events-none {
  564. pointer-events: none;
  565. }
  566. .blocking-overlay {
  567. opacity: 0 !important;
  568. cursor: default;
  569. }
  570. .inset-comment p {
  571. margin-bottom: 0.3rem;
  572. }
  573. .inset-comment p:last-child {
  574. margin-bottom: 0 !important;
  575. }
  576. .note-section.edit {
  577. background: #f0f8ff7d;
  578. outline: 2px solid #9de3ff;
  579. }
  580. .note-section.edit .ql-editor,
  581. .note-section.edit .btn-default {
  582. background-color: #fff !important;
  583. }
  584. /*.note-section-item-row:not(:first-child) {
  585. padding-top: 10px;
  586. border-top: 1px solid #ccc;
  587. }*/
  588. /* override med ac css */
  589. #searchResults {
  590. z-index: 100001 !important;
  591. }
  592. input.search_field, textarea.search_field {
  593. background-position: right 7px center !important;
  594. padding-right: 23px !important;
  595. }
  596. .ansList:focus, .search_field:focus {
  597. background-color: #fff !important;
  598. }
  599. .navbar.navbar-dark {
  600. height: 55px;
  601. position: fixed;
  602. top: 0;
  603. left: 0;
  604. width: 100%;
  605. z-index: 9999;
  606. }
  607. .main-row {
  608. padding-left: 180px;
  609. }
  610. .main-row.autohide-leftnav {
  611. padding-left: 30px;
  612. }
  613. .main-row > .sidebar {
  614. width: 180px;
  615. min-width: 180px;
  616. position: fixed;
  617. left: 0;
  618. top: 55px;
  619. z-index: 8;
  620. height: calc(100% - 55px);
  621. padding-bottom: 4rem;
  622. border-right: 1px solid #ddd;
  623. overflow: hidden;
  624. }
  625. .main-row > .sidebar:hover {
  626. overflow-y: overlay
  627. }
  628. @media screen {
  629. .navbar.navbar-dark + [role="main"] {
  630. padding-top: 55px;
  631. }
  632. }
  633. @media screen and (max-width: 1400px) {
  634. .flex-container > div:first-child {
  635. margin-bottom: 20px;
  636. }
  637. }
  638. @media screen and (min-width: 1400px) {
  639. .flex-container{
  640. display: flex;
  641. align-items: flex-start;
  642. justify-content: space-between;
  643. }
  644. .flex-container > div {
  645. flex-basis: 50%;
  646. }
  647. .flex-container > div:first-child {
  648. border-right: 1px solid #eee;
  649. margin-right: 20px;
  650. padding-right: 20px;
  651. }
  652. }
  653. .main-row > .sidebar .nav .nav-item a {
  654. white-space: nowrap;
  655. }
  656. .main-row.autohide-leftnav > .sidebar {
  657. width: 30px;
  658. min-width: 30px;
  659. transition: width 0.2s ease;
  660. }
  661. .main-row.autohide-leftnav > .sidebar:not(:hover):after {
  662. content: '(hover for menu)';
  663. position: fixed;
  664. top: 200px;
  665. left: 5px;
  666. transform-origin: top left;
  667. transform: rotate(-90deg);
  668. white-space: nowrap;
  669. font-size: 12px;
  670. font-family: verdana;
  671. color: #666;
  672. }
  673. .main-row.autohide-leftnav > .sidebar ul {
  674. opacity: 0;
  675. }
  676. .main-row.autohide-leftnav > .sidebar:hover {
  677. width: 180px;
  678. }
  679. .main-row.autohide-leftnav > .sidebar:hover ul {
  680. opacity: 1;
  681. }
  682. .stag-popup .navbar.navbar-dark + [role="main"] {
  683. padding-top: 0;
  684. }
  685. .font-smaller {
  686. font-size: 11px !important;
  687. }
  688. .text-ellipsis {
  689. white-space: nowrap;
  690. overflow: hidden;
  691. text-overflow: ellipsis;
  692. }
  693. .outline-0 {
  694. outline: none !important;
  695. }
  696. .note-widget-item:hover {
  697. background: #eee;
  698. }
  699. .note-widget-title {
  700. background: #ccc !important;
  701. color: #333 !important;
  702. font-size: 12px !important;
  703. font-weight: bold !important;
  704. }
  705. .navbar-collapse.show {
  706. background: #1c4587;
  707. z-index: 999;
  708. padding: 0.5rem 1rem;
  709. margin: 0 -1rem;
  710. }
  711. .navbar-dark .nav-item .nav-link {
  712. font-size: 12px;
  713. white-space: nowrap;
  714. overflow: hidden;
  715. text-overflow: ellipsis;
  716. }
  717. #patient-search {
  718. min-width: 90px !important;
  719. max-width: 140px !important;
  720. }
  721. .suggestions-outer {
  722. top: calc(100% + 2px);
  723. background: #fff;
  724. border-radius: 3px;
  725. border: 1px solid #ccc;
  726. z-index: 9999;
  727. }
  728. .suggestions-outer {
  729. top: calc(100% + 1px);
  730. background: #fff;
  731. border-radius: 3px;
  732. border: 1px solid #ccc;
  733. z-index: 9999;
  734. max-height: 220px;
  735. overflow-y: overlay;
  736. min-width: 100%;
  737. right: 0;
  738. }
  739. [stag-suggest-bottom-left]~.stag-suggestions-container .suggestions-outer {
  740. bottom: 30px;
  741. left: 0;
  742. top: auto;
  743. right: auto;
  744. }
  745. [stag-suggest-left]~.stag-suggestions-container .suggestions-outer {
  746. left: 0;
  747. right: auto;
  748. min-width: 100%;
  749. }
  750. [stag-suggest]:not(:focus)+.stag-suggestions-container {
  751. display: none !important
  752. }
  753. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  754. padding: 0.25rem 0.5rem;
  755. text-decoration: none;
  756. font-size: 12px;
  757. }
  758. .suggestions-outer .no-suggest-items {
  759. color: #888;
  760. }
  761. .suggestions-outer .suggest-item.active {
  762. background: #ccc;
  763. }
  764. .suggestions-outer .suggest-item:hover {
  765. background: aliceblue;
  766. }
  767. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  768. .pro-dashboard-inline-calendar table.table-condensed {
  769. width: 100% !important;
  770. }
  771. .pro-dashboard-inline-calendar {
  772. border: 1px solid #ddd;
  773. border-radius: 3px
  774. }
  775. .pro-dashboard-inline-calendar table.table-condensed th {
  776. padding: 0.5rem 0;
  777. border-radius: 0;
  778. }
  779. .pro-dashboard-inline-calendar table.table-condensed td {
  780. padding: 0.25rem 0;
  781. border-radius: 0;
  782. }
  783. .pro-dashboard-inline-calendar table.table-condensed td[has-events],
  784. .pro-dashboard-inline-calendar td.has-events:not(.ui-datepicker-today) a {
  785. background: #c5e4ff !important;
  786. font-weight: bold !important;
  787. color: #000 !important;
  788. }
  789. .caremonth-measurements-calendar table.table-condensed td[has-events],
  790. .caremonth-measurements-calendar td.has-events a {
  791. background: #c5e4ff !important;
  792. font-weight: bold !important;
  793. color: #000 !important;
  794. }
  795. .ui-state-active,
  796. .ui-widget-content .ui-state-active,
  797. .ui-widget-header .ui-state-active,
  798. a.ui-button:active,
  799. .ui-button:active,
  800. .ui-button.ui-state-active:hover {
  801. border: 1px solid #4396da !important;
  802. }
  803. .pro-dashboard-inline-calendar td.has-events.ui-datepicker-today a {
  804. font-weight: bold !important;
  805. color: #0d59af !important;
  806. }
  807. .pro-dashboard-inline-calendar td a {
  808. text-align: center !important;
  809. }
  810. [v-cloak] {
  811. opacity: 0;
  812. }
  813. .patient-avatar {
  814. width: 50px;
  815. height: 50px;
  816. background: #eee;
  817. display: inline-flex;
  818. align-items: center;
  819. justify-content: center;
  820. border-radius: 100%;
  821. border: 1px solid #ccc;
  822. }
  823. .large {
  824. font-size: 16px !important;
  825. }
  826. /* note templates */
  827. .note-template-container {
  828. position: absolute;
  829. z-index: 10002;
  830. background: #fff;
  831. border: 1px solid #ddd;
  832. border-radius: 3px;
  833. display: none;
  834. min-width: 200px;
  835. }
  836. .note-template-container .note-template-item {
  837. position: relative;
  838. height: 25px;
  839. }
  840. .note-template-container .note-template-item .note-template-text {
  841. border-bottom: 1px solid #eee;
  842. }
  843. .note-template-container .note-template-item .label {
  844. padding: 3px 6px;
  845. padding-right: 25px;
  846. white-space: nowrap;
  847. display: inline-flex;
  848. align-items: center;
  849. min-width: 120px;
  850. cursor: pointer;
  851. flex-grow: 1;
  852. }
  853. .note-template-container .note-template-item:hover,
  854. .note-template-container .note-template-item.selected {
  855. background: aliceblue;
  856. }
  857. .note-template-container .note-template-item .label>input[type="checkbox"] {
  858. pointer-events: none;
  859. margin: 0;
  860. margin-right: 4px;
  861. height: 11px;
  862. }
  863. .note-template-container .note-template-item:last-child label {
  864. border: 0;
  865. }
  866. .note-template-container .note-template-item .note-template-children {
  867. position: absolute;
  868. left: 100%;
  869. top: 0;
  870. background: #fff;
  871. border: 1px solid #ddd;
  872. border-radius: 3px;
  873. display: none;
  874. }
  875. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  876. display: block;
  877. }*/
  878. .note-template-container .note-template-item .has-children {
  879. position: absolute;
  880. right: 6px;
  881. top: 0;
  882. height: 25px;
  883. line-height: 25px;
  884. color: #bbb;
  885. }
  886. .note-template-container .note-template-item:hover>.has-children {
  887. color: #444;
  888. }
  889. .note-templates-underlay {
  890. position: fixed;
  891. top: 0;
  892. left: 0;
  893. height: 100%;
  894. width: 100%;
  895. background: rgba(0,0,0,0.13);
  896. display: none;
  897. z-index: 10001;
  898. }
  899. .note-template-container textarea {
  900. height: 100px;
  901. border-radius: 0;
  902. border-color: #ccc;
  903. padding: 5px 10px;
  904. display: block;
  905. }
  906. .note-template-buttons {
  907. position: absolute;
  908. bottom: 100%;
  909. right: 0;
  910. height: 27px;
  911. padding: 0 3px;
  912. background: #fff;
  913. }
  914. .note-template-buttons button {
  915. font-size: 10px;
  916. padding: 2px 5px;
  917. margin-left: 5px;
  918. border-radius: 2px;
  919. }
  920. .note-template-buttons button:first-child {
  921. margin-left: 0;
  922. }
  923. .note-template-output {
  924. position: absolute;
  925. bottom: calc(100% + 26px);
  926. left: 0;
  927. padding: 3px 6px;
  928. background: #f7f7f7;
  929. min-width: 100%;
  930. border-radius: 3px;
  931. }
  932. .note-template-output-text {
  933. }
  934. .note-template-output .note-template-output-line {
  935. font-size: 11px;
  936. width: max-content;
  937. max-width: 500px;
  938. margin: 0;
  939. }
  940. .note-template-set-chooser {
  941. height: 22px;
  942. line-height: 22px;
  943. padding: 0 0.22rem;
  944. font-size: 12px !important;
  945. }
  946. .ql-editor .note-template-output-line {
  947. white-space: normal;
  948. }
  949. [prefix="(+)"] a.plus-trigger {
  950. color: #23a923 !important;
  951. }
  952. [prefix="(-)"] a.minus-trigger {
  953. color: #a91e1e !important;
  954. }
  955. .rspace {
  956. width: 16px;
  957. display: inline-flex;
  958. text-align: center;
  959. justify-content: center;
  960. }
  961. .embed-mask {
  962. position: fixed;
  963. left: 0;
  964. top: 0;
  965. height: 100%;
  966. width: 100%;
  967. background: rgba(0, 0, 0, 0.1);
  968. z-index: 98;
  969. }
  970. .embed-section {
  971. background: #fff;
  972. z-index: 99;
  973. padding: 0;
  974. border: 1px solid #ccc;
  975. }
  976. .mask-text-addition {
  977. position: fixed;
  978. bottom: calc(50% - 60px);
  979. left: 0;
  980. width: 100%;
  981. text-align: center;
  982. font-size: 12px;
  983. z-index: 9999999;
  984. color: #000;
  985. }
  986. .note-summary p {
  987. margin-bottom: 0.25rem;
  988. }
  989. .aligned-icon {
  990. display: inline-block;
  991. width: 18px;
  992. text-align: center;
  993. }
  994. body #searchCount {
  995. display: none !important;
  996. }
  997. body .break-spaces {
  998. white-space: pre-wrap;
  999. }
  1000. .stag-tooltip .stag-tooltip-content {
  1001. display: none;
  1002. min-width: 200px;
  1003. }
  1004. .stag-tooltip:hover .stag-tooltip-content {
  1005. display: block;
  1006. right: -10px;
  1007. top: 100%;
  1008. z-index: 1;
  1009. }
  1010. .gem-nodes .node {
  1011. border: 1px solid #ddd;
  1012. padding: 0.75rem;
  1013. border-radius: 5px;
  1014. }
  1015. .gem-nodes>.node {
  1016. border: 0 !important;
  1017. padding-left: 0;
  1018. padding-right: 0;
  1019. }
  1020. .gem-nodes>.node:first-child {
  1021. margin-top: 0 !important;
  1022. }
  1023. .gem-nodes>.node>label {
  1024. font-weight: bold;
  1025. font-size: 14px;
  1026. margin: 0;
  1027. }
  1028. .gem-nodes .subs .node:last-child {
  1029. margin-bottom: 0 !important;
  1030. }
  1031. .gem-nodes>.node>.subs {
  1032. padding-left: 0 !important;
  1033. }
  1034. .gem-nodes>.node>.subs>.node {
  1035. background: #f2f2f2;
  1036. }
  1037. .gem-nodes>.node>.subs>.node>.subs>.node {
  1038. background: #fff;
  1039. }
  1040. .gem-nodes .node span[field] {
  1041. font-weight: bold;
  1042. }
  1043. body .node input[type="number"] {
  1044. max-width: 70px;
  1045. min-width: unset !important;
  1046. }
  1047. .section-edit-mask {
  1048. top: 0;
  1049. left: 0;
  1050. width: 100%;
  1051. height: 100%;
  1052. }
  1053. .signed-note {
  1054. position: relative;
  1055. pointer-events: none !important;
  1056. }
  1057. .signed-note::after {
  1058. content: '';
  1059. position: absolute;
  1060. z-index: 2;
  1061. cursor: not-allowed;
  1062. left: 0;
  1063. top: 0;
  1064. width: 100%;
  1065. height: 100%;
  1066. background: rgba(0,0,0,0.01);
  1067. }
  1068. .slot-picker {
  1069. padding: 4px;
  1070. padding-right: 0;
  1071. padding-bottom: 0;
  1072. }
  1073. .slot-picker.disabled {
  1074. opacity: 0.5;
  1075. pointer-events: none;
  1076. cursor: not-allowed;
  1077. }
  1078. .slot-picker td {
  1079. text-align: center;
  1080. border: 1px solid #ddd !important;
  1081. padding: 2px 5px;
  1082. cursor: pointer;
  1083. }
  1084. .slot-picker th {
  1085. border: 0 !important;
  1086. }
  1087. .slot-picker td:hover {
  1088. background: aliceblue;
  1089. }
  1090. .slot-picker td.blocked {
  1091. background: #ccc !important;
  1092. cursor: not-allowed;
  1093. }
  1094. .slot-picker td.selected {
  1095. background-image: linear-gradient(to bottom,#08c,#04c);
  1096. background-repeat: repeat-x;
  1097. color: #fff;
  1098. }
  1099. .pro-appointment-calendar.disabled {
  1100. opacity: 0.5;
  1101. pointer-events: none;
  1102. cursor: not-allowed;
  1103. }
  1104. .pro-appointment-calendar .datepicker-inline {
  1105. width: 195px;
  1106. padding-left: 0;
  1107. }
  1108. .pro-appointment-calendar .datepicker td {
  1109. height: 25px;
  1110. }
  1111. .datepicker td, .datepicker th {
  1112. border: none !important;
  1113. }
  1114. .appt-form-col {
  1115. width: 220px;
  1116. }
  1117. .appt-calendar-col {
  1118. flex-grow: 1;
  1119. }
  1120. .appt-form td.fc-day.stag-selected {
  1121. outline: 2px solid #007bff;
  1122. background: #e5f2fd;
  1123. }
  1124. .appt-form .stag-current-appt {
  1125. background: #89159cc7;
  1126. color: #fff;
  1127. border-color: #89159cc7;
  1128. }
  1129. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  1130. border-color: #fff;
  1131. }
  1132. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  1133. margin-bottom: 0.5rem;
  1134. /*align-items: start;*/
  1135. }
  1136. .stag-calendar-header-extra {
  1137. background: #cde8ff;
  1138. padding: 3px 10px;
  1139. margin-top: 7px;
  1140. border-top-left-radius: 6px;
  1141. border-top-right-radius: 6px;
  1142. border: 1px solid #44a5f982;
  1143. border-bottom: 0;
  1144. }
  1145. .stag-calendar-header-extra * {
  1146. font-size: 14px !important;
  1147. }
  1148. /* call panel */
  1149. #proCallComponent {
  1150. padding-bottom: 150px;
  1151. }
  1152. .patient-queue {
  1153. display: flex;
  1154. flex-direction: column;
  1155. position: fixed;
  1156. left: 0;
  1157. width: 100%;
  1158. bottom: 0;
  1159. z-index: 4;
  1160. }
  1161. .queue-item {
  1162. width: 100px;
  1163. padding: 0.5rem;
  1164. padding-bottom: 0.25rem;
  1165. text-align: center;
  1166. cursor: pointer;
  1167. }
  1168. .queue-item:hover {
  1169. background: aliceblue;
  1170. }
  1171. .current-work-indicator {
  1172. /*
  1173. position: fixed;
  1174. top: 55px;
  1175. right: 0;
  1176. z-index: 9999;
  1177. */
  1178. background: #305ba0;
  1179. color: #fff;
  1180. font-size: 12px;
  1181. padding: 3px 6px;
  1182. border-radius: 3px;
  1183. /* border-bottom-left-radius: 5px;*/
  1184. white-space: nowrap;
  1185. text-overflow: ellipsis;
  1186. max-width: 100px;
  1187. overflow: hidden;
  1188. }
  1189. /* stag popups */
  1190. .stag-popup {
  1191. position: fixed;
  1192. left: 0;
  1193. top: 55px;
  1194. width: 100%;
  1195. height: calc(100% - 55px);
  1196. overflow-x: auto;
  1197. z-index: 97;
  1198. justify-content: center;
  1199. align-items: center;
  1200. display: none;
  1201. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  1202. padding: 2rem 0;
  1203. }
  1204. .stag-popup.show {
  1205. display: block;
  1206. }
  1207. .stag-popup>form, .stag-popup>.stag-popup-content {
  1208. width: 80%;
  1209. background: #fff;
  1210. border: 1px solid #aaa;
  1211. border-radius: 5px;
  1212. overflow: hidden;
  1213. box-shadow: 0 0 5px #ddd;
  1214. margin: 0 auto;
  1215. padding: 0.75rem;
  1216. min-height: 220px;
  1217. }
  1218. .stag-popup.overflow-visible>.stag-popup-content {
  1219. overflow: visible;
  1220. }
  1221. .stag-popup.min-height-unset>form {
  1222. min-height: unset !important;
  1223. }
  1224. .stag-popup.medium>form, .stag-popup.medium>.stag-popup-content {
  1225. width: calc(80vw - 4rem);
  1226. }
  1227. .stag-popup.medium-large>form, .stag-popup.medium-large>.stag-popup-content {
  1228. width: 90vw;
  1229. }
  1230. .stag-popup.wide>form, .stag-popup.wide>.stag-popup-content {
  1231. width: calc(100vw - 4rem);
  1232. }
  1233. .stag-popup.tall>form, .stag-popup.tall>.stag-popup-content {
  1234. min-height: 500px;
  1235. }
  1236. .stag-popup.narrow>form, .stag-popup.narrow>.stag-popup-content {
  1237. max-width: 500px;
  1238. }
  1239. .stag-popup.stag-popup-sm>form, .stag-popup.stag-popup-sm>.stag-popup-content {
  1240. max-width: 500px;
  1241. }
  1242. .stag-popup.stag-popup-900>form, .stag-popup.stag-popup-900>.stag-popup-content {
  1243. max-width: 900px;
  1244. }
  1245. .stag-popup.stag-popup-md>form, .stag-popup.stag-popup-md>.stag-popup-content {
  1246. max-width: 632pt;
  1247. }
  1248. .stag-popup.stag-popup-right>form, .stag-popup.stag-popup-right>.stag-popup-content {
  1249. margin-right: 1.5rem;
  1250. margin-left: auto;
  1251. }
  1252. .stag-popup .popup-content-container {
  1253. margin-top: 1rem;
  1254. padding-top: 1rem;
  1255. border-top: 1px solid #e1e1e1;
  1256. }
  1257. /* slide-in stag-popups */
  1258. .stag-popup.stag-slide {
  1259. display: block;
  1260. background: center center no-repeat scroll rgba(0, 0, 0, 0);
  1261. pointer-events: none;
  1262. overflow: hidden;
  1263. }
  1264. .stag-popup.stag-slide.show {
  1265. pointer-events: all;
  1266. }
  1267. .stag-popup.stag-slide>form {
  1268. position: absolute;
  1269. top: 0;
  1270. height: 100% !important;
  1271. overflow-y: auto;
  1272. border-radius: 0;
  1273. border-top: 0;
  1274. border-bottom: 0;
  1275. border-right: 0;
  1276. transition: right 0.3s ease;
  1277. width: 0;
  1278. }
  1279. .stag-popup.stag-slide.stag-popup-900>form {
  1280. width: 900px;
  1281. right: -900px;
  1282. }
  1283. .stag-popup.stag-slide.stag-popup-sm>form {
  1284. width: 500px;
  1285. right: -500px;
  1286. }
  1287. .stag-popup.stag-slide.stag-popup-md>form {
  1288. width: 632pt;
  1289. right: -632pt;
  1290. }
  1291. .stag-popup.stag-slide.show>form {
  1292. right: 0;
  1293. }
  1294. /* asana style ticket management */
  1295. .pro-initials {
  1296. border-radius: 100%;
  1297. height: 24px;
  1298. width: 24px;
  1299. min-height: 24px;
  1300. min-width: 24px;
  1301. max-height: 24px;
  1302. max-width: 24px;
  1303. text-align: center;
  1304. font-weight: 400;
  1305. display: inline-flex;
  1306. align-items: center;
  1307. justify-content: center;
  1308. background-color: #6457f9;
  1309. color: #fff;
  1310. font-size: 10px !important;
  1311. opacity: 0.85;
  1312. }
  1313. .pro-initials.pro-initials-sm {
  1314. height: 18px;
  1315. width: 18px;
  1316. min-height: 18px;
  1317. min-width: 18px;
  1318. max-height: 18px;
  1319. max-width: 18px;
  1320. font-size: 9px !important;
  1321. }
  1322. .pro-initials:hover {
  1323. opacity: 1;
  1324. }
  1325. .ticket-section {
  1326. }
  1327. .ticket-section.ticket-section-collapsed {
  1328. max-height: 0;
  1329. overflow: hidden;
  1330. }
  1331. .tickets-table tbody tr {
  1332. transition: background-color 0.2s ease;
  1333. }
  1334. .tickets-table tbody tr:hover {
  1335. background-color: rgba(0,0,0,.04);
  1336. }
  1337. .tickets-table tbody tr.current {
  1338. background-color: aliceblue;
  1339. }
  1340. .stag-slide input.form-control:not(:focus),
  1341. .stag-slide select.form-control:not(:focus) {
  1342. border-color: transparent;
  1343. background-color: transparent;
  1344. cursor: pointer;
  1345. font-weight: bold;
  1346. padding-left: 0;
  1347. }
  1348. .stag-slide select.form-control:not(:focus) {
  1349. appearance: none;
  1350. }
  1351. .stag-slide input.form-control {
  1352. box-shadow: none !important;
  1353. }
  1354. .stag-slide input.form-control:not(:focus):not([readonly]):hover {
  1355. text-decoration: underline;
  1356. }
  1357. .stag-slide input.form-control[readonly] {
  1358. opacity: 0.75;
  1359. }
  1360. .stag-slide ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  1361. color: #bbb !important;
  1362. font-weight: normal !important;
  1363. opacity: 1; /* Firefox */
  1364. }
  1365. .stag-slide :-ms-input-placeholder { /* Internet Explorer 10-11 */
  1366. color: #bbb !important;
  1367. font-weight: normal !important;
  1368. }
  1369. .stag-slide ::-ms-input-placeholder { /* Microsoft Edge */
  1370. color: #bbb !important;
  1371. font-weight: normal !important;
  1372. }
  1373. .stag-slide .text-success {
  1374. color: #00bf9c !important;
  1375. }
  1376. .stag-slide .btn-success,
  1377. .stag-slide .btn-success:hover {
  1378. background: #00bf9c;
  1379. border-color: #00bf9c;
  1380. }
  1381. .stag-slide .comment-input-outer {
  1382. position: sticky;
  1383. bottom: 0;
  1384. }
  1385. .stag-slide .txt-comment {
  1386. padding-bottom: calc(23px + 1rem);
  1387. height: calc(23px + 1rem);
  1388. transition: height 0.3s ease;
  1389. overflow: hidden;
  1390. }
  1391. .stag-slide .txt-comment:focus {
  1392. height: 120px;
  1393. overflow: auto;
  1394. }
  1395. .stag-slide .txt-comment:focus~.btn-save-comment {
  1396. opacity: 1;
  1397. }
  1398. .stag-slide .btn-save-comment {
  1399. position: absolute;
  1400. bottom: 0.5rem;
  1401. right: 0.5rem;
  1402. height: 28px;
  1403. line-height: 28px;
  1404. padding: 0 1rem;
  1405. transition: opacity 0.3s ease;
  1406. opacity: 0.5;
  1407. }
  1408. .stag-slide select.form-control:invalid,
  1409. .stag-slide input[type="text"].form-control:invalid {
  1410. background-color: #f8ecec;
  1411. padding-left: 0.5rem;
  1412. }
  1413. .stag-slide select:focus:invalid,
  1414. .stag-slide input[type="text"]:focus:invalid {
  1415. background: #fff;
  1416. border-color: #e24848;
  1417. box-shadow: 0 0 2px #c10707 !important;
  1418. }
  1419. .erx-line-item:nth-child(2n+1) {
  1420. background: #f0f8ffbb
  1421. }
  1422. .no-scroll {
  1423. overflow: hidden;
  1424. }
  1425. .client-rs-contents p {
  1426. margin-bottom: 0.25rem;
  1427. }
  1428. .pro-option {
  1429. position: relative;
  1430. display: block;
  1431. padding-left: 30px;
  1432. }
  1433. .pro-option.pro-option-selected {
  1434. display: inline-block;
  1435. padding-left: 25px;
  1436. }
  1437. .pro-option .pro-option-initials {
  1438. position: absolute;
  1439. left: 5px;
  1440. top: 2px;
  1441. font-size: 10px;
  1442. border-radius: 100%;
  1443. height: 20px;
  1444. width: 20px;
  1445. line-height: 20px;
  1446. text-align: center;
  1447. font-weight: 400;
  1448. }
  1449. .pro-option.pro-option-selected .pro-option-initials {
  1450. left: 3px;
  1451. top: 0;
  1452. font-size: 10px;
  1453. border-radius: 100%;
  1454. height: 18px;
  1455. width: 18px;
  1456. line-height: 19px;
  1457. text-align: center;
  1458. font-weight: 400;
  1459. }
  1460. span.pro-selection {
  1461. padding: 0 5px;
  1462. height: 18px;
  1463. display: inline-block;
  1464. border-top-right-radius: 3px;
  1465. border-bottom-right-radius: 3px;
  1466. }
  1467. .select2-results__option--selectable {
  1468. font-size: 13px;
  1469. }
  1470. #calendarApp .select2-selection__choice__display,
  1471. #proCalendarApp .select2-selection__choice__display {
  1472. padding: 0 !important;
  1473. overflow: hidden !important;
  1474. }
  1475. span.select2-container.select2-container--default.select2-container--open {
  1476. z-index: 999999;
  1477. }
  1478. .fc .fc-highlight {
  1479. background: rgba(188, 232, 241, 0.6) !important;
  1480. }
  1481. .fc .fc-day-past {
  1482. background: #e7e7e7 !important;
  1483. }
  1484. .fc .add-overlay {
  1485. padding: 1px 4px;
  1486. display: inline-block;
  1487. font-weight: bold;
  1488. }
  1489. .fc .add-overlay.add-overlay-day-grid {
  1490. padding: 4px;
  1491. }
  1492. .stag-popup .stag-popup-title {
  1493. border-bottom: 1px solid #eee;
  1494. padding-bottom: 0.75rem;
  1495. margin-bottom: 1rem;
  1496. display: flex;
  1497. align-items: center;
  1498. }
  1499. .stag-popup .stag-popup-title>span {
  1500. font-size: 17px;
  1501. display: inline-flex;
  1502. align-items: center;
  1503. }
  1504. .stag-popup .stag-popup-title>span>img {
  1505. max-height: 26px;
  1506. margin-right: 8px;
  1507. }
  1508. .fc .other-client {
  1509. box-shadow: 1px 1px 2px deeppink !important;
  1510. opacity: 0.5;
  1511. }
  1512. .fc .other-client:hover {
  1513. opacity: 0.8;
  1514. }
  1515. .fc .availability {
  1516. box-shadow: 0 0 3px green !important;
  1517. }
  1518. .fc .inactive-appointment {
  1519. opacity: 0.6;
  1520. box-shadow: 0 0 3px grey !important;
  1521. }
  1522. .fc .fc-button-primary:not(:disabled):active,
  1523. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1524. border-color: #56a767 !important;
  1525. background-color: #56a767 !important;
  1526. }
  1527. .w-150 {
  1528. width: 150px !important;
  1529. min-width: 150px !important;
  1530. }
  1531. .w-180 {
  1532. width: 180px !important;
  1533. min-width: 180px !important;
  1534. }
  1535. .guest-view button.add-shortcut {
  1536. display: none;
  1537. }
  1538. .guest-view .note-section,
  1539. .guest-view .note-section:hover {
  1540. background: #fff !important;
  1541. }
  1542. .form-check-label {
  1543. display: flex;
  1544. align-items: center;
  1545. }
  1546. #stagPdfViewer>form {
  1547. padding: 0;
  1548. background: #eee;
  1549. }
  1550. #stagPdfViewer>form .stag-popup-title {
  1551. background: #fff;
  1552. padding: 1rem;
  1553. }
  1554. canvas.pdf-viewer-page {
  1555. max-width: 100%;
  1556. margin: 1rem auto;
  1557. display: block;
  1558. box-shadow: 0 0 2px #aaa;
  1559. }
  1560. .hidden-link-input {
  1561. /*opacity: 0;
  1562. width: 0 !important;
  1563. border: 0 !important;
  1564. padding: 0 !important;*/
  1565. position: absolute;
  1566. left: -9999px;
  1567. }
  1568. table.table-edit-sheet tbody tr td {
  1569. padding: 0;
  1570. background: #f7f7f7;
  1571. }
  1572. table.table-edit-sheet tbody tr td>input,
  1573. table.table-edit-sheet tbody tr td>select {
  1574. box-shadow: none !important;
  1575. border-radius: 0 !important;
  1576. border: 0;
  1577. background: #fefefe;
  1578. width: 100% !important;
  1579. min-width: unset !important;
  1580. border-bottom: 1px solid #dee2e6;
  1581. }
  1582. table.table-edit-sheet tbody tr td input[type="text"],
  1583. table.table-edit-sheet tbody tr td select,
  1584. table.table-edit-sheet tbody tr td textarea {
  1585. box-shadow: none !important;
  1586. border-radius: 0 !important;
  1587. border: 0;
  1588. background: #fefefe;
  1589. min-width: unset !important;
  1590. border-bottom: 1px solid #dee2e6;
  1591. }
  1592. table.table-edit-sheet tbody tr td>input.w-auto-input {
  1593. width: auto !important;
  1594. }
  1595. table.table-edit-sheet tbody tr td>input:focus,
  1596. table.table-edit-sheet tbody tr td>select:focus,
  1597. table.table-edit-sheet tbody tr td input.edit:focus {
  1598. /*outline: 3px solid #4b88a633;*/
  1599. /*border: 1px inset #4b88a633 !important;*/
  1600. background: aliceblue !important;
  1601. }
  1602. table.table-edit-sheet tbody tr [contenteditable] {
  1603. background: #fff;
  1604. }
  1605. table.table-edit-sheet .ql-toolbar {
  1606. border-top: 0 !important;
  1607. }
  1608. table.table-edit-sheet .ql-container {
  1609. border-bottom: 0 !important;
  1610. }
  1611. table.table-edit-sheet .ql-editor[contenteditable] {
  1612. min-height: 90px;
  1613. }
  1614. .w-30 {
  1615. width: 30%;
  1616. }
  1617. .w-33 {
  1618. width: 33%;
  1619. }
  1620. .w-35 {
  1621. width: 35%;
  1622. }
  1623. .w-40 {
  1624. width: 40%;
  1625. }
  1626. .client-single-dashboard .hide-if-dashboard {
  1627. display: none;
  1628. }
  1629. .notes-list .hide-if-note,
  1630. .note-section .hide-if-note {
  1631. display: none;
  1632. }
  1633. .data-option-list {
  1634. position: absolute;
  1635. background: #fff;
  1636. border: 2px solid #ddd;
  1637. margin-top: -1px;
  1638. width: 100%;
  1639. z-index: 1;
  1640. display: none;
  1641. max-width: 250px;
  1642. box-shadow: 0 0 3px #ddd;
  1643. border-top: 0;
  1644. max-height: 200px;
  1645. overflow-y: auto;
  1646. }
  1647. .data-option-list>div {
  1648. cursor: pointer;
  1649. padding: 0.2rem 0.5rem;
  1650. border-bottom: 1px solid #ddd;
  1651. color: #222;
  1652. font-size: 90%;
  1653. }
  1654. .data-option-list>div[desc]::after {
  1655. content: attr(desc);
  1656. opacity: 0.75;
  1657. padding-left: 0.5rem;
  1658. font-size: 90%;
  1659. font-family: Verdana, sans-serif;
  1660. }
  1661. .data-option-list>div:last-child {
  1662. border-bottom: 0;
  1663. }
  1664. .data-option-list>div:hover {
  1665. background: aliceblue;
  1666. }
  1667. .measurement-item:not(:last-child) {
  1668. border-bottom: 1px solid #e7e7e7;
  1669. }
  1670. .assessment-detail-template>span {
  1671. margin: 0 !important;
  1672. padding: 0 !important;
  1673. border: 0 !important;
  1674. margin-left: -0.5rem !important;
  1675. position: static !important;
  1676. }
  1677. .assessment-detail-template>span>a {
  1678. display: none;
  1679. }
  1680. button.add-shortcut,
  1681. button.note-templates-trigger-assessment {
  1682. outline: none !important;
  1683. box-shadow: none !important;
  1684. }
  1685. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1686. pointer-events: none !important;
  1687. }
  1688. .claim-line:last-child td {
  1689. padding-bottom: 1.3rem;
  1690. }
  1691. .in-table-markup p:last-of-type {
  1692. margin-bottom: 0;
  1693. }
  1694. .suggestions-outer.pharmacy-suggestions {
  1695. left: 1rem;
  1696. width: calc(100% - 2rem);
  1697. }
  1698. .flowsheets-table td {
  1699. padding: 0 10px;
  1700. height: 38px;
  1701. max-height: 38px;
  1702. min-height: 38px;
  1703. vertical-align: middle !important;
  1704. }
  1705. .flowsheets-table .expand {
  1706. display: none;
  1707. }
  1708. .flowsheets-table .collapse {
  1709. display: block;
  1710. }
  1711. .flowsheets-table .collapsed .expand {
  1712. display: block;
  1713. }
  1714. .flowsheets-table .collapsed .collapse {
  1715. display: none;
  1716. }
  1717. .flowsheets-table tr {
  1718. }
  1719. .flowsheets-table .collapsed tr:not(:first-child) {
  1720. display: none;
  1721. }
  1722. .col-2-button {
  1723. width: 88px;
  1724. text-align: left;
  1725. }
  1726. /* vitals graph */
  1727. .stag-chart {
  1728. min-height: 300px;
  1729. }
  1730. .stag-chart .safe-region>rect {
  1731. fill: green;
  1732. }
  1733. .stag-chart .safe-region>text {
  1734. fill: #888;
  1735. transform: translateY(-18px);
  1736. }
  1737. .on-hover-text-reveal {
  1738. white-space: nowrap;
  1739. overflow: hidden;
  1740. text-overflow: ellipsis;
  1741. }
  1742. .on-hover-text-reveal:hover {
  1743. white-space: normal;
  1744. overflow: unset;
  1745. text-overflow: unset;
  1746. }
  1747. .on-hover-show {
  1748. position: relative;
  1749. }
  1750. .on-hover-show:hover .on-hover-content {
  1751. opacity: 1;
  1752. pointer-events: all;
  1753. }
  1754. .on-hover-show .on-hover-content {
  1755. position: absolute;
  1756. max-width: 300px;
  1757. right: 0;
  1758. top: 100%;
  1759. background: #fff;
  1760. opacity: 0;
  1761. padding: 0 0.75rem;
  1762. padding-bottom: 0.5rem;
  1763. box-shadow: 0 0 2px #999;
  1764. pointer-events: none;
  1765. transition: opacity 0.3s ease;
  1766. z-index: 2;
  1767. }
  1768. .on-hover-show.left .on-hover-content {
  1769. right: auto;
  1770. left: 0;
  1771. }
  1772. .collapsible-tbody.collapsed {
  1773. display: none;
  1774. }
  1775. #send-fax-pdf-preview, #transmit-pdf-preview {
  1776. max-height: 350px;
  1777. overflow: auto;
  1778. box-shadow: 0 0 2px #ccc;
  1779. }
  1780. canvas.pdf-viewer-page.pdf-preview-page {
  1781. margin: 0.5rem auto;
  1782. }
  1783. .back-to-admin-button {
  1784. background: transparent;
  1785. border: 0;
  1786. padding: 0;
  1787. color: rgb(13, 89, 175);
  1788. }
  1789. .back-to-admin-button:hover {
  1790. text-decoration: underline;
  1791. }
  1792. .bg-aliceblue {
  1793. background: aliceblue !important;
  1794. }
  1795. .bg-treeblue {
  1796. background: linear-gradient(to bottom, #beebff 0, #a8e4ff 100%);
  1797. }
  1798. .text-danger-dark {
  1799. color: #8b1621 !important;
  1800. }
  1801. .filter-head input[type="date"]::-webkit-calendar-picker-indicator {
  1802. display: none;
  1803. -webkit-appearance: none;
  1804. }
  1805. .filter-head input[type="number"]::-webkit-inner-spin-button {
  1806. display: none;
  1807. -webkit-appearance: none;
  1808. }
  1809. .filter-head input[type="date"] {
  1810. padding: 0;
  1811. min-width: 90px;
  1812. }
  1813. .filter-head input[type="number"],
  1814. .filter-head input[type="date"] {
  1815. min-width: 90px;
  1816. }
  1817. .filter-head select {
  1818. padding: 0 5px;
  1819. }
  1820. tr.sep td {
  1821. padding: 0;
  1822. background: #eee;
  1823. height: 6px;
  1824. }
  1825. #practice-shipments-ready-to-print ::marker {
  1826. color: #0009;
  1827. font-size: 90%;
  1828. }
  1829. .only-print {
  1830. display: none;
  1831. }
  1832. @media print {
  1833. .only-print {
  1834. display: block;
  1835. }
  1836. th.only-print, td.only-print {
  1837. display: table-cell;
  1838. }
  1839. }
  1840. .only-screen {
  1841. display: block;
  1842. }
  1843. th.only-screen, td.only-screen {
  1844. display: table-cell;
  1845. }
  1846. @media print {
  1847. .only-screen {
  1848. display: none !important;
  1849. }
  1850. .only-pick-list, .only-order-slip {
  1851. display: none;
  1852. }
  1853. .pick-list .only-pick-list, .order-slip .only-order-slip {
  1854. display: block;
  1855. }
  1856. }
  1857. .suggest-item.patient-suggest>img {
  1858. width: 10px;
  1859. height: 10px;
  1860. opacity: 0.75;
  1861. }
  1862. .suggest-item.patient-suggest>img.claimed {
  1863. filter: grayscale(100%);
  1864. opacity: 0.5;
  1865. }
  1866. .pdf-viewer-auto {
  1867. max-height: 600px;
  1868. overflow: auto;
  1869. }
  1870. .ticket-popup .stag-popup.stag-slide.show {
  1871. position: static;
  1872. min-width: 100% !important;
  1873. max-width: unset !important;
  1874. padding-bottom: 2rem;
  1875. }
  1876. .ticket-popup .stag-popup.stag-slide.show form {
  1877. min-width: 100% !important;
  1878. max-width: unset !important;
  1879. }
  1880. .ticket-popup .stag-popup.stag-slide>form {
  1881. position: absolute;
  1882. top: 0;
  1883. height: auto !important;
  1884. overflow: hidden;
  1885. border-radius: 5px;
  1886. transition: none;
  1887. border: 1px solid #aaa;
  1888. }
  1889. .ticket-popup .stag-popup.stag-slide .stag-popup-title.sticky-top {
  1890. position: static;
  1891. }
  1892. .ticket-popup.stag-popup.stag-popup-md>.container-fluid {
  1893. max-width: 632pt;
  1894. }
  1895. .ticket-popup.stag-popup.stag-popup-md>.container-fluid>.main-row>main>.card {
  1896. border: 0;
  1897. /*background: transparent;*/
  1898. }
  1899. .ticket-popup .hide-inside-ticket-popup {
  1900. display: none !important;
  1901. }
  1902. .ticket-popup .disable-inside-ticket-popup {
  1903. pointer-events: none !important;
  1904. opacity: 0.5;
  1905. }
  1906. .fill-percent-value {
  1907. width: 60px;
  1908. }
  1909. .fill-percent-content {
  1910. width: 100px;
  1911. }
  1912. .fill-bar {
  1913. height: 20px !important;
  1914. border: 1px solid #ddd;
  1915. }
  1916. .if-in-clinic {
  1917. display: none;
  1918. }
  1919. .stag-table-container {
  1920. max-height: calc(100vh - 230px - 1rem);
  1921. width: 100%;
  1922. overflow: auto !important;
  1923. }
  1924. .stag-table-container-lg>table{
  1925. min-width: 1450px;
  1926. }
  1927. .stag-table-container.stag-table-container-no-x-scroll {
  1928. overflow-x: hidden !important;
  1929. }
  1930. .stag-fc-container .fc-toolbar-title .tz-display {
  1931. font-size: inherit;
  1932. font-family: inherit;
  1933. }
  1934. .caremonth-measurements-calendar .fc-event.m-weight {
  1935. background: #38908f;
  1936. color: #fff;
  1937. padding-left: 5px;
  1938. margin-bottom: 2px;
  1939. }
  1940. .caremonth-measurements-calendar .fc-event.m-bp {
  1941. background: #5e96ae;
  1942. color: #fff;
  1943. padding-left: 5px;
  1944. margin-bottom: 2px;
  1945. }
  1946. .caremonth-measurements-calendar .fc-event.m-weight *,
  1947. .caremonth-measurements-calendar .fc-event.m-bp *{
  1948. font-size: 10px !important;
  1949. }
  1950. .caremonth-measurements-calendar .fc-daygrid-event-dot {
  1951. display: none;
  1952. }
  1953. .pro-dashboard-inline-calendar>.ui-datepicker-inline {
  1954. width: 100%;
  1955. border: 0 !important;
  1956. }
  1957. .caremonth-measurements-calendar>.ui-datepicker-inline {
  1958. width: 100%;
  1959. }
  1960. .caremonth-measurements-calendar .ui-datepicker-prev,
  1961. .caremonth-measurements-calendar .ui-datepicker-next {
  1962. display: none;
  1963. }
  1964. #simpleSMSReminderComponent input[type="time"] {
  1965. max-width: 120px;
  1966. min-width: unset !important;
  1967. margin-top: 5px;
  1968. }
  1969. form.non-interactive .form-content {
  1970. opacity: 0.5;
  1971. cursor: not-allowed;
  1972. }
  1973. form.non-interactive .form-content * {
  1974. pointer-events: none;
  1975. }
  1976. #eventPros {
  1977. max-height: 28px;
  1978. opacity: 0;
  1979. }
  1980. .training-event {
  1981. position: relative;
  1982. background: #f0feff;
  1983. border-color: #32a2b89e !important;
  1984. }
  1985. .training-event::after {
  1986. position: absolute;
  1987. content: 'Training';
  1988. font-size: 10px;
  1989. font-weight: normal;
  1990. color: #17a2b8;
  1991. left: 1px;
  1992. bottom: -13px;
  1993. transform-origin: left top;
  1994. transform: rotate(
  1995. -90deg
  1996. );
  1997. width: 90px;
  1998. text-align: center;
  1999. letter-spacing: 0.75px;
  2000. }
  2001. .training-event .training-icon {
  2002. font-size: 22px;
  2003. color: #0d59af;
  2004. }
  2005. .training-event .patient-avatar {
  2006. border-color: #0d59af7d !important;
  2007. }
  2008. /* print-note */
  2009. @media print {
  2010. .stag-content #sidebarMenu {
  2011. display: none !important;
  2012. }
  2013. .stag-content .main-row {
  2014. padding-left: 0 !important;
  2015. }
  2016. .stag-content [moe] {
  2017. display: none !important;
  2018. }
  2019. .stag-content .screen-only {
  2020. display: none !important;
  2021. }
  2022. }
  2023. @media screen {
  2024. .stag-content .print-only {
  2025. display: none !important;
  2026. }
  2027. }
  2028. .child-sections>.note-section:not(.edit) {
  2029. position: relative;
  2030. }
  2031. .child-sections>.note-section:not(.edit):before {
  2032. content: '';
  2033. width: 9px;
  2034. border-top: 1px solid #ccc;
  2035. left: 0;
  2036. top: calc(1rem + 8px);
  2037. height: 1px;
  2038. position: absolute;
  2039. }
  2040. .child-sections>.note-section.edit {
  2041. margin-left: 1rem;
  2042. }
  2043. .rhs-absolute-fh-link {
  2044. position: absolute;
  2045. right: 0;
  2046. padding: 0 0.5rem;
  2047. background-color: inherit;
  2048. }
  2049. .mcp-theme-1 .click-to-copy {
  2050. background-color: #e4f7ed36;
  2051. cursor: copy;
  2052. border-bottom: 1px dotted #c0f7e86e;
  2053. }
  2054. .mcp-theme-1 .click-to-copy:hover {
  2055. border-bottom: 1px dotted #c0f7e8;
  2056. }
  2057. [data-type="removed"] {
  2058. color: gray;
  2059. font-style: italic;
  2060. }
  2061. [data-type="existing"] {
  2062. }
  2063. [data-type="updated"] {
  2064. font-weight: bold;
  2065. color: #d8a714;
  2066. }
  2067. [data-type="prescribed today"] {
  2068. font-weight: bold;
  2069. color: #2ea745
  2070. }
  2071. .process-notes-badge {
  2072. border: 1px solid #ddd;
  2073. cursor: pointer;
  2074. padding: 0.35rem 0.6rem;
  2075. border-radius: 4px;
  2076. text-decoration: none !important;
  2077. }
  2078. .process-notes-badge:hover {
  2079. color: #000 !important;
  2080. border-color: #349caf;
  2081. }
  2082. .process-notes-badge.active {
  2083. /*font-weight: bold;*/
  2084. color: #fff !important;
  2085. background: #349caf;
  2086. border-color: #349caf;
  2087. }
  2088. .process-notes-badge.success {
  2089. font-weight: bold;
  2090. color: #fff !important;
  2091. background: #31b574;
  2092. border-color: #31b574;
  2093. cursor: auto;
  2094. }
  2095. .process-notes-badge.error {
  2096. font-weight: bold;
  2097. color: #fff !important;
  2098. background: #a72132;
  2099. border-color: #a72132;
  2100. cursor: auto;
  2101. }
  2102. /*
  2103. .process-notes-badge {
  2104. position: relative;
  2105. }
  2106. .process-notes-badge:after {
  2107. position: absolute;
  2108. content: attr(data-index);
  2109. top: -14px;
  2110. left: 10px;
  2111. background: #fff;
  2112. border: 1px solid;
  2113. width: 20px;
  2114. text-align: center;
  2115. border-radius: 100%;
  2116. }*/
  2117. .no-overflow-menu {
  2118. overflow-y: auto;
  2119. max-height: calc(100vh - 44px);
  2120. }
  2121. .zero-height-field {
  2122. height: 1px !important;
  2123. opacity: 0 !important;
  2124. pointer-events: none;
  2125. position: absolute;
  2126. }
  2127. table.dashboard-stats-table th {
  2128. padding: 0.5rem 0.75rem
  2129. }
  2130. .max-height-100px {
  2131. max-height: 100px;
  2132. }
  2133. .max-height-200px {
  2134. max-height: 200px;
  2135. }
  2136. .min-height-300px {
  2137. min-height: 300px;
  2138. }
  2139. .max-height-400px {
  2140. max-height: 400px;
  2141. }
  2142. .min-height-500px {
  2143. min-height: 500px;
  2144. }
  2145. .inline-html-container p {
  2146. margin-bottom: 0;
  2147. }
  2148. body.in-iframe>.navbar {
  2149. display: none !important;
  2150. }
  2151. body.in-iframe .stag-content {
  2152. padding-top: 0 !important;
  2153. }
  2154. body.in-iframe .main-row > .sidebar {
  2155. top: 0;
  2156. height: 100%;
  2157. }
  2158. .hide-outside-popup {
  2159. display: none !important;
  2160. }
  2161. .stag-popup .hide-outside-popup {
  2162. display: block !important;
  2163. }
  2164. .stag-popup .hide-inside-popup {
  2165. display: none !important;
  2166. }
  2167. .strike-through {
  2168. text-decoration: line-through;
  2169. }
  2170. .visit-segment .strike-through {
  2171. color: #8b1621 !important;
  2172. text-decoration: none !important;
  2173. opacity: 0.9;
  2174. }
  2175. /* visit-moe */
  2176. [visit-moe] [url]:not([show]){
  2177. display: none;
  2178. }
  2179. [visit-moe] {
  2180. display: inline-block;
  2181. }
  2182. [visit-moe][relative] {
  2183. position: relative;
  2184. }
  2185. [visit-moe] [url]:not([show]) {
  2186. z-index: 99999;
  2187. position: absolute;
  2188. background-color: white;
  2189. padding: 10px;
  2190. border: 1px solid gray;
  2191. }
  2192. [visit-moe][fixed-center] [url]:not([show]) {
  2193. position: fixed !important;
  2194. top: 200px !important;
  2195. left: calc(50% - 360px) !important;
  2196. width: 720px;
  2197. }
  2198. [visit-moe] [url][right] {
  2199. right: 0;
  2200. min-width: 200px;
  2201. }
  2202. [visit-moe] [url][left] {
  2203. left: 0;
  2204. }
  2205. [visit-moe][large] form, [visit-moe][large] [url] {
  2206. width: 450px;
  2207. }
  2208. [visit-moe][larger] form, [visit-moe][large] [url] {
  2209. width: 600px;
  2210. }
  2211. [visit-moe][largest] form, [visit-moe][largest] [url] {
  2212. width: 750px;
  2213. }
  2214. [visit-moe][bottom] form {
  2215. bottom: 100%;
  2216. }
  2217. .note-container {
  2218. display: flex;
  2219. align-items: start;
  2220. }
  2221. .note-container .note-lhs-tree {
  2222. min-width: 220px;
  2223. max-width: 220px;
  2224. align-self: stretch;
  2225. border-right: 1px solid #ddd;
  2226. padding-top: 0.85rem;
  2227. height: 300px;
  2228. overflow: hidden;
  2229. max-height: calc(100vh - 55px);
  2230. background-color: #fff;
  2231. }
  2232. .note-container .note-lhs-tree:hover {
  2233. overflow: overlay;
  2234. }
  2235. .note-container .note-lhs-tree.fixed, .note-container .note-lhs-tree.fixed-left {
  2236. position: fixed;
  2237. top: 55px;
  2238. max-height: calc(100vh - 55px) !important;
  2239. height: calc(100vh - 55px) !important;
  2240. z-index: 1;
  2241. }
  2242. .note-container .note-lhs-tree.fixed ~ .note-rhs-content {
  2243. margin-left: 220px;
  2244. margin-right: 220px;
  2245. }
  2246. .note-container .note-lhs-tree.fixed-left ~ .note-rhs-content {
  2247. margin-left: 220px;
  2248. }
  2249. .note-container .note-lhs-tree .note-tree-node.note-tree-heading>a {
  2250. }
  2251. .note-container .note-lhs-tree .note-tree-node>a {
  2252. display: block;
  2253. padding: 0.15rem 0;
  2254. padding-left: 0.75rem;
  2255. white-space: nowrap;
  2256. text-overflow: ellipsis;
  2257. overflow: hidden;
  2258. text-decoration: none;
  2259. color: #333;
  2260. }
  2261. .note-container .note-lhs-tree>.note-tree-node>a:not([data-non-segment-target]) {
  2262. color: #333;
  2263. }
  2264. .note-container .note-lhs-tree .note-tree-node>a:hover {
  2265. background-color: aliceblue;
  2266. color: #0d59af !important;
  2267. }
  2268. .note-container .note-lhs-tree .note-tree-node:hover>a,
  2269. .note-container .note-lhs-tree .note-tree-node.hovered>a {
  2270. background-color: aliceblue;
  2271. }
  2272. .note-container .note-lhs-tree .note-tree-node.active>a {
  2273. font-weight: bold !important;
  2274. color: #0d59af !important;
  2275. }
  2276. .note-container .note-lhs-tree .note-tree-children>.note-tree-node>a {
  2277. padding-left: 2rem;
  2278. }
  2279. .note-container .note-lhs-tree .note-tree-children .note-tree-children>.note-tree-node>a {
  2280. padding-left: 4rem;
  2281. }
  2282. .note-container .note-rhs-content {
  2283. flex-grow: 1;
  2284. }
  2285. .note-container .segments-list .note-content-node>a {
  2286. display: block;
  2287. padding: 0.15rem 0;
  2288. padding-left: 0.75rem;
  2289. white-space: nowrap;
  2290. text-overflow: ellipsis;
  2291. overflow: hidden;
  2292. text-decoration: none;
  2293. color: #333;
  2294. }
  2295. .note-container .segments-list>.note-content-node>a:not([data-non-segment-target]) {
  2296. font-weight: bold;
  2297. color: #333;
  2298. }
  2299. .note-container .segments-list .note-content-node>a:hover {
  2300. background-color: aliceblue;
  2301. color: #0d59af !important;
  2302. }
  2303. .note-container .segments-list .note-content-node:hover>a,
  2304. .note-container .segments-list .note-content-node.hovered>a {
  2305. background-color: aliceblue;
  2306. }
  2307. .note-container .segments-list .note-content-node.active>a {
  2308. font-weight: bold !important;
  2309. color: #0d59af !important;
  2310. }
  2311. .note-container .segments-list .note-content-children>.note-content-node>a {
  2312. padding-left: 2rem;
  2313. }
  2314. .note-container .segments-list .note-content-children .note-content-children>.note-tree-node>a {
  2315. padding-left: 4rem;
  2316. }
  2317. .note-container .note-rhs-sidebar {
  2318. min-width: 220px;
  2319. max-width: 220px;
  2320. align-self: stretch;
  2321. border-right: 1px solid #ddd;
  2322. border-left: 1px solid #ddd;
  2323. height: 300px;
  2324. overflow: hidden;
  2325. max-height: calc(100vh - 55px);
  2326. background-color: #fff;
  2327. }
  2328. .note-container .note-rhs-sidebar:hover {
  2329. overflow: overlay;
  2330. }
  2331. .note-container .note-rhs-sidebar.fixed {
  2332. position: fixed;
  2333. top: 55px;
  2334. right: 0;
  2335. max-height: calc(100vh - 55px) !important;
  2336. height: calc(100vh - 55px) !important;
  2337. z-index: 1;
  2338. }
  2339. .note-container .note-rhs-sidebar.fixed ~ .note-rhs-content {
  2340. margin-right: 220px;
  2341. }
  2342. .spot-highlight {
  2343. background: aliceblue !important;
  2344. }
  2345. .on-click-menu [menu] {
  2346. position: absolute;
  2347. display: none;
  2348. top: 100%;
  2349. right: 0;
  2350. z-index: 1;
  2351. box-shadow: 0 0 4px #ccc;
  2352. }
  2353. .on-click-menu [menu][right] {
  2354. right: auto;
  2355. left: 0;
  2356. }
  2357. .on-click-menu [menu][bottom] {
  2358. bottom: 100%;
  2359. top: auto;
  2360. left: 0;
  2361. right: auto;
  2362. }
  2363. .zero-height {
  2364. height: 0 !important;
  2365. padding: 0 !important;
  2366. border: 0 !important;
  2367. overflow: hidden;
  2368. }
  2369. /*.note-section[data-segment-template-name="medrisk_vigilence"] {
  2370. position: fixed;
  2371. right: 0;
  2372. top: 55px;
  2373. width: 40px;
  2374. height: calc(100vh - 54px);
  2375. background: aliceblue;
  2376. padding: 0 !important;
  2377. border-left: 1px solid #ddd;
  2378. transition: width 0.1s ease;
  2379. }*/
  2380. .on-trigger-only,
  2381. .on-content-only {
  2382. display: none !important;
  2383. }
  2384. .mrv-trigger .on-trigger-only,
  2385. .mrv-content .on-content-only {
  2386. display: inherit !important;
  2387. }
  2388. .mrv-badge {
  2389. border-radius: 100%;
  2390. height: 24px;
  2391. width: 24px;
  2392. min-height: 24px;
  2393. min-width: 24px;
  2394. max-height: 24px;
  2395. max-width: 24px;
  2396. text-align: center;
  2397. font-weight: 400;
  2398. display: flex;
  2399. align-items: center;
  2400. justify-content: center;
  2401. background-color: #6457f9;
  2402. color: #fff;
  2403. opacity: 0.85;
  2404. }
  2405. .mrv-badge>span {
  2406. font-size: 10px !important;
  2407. }
  2408. .note-bottom-toolbar {
  2409. bottom: 0;
  2410. z-index: 3;
  2411. }
  2412. .note-bottom-toolbar .nbt-container:hover {
  2413. cursor: pointer;
  2414. background: #fff !important;
  2415. }
  2416. [open-in-stag-popup] * {
  2417. pointer-events: none;
  2418. }
  2419. .stag-menu {
  2420. position: absolute;
  2421. z-index: 4;
  2422. }
  2423. .visit-segment .mcp-theme-1 .ql-editor[contenteditable] {
  2424. min-height: 200px;
  2425. }
  2426. .visit-segment .mcp-theme-1 [short] .ql-editor[contenteditable] {
  2427. min-height: 100px !important;
  2428. }
  2429. .visit-segment tr .vitals-copy-trigger {
  2430. position: absolute;
  2431. top: 0;
  2432. left: -10px;
  2433. width: 20px;
  2434. height: 100%;
  2435. align-items: center;
  2436. justify-content: center;
  2437. display: none;
  2438. cursor: pointer;
  2439. text-decoration: none !important;
  2440. }
  2441. .visit-segment tr:hover .vitals-copy-trigger {
  2442. display: flex;
  2443. }
  2444. [tab-links] {
  2445. }
  2446. [tab-links] [tab-link] {
  2447. padding: 0.5rem 0.75rem;
  2448. border: 1px solid #ccc;
  2449. color: #222;
  2450. background: #eee;
  2451. text-decoration: none;
  2452. }
  2453. [tab-links] [tab-link]:not(:last-child) {
  2454. border-right: 0;
  2455. }
  2456. [tab-links] [tab-link]:not(.tab-link-active):hover {
  2457. background: #f7f7f7;
  2458. }
  2459. [tab-links] [tab-link].tab-link-active {
  2460. font-weight: bold;
  2461. background: #fff;
  2462. }
  2463. tr.relevant-to-visit td:nth-child(1) {
  2464. color: #17a2b8;
  2465. }
  2466. .autosave-indicator {
  2467. display: none;
  2468. }
  2469. .autosave-indicator.show {
  2470. display: block;
  2471. }
  2472. table .stag-filter-hide {
  2473. display: none !important;
  2474. }
  2475. table .stag-filter-highlight {
  2476. background: rgb(255 215 215);
  2477. }
  2478. .event-bg-green {
  2479. background-color: #f6ffeb;
  2480. }
  2481. .event-bg-gray {
  2482. background-color: #ececec;
  2483. }
  2484. .popover-header {
  2485. padding: 3px 10px;
  2486. font-size: 13px;
  2487. font-weight: bold;
  2488. }
  2489. .popover-body {
  2490. font-size: 13px;
  2491. }
  2492. td.row-selection-highlight {
  2493. position: relative;
  2494. }
  2495. td.row-selection-highlight:after {
  2496. content: '';
  2497. position: absolute;
  2498. top: 0;
  2499. left: -4px;
  2500. width: 4px;
  2501. height: 100%;
  2502. background-color: #0d59af;
  2503. border-top-left-radius: 2px;
  2504. border-bottom-left-radius: 2px;
  2505. }
  2506. /* stag-collapsible-card */
  2507. [stag-collapsible-card] .stag-collapse-trigger {
  2508. padding: 0;
  2509. width: 22px;
  2510. align-self: stretch;
  2511. margin-right: -11px;
  2512. align-items: center;
  2513. justify-content: center;
  2514. display: inline-flex;
  2515. border-radius: 2px;
  2516. }
  2517. [stag-collapsible-card] .stag-collapse-trigger:hover {
  2518. text-decoration: none !important;
  2519. background: #4441;
  2520. }
  2521. [stag-collapsible-card] .stag-collapse-trigger i {
  2522. display: none;
  2523. }
  2524. [stag-collapsible-card][collapsed] .stag-collapse-trigger i.if-collapsed {
  2525. display: block;
  2526. }
  2527. [stag-collapsible-card]:not([collapsed]) .stag-collapse-trigger i.if-not-collapsed {
  2528. display: block;
  2529. }
  2530. [stag-collapsible-card][collapsed] .card-body {
  2531. display: none;
  2532. }
  2533. /* lifestyle rx specific */
  2534. .border-top-nutrition-rx {
  2535. border-top: 3px solid #a4d067;
  2536. }
  2537. .border-top-exercise-rx {
  2538. border-top: 3px solid #43c2cb;
  2539. }
  2540. .border-top-behavior-rx {
  2541. border-top: 3px solid #ffa82e;
  2542. }
  2543. .icon-nutrition-rx-md {
  2544. max-height: 22px;
  2545. }
  2546. .icon-nutrition-rx-row {
  2547. max-height: 18px;
  2548. }
  2549. .icon-nutrition-rx-row-sm {
  2550. max-height: 14px;
  2551. }
  2552. .table td.fit,
  2553. .table th.fit {
  2554. white-space: nowrap;
  2555. width: 1%;
  2556. }
  2557. table.table-cage {
  2558. border: 0px;
  2559. color: #2b4259;
  2560. }
  2561. table.table-cage tr:first-child td {
  2562. border-top: 0;
  2563. }
  2564. table.table-cage tr:last-child td {
  2565. border-bottom: 0;
  2566. }
  2567. table.table-cage tr td:first-child {
  2568. border-left: 0;
  2569. }
  2570. table.table-cage tr td:last-child {
  2571. border-right: 0;
  2572. border-left: 0 !important;
  2573. }
  2574. table.table-cage tr td:nth-last-child(2) {
  2575. border-right: 0 !important;
  2576. }
  2577. table.table-xs tr td {
  2578. padding: 0.15rem;
  2579. }
  2580. [if-edit-mode], [if-read-mode] {
  2581. display: none;
  2582. }
  2583. .edit [if-edit-mode] {
  2584. display: block;
  2585. }
  2586. .read [if-read-mode] {
  2587. display: block;
  2588. }
  2589. /* colored radios */
  2590. .rspace input[type="radio"][value="-"]:checked,
  2591. .rspace input[type="radio"][value="+"]:checked{
  2592. position: relative;
  2593. }
  2594. .rspace input[type="radio"][value="-"]:checked:before,
  2595. .rspace input[type="radio"][value="+"]:checked:before,
  2596. .rspace input[type="radio"][value="-"]:checked:after,
  2597. .rspace input[type="radio"][value="+"]:checked:after{
  2598. content: '';
  2599. position: absolute;
  2600. border-radius: 100%;
  2601. background:#fff;
  2602. }
  2603. .rspace input[type="radio"][value="-"]:checked:before,
  2604. .rspace input[type="radio"][value="+"]:checked:before{
  2605. top: 0;
  2606. left: 0;
  2607. width: 100%;
  2608. height: 100%;
  2609. }
  2610. .rspace input[type="radio"][value="-"]:checked:after,
  2611. .rspace input[type="radio"][value="+"]:checked:after{
  2612. top: 3px;
  2613. left: 3px;
  2614. width: calc(100% - 6px);
  2615. height: calc(100% - 6px);
  2616. }
  2617. .rspace input[type="radio"][value="-"]:checked:before {
  2618. border: 1px solid #e7848f;
  2619. }
  2620. .rspace input[type="radio"][value="+"]:checked:before {
  2621. border: 1px solid #2d9f2d91;
  2622. }
  2623. .rspace input[type="radio"][value="-"]:checked:after {
  2624. background-color: #e7848f;
  2625. }
  2626. .rspace input[type="radio"][value="+"]:checked:after {
  2627. background-color: #2d9f2d91;
  2628. }
  2629. @page
  2630. {
  2631. margin: 10mm 10mm 10mm 10mm;
  2632. }
  2633. .note-left-panel ~ .v-split {
  2634. height: 100%;
  2635. background: #DDD;
  2636. opacity: 1;
  2637. z-index: 2;
  2638. margin-left: -3px;
  2639. border-radius: 0;
  2640. margin-top: 0;
  2641. width: 6px;
  2642. }
  2643. .stag-scrollbar {
  2644. overflow: overlay;
  2645. }
  2646. .stag-scrollbar .stag-scrollbar-horiz-container {
  2647. position: fixed;
  2648. left: 849px;
  2649. bottom: 35px;
  2650. width: 633px;
  2651. height: 7px;
  2652. /*background: #aaa3;*/
  2653. transition: opacity 0.2s ease;
  2654. opacity: 0;
  2655. }
  2656. .stag-scrollbar[stag-h-scrollbar]:hover .stag-scrollbar-horiz-container,
  2657. body.stag-scrollbar-scrolling .stag-scrollbar[stag-h-scrollbar] .stag-scrollbar-horiz-container {
  2658. opacity: 1;
  2659. }
  2660. .stag-scrollbar .stag-scrollbar-horiz-tracker {
  2661. height: 7px;
  2662. background: #ddd;
  2663. border-radius: 10px;
  2664. }
  2665. .stag-scrollbar .stag-scrollbar-horiz-tracker:hover {
  2666. background: #ccc;
  2667. cursor: ew-resize;
  2668. }
  2669. .form-read-mode textarea, .form-read-mode input[type="text"] {
  2670. background: transparent;
  2671. border: 0;
  2672. padding: 0;
  2673. }
  2674. .conditions-tree {
  2675. /*padding: 0.5rem;*/
  2676. }
  2677. .conditions-tree .condition>a {
  2678. display: block;
  2679. padding: 3px 5px;
  2680. }
  2681. .conditions-tree .condition-children {
  2682. padding-left: 22px;
  2683. margin-left: -4px;
  2684. margin-top: -10px;
  2685. padding-top: 10px;
  2686. }
  2687. /* tree lines CSS */
  2688. .conditions-tree {
  2689. margin-left: 10px;
  2690. }
  2691. .conditions-tree .condition {
  2692. position: relative;
  2693. }
  2694. .conditions-tree .condition>a {
  2695. position: relative;
  2696. display: block;
  2697. padding-left: 9px;
  2698. white-space: nowrap;
  2699. text-overflow: ellipsis;
  2700. }
  2701. .conditions-tree .condition>a:before {
  2702. position: absolute;
  2703. content: '';
  2704. left: -7px;
  2705. background: url(/img/node.png);
  2706. width: 8px;
  2707. height: 7px;
  2708. background-size: 100% 100%;
  2709. top: calc(50% - 4px);
  2710. }
  2711. .conditions-tree .condition-children .condition>a:after {
  2712. position: absolute;
  2713. content: '';
  2714. left: -92px;
  2715. border-top: 1px solid #aaa;
  2716. width: 90px;
  2717. top: calc(50% - 1px);
  2718. }
  2719. .conditions-tree .condition-children .condition>a>.rm-count:after {
  2720. position: absolute;
  2721. content: '';
  2722. left: -22px;
  2723. border-left: 1px solid #aaa;
  2724. height: 200px;
  2725. bottom: 50%;
  2726. }
  2727. .conditions-tree .condition-children {
  2728. overflow: hidden;
  2729. }
  2730. table.stag-compact-grid>tbody>tr>td {
  2731. white-space: nowrap;
  2732. max-height: 1rem !important;
  2733. }
  2734. table.stag-compact-grid>tbody>tr>td>ul>li {
  2735. display: none;
  2736. }
  2737. table.stag-compact-grid>tbody>tr>td ul>li:nth-child(1) {
  2738. display: block;
  2739. margin-left: 0 !important;
  2740. }
  2741. table.stag-compact-grid>tbody>tr>td .alert {
  2742. padding: 0;
  2743. margin: 0;
  2744. }
  2745. table.stag-compact-grid>tbody>tr>td table>thead,
  2746. table.stag-compact-grid>tbody>tr>td table>tbody tr{
  2747. display: none;
  2748. }
  2749. table.stag-compact-grid>tbody>tr>td table>tbody tr:nth-child(1) {
  2750. display: table-row;
  2751. }
  2752. table.stag-compact-grid>tbody>tr>td {
  2753. border-left: 1px solid #ddd;
  2754. }
  2755. table.stag-compact-grid>tbody>tr>td:first-child {
  2756. border-left: 0;
  2757. }
  2758. table tr td [if-details-view] {
  2759. display: block;
  2760. }
  2761. table tr td [if-grid-view] {
  2762. display: none;
  2763. }
  2764. table.stag-compact-grid>tbody>tr>td [if-details-view] {
  2765. display: none;
  2766. }
  2767. table.stag-compact-grid>tbody>tr>td [if-grid-view] {
  2768. display: block;
  2769. }
  2770. .segment-template-summary-value {
  2771. font-weight: bold;
  2772. text-decoration: underline;
  2773. margin-left: 10px;
  2774. }
  2775. .stat-tree .v-split {
  2776. width: 6px;
  2777. margin-left: -3px;
  2778. margin-top: 0;
  2779. height: 100%;
  2780. border-radius: 0;
  2781. }
  2782. .tree-column-header.has-changes {
  2783. background: #ffeeee !important;
  2784. }
  2785. .stat-tree-view .stat-tree-node {
  2786. padding: 0.1rem 0.3rem;
  2787. }
  2788. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2789. padding-left: 1.5rem
  2790. }
  2791. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2792. padding-left: 2.6rem;
  2793. }
  2794. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2795. padding-left: 3.7rem;
  2796. }
  2797. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2798. padding-left: 4.8rem;
  2799. }
  2800. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2801. padding-left: 5.9rem;
  2802. }
  2803. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2804. padding-left: 7rem;
  2805. }
  2806. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2807. padding-left: 8.1rem;
  2808. }
  2809. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2810. padding-left: 9.2rem;
  2811. }
  2812. .stat-tree-user-view .stat-tree-anchor {
  2813. color: rgb(13, 89, 175) !important;
  2814. text-decoration: none;
  2815. }
  2816. /* jstree overrides */
  2817. .stat-tree-view .jstree-wholerow {
  2818. border-bottom: 1px solid #f1f1f1;
  2819. }
  2820. .stat-tree-view .jstree-anchor.has-drop-visualization::after {
  2821. content: attr(data-drop-percent);
  2822. margin-left: 1rem;
  2823. font-size: 70%;
  2824. }
  2825. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-0-25::after {
  2826. color: grey;
  2827. }
  2828. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-26-50::after {
  2829. color: saddlebrown;
  2830. }
  2831. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-51-75::after {
  2832. color: #dc7024;
  2833. }
  2834. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-76-100::after {
  2835. color: red;
  2836. }
  2837. .stat-tree-view .jstree-anchor.has-goal-label::before {
  2838. content: attr(data-goal-label);
  2839. margin-left: auto;
  2840. font-size: 80%;
  2841. color: orangered;
  2842. position: absolute;
  2843. left: calc(100% + 0.75rem);
  2844. font-weight: bold;
  2845. }
  2846. .mv-drop-0-25 {
  2847. color: grey;
  2848. }
  2849. .mv-drop-26-50 {
  2850. color: saddlebrown;
  2851. }
  2852. .mv-drop-51-75 {
  2853. color: #dc7024;
  2854. }
  2855. .mv-drop-76-100 {
  2856. color: red;
  2857. }
  2858. .multi-pro-view .line-count-label {
  2859. display: none;
  2860. }
  2861. .multi-pro-view .multi-pro-stats-table {
  2862. border: 0;
  2863. }
  2864. .multi-pro-view .multi-pro-stats-table tr th {
  2865. height: 22px;
  2866. background: #eee;
  2867. line-height: 22px;
  2868. padding: 0 5px;
  2869. padding-right: 0;
  2870. font-weight: normal;
  2871. color: #777;
  2872. border: 0;
  2873. border-left: 1px solid #e1e1e1;
  2874. width: 120px;
  2875. }
  2876. .multi-pro-view .multi-pro-stats-table tr th .pro-label {
  2877. min-width: 120px;
  2878. max-width: 120px;
  2879. overflow: hidden;
  2880. white-space: nowrap;
  2881. text-overflow: ellipsis;
  2882. }
  2883. .multi-pro-view .multi-pro-stats-table tr td {
  2884. border-top: 0;
  2885. padding: 0 5px;
  2886. border-left: 1px solid #f1f1f1;
  2887. width: 120px;
  2888. }
  2889. .multi-pro-view .multi-pro-stats-table tr th:last-child,
  2890. .multi-pro-view .multi-pro-stats-table tr td:last-child {
  2891. width: auto;
  2892. }
  2893. .multi-pro-view .count-label {
  2894. height: 24px;
  2895. line-height: 24px;
  2896. border-bottom: 1px solid #f1f1f1;
  2897. color: #666;
  2898. display: flex;
  2899. align-items: baseline;
  2900. padding-left: 4px;
  2901. }
  2902. .multi-pro-view .count-label .count {
  2903. white-space: nowrap;
  2904. width: 50%;
  2905. border-right: 1px solid #e7e7e7;
  2906. text-align: right;
  2907. padding-right: 5px;
  2908. }
  2909. .multi-pro-view .count-label .drop-percent {
  2910. font-size: 78%;
  2911. opacity: 0.8;
  2912. margin-left: 5px;
  2913. }
  2914. .multi-pro-view .multi-pro-view-stat-label {
  2915. height: 22px;
  2916. background: #eee;
  2917. line-height: 22px;
  2918. padding: 0 5px;
  2919. font-weight: bold;
  2920. color: #777;
  2921. }
  2922. .multi-pro-view th .mv-delete-pro-trigger {
  2923. position: absolute;
  2924. right: 2px;
  2925. top: 2px;
  2926. width: 16px;
  2927. height: 16px;
  2928. line-height: 16px;
  2929. font-size: 10px;
  2930. text-align: center;
  2931. display: none;
  2932. }
  2933. .multi-pro-view th:hover .mv-delete-pro-trigger {
  2934. display: block;
  2935. }
  2936. body .vakata-context li>a {
  2937. padding: 1px 5px;
  2938. padding-right: 10px;
  2939. line-height: unset;
  2940. font-size: 13px
  2941. }
  2942. body .vakata-context li>a>i {
  2943. display: none;
  2944. }
  2945. body .vakata-context li>a .vakata-contextmenu-sep {
  2946. display: none;
  2947. }
  2948. /*body .clauses-view li>i.jstree-icon {
  2949. display: none;
  2950. }*/
  2951. body #vakata-dnd {
  2952. font-family: Verdana, sans-serif;
  2953. font-size: 12px;
  2954. background: rgba(240, 248, 255, 0.76);
  2955. }
  2956. body .vakata-context .vakata-context-separator>a {
  2957. margin: 0;
  2958. }
  2959. .clause-label-part:not(:last-child)::after {
  2960. content: 'and';
  2961. position: absolute;
  2962. color: #299ab3;
  2963. font-size: 90%;
  2964. left: 100%;
  2965. width: 35px;
  2966. text-align: center;
  2967. }
  2968. .clause-label-part:not(:last-child) {
  2969. position: relative;
  2970. margin-right: 35px !important;
  2971. }
  2972. .phq .btn-select {
  2973. padding: 5px 13px;
  2974. }
  2975. .phq .btn-blank {
  2976. opacity: .5;
  2977. }
  2978. .phq .btn-select:focus,
  2979. .phq .btn-blank:focus {
  2980. box-shadow: none;
  2981. }
  2982. .phq .btn-select.active {
  2983. background-color: #28b4d9;
  2984. color: #fff;
  2985. }
  2986. .phq .plus {
  2987. position: relative;
  2988. }
  2989. .phq .plus::before {
  2990. content: '+';
  2991. position: absolute;
  2992. left: 0
  2993. }
  2994. .phq .table td,
  2995. .phq .table th {
  2996. border-top-color: #000;
  2997. }
  2998. .phq .table thead th {
  2999. border-bottom: 0;
  3000. }
  3001. .page-tabs {
  3002. width: 100%;
  3003. }
  3004. .page-tabs .links {
  3005. width: 100%;
  3006. display: flex;
  3007. align-items: center;
  3008. }
  3009. .page-tabs .links a {
  3010. padding: 5px 10px;
  3011. border: 1px solid #224587;
  3012. border-right: none;
  3013. border-bottom: none;
  3014. font-weight: bold;
  3015. }
  3016. .page-tabs .links a:last-child {
  3017. border-right: 1px solid #224587;
  3018. }
  3019. .page-tabs .links a.active {
  3020. background-color: #224587;
  3021. color: #fff;
  3022. }
  3023. .page-tabs .page-tab {
  3024. border: 1px solid #ddd;
  3025. padding: 10px;
  3026. }
  3027. .table-columns tr:first-child .move-up {
  3028. display: none;
  3029. }
  3030. .table-columns tr:last-child .move-down {
  3031. display: none;
  3032. }
  3033. .table-dnd-on-drag {
  3034. background-color: #fff7de !important;
  3035. box-shadow: 6px 3px 5px #e9e9e9, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset;
  3036. transition: 0.3s;
  3037. }
  3038. .table-dnd-on-drag td {
  3039. font-weight: bold;
  3040. border-top: none;
  3041. }
  3042. .table-dnd-no-change {
  3043. opacity: 0.5;
  3044. transition: 0.3s;
  3045. }
  3046. .droppable-section-active {
  3047. border: 2px dashed #00bcd4;
  3048. }
  3049. [draggable] {
  3050. cursor:all-scroll;
  3051. }
  3052. body.forced-masking {
  3053. opacity: 0.6 !important;
  3054. }
  3055. body.forced-masking #mask {
  3056. display: block !important;
  3057. }
  3058. [stag-title] {
  3059. position: relative;
  3060. }
  3061. [stag-title]:hover:after {
  3062. content: attr(stag-title);
  3063. position: absolute;
  3064. bottom: 100%;
  3065. left: 0;
  3066. background: #f7f7f7;
  3067. border: 1px solid #d7d7d7;
  3068. border-left: 0;
  3069. color: #888;
  3070. text-align: center;
  3071. font-size: 80%;
  3072. font-weight: normal;
  3073. padding: 1px 3px;
  3074. z-index: 1;
  3075. }
  3076. .post-refresh-highlight {
  3077. background: #cbf4f0 !important;
  3078. }
  3079. .wrapping-pre-container pre {
  3080. white-space: normal !important;
  3081. }
  3082. [data-segment-template-name="plan_free_text_v2"] pre {
  3083. white-space: normal !important;
  3084. }
  3085. .note-container.note_template_omega_soap_visit .mcp-theme-1 .ql-editor[contenteditable] {
  3086. min-height: 100px;
  3087. }
  3088. .note-container.note_template_omega_soap_visit .spot-highlight>.bg-light {
  3089. background: aliceblue !important;
  3090. }
  3091. .note-section.visit-segment.refreshing {
  3092. opacity: 0.6;
  3093. position: relative;
  3094. }
  3095. .note-section.visit-segment.refreshing::after {
  3096. position: absolute;
  3097. content: '';
  3098. top: 0;
  3099. left: 0;
  3100. width: 100%;
  3101. height: 100%;
  3102. background-image: url(/vanillaspin.gif);
  3103. background-repeat: no-repeat;
  3104. background-position: center center;
  3105. background-size: 20px;
  3106. z-index: 9999;
  3107. }
  3108. /* toggle checkboxes */
  3109. .mcp-theme-1 input[type="checkbox"][toggle] {
  3110. position: relative;
  3111. appearance: none;
  3112. width: 28px;
  3113. height: 16px;
  3114. background: #666;
  3115. border-radius: 16px;
  3116. cursor: pointer;
  3117. }
  3118. .mcp-theme-1 input[type="checkbox"][toggle]:checked {
  3119. background: var(--primary-color);
  3120. }
  3121. .mcp-theme-1 input[type="checkbox"][toggle]:after {
  3122. content: '';
  3123. position: absolute;
  3124. background: #fff;
  3125. border-radius: 100%;
  3126. height: 12px;
  3127. width: 12px;
  3128. left: 2px;
  3129. top: 2px;
  3130. transition: left 0.1s ease;
  3131. }
  3132. .mcp-theme-1 input[type="checkbox"][toggle]:checked:after {
  3133. background: #fff;
  3134. left: 14px;
  3135. }
  3136. .mcp-theme-1 input[type="checkbox"][toggle][disabled] {
  3137. opacity: 0.5;
  3138. cursor: not-allowed;
  3139. }
  3140. .inline-input-underlined {
  3141. border: none;
  3142. border-bottom: 1px solid #ced4da;
  3143. padding: 0;
  3144. text-align: center;
  3145. font-weight: bold;
  3146. }
  3147. .inline-input-underlined:focus {
  3148. outline: none;
  3149. box-shadow: none;
  3150. }
  3151. .inline-input-underlined.width-50 {
  3152. width: 50px;
  3153. }
  3154. .note_template_omega_soap_visit .system_segment .d-flex.border-bottom:last-of-type {
  3155. border-bottom: 0 !important;
  3156. }
  3157. .note-signed-by-hcp .hide-if-note-signed {
  3158. display: none !important;
  3159. }
  3160. .show-if-note-signed {
  3161. display: none !important;
  3162. }
  3163. .note-signed-by-hcp .show-if-note-signed {
  3164. display: block !important;
  3165. }
  3166. .customized-form {
  3167. width: 100%;
  3168. padding: 15px 0;
  3169. font-size: 0.9rem;
  3170. }
  3171. .customized-form .container {}
  3172. .customized-form .form-control {
  3173. border: none;
  3174. border-bottom: 1px solid #333;
  3175. border-radius: 0;
  3176. height: 25px;
  3177. padding: 0;
  3178. background-color: transparent;
  3179. }
  3180. .customized-form .form-control:focus {
  3181. outline: none;
  3182. box-shadow: none;
  3183. }
  3184. .customized-form .form-control.inline {
  3185. width: auto;
  3186. padding: 0 10px;
  3187. }
  3188. .customized-form textarea.form-control {
  3189. width: 100% !important;
  3190. }
  3191. .customized-form form .row .section.bg-light {
  3192. padding-top: 1rem;
  3193. margin-bottom: 1rem;
  3194. }
  3195. .customized-form .unified-checks {
  3196. display: flex;
  3197. flex-wrap: wrap;
  3198. }
  3199. .customized-form .unified-checks.flex-basis-20 > div {
  3200. flex-basis: 20%;
  3201. }
  3202. .customized-form .unified-checks.flex-basis-23>div.form-check {
  3203. flex-basis: 23%;
  3204. }
  3205. .customized-form .unified-checks.flex-basis-25>div.form-check {
  3206. flex-basis: 25%;
  3207. }
  3208. .customized-form .unified-checks.flex-basis-31>div.form-check {
  3209. flex-basis: 31%;
  3210. }
  3211. .customized-form .unified-checks.flex-basis-30 > div {
  3212. flex-basis: 30%;
  3213. }
  3214. .customized-form .form-check-inline .form-check-input[type="radio"] {
  3215. margin-top: -3px;
  3216. }
  3217. /* stag sheet */
  3218. .stag-sheet tbody tr td {
  3219. padding: 0;
  3220. background: #fff;
  3221. }
  3222. .stag-sheet tbody tr td input,
  3223. .stag-sheet tbody tr td textarea {
  3224. border: 1px solid transparent;
  3225. resize: none;
  3226. width: 100%;
  3227. outline: none;
  3228. margin: 0;
  3229. display: block;
  3230. padding: 3px;
  3231. min-height: 28px;
  3232. overflow: hidden;
  3233. }
  3234. .stag-sheet tbody tr td input:focus,
  3235. .stag-sheet tbody tr td input:focus-visible,
  3236. .stag-sheet tbody tr td textarea:focus,
  3237. .stag-sheet tbody tr td textarea:focus-visible{
  3238. border: 1px solid steelblue;
  3239. }