editor.main.css 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398
  1. /*!-----------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Version: 0.31.1(5a1b4999493d49c857497ad481d73a737439f305)
  4. * Released under the MIT license
  5. * https://github.com/microsoft/vscode/blob/main/LICENSE.txt
  6. *-----------------------------------------------------------*/
  7. /*---------------------------------------------------------
  8. * Copyright (c) Microsoft Corporation. All rights reserved.
  9. *--------------------------------------------------------*/
  10. /*---------------------------------------------------------------------------------------------
  11. * Copyright (c) Microsoft Corporation. All rights reserved.
  12. * Licensed under the MIT License. See License.txt in the project root for license information.
  13. *--------------------------------------------------------------------------------------------*/
  14. .monaco-action-bar {
  15. white-space: nowrap;
  16. height: 100%;
  17. }
  18. .monaco-action-bar .actions-container {
  19. display: flex;
  20. margin: 0 auto;
  21. padding: 0;
  22. height: 100%;
  23. width: 100%;
  24. align-items: center;
  25. }
  26. .monaco-action-bar.vertical .actions-container {
  27. display: inline-block;
  28. }
  29. .monaco-action-bar .action-item {
  30. display: block;
  31. align-items: center;
  32. justify-content: center;
  33. cursor: pointer;
  34. position: relative; /* DO NOT REMOVE - this is the key to preventing the ghosting icon bug in Chrome 42 */
  35. }
  36. .monaco-action-bar .action-item.disabled {
  37. cursor: default;
  38. }
  39. .monaco-action-bar .action-item .icon,
  40. .monaco-action-bar .action-item .codicon {
  41. display: block;
  42. }
  43. .monaco-action-bar .action-item .codicon {
  44. display: flex;
  45. align-items: center;
  46. width: 16px;
  47. height: 16px;
  48. }
  49. .monaco-action-bar .action-label {
  50. font-size: 11px;
  51. padding: 3px;
  52. border-radius: 5px;
  53. }
  54. .monaco-action-bar .action-item.disabled .action-label,
  55. .monaco-action-bar .action-item.disabled .action-label::before,
  56. .monaco-action-bar .action-item.disabled .action-label:hover {
  57. opacity: 0.4;
  58. }
  59. /* Vertical actions */
  60. .monaco-action-bar.vertical {
  61. text-align: left;
  62. }
  63. .monaco-action-bar.vertical .action-item {
  64. display: block;
  65. }
  66. .monaco-action-bar.vertical .action-label.separator {
  67. display: block;
  68. border-bottom: 1px solid #bbb;
  69. padding-top: 1px;
  70. margin-left: .8em;
  71. margin-right: .8em;
  72. }
  73. .monaco-action-bar .action-item .action-label.separator {
  74. width: 1px;
  75. height: 16px;
  76. margin: 5px 4px !important;
  77. cursor: default;
  78. min-width: 1px;
  79. padding: 0;
  80. background-color: #bbb;
  81. }
  82. .secondary-actions .monaco-action-bar .action-label {
  83. margin-left: 6px;
  84. }
  85. /* Action Items */
  86. .monaco-action-bar .action-item.select-container {
  87. overflow: hidden; /* somehow the dropdown overflows its container, we prevent it here to not push */
  88. flex: 1;
  89. max-width: 170px;
  90. min-width: 60px;
  91. display: flex;
  92. align-items: center;
  93. justify-content: center;
  94. margin-right: 10px;
  95. }
  96. .monaco-action-bar .action-item.action-dropdown-item {
  97. display: flex;
  98. }
  99. .monaco-action-bar .action-item.action-dropdown-item > .action-label {
  100. margin-right: 1px;
  101. }
  102. /*---------------------------------------------------------------------------------------------
  103. * Copyright (c) Microsoft Corporation. All rights reserved.
  104. * Licensed under the MIT License. See License.txt in the project root for license information.
  105. *--------------------------------------------------------------------------------------------*/
  106. .monaco-aria-container {
  107. position: absolute; /* try to hide from window but not from screen readers */
  108. left:-999em;
  109. }
  110. /*---------------------------------------------------------------------------------------------
  111. * Copyright (c) Microsoft Corporation. All rights reserved.
  112. * Licensed under the MIT License. See License.txt in the project root for license information.
  113. *--------------------------------------------------------------------------------------------*/
  114. .monaco-text-button {
  115. box-sizing: border-box;
  116. display: flex;
  117. width: 100%;
  118. padding: 4px;
  119. text-align: center;
  120. cursor: pointer;
  121. justify-content: center;
  122. align-items: center;
  123. }
  124. .monaco-text-button:focus {
  125. outline-offset: 2px !important;
  126. }
  127. .monaco-text-button:hover {
  128. text-decoration: none !important;
  129. }
  130. .monaco-button.disabled:focus,
  131. .monaco-button.disabled {
  132. opacity: 0.4 !important;
  133. cursor: default;
  134. }
  135. .monaco-text-button > .codicon {
  136. margin: 0 0.2em;
  137. color: inherit !important;
  138. }
  139. .monaco-button-dropdown {
  140. display: flex;
  141. cursor: pointer;
  142. }
  143. .monaco-button-dropdown > .monaco-dropdown-button {
  144. margin-left: 1px;
  145. }
  146. .monaco-description-button {
  147. flex-direction: column;
  148. }
  149. .monaco-description-button .monaco-button-label {
  150. font-weight: 500;
  151. }
  152. .monaco-description-button .monaco-button-description {
  153. font-style: italic;
  154. }
  155. /*---------------------------------------------------------------------------------------------
  156. * Copyright (c) Microsoft Corporation. All rights reserved.
  157. * Licensed under the MIT License. See License.txt in the project root for license information.
  158. *--------------------------------------------------------------------------------------------*/
  159. .monaco-custom-checkbox {
  160. margin-left: 2px;
  161. float: left;
  162. cursor: pointer;
  163. overflow: hidden;
  164. width: 20px;
  165. height: 20px;
  166. border-radius: 3px;
  167. border: 1px solid transparent;
  168. padding: 1px;
  169. box-sizing: border-box;
  170. user-select: none;
  171. -webkit-user-select: none;
  172. -ms-user-select: none;
  173. }
  174. .monaco-custom-checkbox:hover {
  175. background-color: var(--vscode-inputOption-hoverBackground);
  176. }
  177. .hc-black .monaco-custom-checkbox:hover {
  178. border: 1px dashed var(--vscode-focusBorder);
  179. }
  180. .hc-black .monaco-custom-checkbox {
  181. background: none;
  182. }
  183. .hc-black .monaco-custom-checkbox:hover {
  184. background: none;
  185. }
  186. .monaco-custom-checkbox.monaco-simple-checkbox {
  187. height: 18px;
  188. width: 18px;
  189. border: 1px solid transparent;
  190. border-radius: 3px;
  191. margin-right: 9px;
  192. margin-left: 0px;
  193. padding: 0px;
  194. opacity: 1;
  195. background-size: 16px !important;
  196. }
  197. /* hide check when unchecked */
  198. .monaco-custom-checkbox.monaco-simple-checkbox:not(.checked)::before {
  199. visibility: hidden;
  200. }
  201. /*---------------------------------------------------------------------------------------------
  202. * Copyright (c) Microsoft Corporation. All rights reserved.
  203. * Licensed under the MIT License. See License.txt in the project root for license information.
  204. *--------------------------------------------------------------------------------------------*/
  205. @font-face {
  206. font-family: "codicon";
  207. font-display: block;
  208. src: url(../base/browser/ui/codicons/codicon/codicon.ttf) format("truetype");
  209. }
  210. .codicon[class*='codicon-'] {
  211. font: normal normal normal 16px/1 codicon;
  212. display: inline-block;
  213. text-decoration: none;
  214. text-rendering: auto;
  215. text-align: center;
  216. -webkit-font-smoothing: antialiased;
  217. -moz-osx-font-smoothing: grayscale;
  218. user-select: none;
  219. -webkit-user-select: none;
  220. -ms-user-select: none;
  221. }
  222. /* icon rules are dynamically created in codiconStyles */
  223. /*---------------------------------------------------------------------------------------------
  224. * Copyright (c) Microsoft Corporation. All rights reserved.
  225. * Licensed under the MIT License. See License.txt in the project root for license information.
  226. *--------------------------------------------------------------------------------------------*/
  227. .codicon-wrench-subaction {
  228. opacity: 0.5;
  229. }
  230. @keyframes codicon-spin {
  231. 100% {
  232. transform:rotate(360deg);
  233. }
  234. }
  235. .codicon-sync.codicon-modifier-spin,
  236. .codicon-loading.codicon-modifier-spin,
  237. .codicon-gear.codicon-modifier-spin,
  238. .codicon-notebook-state-executing.codicon-modifier-spin {
  239. /* Use steps to throttle FPS to reduce CPU usage */
  240. animation: codicon-spin 1.5s steps(30) infinite;
  241. }
  242. .codicon-modifier-disabled {
  243. opacity: 0.4;
  244. }
  245. /* custom speed & easing for loading icon */
  246. .codicon-loading,
  247. .codicon-tree-item-loading::before {
  248. animation-duration: 1s !important;
  249. animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67) !important;
  250. }
  251. /*---------------------------------------------------------------------------------------------
  252. * Copyright (c) Microsoft Corporation. All rights reserved.
  253. * Licensed under the MIT License. See License.txt in the project root for license information.
  254. *--------------------------------------------------------------------------------------------*/
  255. .context-view {
  256. position: absolute;
  257. z-index: 2500;
  258. }
  259. .context-view.fixed {
  260. all: initial;
  261. font-family: inherit;
  262. font-size: 13px;
  263. position: fixed;
  264. z-index: 2500;
  265. color: inherit;
  266. }
  267. /*---------------------------------------------------------------------------------------------
  268. * Copyright (c) Microsoft Corporation. All rights reserved.
  269. * Licensed under the MIT License. See License.txt in the project root for license information.
  270. *--------------------------------------------------------------------------------------------*/
  271. .monaco-count-badge {
  272. padding: 3px 6px;
  273. border-radius: 11px;
  274. font-size: 11px;
  275. min-width: 18px;
  276. min-height: 18px;
  277. line-height: 11px;
  278. font-weight: normal;
  279. text-align: center;
  280. display: inline-block;
  281. box-sizing: border-box;
  282. }
  283. .monaco-count-badge.long {
  284. padding: 2px 3px;
  285. border-radius: 2px;
  286. min-height: auto;
  287. line-height: normal;
  288. }
  289. /*---------------------------------------------------------------------------------------------
  290. * Copyright (c) Microsoft Corporation. All rights reserved.
  291. * Licensed under the MIT License. See License.txt in the project root for license information.
  292. *--------------------------------------------------------------------------------------------*/
  293. .monaco-dropdown {
  294. height: 100%;
  295. padding: 0;
  296. }
  297. .monaco-dropdown > .dropdown-label {
  298. cursor: pointer;
  299. height: 100%;
  300. display: flex;
  301. align-items: center;
  302. justify-content: center;
  303. }
  304. .monaco-dropdown > .dropdown-label > .action-label.disabled {
  305. cursor: default;
  306. }
  307. .monaco-dropdown-with-primary {
  308. display: flex !important;
  309. flex-direction: row;
  310. border-radius: 5px;
  311. }
  312. .monaco-dropdown-with-primary > .action-container > .action-label {
  313. margin-right: 0;
  314. }
  315. .monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*='codicon-'] {
  316. font-size: 12px;
  317. padding-left: 0px;
  318. padding-right: 0px;
  319. line-height: 16px;
  320. margin-left: -3px;
  321. }
  322. .monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
  323. display: block;
  324. background-size: 16px;
  325. background-position: center center;
  326. background-repeat: no-repeat;
  327. }
  328. /*---------------------------------------------------------------------------------------------
  329. * Copyright (c) Microsoft Corporation. All rights reserved.
  330. * Licensed under the MIT License. See License.txt in the project root for license information.
  331. *--------------------------------------------------------------------------------------------*/
  332. /* ---------- Find input ---------- */
  333. .monaco-findInput {
  334. position: relative;
  335. }
  336. .monaco-findInput .monaco-inputbox {
  337. font-size: 13px;
  338. width: 100%;
  339. }
  340. .monaco-findInput > .controls {
  341. position: absolute;
  342. top: 3px;
  343. right: 2px;
  344. }
  345. .vs .monaco-findInput.disabled {
  346. background-color: #E1E1E1;
  347. }
  348. /* Theming */
  349. .vs-dark .monaco-findInput.disabled {
  350. background-color: #333;
  351. }
  352. /* Highlighting */
  353. .monaco-findInput.highlight-0 .controls {
  354. animation: monaco-findInput-highlight-0 100ms linear 0s;
  355. }
  356. .monaco-findInput.highlight-1 .controls {
  357. animation: monaco-findInput-highlight-1 100ms linear 0s;
  358. }
  359. .hc-black .monaco-findInput.highlight-0 .controls,
  360. .vs-dark .monaco-findInput.highlight-0 .controls {
  361. animation: monaco-findInput-highlight-dark-0 100ms linear 0s;
  362. }
  363. .hc-black .monaco-findInput.highlight-1 .controls,
  364. .vs-dark .monaco-findInput.highlight-1 .controls {
  365. animation: monaco-findInput-highlight-dark-1 100ms linear 0s;
  366. }
  367. @keyframes monaco-findInput-highlight-0 {
  368. 0% { background: rgba(253, 255, 0, 0.8); }
  369. 100% { background: transparent; }
  370. }
  371. @keyframes monaco-findInput-highlight-1 {
  372. 0% { background: rgba(253, 255, 0, 0.8); }
  373. /* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/
  374. 99% { background: transparent; }
  375. }
  376. @keyframes monaco-findInput-highlight-dark-0 {
  377. 0% { background: rgba(255, 255, 255, 0.44); }
  378. 100% { background: transparent; }
  379. }
  380. @keyframes monaco-findInput-highlight-dark-1 {
  381. 0% { background: rgba(255, 255, 255, 0.44); }
  382. /* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/
  383. 99% { background: transparent; }
  384. }
  385. /*---------------------------------------------------------------------------------------------
  386. * Copyright (c) Microsoft Corporation. All rights reserved.
  387. * Licensed under the MIT License. See License.txt in the project root for license information.
  388. *--------------------------------------------------------------------------------------------*/
  389. .monaco-hover {
  390. cursor: default;
  391. position: absolute;
  392. overflow: hidden;
  393. z-index: 50;
  394. user-select: text;
  395. -webkit-user-select: text;
  396. -ms-user-select: text;
  397. box-sizing: initial;
  398. animation: fadein 100ms linear;
  399. line-height: 1.5em;
  400. }
  401. .monaco-hover.hidden {
  402. display: none;
  403. }
  404. .monaco-hover .hover-contents:not(.html-hover-contents) {
  405. padding: 4px 8px;
  406. }
  407. .monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) {
  408. max-width: 500px;
  409. word-wrap: break-word;
  410. }
  411. .monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) hr {
  412. min-width: 100%;
  413. }
  414. .monaco-hover p,
  415. .monaco-hover .code,
  416. .monaco-hover ul {
  417. margin: 8px 0;
  418. }
  419. .monaco-hover code {
  420. font-family: var(--monaco-monospace-font);
  421. }
  422. .monaco-hover hr {
  423. box-sizing: border-box;
  424. border-left: 0px;
  425. border-right: 0px;
  426. margin-top: 4px;
  427. margin-bottom: -4px;
  428. margin-left: -8px;
  429. margin-right: -8px;
  430. height: 1px;
  431. }
  432. .monaco-hover p:first-child,
  433. .monaco-hover .code:first-child,
  434. .monaco-hover ul:first-child {
  435. margin-top: 0;
  436. }
  437. .monaco-hover p:last-child,
  438. .monaco-hover .code:last-child,
  439. .monaco-hover ul:last-child {
  440. margin-bottom: 0;
  441. }
  442. /* MarkupContent Layout */
  443. .monaco-hover ul {
  444. padding-left: 20px;
  445. }
  446. .monaco-hover ol {
  447. padding-left: 20px;
  448. }
  449. .monaco-hover li > p {
  450. margin-bottom: 0;
  451. }
  452. .monaco-hover li > ul {
  453. margin-top: 0;
  454. }
  455. .monaco-hover code {
  456. border-radius: 3px;
  457. padding: 0 0.4em;
  458. }
  459. .monaco-hover .monaco-tokenized-source {
  460. white-space: pre-wrap;
  461. }
  462. .monaco-hover .hover-row.status-bar {
  463. font-size: 12px;
  464. line-height: 22px;
  465. }
  466. .monaco-hover .hover-row.status-bar .actions {
  467. display: flex;
  468. padding: 0px 8px;
  469. }
  470. .monaco-hover .hover-row.status-bar .actions .action-container {
  471. margin-right: 16px;
  472. cursor: pointer;
  473. }
  474. .monaco-hover .hover-row.status-bar .actions .action-container .action .icon {
  475. padding-right: 4px;
  476. }
  477. .monaco-hover .markdown-hover .hover-contents .codicon {
  478. color: inherit;
  479. font-size: inherit;
  480. vertical-align: middle;
  481. }
  482. .monaco-hover .hover-contents a.code-link:hover,
  483. .monaco-hover .hover-contents a.code-link {
  484. color: inherit;
  485. }
  486. .monaco-hover .hover-contents a.code-link:before {
  487. content: '(';
  488. }
  489. .monaco-hover .hover-contents a.code-link:after {
  490. content: ')';
  491. }
  492. .monaco-hover .hover-contents a.code-link > span {
  493. text-decoration: underline;
  494. /** Hack to force underline to show **/
  495. border-bottom: 1px solid transparent;
  496. text-underline-position: under;
  497. }
  498. /** Spans in markdown hovers need a margin-bottom to avoid looking cramped: https://github.com/microsoft/vscode/issues/101496 **/
  499. .monaco-hover .markdown-hover .hover-contents:not(.code-hover-contents):not(.html-hover-contents) span {
  500. margin-bottom: 4px;
  501. display: inline-block;
  502. }
  503. .monaco-hover-content .action-container a {
  504. -webkit-user-select: none;
  505. user-select: none;
  506. }
  507. .monaco-hover-content .action-container.disabled {
  508. pointer-events: none;
  509. opacity: 0.4;
  510. cursor: default;
  511. }
  512. /*---------------------------------------------------------------------------------------------
  513. * Copyright (c) Microsoft Corporation. All rights reserved.
  514. * Licensed under the MIT License. See License.txt in the project root for license information.
  515. *--------------------------------------------------------------------------------------------*/
  516. /* ---------- Icon label ---------- */
  517. .monaco-icon-label {
  518. display: flex; /* required for icons support :before rule */
  519. overflow: hidden;
  520. text-overflow: ellipsis;
  521. }
  522. .monaco-icon-label::before {
  523. /* svg icons rendered as background image */
  524. background-size: 16px;
  525. background-position: left center;
  526. background-repeat: no-repeat;
  527. padding-right: 6px;
  528. width: 16px;
  529. height: 22px;
  530. line-height: inherit !important;
  531. display: inline-block;
  532. /* fonts icons */
  533. -webkit-font-smoothing: antialiased;
  534. -moz-osx-font-smoothing: grayscale;
  535. vertical-align: top;
  536. flex-shrink: 0; /* fix for https://github.com/microsoft/vscode/issues/13787 */
  537. }
  538. .monaco-icon-label > .monaco-icon-label-container {
  539. min-width: 0;
  540. overflow: hidden;
  541. text-overflow: ellipsis;
  542. flex: 1;
  543. }
  544. .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name {
  545. color: inherit;
  546. white-space: pre; /* enable to show labels that include multiple whitespaces */
  547. }
  548. .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name > .label-separator {
  549. margin: 0 2px;
  550. opacity: 0.5;
  551. }
  552. .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  553. opacity: .7;
  554. margin-left: 0.5em;
  555. font-size: 0.9em;
  556. white-space: pre; /* enable to show labels that include multiple whitespaces */
  557. }
  558. .monaco-icon-label.nowrap > .monaco-icon-label-container > .monaco-icon-description-container > .label-description{
  559. white-space: nowrap
  560. }
  561. .vs .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  562. opacity: .95;
  563. }
  564. .monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-name-container > .label-name,
  565. .monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  566. font-style: italic;
  567. }
  568. .monaco-icon-label.deprecated {
  569. text-decoration: line-through;
  570. opacity: 0.66;
  571. }
  572. /* make sure apply italic font style to decorations as well */
  573. .monaco-icon-label.italic::after {
  574. font-style: italic;
  575. }
  576. .monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-name-container > .label-name,
  577. .monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  578. text-decoration: line-through;
  579. }
  580. .monaco-icon-label::after {
  581. opacity: 0.75;
  582. font-size: 90%;
  583. font-weight: 600;
  584. margin: auto 16px 0 5px; /* https://github.com/microsoft/vscode/issues/113223 */
  585. text-align: center;
  586. }
  587. /* make sure selection color wins when a label is being selected */
  588. .monaco-list:focus .selected .monaco-icon-label, /* list */
  589. .monaco-list:focus .selected .monaco-icon-label::after
  590. {
  591. color: inherit !important;
  592. }
  593. .monaco-list-row.focused.selected .label-description,
  594. .monaco-list-row.selected .label-description {
  595. opacity: .8;
  596. }
  597. /*---------------------------------------------------------------------------------------------
  598. * Copyright (c) Microsoft Corporation. All rights reserved.
  599. * Licensed under the MIT License. See License.txt in the project root for license information.
  600. *--------------------------------------------------------------------------------------------*/
  601. .monaco-inputbox {
  602. position: relative;
  603. display: block;
  604. padding: 0;
  605. box-sizing: border-box;
  606. /* Customizable */
  607. font-size: inherit;
  608. }
  609. .monaco-inputbox.idle {
  610. border: 1px solid transparent;
  611. }
  612. .monaco-inputbox > .ibwrapper > .input,
  613. .monaco-inputbox > .ibwrapper > .mirror {
  614. /* Customizable */
  615. padding: 4px;
  616. }
  617. .monaco-inputbox > .ibwrapper {
  618. position: relative;
  619. width: 100%;
  620. height: 100%;
  621. }
  622. .monaco-inputbox > .ibwrapper > .input {
  623. display: inline-block;
  624. box-sizing: border-box;
  625. width: 100%;
  626. height: 100%;
  627. line-height: inherit;
  628. border: none;
  629. font-family: inherit;
  630. font-size: inherit;
  631. resize: none;
  632. color: inherit;
  633. }
  634. .monaco-inputbox > .ibwrapper > input {
  635. text-overflow: ellipsis;
  636. }
  637. .monaco-inputbox > .ibwrapper > textarea.input {
  638. display: block;
  639. -ms-overflow-style: none; /* IE 10+: hide scrollbars */
  640. scrollbar-width: none; /* Firefox: hide scrollbars */
  641. outline: none;
  642. }
  643. .monaco-inputbox > .ibwrapper > textarea.input::-webkit-scrollbar {
  644. display: none; /* Chrome + Safari: hide scrollbar */
  645. }
  646. .monaco-inputbox > .ibwrapper > textarea.input.empty {
  647. white-space: nowrap;
  648. }
  649. .monaco-inputbox > .ibwrapper > .mirror {
  650. position: absolute;
  651. display: inline-block;
  652. width: 100%;
  653. top: 0;
  654. left: 0;
  655. box-sizing: border-box;
  656. white-space: pre-wrap;
  657. visibility: hidden;
  658. word-wrap: break-word;
  659. }
  660. /* Context view */
  661. .monaco-inputbox-container {
  662. text-align: right;
  663. }
  664. .monaco-inputbox-container .monaco-inputbox-message {
  665. display: inline-block;
  666. overflow: hidden;
  667. text-align: left;
  668. width: 100%;
  669. box-sizing: border-box;
  670. padding: 0.4em;
  671. font-size: 12px;
  672. line-height: 17px;
  673. margin-top: -1px;
  674. word-wrap: break-word;
  675. }
  676. /* Action bar support */
  677. .monaco-inputbox .monaco-action-bar {
  678. position: absolute;
  679. right: 2px;
  680. top: 4px;
  681. }
  682. .monaco-inputbox .monaco-action-bar .action-item {
  683. margin-left: 2px;
  684. }
  685. .monaco-inputbox .monaco-action-bar .action-item .codicon {
  686. background-repeat: no-repeat;
  687. width: 16px;
  688. height: 16px;
  689. }
  690. /*---------------------------------------------------------------------------------------------
  691. * Copyright (c) Microsoft Corporation. All rights reserved.
  692. * Licensed under the MIT License. See License.txt in the project root for license information.
  693. *--------------------------------------------------------------------------------------------*/
  694. .monaco-keybinding {
  695. display: flex;
  696. align-items: center;
  697. line-height: 10px;
  698. }
  699. .monaco-keybinding > .monaco-keybinding-key {
  700. display: inline-block;
  701. border-style: solid;
  702. border-width: 1px;
  703. border-radius: 3px;
  704. vertical-align: middle;
  705. font-size: 11px;
  706. padding: 3px 5px;
  707. margin: 0 2px;
  708. }
  709. .monaco-keybinding > .monaco-keybinding-key:first-child {
  710. margin-left: 0;
  711. }
  712. .monaco-keybinding > .monaco-keybinding-key:last-child {
  713. margin-right: 0;
  714. }
  715. .monaco-keybinding > .monaco-keybinding-key-separator {
  716. display: inline-block;
  717. }
  718. .monaco-keybinding > .monaco-keybinding-key-chord-separator {
  719. width: 6px;
  720. }
  721. /*---------------------------------------------------------------------------------------------
  722. * Copyright (c) Microsoft Corporation. All rights reserved.
  723. * Licensed under the MIT License. See License.txt in the project root for license information.
  724. *--------------------------------------------------------------------------------------------*/
  725. .monaco-list {
  726. position: relative;
  727. height: 100%;
  728. width: 100%;
  729. white-space: nowrap;
  730. }
  731. .monaco-list.mouse-support {
  732. user-select: none;
  733. -webkit-user-select: none;
  734. -ms-user-select: none;
  735. }
  736. .monaco-list > .monaco-scrollable-element {
  737. height: 100%;
  738. }
  739. .monaco-list-rows {
  740. position: relative;
  741. width: 100%;
  742. height: 100%;
  743. }
  744. .monaco-list.horizontal-scrolling .monaco-list-rows {
  745. width: auto;
  746. min-width: 100%;
  747. }
  748. .monaco-list-row {
  749. position: absolute;
  750. box-sizing: border-box;
  751. overflow: hidden;
  752. width: 100%;
  753. }
  754. .monaco-list.mouse-support .monaco-list-row {
  755. cursor: pointer;
  756. touch-action: none;
  757. }
  758. /* for OS X ballistic scrolling */
  759. .monaco-list-row.scrolling {
  760. display: none !important;
  761. }
  762. /* Focus */
  763. .monaco-list.element-focused,
  764. .monaco-list.selection-single,
  765. .monaco-list.selection-multiple {
  766. outline: 0 !important;
  767. }
  768. /* Dnd */
  769. .monaco-drag-image {
  770. display: inline-block;
  771. padding: 1px 7px;
  772. border-radius: 10px;
  773. font-size: 12px;
  774. position: absolute;
  775. z-index: 1000;
  776. }
  777. /* Type filter */
  778. .monaco-list-type-filter {
  779. display: flex;
  780. align-items: center;
  781. position: absolute;
  782. border-radius: 2px;
  783. padding: 0px 3px;
  784. max-width: calc(100% - 10px);
  785. text-overflow: ellipsis;
  786. overflow: hidden;
  787. text-align: right;
  788. box-sizing: border-box;
  789. cursor: all-scroll;
  790. font-size: 13px;
  791. line-height: 18px;
  792. height: 20px;
  793. z-index: 1;
  794. top: 4px;
  795. }
  796. .monaco-list-type-filter.dragging {
  797. transition: top 0.2s, left 0.2s;
  798. }
  799. .monaco-list-type-filter.ne {
  800. right: 4px;
  801. }
  802. .monaco-list-type-filter.nw {
  803. left: 4px;
  804. }
  805. .monaco-list-type-filter > .controls {
  806. display: flex;
  807. align-items: center;
  808. box-sizing: border-box;
  809. transition: width 0.2s;
  810. width: 0;
  811. }
  812. .monaco-list-type-filter.dragging > .controls,
  813. .monaco-list-type-filter:hover > .controls {
  814. width: 36px;
  815. }
  816. .monaco-list-type-filter > .controls > * {
  817. border: none;
  818. box-sizing: border-box;
  819. -webkit-appearance: none;
  820. -moz-appearance: none;
  821. background: none;
  822. width: 16px;
  823. height: 16px;
  824. flex-shrink: 0;
  825. margin: 0;
  826. padding: 0;
  827. display: flex;
  828. align-items: center;
  829. justify-content: center;
  830. cursor: pointer;
  831. }
  832. .monaco-list-type-filter > .controls > .filter {
  833. margin-left: 4px;
  834. }
  835. .monaco-list-type-filter-message {
  836. position: absolute;
  837. box-sizing: border-box;
  838. width: 100%;
  839. height: 100%;
  840. top: 0;
  841. left: 0;
  842. padding: 40px 1em 1em 1em;
  843. text-align: center;
  844. white-space: normal;
  845. opacity: 0.7;
  846. pointer-events: none;
  847. }
  848. .monaco-list-type-filter-message:empty {
  849. display: none;
  850. }
  851. /* Electron */
  852. .monaco-list-type-filter {
  853. cursor: grab;
  854. }
  855. .monaco-list-type-filter.dragging {
  856. cursor: grabbing;
  857. }
  858. /*---------------------------------------------------------------------------------------------
  859. * Copyright (c) Microsoft Corporation. All rights reserved.
  860. * Licensed under the MIT License. See License.txt in the project root for license information.
  861. *--------------------------------------------------------------------------------------------*/
  862. .monaco-mouse-cursor-text {
  863. cursor: text;
  864. }
  865. /* The following selector looks a bit funny, but that is needed to cover all the workbench and the editor!! */
  866. .vs-dark .mac .monaco-mouse-cursor-text, .hc-black .mac .monaco-mouse-cursor-text,
  867. .vs-dark.mac .monaco-mouse-cursor-text, .hc-black.mac .monaco-mouse-cursor-text {
  868. cursor: -webkit-image-set(url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAAL0lEQVQoz2NgCD3x//9/BhBYBWdhgFVAiVW4JBFKGIa4AqD0//9D3pt4I4tAdAMAHTQ/j5Zom30AAAAASUVORK5CYII=) 1x, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAAz0lEQVRIx2NgYGBY/R8I/vx5eelX3n82IJ9FxGf6tksvf/8FiTMQAcAGQMDvSwu09abffY8QYSAScNk45G198eX//yev73/4///701eh//kZSARckrNBRvz//+8+6ZohwCzjGNjdgQxkAg7B9WADeBjIBqtJCbhRA0YNoIkBSNmaPEMoNmA0FkYNoFKhapJ6FGyAH3nauaSmPfwI0v/3OukVi0CIZ+F25KrtYcx/CTIy0e+rC7R1Z4KMICVTQQ14feVXIbR695u14+Ir4gwAAD49E54wc1kWAAAAAElFTkSuQmCC) 2x) 5 8, text;
  869. }
  870. /*---------------------------------------------------------------------------------------------
  871. * Copyright (c) Microsoft Corporation. All rights reserved.
  872. * Licensed under the MIT License. See License.txt in the project root for license information.
  873. *--------------------------------------------------------------------------------------------*/
  874. .monaco-progress-container {
  875. width: 100%;
  876. height: 5px;
  877. overflow: hidden; /* keep progress bit in bounds */
  878. }
  879. .monaco-progress-container .progress-bit {
  880. width: 2%;
  881. height: 5px;
  882. position: absolute;
  883. left: 0;
  884. display: none;
  885. }
  886. .monaco-progress-container.active .progress-bit {
  887. display: inherit;
  888. }
  889. .monaco-progress-container.discrete .progress-bit {
  890. left: 0;
  891. transition: width 100ms linear;
  892. }
  893. .monaco-progress-container.discrete.done .progress-bit {
  894. width: 100%;
  895. }
  896. .monaco-progress-container.infinite .progress-bit {
  897. animation-name: progress;
  898. animation-duration: 4s;
  899. animation-iteration-count: infinite;
  900. animation-timing-function: linear;
  901. transform: translate3d(0px, 0px, 0px);
  902. }
  903. /**
  904. * The progress bit has a width: 2% (1/50) of the parent container. The animation moves it from 0% to 100% of
  905. * that container. Since translateX is relative to the progress bit size, we have to multiple it with
  906. * its relative size to the parent container:
  907. * parent width: 5000%
  908. * bit width: 100%
  909. * translateX should be as follow:
  910. * 50%: 5000% * 50% - 50% (set to center) = 2450%
  911. * 100%: 5000% * 100% - 100% (do not overflow) = 4900%
  912. */
  913. @keyframes progress { from { transform: translateX(0%) scaleX(1) } 50% { transform: translateX(2500%) scaleX(3) } to { transform: translateX(4900%) scaleX(1) } }
  914. /*---------------------------------------------------------------------------------------------
  915. * Copyright (c) Microsoft Corporation. All rights reserved.
  916. * Licensed under the MIT License. See License.txt in the project root for license information.
  917. *--------------------------------------------------------------------------------------------*/
  918. :root {
  919. --sash-size: 4px;
  920. }
  921. .monaco-sash {
  922. position: absolute;
  923. z-index: 35;
  924. touch-action: none;
  925. }
  926. .monaco-sash.disabled {
  927. pointer-events: none;
  928. }
  929. .monaco-sash.mac.vertical {
  930. cursor: col-resize;
  931. }
  932. .monaco-sash.vertical.minimum {
  933. cursor: e-resize;
  934. }
  935. .monaco-sash.vertical.maximum {
  936. cursor: w-resize;
  937. }
  938. .monaco-sash.mac.horizontal {
  939. cursor: row-resize;
  940. }
  941. .monaco-sash.horizontal.minimum {
  942. cursor: s-resize;
  943. }
  944. .monaco-sash.horizontal.maximum {
  945. cursor: n-resize;
  946. }
  947. .monaco-sash.disabled {
  948. cursor: default !important;
  949. pointer-events: none !important;
  950. }
  951. .monaco-sash.vertical {
  952. cursor: ew-resize;
  953. top: 0;
  954. width: var(--sash-size);
  955. height: 100%;
  956. }
  957. .monaco-sash.horizontal {
  958. cursor: ns-resize;
  959. left: 0;
  960. width: 100%;
  961. height: var(--sash-size);
  962. }
  963. .monaco-sash:not(.disabled) > .orthogonal-drag-handle {
  964. content: " ";
  965. height: calc(var(--sash-size) * 2);
  966. width: calc(var(--sash-size) * 2);
  967. z-index: 100;
  968. display: block;
  969. cursor: all-scroll;
  970. position: absolute;
  971. }
  972. .monaco-sash.horizontal.orthogonal-edge-north:not(.disabled)
  973. > .orthogonal-drag-handle.start,
  974. .monaco-sash.horizontal.orthogonal-edge-south:not(.disabled)
  975. > .orthogonal-drag-handle.end {
  976. cursor: nwse-resize;
  977. }
  978. .monaco-sash.horizontal.orthogonal-edge-north:not(.disabled)
  979. > .orthogonal-drag-handle.end,
  980. .monaco-sash.horizontal.orthogonal-edge-south:not(.disabled)
  981. > .orthogonal-drag-handle.start {
  982. cursor: nesw-resize;
  983. }
  984. .monaco-sash.vertical > .orthogonal-drag-handle.start {
  985. left: calc(var(--sash-size) * -0.5);
  986. top: calc(var(--sash-size) * -1);
  987. }
  988. .monaco-sash.vertical > .orthogonal-drag-handle.end {
  989. left: calc(var(--sash-size) * -0.5);
  990. bottom: calc(var(--sash-size) * -1);
  991. }
  992. .monaco-sash.horizontal > .orthogonal-drag-handle.start {
  993. top: calc(var(--sash-size) * -0.5);
  994. left: calc(var(--sash-size) * -1);
  995. }
  996. .monaco-sash.horizontal > .orthogonal-drag-handle.end {
  997. top: calc(var(--sash-size) * -0.5);
  998. right: calc(var(--sash-size) * -1);
  999. }
  1000. .monaco-sash:before {
  1001. content: '';
  1002. pointer-events: none;
  1003. position: absolute;
  1004. width: 100%;
  1005. height: 100%;
  1006. transition: background-color 0.1s ease-out;
  1007. background: transparent;
  1008. }
  1009. .monaco-sash.vertical:before {
  1010. width: var(--sash-hover-size);
  1011. left: calc(50% - (var(--sash-hover-size) / 2));
  1012. }
  1013. .monaco-sash.horizontal:before {
  1014. height: var(--sash-hover-size);
  1015. top: calc(50% - (var(--sash-hover-size) / 2));
  1016. }
  1017. /** Debug **/
  1018. .monaco-sash.debug {
  1019. background: cyan;
  1020. }
  1021. .monaco-sash.debug.disabled {
  1022. background: rgba(0, 255, 255, 0.2);
  1023. }
  1024. .monaco-sash.debug:not(.disabled) > .orthogonal-drag-handle {
  1025. background: red;
  1026. }
  1027. /*---------------------------------------------------------------------------------------------
  1028. * Copyright (c) Microsoft Corporation. All rights reserved.
  1029. * Licensed under the MIT License. See License.txt in the project root for license information.
  1030. *--------------------------------------------------------------------------------------------*/
  1031. /* Arrows */
  1032. .monaco-scrollable-element > .scrollbar > .scra {
  1033. cursor: pointer;
  1034. font-size: 11px !important;
  1035. }
  1036. .monaco-scrollable-element > .visible {
  1037. opacity: 1;
  1038. /* Background rule added for IE9 - to allow clicks on dom node */
  1039. background:rgba(0,0,0,0);
  1040. transition: opacity 100ms linear;
  1041. }
  1042. .monaco-scrollable-element > .invisible {
  1043. opacity: 0;
  1044. pointer-events: none;
  1045. }
  1046. .monaco-scrollable-element > .invisible.fade {
  1047. transition: opacity 800ms linear;
  1048. }
  1049. /* Scrollable Content Inset Shadow */
  1050. .monaco-scrollable-element > .shadow {
  1051. position: absolute;
  1052. display: none;
  1053. }
  1054. .monaco-scrollable-element > .shadow.top {
  1055. display: block;
  1056. top: 0;
  1057. left: 3px;
  1058. height: 3px;
  1059. width: 100%;
  1060. }
  1061. .monaco-scrollable-element > .shadow.left {
  1062. display: block;
  1063. top: 3px;
  1064. left: 0;
  1065. height: 100%;
  1066. width: 3px;
  1067. }
  1068. .monaco-scrollable-element > .shadow.top-left-corner {
  1069. display: block;
  1070. top: 0;
  1071. left: 0;
  1072. height: 3px;
  1073. width: 3px;
  1074. }
  1075. /*---------------------------------------------------------------------------------------------
  1076. * Copyright (c) Microsoft Corporation. All rights reserved.
  1077. * Licensed under the MIT License. See License.txt in the project root for license information.
  1078. *--------------------------------------------------------------------------------------------*/
  1079. .monaco-split-view2 {
  1080. position: relative;
  1081. width: 100%;
  1082. height: 100%;
  1083. }
  1084. .monaco-split-view2 > .sash-container {
  1085. position: absolute;
  1086. width: 100%;
  1087. height: 100%;
  1088. pointer-events: none;
  1089. }
  1090. .monaco-split-view2 > .sash-container > .monaco-sash {
  1091. pointer-events: initial;
  1092. }
  1093. .monaco-split-view2 > .monaco-scrollable-element {
  1094. width: 100%;
  1095. height: 100%;
  1096. }
  1097. .monaco-split-view2 > .monaco-scrollable-element > .split-view-container {
  1098. width: 100%;
  1099. height: 100%;
  1100. white-space: nowrap;
  1101. position: relative;
  1102. }
  1103. .monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view {
  1104. white-space: initial;
  1105. position: absolute;
  1106. }
  1107. .monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view:not(.visible) {
  1108. display: none;
  1109. }
  1110. .monaco-split-view2.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view {
  1111. width: 100%;
  1112. }
  1113. .monaco-split-view2.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view {
  1114. height: 100%;
  1115. }
  1116. .monaco-split-view2.separator-border > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
  1117. content: ' ';
  1118. position: absolute;
  1119. top: 0;
  1120. left: 0;
  1121. z-index: 5;
  1122. pointer-events: none;
  1123. background-color: var(--separator-border);
  1124. }
  1125. .monaco-split-view2.separator-border.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
  1126. height: 100%;
  1127. width: 1px;
  1128. }
  1129. .monaco-split-view2.separator-border.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
  1130. height: 1px;
  1131. width: 100%;
  1132. }
  1133. /*---------------------------------------------------------------------------------------------
  1134. * Copyright (c) Microsoft Corporation. All rights reserved.
  1135. * Licensed under the MIT License. See License.txt in the project root for license information.
  1136. *--------------------------------------------------------------------------------------------*/
  1137. .monaco-table {
  1138. display: flex;
  1139. flex-direction: column;
  1140. position: relative;
  1141. height: 100%;
  1142. width: 100%;
  1143. white-space: nowrap;
  1144. }
  1145. .monaco-table > .monaco-split-view2 {
  1146. border-bottom: 1px solid transparent;
  1147. }
  1148. .monaco-table > .monaco-list {
  1149. flex: 1;
  1150. }
  1151. .monaco-table-tr {
  1152. display: flex;
  1153. height: 100%;
  1154. }
  1155. .monaco-table-th {
  1156. width: 100%;
  1157. height: 100%;
  1158. font-weight: bold;
  1159. overflow: hidden;
  1160. text-overflow: ellipsis;
  1161. }
  1162. .monaco-table-th,
  1163. .monaco-table-td {
  1164. box-sizing: border-box;
  1165. flex-shrink: 0;
  1166. overflow: hidden;
  1167. white-space: nowrap;
  1168. text-overflow: ellipsis;
  1169. }
  1170. .monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {
  1171. content: "";
  1172. position: absolute;
  1173. left: calc(var(--sash-size) / 2);
  1174. width: 0;
  1175. border-left: 1px solid transparent;
  1176. }
  1177. .monaco-table > .monaco-split-view2,
  1178. .monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {
  1179. transition: border-color 0.2s ease-out;
  1180. }
  1181. /*
  1182. .monaco-table:hover > .monaco-split-view2,
  1183. .monaco-table:hover > .monaco-split-view2 .monaco-sash.vertical::before {
  1184. border-color: rgba(204, 204, 204, 0.2);
  1185. } */
  1186. /*---------------------------------------------------------------------------------------------
  1187. * Copyright (c) Microsoft Corporation. All rights reserved.
  1188. * Licensed under the MIT License. See License.txt in the project root for license information.
  1189. *--------------------------------------------------------------------------------------------*/
  1190. .monaco-tl-row {
  1191. display: flex;
  1192. height: 100%;
  1193. align-items: center;
  1194. position: relative;
  1195. }
  1196. .monaco-tl-indent {
  1197. height: 100%;
  1198. position: absolute;
  1199. top: 0;
  1200. left: 16px;
  1201. pointer-events: none;
  1202. }
  1203. .hide-arrows .monaco-tl-indent {
  1204. left: 12px;
  1205. }
  1206. .monaco-tl-indent > .indent-guide {
  1207. display: inline-block;
  1208. box-sizing: border-box;
  1209. height: 100%;
  1210. border-left: 1px solid transparent;
  1211. }
  1212. .monaco-tl-indent > .indent-guide {
  1213. transition: border-color 0.1s linear;
  1214. }
  1215. .monaco-tl-twistie,
  1216. .monaco-tl-contents {
  1217. height: 100%;
  1218. }
  1219. .monaco-tl-twistie {
  1220. font-size: 10px;
  1221. text-align: right;
  1222. padding-right: 6px;
  1223. flex-shrink: 0;
  1224. width: 16px;
  1225. display: flex !important;
  1226. align-items: center;
  1227. justify-content: center;
  1228. transform: translateX(3px);
  1229. }
  1230. .monaco-tl-contents {
  1231. flex: 1;
  1232. overflow: hidden;
  1233. }
  1234. .monaco-tl-twistie::before {
  1235. border-radius: 20px;
  1236. }
  1237. .monaco-tl-twistie.collapsed::before {
  1238. transform: rotate(-90deg);
  1239. }
  1240. .monaco-tl-twistie.codicon-tree-item-loading::before {
  1241. /* Use steps to throttle FPS to reduce CPU usage */
  1242. animation: codicon-spin 1.25s steps(30) infinite;
  1243. }
  1244. /*---------------------------------------------------------------------------------------------
  1245. * Copyright (c) Microsoft Corporation. All rights reserved.
  1246. * Licensed under the MIT License. See License.txt in the project root for license information.
  1247. *--------------------------------------------------------------------------------------------*/
  1248. .quick-input-widget {
  1249. position: absolute;
  1250. width: 600px;
  1251. z-index: 2000;
  1252. padding: 0 1px 1px 1px;
  1253. left: 50%;
  1254. margin-left: -300px;
  1255. }
  1256. .quick-input-titlebar {
  1257. display: flex;
  1258. align-items: center;
  1259. }
  1260. .quick-input-left-action-bar {
  1261. display: flex;
  1262. margin-left: 4px;
  1263. flex: 1;
  1264. }
  1265. .quick-input-title {
  1266. padding: 3px 0px;
  1267. text-align: center;
  1268. text-overflow: ellipsis;
  1269. overflow: hidden;
  1270. }
  1271. .quick-input-right-action-bar {
  1272. display: flex;
  1273. margin-right: 4px;
  1274. flex: 1;
  1275. }
  1276. .quick-input-right-action-bar > .actions-container {
  1277. justify-content: flex-end;
  1278. }
  1279. .quick-input-titlebar .monaco-action-bar .action-label.codicon {
  1280. background-position: center;
  1281. background-repeat: no-repeat;
  1282. padding: 2px;
  1283. }
  1284. .quick-input-description {
  1285. margin: 6px;
  1286. }
  1287. .quick-input-header .quick-input-description {
  1288. margin: 4px 2px;
  1289. }
  1290. .quick-input-header {
  1291. display: flex;
  1292. padding: 6px 6px 0px 6px;
  1293. margin-bottom: -2px;
  1294. }
  1295. .quick-input-widget.hidden-input .quick-input-header {
  1296. /* reduce margins and paddings when input box hidden */
  1297. padding: 0;
  1298. margin-bottom: 0;
  1299. }
  1300. .quick-input-and-message {
  1301. display: flex;
  1302. flex-direction: column;
  1303. flex-grow: 1;
  1304. min-width: 0;
  1305. position: relative;
  1306. }
  1307. .quick-input-check-all {
  1308. align-self: center;
  1309. margin: 0;
  1310. }
  1311. .quick-input-filter {
  1312. flex-grow: 1;
  1313. display: flex;
  1314. position: relative;
  1315. }
  1316. .quick-input-box {
  1317. flex-grow: 1;
  1318. }
  1319. .quick-input-widget.show-checkboxes .quick-input-box,
  1320. .quick-input-widget.show-checkboxes .quick-input-message {
  1321. margin-left: 5px;
  1322. }
  1323. .quick-input-visible-count {
  1324. position: absolute;
  1325. left: -10000px;
  1326. }
  1327. .quick-input-count {
  1328. align-self: center;
  1329. position: absolute;
  1330. right: 4px;
  1331. display: flex;
  1332. align-items: center;
  1333. }
  1334. .quick-input-count .monaco-count-badge {
  1335. vertical-align: middle;
  1336. padding: 2px 4px;
  1337. border-radius: 2px;
  1338. min-height: auto;
  1339. line-height: normal;
  1340. }
  1341. .quick-input-action {
  1342. margin-left: 6px;
  1343. }
  1344. .quick-input-action .monaco-text-button {
  1345. font-size: 11px;
  1346. padding: 0 6px;
  1347. display: flex;
  1348. height: 27.5px;
  1349. align-items: center;
  1350. }
  1351. .quick-input-message {
  1352. margin-top: -1px;
  1353. padding: 5px 5px 2px 5px;
  1354. overflow-wrap: break-word;
  1355. }
  1356. .quick-input-message > .codicon {
  1357. margin: 0 0.2em;
  1358. vertical-align: text-bottom;
  1359. }
  1360. .quick-input-progress.monaco-progress-container {
  1361. position: relative;
  1362. }
  1363. .quick-input-progress.monaco-progress-container,
  1364. .quick-input-progress.monaco-progress-container .progress-bit {
  1365. height: 2px;
  1366. }
  1367. .quick-input-list {
  1368. line-height: 22px;
  1369. margin-top: 6px;
  1370. }
  1371. .quick-input-widget.hidden-input .quick-input-list {
  1372. margin-top: 0; /* reduce margins when input box hidden */
  1373. }
  1374. .quick-input-list .monaco-list {
  1375. overflow: hidden;
  1376. max-height: calc(20 * 22px);
  1377. }
  1378. .quick-input-list .quick-input-list-entry {
  1379. box-sizing: border-box;
  1380. overflow: hidden;
  1381. display: flex;
  1382. height: 100%;
  1383. padding: 0 6px;
  1384. }
  1385. .quick-input-list .quick-input-list-entry.quick-input-list-separator-border {
  1386. border-top-width: 1px;
  1387. border-top-style: solid;
  1388. }
  1389. .quick-input-list .monaco-list-row[data-index="0"] .quick-input-list-entry.quick-input-list-separator-border {
  1390. border-top-style: none;
  1391. }
  1392. .quick-input-list .quick-input-list-label {
  1393. overflow: hidden;
  1394. display: flex;
  1395. height: 100%;
  1396. flex: 1;
  1397. }
  1398. .quick-input-list .quick-input-list-checkbox {
  1399. align-self: center;
  1400. margin: 0;
  1401. }
  1402. .quick-input-list .quick-input-list-rows {
  1403. overflow: hidden;
  1404. text-overflow: ellipsis;
  1405. display: flex;
  1406. flex-direction: column;
  1407. height: 100%;
  1408. flex: 1;
  1409. margin-left: 5px;
  1410. }
  1411. .quick-input-widget.show-checkboxes .quick-input-list .quick-input-list-rows {
  1412. margin-left: 10px;
  1413. }
  1414. .quick-input-widget .quick-input-list .quick-input-list-checkbox {
  1415. display: none;
  1416. }
  1417. .quick-input-widget.show-checkboxes .quick-input-list .quick-input-list-checkbox {
  1418. display: inline;
  1419. }
  1420. .quick-input-list .quick-input-list-rows > .quick-input-list-row {
  1421. display: flex;
  1422. align-items: center;
  1423. }
  1424. .quick-input-list .quick-input-list-rows > .quick-input-list-row .monaco-icon-label,
  1425. .quick-input-list .quick-input-list-rows > .quick-input-list-row .monaco-icon-label .monaco-icon-label-container > .monaco-icon-name-container {
  1426. flex: 1; /* make sure the icon label grows within the row */
  1427. }
  1428. .quick-input-list .quick-input-list-rows > .quick-input-list-row .codicon[class*='codicon-'] {
  1429. vertical-align: text-bottom;
  1430. }
  1431. .quick-input-list .quick-input-list-rows .monaco-highlighted-label span {
  1432. opacity: 1;
  1433. }
  1434. .quick-input-list .quick-input-list-entry .quick-input-list-entry-keybinding {
  1435. margin-right: 8px; /* separate from the separator label or scrollbar if any */
  1436. }
  1437. .quick-input-list .quick-input-list-label-meta {
  1438. opacity: 0.7;
  1439. line-height: normal;
  1440. text-overflow: ellipsis;
  1441. overflow: hidden;
  1442. }
  1443. .quick-input-list .monaco-highlighted-label .highlight {
  1444. font-weight: bold;
  1445. }
  1446. .quick-input-list .quick-input-list-entry .quick-input-list-separator {
  1447. margin-right: 8px; /* separate from keybindings or actions */
  1448. }
  1449. .quick-input-list .quick-input-list-entry-action-bar {
  1450. display: flex;
  1451. flex: 0;
  1452. overflow: visible;
  1453. }
  1454. .quick-input-list .quick-input-list-entry-action-bar .action-label {
  1455. /*
  1456. * By default, actions in the quick input action bar are hidden
  1457. * until hovered over them or selected.
  1458. */
  1459. display: none;
  1460. }
  1461. .quick-input-list .quick-input-list-entry-action-bar .action-label.codicon {
  1462. margin-right: 4px;
  1463. padding: 0px 2px 2px 2px;
  1464. }
  1465. .quick-input-list .quick-input-list-entry-action-bar {
  1466. margin-top: 1px;
  1467. }
  1468. .quick-input-list .quick-input-list-entry-action-bar {
  1469. margin-right: 4px; /* separate from scrollbar */
  1470. }
  1471. .quick-input-list .quick-input-list-entry .quick-input-list-entry-action-bar .action-label.always-visible,
  1472. .quick-input-list .quick-input-list-entry:hover .quick-input-list-entry-action-bar .action-label,
  1473. .quick-input-list .monaco-list-row.focused .quick-input-list-entry-action-bar .action-label {
  1474. display: flex;
  1475. }
  1476. /* focused items in quick pick */
  1477. .quick-input-list .monaco-list-row.focused .monaco-keybinding-key,
  1478. .quick-input-list .monaco-list-row.focused .quick-input-list-entry .quick-input-list-separator {
  1479. color: inherit
  1480. }
  1481. .quick-input-list .monaco-list-row.focused .monaco-keybinding-key {
  1482. background: none;
  1483. }
  1484. /*---------------------------------------------------------------------------------------------
  1485. * Copyright (c) Microsoft Corporation. All rights reserved.
  1486. * Licensed under the MIT License. See License.txt in the project root for license information.
  1487. *--------------------------------------------------------------------------------------------*/
  1488. .monaco-editor .inputarea {
  1489. min-width: 0;
  1490. min-height: 0;
  1491. margin: 0;
  1492. padding: 0;
  1493. position: absolute;
  1494. outline: none !important;
  1495. resize: none;
  1496. border: none;
  1497. overflow: hidden;
  1498. color: transparent;
  1499. background-color: transparent;
  1500. }
  1501. /*.monaco-editor .inputarea {
  1502. position: fixed !important;
  1503. width: 800px !important;
  1504. height: 500px !important;
  1505. top: initial !important;
  1506. left: initial !important;
  1507. bottom: 0 !important;
  1508. right: 0 !important;
  1509. color: black !important;
  1510. background: white !important;
  1511. line-height: 15px !important;
  1512. font-size: 14px !important;
  1513. }*/
  1514. .monaco-editor .inputarea.ime-input {
  1515. z-index: 10;
  1516. }
  1517. /*---------------------------------------------------------------------------------------------
  1518. * Copyright (c) Microsoft Corporation. All rights reserved.
  1519. * Licensed under the MIT License. See License.txt in the project root for license information.
  1520. *--------------------------------------------------------------------------------------------*/
  1521. .monaco-editor .view-overlays .current-line {
  1522. display: block;
  1523. position: absolute;
  1524. left: 0;
  1525. top: 0;
  1526. box-sizing: border-box;
  1527. }
  1528. .monaco-editor .margin-view-overlays .current-line {
  1529. display: block;
  1530. position: absolute;
  1531. left: 0;
  1532. top: 0;
  1533. box-sizing: border-box;
  1534. }
  1535. .monaco-editor .margin-view-overlays .current-line.current-line-margin.current-line-margin-both {
  1536. border-right: 0;
  1537. }
  1538. /*---------------------------------------------------------------------------------------------
  1539. * Copyright (c) Microsoft Corporation. All rights reserved.
  1540. * Licensed under the MIT License. See License.txt in the project root for license information.
  1541. *--------------------------------------------------------------------------------------------*/
  1542. /*
  1543. Keeping name short for faster parsing.
  1544. cdr = core decorations rendering (div)
  1545. */
  1546. .monaco-editor .lines-content .cdr {
  1547. position: absolute;
  1548. }
  1549. /*---------------------------------------------------------------------------------------------
  1550. * Copyright (c) Microsoft Corporation. All rights reserved.
  1551. * Licensed under the MIT License. See License.txt in the project root for license information.
  1552. *--------------------------------------------------------------------------------------------*/
  1553. .monaco-editor .glyph-margin {
  1554. position: absolute;
  1555. top: 0;
  1556. }
  1557. /*
  1558. Keeping name short for faster parsing.
  1559. cgmr = core glyph margin rendering (div)
  1560. */
  1561. .monaco-editor .margin-view-overlays .cgmr {
  1562. position: absolute;
  1563. display: flex;
  1564. align-items: center;
  1565. justify-content: center;
  1566. }
  1567. /*---------------------------------------------------------------------------------------------
  1568. * Copyright (c) Microsoft Corporation. All rights reserved.
  1569. * Licensed under the MIT License. See License.txt in the project root for license information.
  1570. *--------------------------------------------------------------------------------------------*/
  1571. .monaco-editor .lines-content .core-guide {
  1572. position: absolute;
  1573. box-sizing: border-box;
  1574. }
  1575. /*---------------------------------------------------------------------------------------------
  1576. * Copyright (c) Microsoft Corporation. All rights reserved.
  1577. * Licensed under the MIT License. See License.txt in the project root for license information.
  1578. *--------------------------------------------------------------------------------------------*/
  1579. .monaco-editor .margin-view-overlays .line-numbers {
  1580. font-variant-numeric: tabular-nums;
  1581. position: absolute;
  1582. text-align: right;
  1583. display: inline-block;
  1584. vertical-align: middle;
  1585. box-sizing: border-box;
  1586. cursor: default;
  1587. height: 100%;
  1588. }
  1589. .monaco-editor .relative-current-line-number {
  1590. text-align: left;
  1591. display: inline-block;
  1592. width: 100%;
  1593. }
  1594. .monaco-editor .margin-view-overlays .line-numbers.lh-odd {
  1595. margin-top: 1px;
  1596. }
  1597. /*---------------------------------------------------------------------------------------------
  1598. * Copyright (c) Microsoft Corporation. All rights reserved.
  1599. * Licensed under the MIT License. See License.txt in the project root for license information.
  1600. *--------------------------------------------------------------------------------------------*/
  1601. /* Uncomment to see lines flashing when they're painted */
  1602. /*.monaco-editor .view-lines > .view-line {
  1603. background-color: none;
  1604. animation-name: flash-background;
  1605. animation-duration: 800ms;
  1606. }
  1607. @keyframes flash-background {
  1608. 0% { background-color: lightgreen; }
  1609. 100% { background-color: none }
  1610. }*/
  1611. .mtkcontrol {
  1612. color: rgb(255, 255, 255) !important;
  1613. background: rgb(150, 0, 0) !important;
  1614. }
  1615. .monaco-editor.no-user-select .lines-content,
  1616. .monaco-editor.no-user-select .view-line,
  1617. .monaco-editor.no-user-select .view-lines {
  1618. user-select: none;
  1619. -webkit-user-select: none;
  1620. -ms-user-select: none;
  1621. }
  1622. .monaco-editor .view-lines {
  1623. white-space: nowrap;
  1624. }
  1625. .monaco-editor .view-line {
  1626. position: absolute;
  1627. width: 100%;
  1628. }
  1629. .monaco-editor .mtkz {
  1630. display: inline-block;
  1631. }
  1632. /* TODO@tokenization bootstrap fix */
  1633. /*.monaco-editor .view-line > span > span {
  1634. float: none;
  1635. min-height: inherit;
  1636. margin-left: inherit;
  1637. }*/
  1638. /*---------------------------------------------------------------------------------------------
  1639. * Copyright (c) Microsoft Corporation. All rights reserved.
  1640. * Licensed under the MIT License. See License.txt in the project root for license information.
  1641. *--------------------------------------------------------------------------------------------*/
  1642. .monaco-editor .lines-decorations {
  1643. position: absolute;
  1644. top: 0;
  1645. background: white;
  1646. }
  1647. /*
  1648. Keeping name short for faster parsing.
  1649. cldr = core lines decorations rendering (div)
  1650. */
  1651. .monaco-editor .margin-view-overlays .cldr {
  1652. position: absolute;
  1653. height: 100%;
  1654. }
  1655. /*---------------------------------------------------------------------------------------------
  1656. * Copyright (c) Microsoft Corporation. All rights reserved.
  1657. * Licensed under the MIT License. See License.txt in the project root for license information.
  1658. *--------------------------------------------------------------------------------------------*/
  1659. /*
  1660. Keeping name short for faster parsing.
  1661. cmdr = core margin decorations rendering (div)
  1662. */
  1663. .monaco-editor .margin-view-overlays .cmdr {
  1664. position: absolute;
  1665. left: 0;
  1666. width: 100%;
  1667. height: 100%;
  1668. }
  1669. /*---------------------------------------------------------------------------------------------
  1670. * Copyright (c) Microsoft Corporation. All rights reserved.
  1671. * Licensed under the MIT License. See License.txt in the project root for license information.
  1672. *--------------------------------------------------------------------------------------------*/
  1673. /* START cover the case that slider is visible on mouseover */
  1674. .monaco-editor .minimap.slider-mouseover .minimap-slider {
  1675. opacity: 0;
  1676. transition: opacity 100ms linear;
  1677. }
  1678. .monaco-editor .minimap.slider-mouseover:hover .minimap-slider {
  1679. opacity: 1;
  1680. }
  1681. .monaco-editor .minimap.slider-mouseover .minimap-slider.active {
  1682. opacity: 1;
  1683. }
  1684. /* END cover the case that slider is visible on mouseover */
  1685. .monaco-editor .minimap-shadow-hidden {
  1686. position: absolute;
  1687. width: 0;
  1688. }
  1689. .monaco-editor .minimap-shadow-visible {
  1690. position: absolute;
  1691. left: -6px;
  1692. width: 6px;
  1693. }
  1694. .monaco-editor.no-minimap-shadow .minimap-shadow-visible {
  1695. position: absolute;
  1696. left: -1px;
  1697. width: 1px;
  1698. }
  1699. /*---------------------------------------------------------------------------------------------
  1700. * Copyright (c) Microsoft Corporation. All rights reserved.
  1701. * Licensed under the MIT License. See License.txt in the project root for license information.
  1702. *--------------------------------------------------------------------------------------------*/
  1703. .monaco-editor .overlayWidgets {
  1704. position: absolute;
  1705. top: 0;
  1706. left:0;
  1707. }
  1708. /*---------------------------------------------------------------------------------------------
  1709. * Copyright (c) Microsoft Corporation. All rights reserved.
  1710. * Licensed under the MIT License. See License.txt in the project root for license information.
  1711. *--------------------------------------------------------------------------------------------*/
  1712. .monaco-editor .view-ruler {
  1713. position: absolute;
  1714. top: 0;
  1715. }
  1716. /*---------------------------------------------------------------------------------------------
  1717. * Copyright (c) Microsoft Corporation. All rights reserved.
  1718. * Licensed under the MIT License. See License.txt in the project root for license information.
  1719. *--------------------------------------------------------------------------------------------*/
  1720. .monaco-editor .scroll-decoration {
  1721. position: absolute;
  1722. top: 0;
  1723. left: 0;
  1724. height: 6px;
  1725. }
  1726. /*---------------------------------------------------------------------------------------------
  1727. * Copyright (c) Microsoft Corporation. All rights reserved.
  1728. * Licensed under the MIT License. See License.txt in the project root for license information.
  1729. *--------------------------------------------------------------------------------------------*/
  1730. /*
  1731. Keeping name short for faster parsing.
  1732. cslr = core selections layer rendering (div)
  1733. */
  1734. .monaco-editor .lines-content .cslr {
  1735. position: absolute;
  1736. }
  1737. .monaco-editor .top-left-radius { border-top-left-radius: 3px; }
  1738. .monaco-editor .bottom-left-radius { border-bottom-left-radius: 3px; }
  1739. .monaco-editor .top-right-radius { border-top-right-radius: 3px; }
  1740. .monaco-editor .bottom-right-radius { border-bottom-right-radius: 3px; }
  1741. .monaco-editor.hc-black .top-left-radius { border-top-left-radius: 0; }
  1742. .monaco-editor.hc-black .bottom-left-radius { border-bottom-left-radius: 0; }
  1743. .monaco-editor.hc-black .top-right-radius { border-top-right-radius: 0; }
  1744. .monaco-editor.hc-black .bottom-right-radius { border-bottom-right-radius: 0; }
  1745. /*---------------------------------------------------------------------------------------------
  1746. * Copyright (c) Microsoft Corporation. All rights reserved.
  1747. * Licensed under the MIT License. See License.txt in the project root for license information.
  1748. *--------------------------------------------------------------------------------------------*/
  1749. .monaco-editor .cursors-layer {
  1750. position: absolute;
  1751. top: 0;
  1752. }
  1753. .monaco-editor .cursors-layer > .cursor {
  1754. position: absolute;
  1755. overflow: hidden;
  1756. }
  1757. /* -- smooth-caret-animation -- */
  1758. .monaco-editor .cursors-layer.cursor-smooth-caret-animation > .cursor {
  1759. transition: all 80ms;
  1760. }
  1761. /* -- block-outline-style -- */
  1762. .monaco-editor .cursors-layer.cursor-block-outline-style > .cursor {
  1763. box-sizing: border-box;
  1764. background: transparent !important;
  1765. border-style: solid;
  1766. border-width: 1px;
  1767. }
  1768. /* -- underline-style -- */
  1769. .monaco-editor .cursors-layer.cursor-underline-style > .cursor {
  1770. border-bottom-width: 2px;
  1771. border-bottom-style: solid;
  1772. background: transparent !important;
  1773. box-sizing: border-box;
  1774. }
  1775. /* -- underline-thin-style -- */
  1776. .monaco-editor .cursors-layer.cursor-underline-thin-style > .cursor {
  1777. border-bottom-width: 1px;
  1778. border-bottom-style: solid;
  1779. background: transparent !important;
  1780. box-sizing: border-box;
  1781. }
  1782. @keyframes monaco-cursor-smooth {
  1783. 0%,
  1784. 20% {
  1785. opacity: 1;
  1786. }
  1787. 60%,
  1788. 100% {
  1789. opacity: 0;
  1790. }
  1791. }
  1792. @keyframes monaco-cursor-phase {
  1793. 0%,
  1794. 20% {
  1795. opacity: 1;
  1796. }
  1797. 90%,
  1798. 100% {
  1799. opacity: 0;
  1800. }
  1801. }
  1802. @keyframes monaco-cursor-expand {
  1803. 0%,
  1804. 20% {
  1805. transform: scaleY(1);
  1806. }
  1807. 80%,
  1808. 100% {
  1809. transform: scaleY(0);
  1810. }
  1811. }
  1812. .cursor-smooth {
  1813. animation: monaco-cursor-smooth 0.5s ease-in-out 0s 20 alternate;
  1814. }
  1815. .cursor-phase {
  1816. animation: monaco-cursor-phase 0.5s ease-in-out 0s 20 alternate;
  1817. }
  1818. .cursor-expand > .cursor {
  1819. animation: monaco-cursor-expand 0.5s ease-in-out 0s 20 alternate;
  1820. }
  1821. /*---------------------------------------------------------------------------------------------
  1822. * Copyright (c) Microsoft Corporation. All rights reserved.
  1823. * Licensed under the MIT License. See License.txt in the project root for license information.
  1824. *--------------------------------------------------------------------------------------------*/
  1825. /* ---------- DiffEditor ---------- */
  1826. .monaco-diff-editor .diffOverview {
  1827. z-index: 9;
  1828. }
  1829. .monaco-diff-editor .diffOverview .diffViewport {
  1830. z-index: 10;
  1831. }
  1832. /* colors not externalized: using transparancy on background */
  1833. .monaco-diff-editor.vs .diffOverview { background: rgba(0, 0, 0, 0.03); }
  1834. .monaco-diff-editor.vs-dark .diffOverview { background: rgba(255, 255, 255, 0.01); }
  1835. .monaco-scrollable-element.modified-in-monaco-diff-editor.vs .scrollbar { background: rgba(0,0,0,0); }
  1836. .monaco-scrollable-element.modified-in-monaco-diff-editor.vs-dark .scrollbar { background: rgba(0,0,0,0); }
  1837. .monaco-scrollable-element.modified-in-monaco-diff-editor.hc-black .scrollbar { background: none; }
  1838. .monaco-scrollable-element.modified-in-monaco-diff-editor .slider {
  1839. z-index: 10;
  1840. }
  1841. .modified-in-monaco-diff-editor .slider.active { background: rgba(171, 171, 171, .4); }
  1842. .modified-in-monaco-diff-editor.hc-black .slider.active { background: none; }
  1843. /* ---------- Diff ---------- */
  1844. .monaco-editor .insert-sign,
  1845. .monaco-diff-editor .insert-sign,
  1846. .monaco-editor .delete-sign,
  1847. .monaco-diff-editor .delete-sign {
  1848. font-size: 11px !important;
  1849. opacity: 0.7 !important;
  1850. display: flex !important;
  1851. align-items: center;
  1852. }
  1853. .monaco-editor.hc-black .insert-sign,
  1854. .monaco-diff-editor.hc-black .insert-sign,
  1855. .monaco-editor.hc-black .delete-sign,
  1856. .monaco-diff-editor.hc-black .delete-sign {
  1857. opacity: 1;
  1858. }
  1859. .monaco-editor .inline-deleted-margin-view-zone {
  1860. text-align: right;
  1861. }
  1862. .monaco-editor .inline-added-margin-view-zone {
  1863. text-align: right;
  1864. }
  1865. /* ---------- Inline Diff ---------- */
  1866. .monaco-editor .view-zones .view-lines .view-line span {
  1867. display: inline-block;
  1868. }
  1869. .monaco-editor .margin-view-zones .lightbulb-glyph:hover {
  1870. cursor: pointer;
  1871. }
  1872. /*---------------------------------------------------------------------------------------------
  1873. * Copyright (c) Microsoft Corporation. All rights reserved.
  1874. * Licensed under the MIT License. See License.txt in the project root for license information.
  1875. *--------------------------------------------------------------------------------------------*/
  1876. .monaco-diff-editor .diff-review-line-number {
  1877. text-align: right;
  1878. display: inline-block;
  1879. }
  1880. .monaco-diff-editor .diff-review {
  1881. position: absolute;
  1882. user-select: none;
  1883. -webkit-user-select: none;
  1884. -ms-user-select: none;
  1885. }
  1886. .monaco-diff-editor .diff-review-summary {
  1887. padding-left: 10px;
  1888. }
  1889. .monaco-diff-editor .diff-review-shadow {
  1890. position: absolute;
  1891. }
  1892. .monaco-diff-editor .diff-review-row {
  1893. white-space: pre;
  1894. }
  1895. .monaco-diff-editor .diff-review-table {
  1896. display: table;
  1897. min-width: 100%;
  1898. }
  1899. .monaco-diff-editor .diff-review-row {
  1900. display: table-row;
  1901. width: 100%;
  1902. }
  1903. .monaco-diff-editor .diff-review-spacer {
  1904. display: inline-block;
  1905. width: 10px;
  1906. vertical-align: middle;
  1907. }
  1908. .monaco-diff-editor .diff-review-spacer > .codicon {
  1909. font-size: 9px !important;
  1910. }
  1911. .monaco-diff-editor .diff-review-actions {
  1912. display: inline-block;
  1913. position: absolute;
  1914. right: 10px;
  1915. top: 2px;
  1916. }
  1917. .monaco-diff-editor .diff-review-actions .action-label {
  1918. width: 16px;
  1919. height: 16px;
  1920. margin: 2px 0;
  1921. }
  1922. /*---------------------------------------------------------------------------------------------
  1923. * Copyright (c) Microsoft Corporation. All rights reserved.
  1924. * Licensed under the MIT License. See License.txt in the project root for license information.
  1925. *--------------------------------------------------------------------------------------------*/
  1926. /* -------------------- IE10 remove auto clear button -------------------- */
  1927. ::-ms-clear {
  1928. display: none;
  1929. }
  1930. /* All widgets */
  1931. /* I am not a big fan of this rule */
  1932. .monaco-editor .editor-widget input {
  1933. color: inherit;
  1934. }
  1935. /* -------------------- Editor -------------------- */
  1936. .monaco-editor {
  1937. position: relative;
  1938. overflow: visible;
  1939. -webkit-text-size-adjust: 100%;
  1940. }
  1941. /* -------------------- Misc -------------------- */
  1942. .monaco-editor .overflow-guard {
  1943. position: relative;
  1944. overflow: hidden;
  1945. }
  1946. .monaco-editor .view-overlays {
  1947. position: absolute;
  1948. top: 0;
  1949. }
  1950. /*
  1951. .monaco-editor .auto-closed-character {
  1952. opacity: 0.3;
  1953. }
  1954. */
  1955. /*---------------------------------------------------------------------------------------------
  1956. * Copyright (c) Microsoft Corporation. All rights reserved.
  1957. * Licensed under the MIT License. See License.txt in the project root for license information.
  1958. *--------------------------------------------------------------------------------------------*/
  1959. .monaco-editor .selection-anchor {
  1960. background-color: #007ACC;
  1961. width: 2px !important;
  1962. }
  1963. /*---------------------------------------------------------------------------------------------
  1964. * Copyright (c) Microsoft Corporation. All rights reserved.
  1965. * Licensed under the MIT License. See License.txt in the project root for license information.
  1966. *--------------------------------------------------------------------------------------------*/
  1967. .monaco-editor .bracket-match {
  1968. box-sizing: border-box;
  1969. }
  1970. /*---------------------------------------------------------------------------------------------
  1971. * Copyright (c) Microsoft Corporation. All rights reserved.
  1972. * Licensed under the MIT License. See License.txt in the project root for license information.
  1973. *--------------------------------------------------------------------------------------------*/
  1974. .monaco-editor .contentWidgets .codicon-light-bulb,
  1975. .monaco-editor .contentWidgets .codicon-lightbulb-autofix {
  1976. display: flex;
  1977. align-items: center;
  1978. justify-content: center;
  1979. }
  1980. .monaco-editor .contentWidgets .codicon-light-bulb:hover,
  1981. .monaco-editor .contentWidgets .codicon-lightbulb-autofix:hover {
  1982. cursor: pointer;
  1983. }
  1984. /*---------------------------------------------------------------------------------------------
  1985. * Copyright (c) Microsoft Corporation. All rights reserved.
  1986. * Licensed under the MIT License. See License.txt in the project root for license information.
  1987. *--------------------------------------------------------------------------------------------*/
  1988. .monaco-editor .codelens-decoration {
  1989. overflow: hidden;
  1990. display: inline-block;
  1991. text-overflow: ellipsis;
  1992. white-space: nowrap;
  1993. color: var(--vscode-editorCodeLens-foreground)
  1994. }
  1995. .monaco-editor .codelens-decoration > span,
  1996. .monaco-editor .codelens-decoration > a {
  1997. user-select: none;
  1998. -webkit-user-select: none;
  1999. -ms-user-select: none;
  2000. white-space: nowrap;
  2001. vertical-align: sub;
  2002. }
  2003. .monaco-editor .codelens-decoration > a {
  2004. text-decoration: none;
  2005. }
  2006. .monaco-editor .codelens-decoration > a:hover {
  2007. cursor: pointer;
  2008. color: var(--vscoce-editorLink-activeForeground) !important;
  2009. }
  2010. .monaco-editor .codelens-decoration > a:hover .codicon {
  2011. color: var(--vscoce-editorLink-activeForeground) !important;
  2012. }
  2013. .monaco-editor .codelens-decoration .codicon {
  2014. vertical-align: middle;
  2015. color: currentColor !important;
  2016. color: var(--vscode-editorCodeLens-foreground);
  2017. }
  2018. .monaco-editor .codelens-decoration > a:hover .codicon::before {
  2019. cursor: pointer;
  2020. }
  2021. @keyframes fadein {
  2022. 0% { opacity: 0; visibility: visible;}
  2023. 100% { opacity: 1; }
  2024. }
  2025. .monaco-editor .codelens-decoration.fadein {
  2026. animation: fadein 0.1s linear;
  2027. }
  2028. /*---------------------------------------------------------------------------------------------
  2029. * Copyright (c) Microsoft Corporation. All rights reserved.
  2030. * Licensed under the MIT License. See License.txt in the project root for license information.
  2031. *--------------------------------------------------------------------------------------------*/
  2032. .colorpicker-widget {
  2033. height: 190px;
  2034. user-select: none;
  2035. -webkit-user-select: none;
  2036. -ms-user-select: none;
  2037. }
  2038. .monaco-editor .colorpicker-hover:focus {
  2039. outline: none;
  2040. }
  2041. /* Decoration */
  2042. .colorpicker-color-decoration {
  2043. border: solid 0.1em #000;
  2044. box-sizing: border-box;
  2045. margin: 0.1em 0.2em 0 0.2em;
  2046. width: 0.8em;
  2047. height: 0.8em;
  2048. line-height: 0.8em;
  2049. display: inline-block;
  2050. }
  2051. .hc-black .colorpicker-color-decoration,
  2052. .vs-dark .colorpicker-color-decoration {
  2053. border: solid 0.1em #eee;
  2054. }
  2055. /* Header */
  2056. .colorpicker-header {
  2057. display: flex;
  2058. height: 24px;
  2059. position: relative;
  2060. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=);
  2061. background-size: 9px 9px;
  2062. image-rendering: pixelated;
  2063. }
  2064. .colorpicker-header .picked-color {
  2065. width: 216px;
  2066. display: flex;
  2067. align-items: center;
  2068. justify-content: center;
  2069. line-height: 24px;
  2070. cursor: pointer;
  2071. color: white;
  2072. flex: 1;
  2073. }
  2074. .colorpicker-header .picked-color .codicon {
  2075. color: inherit;
  2076. font-size: 14px;
  2077. position: absolute;
  2078. left: 8px;
  2079. }
  2080. .colorpicker-header .picked-color.light {
  2081. color: black;
  2082. }
  2083. .colorpicker-header .original-color {
  2084. width: 74px;
  2085. z-index: inherit;
  2086. cursor: pointer;
  2087. }
  2088. /* Body */
  2089. .colorpicker-body {
  2090. display: flex;
  2091. padding: 8px;
  2092. position: relative;
  2093. }
  2094. .colorpicker-body .saturation-wrap {
  2095. overflow: hidden;
  2096. height: 150px;
  2097. position: relative;
  2098. min-width: 220px;
  2099. flex: 1;
  2100. }
  2101. .colorpicker-body .saturation-box {
  2102. height: 150px;
  2103. position: absolute;
  2104. }
  2105. .colorpicker-body .saturation-selection {
  2106. width: 9px;
  2107. height: 9px;
  2108. margin: -5px 0 0 -5px;
  2109. border: 1px solid rgb(255, 255, 255);
  2110. border-radius: 100%;
  2111. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  2112. position: absolute;
  2113. }
  2114. .colorpicker-body .strip {
  2115. width: 25px;
  2116. height: 150px;
  2117. }
  2118. .colorpicker-body .hue-strip {
  2119. position: relative;
  2120. margin-left: 8px;
  2121. cursor: grab;
  2122. background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  2123. }
  2124. .colorpicker-body .opacity-strip {
  2125. position: relative;
  2126. margin-left: 8px;
  2127. cursor: grab;
  2128. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=);
  2129. background-size: 9px 9px;
  2130. image-rendering: pixelated;
  2131. }
  2132. .colorpicker-body .strip.grabbing {
  2133. cursor: grabbing;
  2134. }
  2135. .colorpicker-body .slider {
  2136. position: absolute;
  2137. top: 0;
  2138. left: -2px;
  2139. width: calc(100% + 4px);
  2140. height: 4px;
  2141. box-sizing: border-box;
  2142. border: 1px solid rgba(255, 255, 255, 0.71);
  2143. box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.85);
  2144. }
  2145. .colorpicker-body .strip .overlay {
  2146. height: 150px;
  2147. pointer-events: none;
  2148. }
  2149. /*---------------------------------------------------------------------------------------------
  2150. * Copyright (c) Microsoft Corporation. All rights reserved.
  2151. * Licensed under the MIT License. See License.txt in the project root for license information.
  2152. *--------------------------------------------------------------------------------------------*/
  2153. .monaco-editor.vs .dnd-target {
  2154. border-right: 2px dotted black;
  2155. color: white; /* opposite of black */
  2156. }
  2157. .monaco-editor.vs-dark .dnd-target {
  2158. border-right: 2px dotted #AEAFAD;
  2159. color: #51504f; /* opposite of #AEAFAD */
  2160. }
  2161. .monaco-editor.hc-black .dnd-target {
  2162. border-right: 2px dotted #fff;
  2163. color: #000; /* opposite of #fff */
  2164. }
  2165. .monaco-editor.mouse-default .view-lines,
  2166. .monaco-editor.vs-dark.mac.mouse-default .view-lines,
  2167. .monaco-editor.hc-black.mac.mouse-default .view-lines {
  2168. cursor: default;
  2169. }
  2170. .monaco-editor.mouse-copy .view-lines,
  2171. .monaco-editor.vs-dark.mac.mouse-copy .view-lines,
  2172. .monaco-editor.hc-black.mac.mouse-copy .view-lines {
  2173. cursor: copy;
  2174. }
  2175. /*---------------------------------------------------------------------------------------------
  2176. * Copyright (c) Microsoft Corporation. All rights reserved.
  2177. * Licensed under the MIT License. See License.txt in the project root for license information.
  2178. *--------------------------------------------------------------------------------------------*/
  2179. /* Find widget */
  2180. .monaco-editor .find-widget {
  2181. position: absolute;
  2182. z-index: 35;
  2183. height: 33px;
  2184. overflow: hidden;
  2185. line-height: 19px;
  2186. transition: transform 200ms linear;
  2187. padding: 0 4px;
  2188. box-sizing: border-box;
  2189. transform: translateY(calc(-100% - 10px)); /* shadow (10px) */
  2190. }
  2191. .monaco-editor .find-widget textarea {
  2192. margin: 0px;
  2193. }
  2194. .monaco-editor .find-widget.hiddenEditor {
  2195. display: none;
  2196. }
  2197. /* Find widget when replace is toggled on */
  2198. .monaco-editor .find-widget.replaceToggled > .replace-part {
  2199. display: flex;
  2200. }
  2201. .monaco-editor .find-widget.visible {
  2202. transform: translateY(0);
  2203. }
  2204. .monaco-editor .find-widget .monaco-inputbox.synthetic-focus {
  2205. outline: 1px solid -webkit-focus-ring-color;
  2206. outline-offset: -1px;
  2207. }
  2208. .monaco-editor .find-widget .monaco-inputbox .input {
  2209. background-color: transparent;
  2210. min-height: 0;
  2211. }
  2212. .monaco-editor .find-widget .monaco-findInput .input {
  2213. font-size: 13px;
  2214. }
  2215. .monaco-editor .find-widget > .find-part,
  2216. .monaco-editor .find-widget > .replace-part {
  2217. margin: 4px 0 0 17px;
  2218. font-size: 12px;
  2219. display: flex;
  2220. }
  2221. .monaco-editor .find-widget > .find-part .monaco-inputbox,
  2222. .monaco-editor .find-widget > .replace-part .monaco-inputbox {
  2223. min-height: 25px;
  2224. }
  2225. .monaco-editor .find-widget > .replace-part .monaco-inputbox > .ibwrapper > .mirror {
  2226. padding-right: 22px;
  2227. }
  2228. .monaco-editor .find-widget > .find-part .monaco-inputbox > .ibwrapper > .input,
  2229. .monaco-editor .find-widget > .find-part .monaco-inputbox > .ibwrapper > .mirror,
  2230. .monaco-editor .find-widget > .replace-part .monaco-inputbox > .ibwrapper > .input,
  2231. .monaco-editor .find-widget > .replace-part .monaco-inputbox > .ibwrapper > .mirror {
  2232. padding-top: 2px;
  2233. padding-bottom: 2px;
  2234. }
  2235. .monaco-editor .find-widget > .find-part .find-actions {
  2236. height: 25px;
  2237. display: flex;
  2238. align-items: center;
  2239. }
  2240. .monaco-editor .find-widget > .replace-part .replace-actions {
  2241. height: 25px;
  2242. display: flex;
  2243. align-items: center;
  2244. }
  2245. .monaco-editor .find-widget .monaco-findInput {
  2246. vertical-align: middle;
  2247. display: flex;
  2248. flex:1;
  2249. }
  2250. .monaco-editor .find-widget .monaco-findInput .monaco-scrollable-element {
  2251. /* Make sure textarea inherits the width correctly */
  2252. width: 100%;
  2253. }
  2254. .monaco-editor .find-widget .monaco-findInput .monaco-scrollable-element .scrollbar.vertical {
  2255. /* Hide vertical scrollbar */
  2256. opacity: 0;
  2257. }
  2258. .monaco-editor .find-widget .matchesCount {
  2259. display: flex;
  2260. flex: initial;
  2261. margin: 0 0 0 3px;
  2262. padding: 2px 0 0 2px;
  2263. height: 25px;
  2264. vertical-align: middle;
  2265. box-sizing: border-box;
  2266. text-align: center;
  2267. line-height: 23px;
  2268. }
  2269. .monaco-editor .find-widget .button {
  2270. width: 16px;
  2271. height: 16px;
  2272. padding: 3px;
  2273. border-radius: 5px;
  2274. display: flex;
  2275. flex: initial;
  2276. margin-left: 3px;
  2277. background-position: center center;
  2278. background-repeat: no-repeat;
  2279. cursor: pointer;
  2280. display: flex;
  2281. align-items: center;
  2282. justify-content: center;
  2283. }
  2284. /* find in selection button */
  2285. .monaco-editor .find-widget .codicon-find-selection {
  2286. width: 22px;
  2287. height: 22px;
  2288. padding: 3px;
  2289. border-radius: 5px;
  2290. }
  2291. .monaco-editor .find-widget .button.left {
  2292. margin-left: 0;
  2293. margin-right: 3px;
  2294. }
  2295. .monaco-editor .find-widget .button.wide {
  2296. width: auto;
  2297. padding: 1px 6px;
  2298. top: -1px;
  2299. }
  2300. .monaco-editor .find-widget .button.toggle {
  2301. position: absolute;
  2302. top: 0;
  2303. left: 3px;
  2304. width: 18px;
  2305. height: 100%;
  2306. border-radius: 0;
  2307. box-sizing: border-box;
  2308. }
  2309. .monaco-editor .find-widget .button.toggle.disabled {
  2310. display: none;
  2311. }
  2312. .monaco-editor .find-widget .disabled {
  2313. opacity: 0.3;
  2314. cursor: default;
  2315. }
  2316. .monaco-editor .find-widget > .replace-part {
  2317. display: none;
  2318. }
  2319. .monaco-editor .find-widget > .replace-part > .monaco-findInput {
  2320. position: relative;
  2321. display: flex;
  2322. vertical-align: middle;
  2323. flex: auto;
  2324. flex-grow: 0;
  2325. flex-shrink: 0;
  2326. }
  2327. .monaco-editor .find-widget > .replace-part > .monaco-findInput > .controls {
  2328. position: absolute;
  2329. top: 3px;
  2330. right: 2px;
  2331. }
  2332. /* REDUCED */
  2333. .monaco-editor .find-widget.reduced-find-widget .matchesCount {
  2334. display:none;
  2335. }
  2336. /* NARROW (SMALLER THAN REDUCED) */
  2337. .monaco-editor .find-widget.narrow-find-widget {
  2338. max-width: 257px !important;
  2339. }
  2340. /* COLLAPSED (SMALLER THAN NARROW) */
  2341. .monaco-editor .find-widget.collapsed-find-widget {
  2342. max-width: 170px !important;
  2343. }
  2344. .monaco-editor .find-widget.collapsed-find-widget .button.previous,
  2345. .monaco-editor .find-widget.collapsed-find-widget .button.next,
  2346. .monaco-editor .find-widget.collapsed-find-widget .button.replace,
  2347. .monaco-editor .find-widget.collapsed-find-widget .button.replace-all,
  2348. .monaco-editor .find-widget.collapsed-find-widget > .find-part .monaco-findInput .controls {
  2349. display:none;
  2350. }
  2351. .monaco-editor .findMatch {
  2352. animation-duration: 0;
  2353. animation-name: inherit !important;
  2354. }
  2355. .monaco-editor .find-widget .monaco-sash {
  2356. left: 0 !important;
  2357. }
  2358. .monaco-editor.hc-black .find-widget .button:before {
  2359. position: relative;
  2360. top: 1px;
  2361. left: 2px;
  2362. }
  2363. /*---------------------------------------------------------------------------------------------
  2364. * Copyright (c) Microsoft Corporation. All rights reserved.
  2365. * Licensed under the MIT License. See License.txt in the project root for license information.
  2366. *--------------------------------------------------------------------------------------------*/
  2367. .monaco-editor .margin-view-overlays .codicon-folding-expanded,
  2368. .monaco-editor .margin-view-overlays .codicon-folding-collapsed {
  2369. cursor: pointer;
  2370. opacity: 0;
  2371. transition: opacity 0.5s;
  2372. display: flex;
  2373. align-items: center;
  2374. justify-content: center;
  2375. font-size: 140%;
  2376. margin-left: 2px;
  2377. }
  2378. .monaco-editor .margin-view-overlays:hover .codicon,
  2379. .monaco-editor .margin-view-overlays .codicon.codicon-folding-collapsed,
  2380. .monaco-editor .margin-view-overlays .codicon.alwaysShowFoldIcons {
  2381. opacity: 1;
  2382. }
  2383. .monaco-editor .inline-folded:after {
  2384. color: grey;
  2385. margin: 0.1em 0.2em 0 0.2em;
  2386. content: "⋯";
  2387. display: inline;
  2388. line-height: 1em;
  2389. cursor: pointer;
  2390. }
  2391. /*---------------------------------------------------------------------------------------------
  2392. * Copyright (c) Microsoft Corporation. All rights reserved.
  2393. * Licensed under the MIT License. See License.txt in the project root for license information.
  2394. *--------------------------------------------------------------------------------------------*/
  2395. /* marker zone */
  2396. .monaco-editor .peekview-widget .head .peekview-title .severity-icon {
  2397. display: inline-block;
  2398. vertical-align: text-top;
  2399. margin-right: 4px;
  2400. }
  2401. .monaco-editor .marker-widget {
  2402. text-overflow: ellipsis;
  2403. white-space: nowrap;
  2404. }
  2405. .monaco-editor .marker-widget > .stale {
  2406. opacity: 0.6;
  2407. font-style: italic;
  2408. }
  2409. .monaco-editor .marker-widget .title {
  2410. display: inline-block;
  2411. padding-right: 5px;
  2412. }
  2413. .monaco-editor .marker-widget .descriptioncontainer {
  2414. position: absolute;
  2415. white-space: pre;
  2416. user-select: text;
  2417. -webkit-user-select: text;
  2418. -ms-user-select: text;
  2419. padding: 8px 12px 0 20px;
  2420. }
  2421. .monaco-editor .marker-widget .descriptioncontainer .message {
  2422. display: flex;
  2423. flex-direction: column;
  2424. }
  2425. .monaco-editor .marker-widget .descriptioncontainer .message .details {
  2426. padding-left: 6px;
  2427. }
  2428. .monaco-editor .marker-widget .descriptioncontainer .message .source,
  2429. .monaco-editor .marker-widget .descriptioncontainer .message span.code {
  2430. opacity: 0.6;
  2431. }
  2432. .monaco-editor .marker-widget .descriptioncontainer .message a.code-link {
  2433. opacity: 0.6;
  2434. color: inherit;
  2435. }
  2436. .monaco-editor .marker-widget .descriptioncontainer .message a.code-link:before {
  2437. content: '(';
  2438. }
  2439. .monaco-editor .marker-widget .descriptioncontainer .message a.code-link:after {
  2440. content: ')';
  2441. }
  2442. .monaco-editor .marker-widget .descriptioncontainer .message a.code-link > span {
  2443. text-decoration: underline;
  2444. /** Hack to force underline to show **/
  2445. border-bottom: 1px solid transparent;
  2446. text-underline-position: under;
  2447. color: var(--vscode-textLink-foreground);
  2448. }
  2449. .monaco-editor .marker-widget .descriptioncontainer .message a.code-link > span {
  2450. color: var(--vscode-textLink-activeForeground);
  2451. }
  2452. .monaco-editor .marker-widget .descriptioncontainer .filename {
  2453. cursor: pointer;
  2454. }
  2455. /*---------------------------------------------------------------------------------------------
  2456. * Copyright (c) Microsoft Corporation. All rights reserved.
  2457. * Licensed under the MIT License. See License.txt in the project root for license information.
  2458. *--------------------------------------------------------------------------------------------*/
  2459. .monaco-editor .goto-definition-link {
  2460. text-decoration: underline;
  2461. cursor: pointer;
  2462. }
  2463. /*---------------------------------------------------------------------------------------------
  2464. * Copyright (c) Microsoft Corporation. All rights reserved.
  2465. * Licensed under the MIT License. See License.txt in the project root for license information.
  2466. *--------------------------------------------------------------------------------------------*/
  2467. /* -- zone widget */
  2468. .monaco-editor .zone-widget .zone-widget-container.reference-zone-widget {
  2469. border-top-width: 1px;
  2470. border-bottom-width: 1px;
  2471. }
  2472. .monaco-editor .reference-zone-widget .inline {
  2473. display: inline-block;
  2474. vertical-align: top;
  2475. }
  2476. .monaco-editor .reference-zone-widget .messages {
  2477. height: 100%;
  2478. width: 100%;
  2479. text-align: center;
  2480. padding: 3em 0;
  2481. }
  2482. .monaco-editor .reference-zone-widget .ref-tree {
  2483. line-height: 23px;
  2484. background-color: var(--vscode-peekViewResult-background);
  2485. color: var(--vscode-peekViewResult-lineForeground);
  2486. }
  2487. .monaco-editor .reference-zone-widget .ref-tree .reference {
  2488. text-overflow: ellipsis;
  2489. overflow: hidden;
  2490. }
  2491. .monaco-editor .reference-zone-widget .ref-tree .reference-file {
  2492. display: inline-flex;
  2493. width: 100%;
  2494. height: 100%;
  2495. color: var(--vscode-peekViewResult-fileForeground);
  2496. }
  2497. .monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .selected .reference-file {
  2498. color: inherit !important;
  2499. }
  2500. .monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .monaco-list-rows > .monaco-list-row.selected:not(.highlighted) {
  2501. background-color: var(--vscode-peekViewResult-selectionBackground);
  2502. color: var(--vscode-peekViewResult-selectionForeground) !important;
  2503. }
  2504. .monaco-editor .reference-zone-widget .ref-tree .reference-file .count {
  2505. margin-right: 12px;
  2506. margin-left: auto;
  2507. }
  2508. .monaco-editor .reference-zone-widget .ref-tree .referenceMatch .highlight {
  2509. background-color: var(--vscode-peekViewResult-matchHighlightBackground);
  2510. }
  2511. .monaco-editor .reference-zone-widget .preview .reference-decoration {
  2512. background-color: var(--vscode-peekViewEditor-matchHighlightBackground);
  2513. border: 2px solid var(--vscode-peekViewEditor-matchHighlightBorder);
  2514. box-sizing: border-box;
  2515. }
  2516. .monaco-editor .reference-zone-widget .preview .monaco-editor .monaco-editor-background,
  2517. .monaco-editor .reference-zone-widget .preview .monaco-editor .inputarea.ime-input {
  2518. background-color: var(--vscode-peekViewEditor-background);
  2519. }
  2520. .monaco-editor .reference-zone-widget .preview .monaco-editor .margin {
  2521. background-color: var(--vscode-peekViewEditorGutter-background);
  2522. }
  2523. /* High Contrast Theming */
  2524. .monaco-editor.hc-black .reference-zone-widget .ref-tree .reference-file {
  2525. font-weight: bold;
  2526. }
  2527. .monaco-editor.hc-black .reference-zone-widget .ref-tree .referenceMatch .highlight {
  2528. border: 1px dotted var(--vscode-contrastActiveBorder, transparent);
  2529. box-sizing: border-box;
  2530. }
  2531. /*---------------------------------------------------------------------------------------------
  2532. * Copyright (c) Microsoft Corporation. All rights reserved.
  2533. * Licensed under the MIT License. See License.txt in the project root for license information.
  2534. *--------------------------------------------------------------------------------------------*/
  2535. .monaco-editor .suggest-preview-additional-widget {
  2536. white-space: nowrap;
  2537. }
  2538. .monaco-editor .suggest-preview-additional-widget .content-spacer {
  2539. color: transparent;
  2540. white-space: pre;
  2541. }
  2542. .monaco-editor .suggest-preview-additional-widget .button {
  2543. display: inline-block;
  2544. cursor: pointer;
  2545. text-decoration: underline;
  2546. text-underline-position: under;
  2547. }
  2548. .monaco-editor .ghost-text-hidden {
  2549. opacity: 0;
  2550. font-size: 0;
  2551. }
  2552. .monaco-editor .ghost-text-decoration {
  2553. font-style: italic;
  2554. }
  2555. .monaco-editor .suggest-preview-text {
  2556. font-style: italic;
  2557. }
  2558. /*---------------------------------------------------------------------------------------------
  2559. * Copyright (c) Microsoft Corporation. All rights reserved.
  2560. * Licensed under the MIT License. See License.txt in the project root for license information.
  2561. *--------------------------------------------------------------------------------------------*/
  2562. .monaco-editor .detected-link,
  2563. .monaco-editor .detected-link-active {
  2564. text-decoration: underline;
  2565. text-underline-position: under;
  2566. }
  2567. .monaco-editor .detected-link-active {
  2568. cursor: pointer;
  2569. }
  2570. /*---------------------------------------------------------------------------------------------
  2571. * Copyright (c) Microsoft Corporation. All rights reserved.
  2572. * Licensed under the MIT License. See License.txt in the project root for license information.
  2573. *--------------------------------------------------------------------------------------------*/
  2574. .monaco-editor .monaco-editor-overlaymessage {
  2575. padding-bottom: 8px;
  2576. z-index: 10000;
  2577. }
  2578. .monaco-editor .monaco-editor-overlaymessage.below {
  2579. padding-bottom: 0;
  2580. padding-top: 8px;
  2581. z-index: 10000;
  2582. }
  2583. @keyframes fadeIn {
  2584. from { opacity: 0; }
  2585. to { opacity: 1; }
  2586. }
  2587. .monaco-editor .monaco-editor-overlaymessage.fadeIn {
  2588. animation: fadeIn 150ms ease-out;
  2589. }
  2590. @keyframes fadeOut {
  2591. from { opacity: 1; }
  2592. to { opacity: 0; }
  2593. }
  2594. .monaco-editor .monaco-editor-overlaymessage.fadeOut {
  2595. animation: fadeOut 100ms ease-out;
  2596. }
  2597. .monaco-editor .monaco-editor-overlaymessage .message {
  2598. padding: 1px 4px;
  2599. color: var(--vscode-inputValidation-infoForeground);
  2600. background-color: var(--vscode-inputValidation-infoBackground);
  2601. border: 1px solid var(--vscode-inputValidation-infoBorder);
  2602. }
  2603. .monaco-editor.hc-black .monaco-editor-overlaymessage .message {
  2604. border-width: 2px;
  2605. }
  2606. .monaco-editor .monaco-editor-overlaymessage .anchor {
  2607. width: 0 !important;
  2608. height: 0 !important;
  2609. border-color: transparent;
  2610. border-style: solid;
  2611. z-index: 1000;
  2612. border-width: 8px;
  2613. position: absolute;
  2614. }
  2615. .monaco-editor .monaco-editor-overlaymessage .anchor.top {
  2616. border-bottom-color: var(--vscode-inputValidation-infoBorder);
  2617. }
  2618. .monaco-editor .monaco-editor-overlaymessage .anchor.below {
  2619. border-top-color: var(--vscode-inputValidation-infoBorder);
  2620. }
  2621. .monaco-editor .monaco-editor-overlaymessage:not(.below) .anchor.top,
  2622. .monaco-editor .monaco-editor-overlaymessage.below .anchor.below {
  2623. display: none;
  2624. }
  2625. .monaco-editor .monaco-editor-overlaymessage.below .anchor.top {
  2626. display: inherit;
  2627. top: -8px;
  2628. }
  2629. /*---------------------------------------------------------------------------------------------
  2630. * Copyright (c) Microsoft Corporation. All rights reserved.
  2631. * Licensed under the MIT License. See License.txt in the project root for license information.
  2632. *--------------------------------------------------------------------------------------------*/
  2633. .monaco-editor .parameter-hints-widget {
  2634. z-index: 10;
  2635. display: flex;
  2636. flex-direction: column;
  2637. line-height: 1.5em;
  2638. }
  2639. .monaco-editor .parameter-hints-widget > .phwrapper {
  2640. max-width: 440px;
  2641. display: flex;
  2642. flex-direction: row;
  2643. }
  2644. .monaco-editor .parameter-hints-widget.multiple {
  2645. min-height: 3.3em;
  2646. padding: 0;
  2647. }
  2648. .monaco-editor .parameter-hints-widget.visible {
  2649. transition: left .05s ease-in-out;
  2650. }
  2651. .monaco-editor .parameter-hints-widget p,
  2652. .monaco-editor .parameter-hints-widget ul {
  2653. margin: 8px 0;
  2654. }
  2655. .monaco-editor .parameter-hints-widget .monaco-scrollable-element,
  2656. .monaco-editor .parameter-hints-widget .body {
  2657. display: flex;
  2658. flex: 1;
  2659. flex-direction: column;
  2660. min-height: 100%;
  2661. }
  2662. .monaco-editor .parameter-hints-widget .signature {
  2663. padding: 4px 5px;
  2664. }
  2665. .monaco-editor .parameter-hints-widget .docs {
  2666. padding: 0 10px 0 5px;
  2667. white-space: pre-wrap;
  2668. }
  2669. .monaco-editor .parameter-hints-widget .docs.empty {
  2670. display: none;
  2671. }
  2672. .monaco-editor .parameter-hints-widget .docs .markdown-docs {
  2673. white-space: initial;
  2674. }
  2675. .monaco-editor .parameter-hints-widget .docs .markdown-docs code {
  2676. font-family: var(--monaco-monospace-font);
  2677. }
  2678. .monaco-editor .parameter-hints-widget .docs .code {
  2679. white-space: pre-wrap;
  2680. }
  2681. .monaco-editor .parameter-hints-widget .docs code {
  2682. border-radius: 3px;
  2683. padding: 0 0.4em;
  2684. }
  2685. .monaco-editor .parameter-hints-widget .controls {
  2686. display: none;
  2687. flex-direction: column;
  2688. align-items: center;
  2689. min-width: 22px;
  2690. justify-content: flex-end;
  2691. }
  2692. .monaco-editor .parameter-hints-widget.multiple .controls {
  2693. display: flex;
  2694. padding: 0 2px;
  2695. }
  2696. .monaco-editor .parameter-hints-widget.multiple .button {
  2697. width: 16px;
  2698. height: 16px;
  2699. background-repeat: no-repeat;
  2700. cursor: pointer;
  2701. }
  2702. .monaco-editor .parameter-hints-widget .button.previous {
  2703. bottom: 24px;
  2704. }
  2705. .monaco-editor .parameter-hints-widget .overloads {
  2706. text-align: center;
  2707. height: 12px;
  2708. line-height: 12px;
  2709. opacity: 0.5;
  2710. font-family: var(--monaco-monospace-font);
  2711. }
  2712. .monaco-editor .parameter-hints-widget .signature .parameter.active {
  2713. font-weight: bold;
  2714. }
  2715. .monaco-editor .parameter-hints-widget .documentation-parameter > .parameter {
  2716. font-weight: bold;
  2717. margin-right: 0.5em;
  2718. }
  2719. /*---------------------------------------------------------------------------------------------
  2720. * Copyright (c) Microsoft Corporation. All rights reserved.
  2721. * Licensed under the MIT License. See License.txt in the project root for license information.
  2722. *--------------------------------------------------------------------------------------------*/
  2723. .monaco-editor .peekview-widget .head {
  2724. box-sizing: border-box;
  2725. display: flex;
  2726. }
  2727. .monaco-editor .peekview-widget .head .peekview-title {
  2728. display: flex;
  2729. align-items: center;
  2730. font-size: 13px;
  2731. margin-left: 20px;
  2732. min-width: 0;
  2733. }
  2734. .monaco-editor .peekview-widget .head .peekview-title.clickable {
  2735. cursor: pointer;
  2736. }
  2737. .monaco-editor .peekview-widget .head .peekview-title .dirname:not(:empty) {
  2738. font-size: 0.9em;
  2739. margin-left: 0.5em;
  2740. }
  2741. .monaco-editor .peekview-widget .head .peekview-title .meta {
  2742. white-space: nowrap;
  2743. }
  2744. .monaco-editor .peekview-widget .head .peekview-title .dirname {
  2745. white-space: nowrap;
  2746. }
  2747. .monaco-editor .peekview-widget .head .peekview-title .filename {
  2748. overflow: hidden;
  2749. text-overflow: ellipsis;
  2750. white-space: nowrap;
  2751. }
  2752. .monaco-editor .peekview-widget .head .peekview-title .meta:not(:empty)::before {
  2753. content: '-';
  2754. padding: 0 0.3em;
  2755. }
  2756. .monaco-editor .peekview-widget .head .peekview-actions {
  2757. flex: 1;
  2758. text-align: right;
  2759. padding-right: 2px;
  2760. }
  2761. .monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar {
  2762. display: inline-block;
  2763. }
  2764. .monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar,
  2765. .monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar > .actions-container {
  2766. height: 100%;
  2767. }
  2768. .monaco-editor .peekview-widget > .body {
  2769. border-top: 1px solid;
  2770. position: relative;
  2771. }
  2772. .monaco-editor .peekview-widget .head .peekview-title .codicon {
  2773. margin-right: 4px;
  2774. }
  2775. .monaco-editor .peekview-widget .monaco-list .monaco-list-row.focused .codicon {
  2776. color: inherit !important;
  2777. }
  2778. /*---------------------------------------------------------------------------------------------
  2779. * Copyright (c) Microsoft Corporation. All rights reserved.
  2780. * Licensed under the MIT License. See License.txt in the project root for license information.
  2781. *--------------------------------------------------------------------------------------------*/
  2782. .monaco-editor .rename-box {
  2783. z-index: 100;
  2784. color: inherit;
  2785. }
  2786. .monaco-editor .rename-box.preview {
  2787. padding: 3px 3px 0 3px;
  2788. }
  2789. .monaco-editor .rename-box .rename-input {
  2790. padding: 3px;
  2791. width: calc(100% - 6px);
  2792. }
  2793. .monaco-editor .rename-box .rename-label {
  2794. display: none;
  2795. opacity: .8;
  2796. }
  2797. .monaco-editor .rename-box.preview .rename-label {
  2798. display: inherit;
  2799. }
  2800. /*---------------------------------------------------------------------------------------------
  2801. * Copyright (c) Microsoft Corporation. All rights reserved.
  2802. * Licensed under the MIT License. See License.txt in the project root for license information.
  2803. *--------------------------------------------------------------------------------------------*/
  2804. .monaco-editor .snippet-placeholder {
  2805. min-width: 2px;
  2806. outline-style: solid;
  2807. outline-width: 1px;
  2808. background-color: var(--vscode-editor-snippetTabstopHighlightBackground, transparent);
  2809. outline-color: var(--vscode-editor-snippetTabstopHighlightBorder, transparent);
  2810. }
  2811. .monaco-editor .finish-snippet-placeholder {
  2812. outline-style: solid;
  2813. outline-width: 1px;
  2814. background-color: var(--vscode-editor-snippetFinalTabstopHighlightBackground, transparent);
  2815. outline-color: var(--vscode-editor-snippetFinalTabstopHighlightBorder, transparent);
  2816. }
  2817. /*---------------------------------------------------------------------------------------------
  2818. * Copyright (c) Microsoft Corporation. All rights reserved.
  2819. * Licensed under the MIT License. See License.txt in the project root for license information.
  2820. *--------------------------------------------------------------------------------------------*/
  2821. /* Suggest widget*/
  2822. .monaco-editor .suggest-widget {
  2823. width: 430px;
  2824. z-index: 40;
  2825. display: flex;
  2826. flex-direction: column;
  2827. }
  2828. .monaco-editor .suggest-widget.message {
  2829. flex-direction: row;
  2830. align-items: center;
  2831. }
  2832. .monaco-editor .suggest-widget,
  2833. .monaco-editor .suggest-details {
  2834. flex: 0 1 auto;
  2835. width: 100%;
  2836. border-style: solid;
  2837. border-width: 1px;
  2838. border-color: var(--vscode-editorSuggestWidget-border);
  2839. background-color: var(--vscode-editorSuggestWidget-background);
  2840. }
  2841. .monaco-editor.hc-black .suggest-widget,
  2842. .monaco-editor.hc-black .suggest-details {
  2843. border-width: 2px;
  2844. }
  2845. /* Styles for status bar part */
  2846. .monaco-editor .suggest-widget .suggest-status-bar {
  2847. box-sizing: border-box;
  2848. display: none;
  2849. flex-flow: row nowrap;
  2850. justify-content: space-between;
  2851. width: 100%;
  2852. font-size: 80%;
  2853. padding: 0 4px 0 4px;
  2854. border-top: 1px solid var(--vscode-editorSuggestWidget-border);
  2855. overflow: hidden;
  2856. }
  2857. .monaco-editor .suggest-widget.with-status-bar .suggest-status-bar {
  2858. display: flex;
  2859. }
  2860. .monaco-editor .suggest-widget .suggest-status-bar .left {
  2861. padding-right: 8px;
  2862. }
  2863. .monaco-editor .suggest-widget.with-status-bar .suggest-status-bar .action-label {
  2864. color: var(--vscode-editorSuggestWidgetStatus-foreground);
  2865. }
  2866. .monaco-editor .suggest-widget.with-status-bar .suggest-status-bar .action-item:not(:last-of-type) .action-label {
  2867. margin-right: 0;
  2868. }
  2869. .monaco-editor .suggest-widget.with-status-bar .suggest-status-bar .action-item:not(:last-of-type) .action-label::after {
  2870. content: ', ';
  2871. margin-right: 0.3em;
  2872. }
  2873. .monaco-editor .suggest-widget.with-status-bar .monaco-list .monaco-list-row>.contents>.main>.right>.readMore,
  2874. .monaco-editor .suggest-widget.with-status-bar .monaco-list .monaco-list-row.focused.string-label>.contents>.main>.right>.readMore {
  2875. display: none;
  2876. }
  2877. .monaco-editor .suggest-widget.with-status-bar:not(.docs-side) .monaco-list .monaco-list-row:hover>.contents>.main>.right.can-expand-details>.details-label {
  2878. width: 100%;
  2879. }
  2880. /* Styles for Message element for when widget is loading or is empty */
  2881. .monaco-editor .suggest-widget>.message {
  2882. padding-left: 22px;
  2883. }
  2884. /** Styles for the list element **/
  2885. .monaco-editor .suggest-widget>.tree {
  2886. height: 100%;
  2887. width: 100%;
  2888. }
  2889. .monaco-editor .suggest-widget .monaco-list {
  2890. user-select: none;
  2891. -webkit-user-select: none;
  2892. -ms-user-select: none;
  2893. }
  2894. /** Styles for each row in the list element **/
  2895. .monaco-editor .suggest-widget .monaco-list .monaco-list-row {
  2896. display: flex;
  2897. -mox-box-sizing: border-box;
  2898. box-sizing: border-box;
  2899. padding-right: 10px;
  2900. background-repeat: no-repeat;
  2901. background-position: 2px 2px;
  2902. white-space: nowrap;
  2903. cursor: pointer;
  2904. touch-action: none;
  2905. }
  2906. .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused {
  2907. color: var(--vscode-editorSuggestWidget-selectedForeground);
  2908. }
  2909. .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused .codicon {
  2910. color: var(--vscode-editorSuggestWidget-selectedIconForeground);
  2911. }
  2912. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents {
  2913. flex: 1;
  2914. height: 100%;
  2915. overflow: hidden;
  2916. padding-left: 2px;
  2917. }
  2918. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main {
  2919. display: flex;
  2920. overflow: hidden;
  2921. text-overflow: ellipsis;
  2922. white-space: pre;
  2923. justify-content: space-between;
  2924. }
  2925. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.left, .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right {
  2926. display: flex;
  2927. }
  2928. .monaco-editor .suggest-widget:not(.frozen) .monaco-highlighted-label .highlight {
  2929. font-weight: bold;
  2930. }
  2931. .monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-highlighted-label .highlight {
  2932. color: var(--vscode-editorSuggestWidget-highlightForeground);
  2933. }
  2934. .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused .monaco-highlighted-label .highlight {
  2935. color: var(--vscode-editorSuggestWidget-focusHighlightForeground);
  2936. }
  2937. /** ReadMore Icon styles **/
  2938. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.header>.codicon-close,
  2939. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.readMore::before {
  2940. color: inherit;
  2941. opacity: 1;
  2942. font-size: 14px;
  2943. cursor: pointer;
  2944. }
  2945. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.header>.codicon-close {
  2946. position: absolute;
  2947. top: 6px;
  2948. right: 2px;
  2949. }
  2950. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.header>.codicon-close:hover,
  2951. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.readMore:hover {
  2952. opacity: 1;
  2953. }
  2954. /** signature, qualifier, type/details opacity **/
  2955. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.details-label {
  2956. opacity: 0.7;
  2957. }
  2958. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.left>.signature-label {
  2959. overflow: hidden;
  2960. text-overflow: ellipsis;
  2961. opacity: 0.6;
  2962. }
  2963. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.left>.qualifier-label {
  2964. margin-left: 12px;
  2965. opacity: 0.4;
  2966. font-size: 85%;
  2967. line-height: initial;
  2968. text-overflow: ellipsis;
  2969. overflow: hidden;
  2970. align-self: center;
  2971. }
  2972. /** Type Info and icon next to the label in the focused completion item **/
  2973. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.details-label {
  2974. font-size: 85%;
  2975. margin-left: 1.1em;
  2976. overflow: hidden;
  2977. text-overflow: ellipsis;
  2978. white-space: nowrap;
  2979. }
  2980. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.details-label>.monaco-tokenized-source {
  2981. display: inline;
  2982. }
  2983. /** Details: if using CompletionItem#details, show on focus **/
  2984. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.details-label {
  2985. display: none;
  2986. }
  2987. .monaco-editor .suggest-widget:not(.shows-details) .monaco-list .monaco-list-row.focused>.contents>.main>.right>.details-label {
  2988. display: inline;
  2989. }
  2990. /** Details: if using CompletionItemLabel#details, always show **/
  2991. .monaco-editor .suggest-widget .monaco-list .monaco-list-row:not(.string-label)>.contents>.main>.right>.details-label,
  2992. .monaco-editor .suggest-widget.docs-side .monaco-list .monaco-list-row.focused:not(.string-label)>.contents>.main>.right>.details-label {
  2993. display: inline;
  2994. }
  2995. /** Ellipsis on hover **/
  2996. .monaco-editor .suggest-widget:not(.docs-side) .monaco-list .monaco-list-row:hover>.contents>.main>.right.can-expand-details>.details-label {
  2997. width: calc(100% - 26px);
  2998. }
  2999. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.left {
  3000. flex-shrink: 1;
  3001. flex-grow: 1;
  3002. overflow: hidden;
  3003. }
  3004. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.left>.monaco-icon-label {
  3005. flex-shrink: 0;
  3006. }
  3007. .monaco-editor .suggest-widget .monaco-list .monaco-list-row:not(.string-label)>.contents>.main>.left>.monaco-icon-label {
  3008. max-width: 100%;
  3009. }
  3010. .monaco-editor .suggest-widget .monaco-list .monaco-list-row.string-label>.contents>.main>.left>.monaco-icon-label {
  3011. flex-shrink: 1;
  3012. }
  3013. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right {
  3014. overflow: hidden;
  3015. flex-shrink: 4;
  3016. max-width: 70%;
  3017. }
  3018. .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.readMore {
  3019. display: inline-block;
  3020. position: absolute;
  3021. right: 10px;
  3022. width: 18px;
  3023. height: 18px;
  3024. visibility: hidden;
  3025. }
  3026. /** Do NOT display ReadMore when docs is side/below **/
  3027. .monaco-editor .suggest-widget.docs-side .monaco-list .monaco-list-row>.contents>.main>.right>.readMore {
  3028. display: none !important;
  3029. }
  3030. /** Do NOT display ReadMore when using plain CompletionItemLabel (details/documentation might not be resolved) **/
  3031. .monaco-editor .suggest-widget .monaco-list .monaco-list-row.string-label>.contents>.main>.right>.readMore {
  3032. display: none;
  3033. }
  3034. /** Focused item can show ReadMore, but can't when docs is side/below **/
  3035. .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused.string-label>.contents>.main>.right>.readMore {
  3036. display: inline-block;
  3037. }
  3038. .monaco-editor .suggest-widget .monaco-list .monaco-list-row:hover>.contents>.main>.right>.readMore {
  3039. visibility: visible;
  3040. }
  3041. /** Styles for each row in the list **/
  3042. .monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label.deprecated {
  3043. opacity: 0.66;
  3044. text-decoration: unset;
  3045. }
  3046. .monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label.deprecated>.monaco-icon-label-container>.monaco-icon-name-container {
  3047. text-decoration: line-through;
  3048. }
  3049. .monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label::before {
  3050. height: 100%;
  3051. }
  3052. .monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon {
  3053. display: block;
  3054. height: 16px;
  3055. width: 16px;
  3056. margin-left: 2px;
  3057. background-repeat: no-repeat;
  3058. background-size: 80%;
  3059. background-position: center;
  3060. }
  3061. .monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon.hide {
  3062. display: none;
  3063. }
  3064. .monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon {
  3065. display: flex;
  3066. align-items: center;
  3067. margin-right: 4px;
  3068. }
  3069. .monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .icon, .monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .suggest-icon::before {
  3070. display: none;
  3071. }
  3072. .monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon.customcolor .colorspan {
  3073. margin: 0 0 0 0.3em;
  3074. border: 0.1em solid #000;
  3075. width: 0.7em;
  3076. height: 0.7em;
  3077. display: inline-block;
  3078. }
  3079. /** Styles for the docs of the completion item in focus **/
  3080. .monaco-editor .suggest-details-container {
  3081. z-index: 41;
  3082. }
  3083. .monaco-editor .suggest-details {
  3084. display: flex;
  3085. flex-direction: column;
  3086. cursor: default;
  3087. color: var(--vscode-editorSuggestWidget-foreground);
  3088. }
  3089. .monaco-editor .suggest-details.focused {
  3090. border-color: var(--vscode-focusBorder);
  3091. }
  3092. .monaco-editor .suggest-details a {
  3093. color: var(--vscode-textLink-foreground);
  3094. }
  3095. .monaco-editor .suggest-details a:hover {
  3096. color: var(--vscode-textLink-activeForeground);
  3097. }
  3098. .monaco-editor .suggest-details code {
  3099. background-color: var(--vscode-textCodeBlock-background);
  3100. }
  3101. .monaco-editor .suggest-details.no-docs {
  3102. display: none;
  3103. }
  3104. .monaco-editor .suggest-details>.monaco-scrollable-element {
  3105. flex: 1;
  3106. }
  3107. .monaco-editor .suggest-details>.monaco-scrollable-element>.body {
  3108. box-sizing: border-box;
  3109. height: 100%;
  3110. width: 100%;
  3111. }
  3112. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.header>.type {
  3113. flex: 2;
  3114. overflow: hidden;
  3115. text-overflow: ellipsis;
  3116. opacity: 0.7;
  3117. white-space: pre;
  3118. margin: 0 24px 0 0;
  3119. padding: 4px 0 12px 5px;
  3120. }
  3121. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.header>.type.auto-wrap {
  3122. white-space: normal;
  3123. word-break: break-all;
  3124. }
  3125. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs {
  3126. margin: 0;
  3127. padding: 4px 5px;
  3128. white-space: pre-wrap;
  3129. }
  3130. .monaco-editor .suggest-details.no-type>.monaco-scrollable-element>.body>.docs {
  3131. margin-right: 24px;
  3132. }
  3133. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs {
  3134. padding: 0;
  3135. white-space: initial;
  3136. min-height: calc(1rem + 8px);
  3137. }
  3138. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs>div,
  3139. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs>span:not(:empty) {
  3140. padding: 4px 5px;
  3141. }
  3142. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs>div>p:first-child {
  3143. margin-top: 0;
  3144. }
  3145. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs>div>p:last-child {
  3146. margin-bottom: 0;
  3147. }
  3148. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs .monaco-tokenized-source {
  3149. white-space: pre;
  3150. }
  3151. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs .code {
  3152. white-space: pre-wrap;
  3153. word-wrap: break-word;
  3154. }
  3155. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs .codicon {
  3156. vertical-align: sub;
  3157. }
  3158. .monaco-editor .suggest-details>.monaco-scrollable-element>.body>p:empty {
  3159. display: none;
  3160. }
  3161. .monaco-editor .suggest-details code {
  3162. border-radius: 3px;
  3163. padding: 0 0.4em;
  3164. }
  3165. .monaco-editor .suggest-details ul {
  3166. padding-left: 20px;
  3167. }
  3168. .monaco-editor .suggest-details ol {
  3169. padding-left: 20px;
  3170. }
  3171. .monaco-editor .suggest-details p code {
  3172. font-family: var(--monaco-monospace-font);
  3173. }
  3174. /*---------------------------------------------------------------------------------------------
  3175. * Copyright (c) Microsoft Corporation. All rights reserved.
  3176. * Licensed under the MIT License. See License.txt in the project root for license information.
  3177. *--------------------------------------------------------------------------------------------*/
  3178. .editor-banner {
  3179. box-sizing: border-box;
  3180. cursor: default;
  3181. width: 100%;
  3182. font-size: 12px;
  3183. display: flex;
  3184. overflow: visible;
  3185. height: 26px;
  3186. background: var(--vscode-banner-background);
  3187. }
  3188. .editor-banner .icon-container {
  3189. display: flex;
  3190. flex-shrink: 0;
  3191. align-items: center;
  3192. padding: 0 6px 0 10px;
  3193. }
  3194. .editor-banner .icon-container.custom-icon {
  3195. background-repeat: no-repeat;
  3196. background-position: center center;
  3197. background-size: 16px;
  3198. width: 16px;
  3199. padding: 0;
  3200. margin: 0 6px 0 10px;
  3201. }
  3202. .editor-banner .message-container {
  3203. display: flex;
  3204. align-items: center;
  3205. line-height: 26px;
  3206. text-overflow: ellipsis;
  3207. white-space: nowrap;
  3208. overflow: hidden;
  3209. }
  3210. .editor-banner .message-container p {
  3211. margin-block-start: 0;
  3212. margin-block-end: 0;
  3213. }
  3214. .editor-banner .message-actions-container {
  3215. flex-grow: 1;
  3216. flex-shrink: 0;
  3217. line-height: 26px;
  3218. margin: 0 4px;
  3219. }
  3220. .editor-banner .message-actions-container a.monaco-button {
  3221. width: inherit;
  3222. margin: 2px 8px;
  3223. padding: 0px 12px;
  3224. }
  3225. .editor-banner .message-actions-container a {
  3226. padding: 3px;
  3227. margin-left: 12px;
  3228. text-decoration: underline;
  3229. }
  3230. .editor-banner .action-container {
  3231. padding: 0 10px 0 6px;
  3232. }
  3233. .editor-banner {
  3234. background-color: var(--vscode-banner-background);
  3235. }
  3236. .editor-banner,
  3237. .editor-banner .action-container .codicon,
  3238. .editor-banner .message-actions-container .monaco-link {
  3239. color: var(--vscode-banner-foreground);
  3240. }
  3241. .editor-banner .icon-container .codicon {
  3242. color: var(--vscode-banner-iconForeground);
  3243. }
  3244. /*---------------------------------------------------------------------------------------------
  3245. * Copyright (c) Microsoft Corporation. All rights reserved.
  3246. * Licensed under the MIT License. See License.txt in the project root for license information.
  3247. *--------------------------------------------------------------------------------------------*/
  3248. .monaco-editor .unicode-highlight {
  3249. border: 1px solid var(--vscode-editorUnicodeHighlight-border);
  3250. box-sizing: border-box;
  3251. }
  3252. /*---------------------------------------------------------------------------------------------
  3253. * Copyright (c) Microsoft Corporation. All rights reserved.
  3254. * Licensed under the MIT License. See License.txt in the project root for license information.
  3255. *--------------------------------------------------------------------------------------------*/
  3256. .monaco-editor .zone-widget {
  3257. position: absolute;
  3258. z-index: 10;
  3259. }
  3260. .monaco-editor .zone-widget .zone-widget-container {
  3261. border-top-style: solid;
  3262. border-bottom-style: solid;
  3263. border-top-width: 0;
  3264. border-bottom-width: 0;
  3265. position: relative;
  3266. }
  3267. /*---------------------------------------------------------------------------------------------
  3268. * Copyright (c) Microsoft Corporation. All rights reserved.
  3269. * Licensed under the MIT License. See License.txt in the project root for license information.
  3270. *--------------------------------------------------------------------------------------------*/
  3271. .monaco-editor .accessibilityHelpWidget {
  3272. padding: 10px;
  3273. vertical-align: middle;
  3274. overflow: scroll;
  3275. }
  3276. /*---------------------------------------------------------------------------------------------
  3277. * Copyright (c) Microsoft Corporation. All rights reserved.
  3278. * Licensed under the MIT License. See License.txt in the project root for license information.
  3279. *--------------------------------------------------------------------------------------------*/
  3280. .monaco-editor .iPadShowKeyboard {
  3281. width: 58px;
  3282. min-width: 0;
  3283. height: 36px;
  3284. min-height: 0;
  3285. margin: 0;
  3286. padding: 0;
  3287. position: absolute;
  3288. resize: none;
  3289. overflow: hidden;
  3290. background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA1MyAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNDguMDM2NCA0LjAxMDQySDQuMDA3NzlMNC4wMDc3OSAzMi4wMjg2SDQ4LjAzNjRWNC4wMTA0MlpNNC4wMDc3OSAwLjAwNzgxMjVDMS43OTcyMSAwLjAwNzgxMjUgMC4wMDUxODc5OSAxLjc5OTg0IDAuMDA1MTg3OTkgNC4wMTA0MlYzMi4wMjg2QzAuMDA1MTg3OTkgMzQuMjM5MiAxLjc5NzIxIDM2LjAzMTIgNC4wMDc3OSAzNi4wMzEySDQ4LjAzNjRDNTAuMjQ3IDM2LjAzMTIgNTIuMDM5IDM0LjIzOTIgNTIuMDM5IDMyLjAyODZWNC4wMTA0MkM1Mi4wMzkgMS43OTk4NCA1MC4yNDcgMC4wMDc4MTI1IDQ4LjAzNjQgMC4wMDc4MTI1SDQuMDA3NzlaTTguMDEwNDIgOC4wMTMwMkgxMi4wMTNWMTIuMDE1Nkg4LjAxMDQyVjguMDEzMDJaTTIwLjAxODIgOC4wMTMwMkgxNi4wMTU2VjEyLjAxNTZIMjAuMDE4MlY4LjAxMzAyWk0yNC4wMjA4IDguMDEzMDJIMjguMDIzNFYxMi4wMTU2SDI0LjAyMDhWOC4wMTMwMlpNMzYuMDI4NiA4LjAxMzAySDMyLjAyNlYxMi4wMTU2SDM2LjAyODZWOC4wMTMwMlpNNDAuMDMxMiA4LjAxMzAySDQ0LjAzMzlWMTIuMDE1Nkg0MC4wMzEyVjguMDEzMDJaTTE2LjAxNTYgMTYuMDE4Mkg4LjAxMDQyVjIwLjAyMDhIMTYuMDE1NlYxNi4wMTgyWk0yMC4wMTgyIDE2LjAxODJIMjQuMDIwOFYyMC4wMjA4SDIwLjAxODJWMTYuMDE4MlpNMzIuMDI2IDE2LjAxODJIMjguMDIzNFYyMC4wMjA4SDMyLjAyNlYxNi4wMTgyWk00NC4wMzM5IDE2LjAxODJWMjAuMDIwOEgzNi4wMjg2VjE2LjAxODJINDQuMDMzOVpNMTIuMDEzIDI0LjAyMzRIOC4wMTA0MlYyOC4wMjZIMTIuMDEzVjI0LjAyMzRaTTE2LjAxNTYgMjQuMDIzNEgzNi4wMjg2VjI4LjAyNkgxNi4wMTU2VjI0LjAyMzRaTTQ0LjAzMzkgMjQuMDIzNEg0MC4wMzEyVjI4LjAyNkg0NC4wMzM5VjI0LjAyMzRaIiBmaWxsPSIjNDI0MjQyIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) center center no-repeat;
  3291. border: 4px solid #F6F6F6;
  3292. border-radius: 4px;
  3293. }
  3294. .monaco-editor.vs-dark .iPadShowKeyboard {
  3295. background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA1MyAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNDguMDM2NCA0LjAxMDQySDQuMDA3NzlMNC4wMDc3OSAzMi4wMjg2SDQ4LjAzNjRWNC4wMTA0MlpNNC4wMDc3OSAwLjAwNzgxMjVDMS43OTcyMSAwLjAwNzgxMjUgMC4wMDUxODc5OSAxLjc5OTg0IDAuMDA1MTg3OTkgNC4wMTA0MlYzMi4wMjg2QzAuMDA1MTg3OTkgMzQuMjM5MiAxLjc5NzIxIDM2LjAzMTIgNC4wMDc3OSAzNi4wMzEySDQ4LjAzNjRDNTAuMjQ3IDM2LjAzMTIgNTIuMDM5IDM0LjIzOTIgNTIuMDM5IDMyLjAyODZWNC4wMTA0MkM1Mi4wMzkgMS43OTk4NCA1MC4yNDcgMC4wMDc4MTI1IDQ4LjAzNjQgMC4wMDc4MTI1SDQuMDA3NzlaTTguMDEwNDIgOC4wMTMwMkgxMi4wMTNWMTIuMDE1Nkg4LjAxMDQyVjguMDEzMDJaTTIwLjAxODIgOC4wMTMwMkgxNi4wMTU2VjEyLjAxNTZIMjAuMDE4MlY4LjAxMzAyWk0yNC4wMjA4IDguMDEzMDJIMjguMDIzNFYxMi4wMTU2SDI0LjAyMDhWOC4wMTMwMlpNMzYuMDI4NiA4LjAxMzAySDMyLjAyNlYxMi4wMTU2SDM2LjAyODZWOC4wMTMwMlpNNDAuMDMxMiA4LjAxMzAySDQ0LjAzMzlWMTIuMDE1Nkg0MC4wMzEyVjguMDEzMDJaTTE2LjAxNTYgMTYuMDE4Mkg4LjAxMDQyVjIwLjAyMDhIMTYuMDE1NlYxNi4wMTgyWk0yMC4wMTgyIDE2LjAxODJIMjQuMDIwOFYyMC4wMjA4SDIwLjAxODJWMTYuMDE4MlpNMzIuMDI2IDE2LjAxODJIMjguMDIzNFYyMC4wMjA4SDMyLjAyNlYxNi4wMTgyWk00NC4wMzM5IDE2LjAxODJWMjAuMDIwOEgzNi4wMjg2VjE2LjAxODJINDQuMDMzOVpNMTIuMDEzIDI0LjAyMzRIOC4wMTA0MlYyOC4wMjZIMTIuMDEzVjI0LjAyMzRaTTE2LjAxNTYgMjQuMDIzNEgzNi4wMjg2VjI4LjAyNkgxNi4wMTU2VjI0LjAyMzRaTTQ0LjAzMzkgMjQuMDIzNEg0MC4wMzEyVjI4LjAyNkg0NC4wMzM5VjI0LjAyMzRaIiBmaWxsPSIjQzVDNUM1Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) center center no-repeat;
  3296. border: 4px solid #252526;
  3297. }
  3298. /*---------------------------------------------------------------------------------------------
  3299. * Copyright (c) Microsoft Corporation. All rights reserved.
  3300. * Licensed under the MIT License. See License.txt in the project root for license information.
  3301. *--------------------------------------------------------------------------------------------*/
  3302. .monaco-editor .tokens-inspect-widget {
  3303. z-index: 50;
  3304. user-select: text;
  3305. -webkit-user-select: text;
  3306. -ms-user-select: text;
  3307. padding: 10px;
  3308. }
  3309. .tokens-inspect-separator {
  3310. height: 1px;
  3311. border: 0;
  3312. }
  3313. .monaco-editor .tokens-inspect-widget .tm-token {
  3314. font-family: var(--monaco-monospace-font);
  3315. }
  3316. .monaco-editor .tokens-inspect-widget .tm-token-length {
  3317. font-weight: normal;
  3318. font-size: 60%;
  3319. float: right;
  3320. }
  3321. .monaco-editor .tokens-inspect-widget .tm-metadata-table {
  3322. width: 100%;
  3323. }
  3324. .monaco-editor .tokens-inspect-widget .tm-metadata-value {
  3325. font-family: var(--monaco-monospace-font);
  3326. text-align: right;
  3327. }
  3328. .monaco-editor .tokens-inspect-widget .tm-token-type {
  3329. font-family: var(--monaco-monospace-font);
  3330. }
  3331. /*---------------------------------------------------------------------------------------------
  3332. * Copyright (c) Microsoft Corporation. All rights reserved.
  3333. * Licensed under the MIT License. See License.txt in the project root for license information.
  3334. *--------------------------------------------------------------------------------------------*/
  3335. .quick-input-widget {
  3336. font-size: 13px;
  3337. }
  3338. .quick-input-widget .monaco-highlighted-label .highlight,
  3339. .quick-input-widget .monaco-highlighted-label .highlight {
  3340. color: #0066BF;
  3341. }
  3342. .vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight,
  3343. .vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight {
  3344. color: #9DDDFF;
  3345. }
  3346. .vs-dark .quick-input-widget .monaco-highlighted-label .highlight,
  3347. .vs-dark .quick-input-widget .monaco-highlighted-label .highlight {
  3348. color: #0097fb;
  3349. }
  3350. .hc-black .quick-input-widget .monaco-highlighted-label .highlight,
  3351. .hc-black .quick-input-widget .monaco-highlighted-label .highlight {
  3352. color: #F38518;
  3353. }
  3354. .monaco-keybinding > .monaco-keybinding-key {
  3355. background-color: rgba(221, 221, 221, 0.4);
  3356. border: solid 1px rgba(204, 204, 204, 0.4);
  3357. border-bottom-color: rgba(187, 187, 187, 0.4);
  3358. box-shadow: inset 0 -1px 0 rgba(187, 187, 187, 0.4);
  3359. color: #555;
  3360. }
  3361. .hc-black .monaco-keybinding > .monaco-keybinding-key {
  3362. background-color: transparent;
  3363. border: solid 1px rgb(111, 195, 223);
  3364. box-shadow: none;
  3365. color: #fff;
  3366. }
  3367. .vs-dark .monaco-keybinding > .monaco-keybinding-key {
  3368. background-color: rgba(128, 128, 128, 0.17);
  3369. border: solid 1px rgba(51, 51, 51, 0.6);
  3370. border-bottom-color: rgba(68, 68, 68, 0.6);
  3371. box-shadow: inset 0 -1px 0 rgba(68, 68, 68, 0.6);
  3372. color: #ccc;
  3373. }
  3374. /*---------------------------------------------------------------------------------------------
  3375. * Copyright (c) Microsoft Corporation. All rights reserved.
  3376. * Licensed under the MIT License. See License.txt in the project root for license information.
  3377. *--------------------------------------------------------------------------------------------*/
  3378. /* Default standalone editor fonts */
  3379. .monaco-editor {
  3380. font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "HelveticaNeue-Light", system-ui, "Ubuntu", "Droid Sans", sans-serif;
  3381. --monaco-monospace-font: "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace;
  3382. }
  3383. .monaco-menu .monaco-action-bar.vertical .action-item .action-menu-item:focus .action-label {
  3384. stroke-width: 1.2px;
  3385. }
  3386. .monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,
  3387. .monaco-editor.hc-black .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label {
  3388. stroke-width: 1.2px;
  3389. }
  3390. .monaco-hover p {
  3391. margin: 0;
  3392. }
  3393. /* See https://github.com/microsoft/monaco-editor/issues/2168#issuecomment-780078600 */
  3394. .monaco-aria-container {
  3395. position: absolute !important;
  3396. top: 0; /* avoid being placed underneath a sibling element */
  3397. height: 1px;
  3398. width: 1px;
  3399. margin: -1px;
  3400. overflow: hidden;
  3401. padding: 0;
  3402. clip: rect(1px, 1px, 1px, 1px);
  3403. clip-path: inset(50%);
  3404. }
  3405. /* The hc-black theme is already high contrast optimized */
  3406. .monaco-editor.hc-black {
  3407. -ms-high-contrast-adjust: none;
  3408. }
  3409. /* In case the browser goes into high contrast mode and the editor is not configured with the hc-black theme */
  3410. @media screen and (-ms-high-contrast:active) {
  3411. /* current line highlight */
  3412. .monaco-editor.vs .view-overlays .current-line,
  3413. .monaco-editor.vs-dark .view-overlays .current-line {
  3414. border-color: windowtext !important;
  3415. border-left: 0;
  3416. border-right: 0;
  3417. }
  3418. /* view cursors */
  3419. .monaco-editor.vs .cursor,
  3420. .monaco-editor.vs-dark .cursor {
  3421. background-color: windowtext !important;
  3422. }
  3423. /* dnd target */
  3424. .monaco-editor.vs .dnd-target,
  3425. .monaco-editor.vs-dark .dnd-target {
  3426. border-color: windowtext !important;
  3427. }
  3428. /* selected text background */
  3429. .monaco-editor.vs .selected-text,
  3430. .monaco-editor.vs-dark .selected-text {
  3431. background-color: highlight !important;
  3432. }
  3433. /* allow the text to have a transparent background. */
  3434. .monaco-editor.vs .view-line,
  3435. .monaco-editor.vs-dark .view-line {
  3436. -ms-high-contrast-adjust: none;
  3437. }
  3438. /* text color */
  3439. .monaco-editor.vs .view-line span,
  3440. .monaco-editor.vs-dark .view-line span {
  3441. color: windowtext !important;
  3442. }
  3443. /* selected text color */
  3444. .monaco-editor.vs .view-line span.inline-selected-text,
  3445. .monaco-editor.vs-dark .view-line span.inline-selected-text {
  3446. color: highlighttext !important;
  3447. }
  3448. /* allow decorations */
  3449. .monaco-editor.vs .view-overlays,
  3450. .monaco-editor.vs-dark .view-overlays {
  3451. -ms-high-contrast-adjust: none;
  3452. }
  3453. /* various decorations */
  3454. .monaco-editor.vs .selectionHighlight,
  3455. .monaco-editor.vs-dark .selectionHighlight,
  3456. .monaco-editor.vs .wordHighlight,
  3457. .monaco-editor.vs-dark .wordHighlight,
  3458. .monaco-editor.vs .wordHighlightStrong,
  3459. .monaco-editor.vs-dark .wordHighlightStrong,
  3460. .monaco-editor.vs .reference-decoration,
  3461. .monaco-editor.vs-dark .reference-decoration {
  3462. border: 2px dotted highlight !important;
  3463. background: transparent !important;
  3464. box-sizing: border-box;
  3465. }
  3466. .monaco-editor.vs .rangeHighlight,
  3467. .monaco-editor.vs-dark .rangeHighlight {
  3468. background: transparent !important;
  3469. border: 1px dotted activeborder !important;
  3470. box-sizing: border-box;
  3471. }
  3472. .monaco-editor.vs .bracket-match,
  3473. .monaco-editor.vs-dark .bracket-match {
  3474. border-color: windowtext !important;
  3475. background: transparent !important;
  3476. }
  3477. /* find widget */
  3478. .monaco-editor.vs .findMatch,
  3479. .monaco-editor.vs-dark .findMatch,
  3480. .monaco-editor.vs .currentFindMatch,
  3481. .monaco-editor.vs-dark .currentFindMatch {
  3482. border: 2px dotted activeborder !important;
  3483. background: transparent !important;
  3484. box-sizing: border-box;
  3485. }
  3486. .monaco-editor.vs .find-widget,
  3487. .monaco-editor.vs-dark .find-widget {
  3488. border: 1px solid windowtext;
  3489. }
  3490. /* list - used by suggest widget */
  3491. .monaco-editor.vs .monaco-list .monaco-list-row,
  3492. .monaco-editor.vs-dark .monaco-list .monaco-list-row {
  3493. -ms-high-contrast-adjust: none;
  3494. color: windowtext !important;
  3495. }
  3496. .monaco-editor.vs .monaco-list .monaco-list-row.focused,
  3497. .monaco-editor.vs-dark .monaco-list .monaco-list-row.focused {
  3498. color: highlighttext !important;
  3499. background-color: highlight !important;
  3500. }
  3501. .monaco-editor.vs .monaco-list .monaco-list-row:hover,
  3502. .monaco-editor.vs-dark .monaco-list .monaco-list-row:hover {
  3503. background: transparent !important;
  3504. border: 1px solid highlight;
  3505. box-sizing: border-box;
  3506. }
  3507. /* scrollbars */
  3508. .monaco-editor.vs .monaco-scrollable-element > .scrollbar,
  3509. .monaco-editor.vs-dark .monaco-scrollable-element > .scrollbar {
  3510. -ms-high-contrast-adjust: none;
  3511. background: background !important;
  3512. border: 1px solid windowtext;
  3513. box-sizing: border-box;
  3514. }
  3515. .monaco-editor.vs .monaco-scrollable-element > .scrollbar > .slider,
  3516. .monaco-editor.vs-dark .monaco-scrollable-element > .scrollbar > .slider {
  3517. background: windowtext !important;
  3518. }
  3519. .monaco-editor.vs .monaco-scrollable-element > .scrollbar > .slider:hover,
  3520. .monaco-editor.vs-dark .monaco-scrollable-element > .scrollbar > .slider:hover {
  3521. background: highlight !important;
  3522. }
  3523. .monaco-editor.vs .monaco-scrollable-element > .scrollbar > .slider.active,
  3524. .monaco-editor.vs-dark .monaco-scrollable-element > .scrollbar > .slider.active {
  3525. background: highlight !important;
  3526. }
  3527. /* overview ruler */
  3528. .monaco-editor.vs .decorationsOverviewRuler,
  3529. .monaco-editor.vs-dark .decorationsOverviewRuler {
  3530. opacity: 0;
  3531. }
  3532. /* minimap */
  3533. .monaco-editor.vs .minimap,
  3534. .monaco-editor.vs-dark .minimap {
  3535. display: none;
  3536. }
  3537. /* squiggles */
  3538. .monaco-editor.vs .squiggly-d-error,
  3539. .monaco-editor.vs-dark .squiggly-d-error {
  3540. background: transparent !important;
  3541. border-bottom: 4px double #E47777;
  3542. }
  3543. .monaco-editor.vs .squiggly-c-warning,
  3544. .monaco-editor.vs-dark .squiggly-c-warning {
  3545. border-bottom: 4px double #71B771;
  3546. }
  3547. .monaco-editor.vs .squiggly-b-info,
  3548. .monaco-editor.vs-dark .squiggly-b-info {
  3549. border-bottom: 4px double #71B771;
  3550. }
  3551. .monaco-editor.vs .squiggly-a-hint,
  3552. .monaco-editor.vs-dark .squiggly-a-hint {
  3553. border-bottom: 4px double #6c6c6c;
  3554. }
  3555. /* contextmenu */
  3556. .monaco-editor.vs .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,
  3557. .monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label {
  3558. -ms-high-contrast-adjust: none;
  3559. color: highlighttext !important;
  3560. background-color: highlight !important;
  3561. }
  3562. .monaco-editor.vs .monaco-menu .monaco-action-bar.vertical .action-menu-item:hover .action-label,
  3563. .monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:hover .action-label {
  3564. -ms-high-contrast-adjust: none;
  3565. background: transparent !important;
  3566. border: 1px solid highlight;
  3567. box-sizing: border-box;
  3568. }
  3569. /* diff editor */
  3570. .monaco-diff-editor.vs .diffOverviewRuler,
  3571. .monaco-diff-editor.vs-dark .diffOverviewRuler {
  3572. display: none;
  3573. }
  3574. .monaco-editor.vs .line-insert,
  3575. .monaco-editor.vs-dark .line-insert,
  3576. .monaco-editor.vs .line-delete,
  3577. .monaco-editor.vs-dark .line-delete {
  3578. background: transparent !important;
  3579. border: 1px solid highlight !important;
  3580. box-sizing: border-box;
  3581. }
  3582. .monaco-editor.vs .char-insert,
  3583. .monaco-editor.vs-dark .char-insert,
  3584. .monaco-editor.vs .char-delete,
  3585. .monaco-editor.vs-dark .char-delete {
  3586. background: transparent !important;
  3587. }
  3588. }
  3589. /*.monaco-editor.vs [tabindex="0"]:focus {
  3590. outline: 1px solid rgba(0, 122, 204, 0.4);
  3591. outline-offset: -1px;
  3592. opacity: 1 !important;
  3593. }
  3594. .monaco-editor.vs-dark [tabindex="0"]:focus {
  3595. outline: 1px solid rgba(14, 99, 156, 0.6);
  3596. outline-offset: -1px;
  3597. opacity: 1 !important;
  3598. }*/
  3599. /*---------------------------------------------------------------------------------------------
  3600. * Copyright (c) Microsoft Corporation. All rights reserved.
  3601. * Licensed under the MIT License. See License.txt in the project root for license information.
  3602. *--------------------------------------------------------------------------------------------*/
  3603. .monaco-action-bar .action-item.menu-entry .action-label.icon {
  3604. width: 16px;
  3605. height: 16px;
  3606. background-repeat: no-repeat;
  3607. background-position: 50%;
  3608. background-size: 16px;
  3609. }
  3610. .monaco-action-bar .action-item.menu-entry .action-label {
  3611. background-image: var(--menu-entry-icon-light);
  3612. }
  3613. .vs-dark .monaco-action-bar .action-item.menu-entry .action-label,
  3614. .hc-black .monaco-action-bar .action-item.menu-entry .action-label {
  3615. background-image: var(--menu-entry-icon-dark);
  3616. }
  3617. .monaco-dropdown-with-default {
  3618. display: flex !important;
  3619. flex-direction: row;
  3620. border-radius: 5px;
  3621. }
  3622. .monaco-dropdown-with-default > .action-container > .action-label {
  3623. margin-right: 0;
  3624. }
  3625. .monaco-dropdown-with-default > .action-container.menu-entry > .action-label.icon {
  3626. width: 16px;
  3627. height: 16px;
  3628. background-repeat: no-repeat;
  3629. background-position: 50%;
  3630. background-size: 16px;
  3631. }
  3632. .monaco-dropdown-with-default > .action-container.menu-entry > .action-label {
  3633. background-image: var(--menu-entry-icon-light);
  3634. }
  3635. .vs-dark .monaco-dropdown-with-default > .action-container.menu-entry > .action-label,
  3636. .hc-black .monaco-dropdown-with-default > .action-container.menu-entry > .action-label {
  3637. background-image: var(--menu-entry-icon-dark);
  3638. }
  3639. .monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*='codicon-'] {
  3640. font-size: 12px;
  3641. padding-left: 0px;
  3642. padding-right: 0px;
  3643. line-height: 16px;
  3644. margin-left: -3px;
  3645. }
  3646. .monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
  3647. display: block;
  3648. background-size: 16px;
  3649. background-position: center center;
  3650. background-repeat: no-repeat;
  3651. }
  3652. /*---------------------------------------------------------------------------------------------
  3653. * Copyright (c) Microsoft Corporation. All rights reserved.
  3654. * Licensed under the MIT License. See License.txt in the project root for license information.
  3655. *--------------------------------------------------------------------------------------------*/
  3656. .context-view .monaco-menu {
  3657. min-width: 130px;
  3658. }