style.css 65 KB

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