123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398 |
- /*!-----------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Version: 0.31.1(5a1b4999493d49c857497ad481d73a737439f305)
- * Released under the MIT license
- * https://github.com/microsoft/vscode/blob/main/LICENSE.txt
- *-----------------------------------------------------------*/
- /*---------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- *--------------------------------------------------------*/
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-action-bar {
- white-space: nowrap;
- height: 100%;
- }
- .monaco-action-bar .actions-container {
- display: flex;
- margin: 0 auto;
- padding: 0;
- height: 100%;
- width: 100%;
- align-items: center;
- }
- .monaco-action-bar.vertical .actions-container {
- display: inline-block;
- }
- .monaco-action-bar .action-item {
- display: block;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- position: relative; /* DO NOT REMOVE - this is the key to preventing the ghosting icon bug in Chrome 42 */
- }
- .monaco-action-bar .action-item.disabled {
- cursor: default;
- }
- .monaco-action-bar .action-item .icon,
- .monaco-action-bar .action-item .codicon {
- display: block;
- }
- .monaco-action-bar .action-item .codicon {
- display: flex;
- align-items: center;
- width: 16px;
- height: 16px;
- }
- .monaco-action-bar .action-label {
- font-size: 11px;
- padding: 3px;
- border-radius: 5px;
- }
- .monaco-action-bar .action-item.disabled .action-label,
- .monaco-action-bar .action-item.disabled .action-label::before,
- .monaco-action-bar .action-item.disabled .action-label:hover {
- opacity: 0.4;
- }
- /* Vertical actions */
- .monaco-action-bar.vertical {
- text-align: left;
- }
- .monaco-action-bar.vertical .action-item {
- display: block;
- }
- .monaco-action-bar.vertical .action-label.separator {
- display: block;
- border-bottom: 1px solid #bbb;
- padding-top: 1px;
- margin-left: .8em;
- margin-right: .8em;
- }
- .monaco-action-bar .action-item .action-label.separator {
- width: 1px;
- height: 16px;
- margin: 5px 4px !important;
- cursor: default;
- min-width: 1px;
- padding: 0;
- background-color: #bbb;
- }
- .secondary-actions .monaco-action-bar .action-label {
- margin-left: 6px;
- }
- /* Action Items */
- .monaco-action-bar .action-item.select-container {
- overflow: hidden; /* somehow the dropdown overflows its container, we prevent it here to not push */
- flex: 1;
- max-width: 170px;
- min-width: 60px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 10px;
- }
- .monaco-action-bar .action-item.action-dropdown-item {
- display: flex;
- }
- .monaco-action-bar .action-item.action-dropdown-item > .action-label {
- margin-right: 1px;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-aria-container {
- position: absolute; /* try to hide from window but not from screen readers */
- left:-999em;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-text-button {
- box-sizing: border-box;
- display: flex;
- width: 100%;
- padding: 4px;
- text-align: center;
- cursor: pointer;
- justify-content: center;
- align-items: center;
- }
- .monaco-text-button:focus {
- outline-offset: 2px !important;
- }
- .monaco-text-button:hover {
- text-decoration: none !important;
- }
- .monaco-button.disabled:focus,
- .monaco-button.disabled {
- opacity: 0.4 !important;
- cursor: default;
- }
- .monaco-text-button > .codicon {
- margin: 0 0.2em;
- color: inherit !important;
- }
- .monaco-button-dropdown {
- display: flex;
- cursor: pointer;
- }
- .monaco-button-dropdown > .monaco-dropdown-button {
- margin-left: 1px;
- }
- .monaco-description-button {
- flex-direction: column;
- }
- .monaco-description-button .monaco-button-label {
- font-weight: 500;
- }
- .monaco-description-button .monaco-button-description {
- font-style: italic;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-custom-checkbox {
- margin-left: 2px;
- float: left;
- cursor: pointer;
- overflow: hidden;
- width: 20px;
- height: 20px;
- border-radius: 3px;
- border: 1px solid transparent;
- padding: 1px;
- box-sizing: border-box;
- user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- .monaco-custom-checkbox:hover {
- background-color: var(--vscode-inputOption-hoverBackground);
- }
- .hc-black .monaco-custom-checkbox:hover {
- border: 1px dashed var(--vscode-focusBorder);
- }
- .hc-black .monaco-custom-checkbox {
- background: none;
- }
- .hc-black .monaco-custom-checkbox:hover {
- background: none;
- }
- .monaco-custom-checkbox.monaco-simple-checkbox {
- height: 18px;
- width: 18px;
- border: 1px solid transparent;
- border-radius: 3px;
- margin-right: 9px;
- margin-left: 0px;
- padding: 0px;
- opacity: 1;
- background-size: 16px !important;
- }
- /* hide check when unchecked */
- .monaco-custom-checkbox.monaco-simple-checkbox:not(.checked)::before {
- visibility: hidden;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- @font-face {
- font-family: "codicon";
- font-display: block;
- src: url(../base/browser/ui/codicons/codicon/codicon.ttf) format("truetype");
- }
- .codicon[class*='codicon-'] {
- font: normal normal normal 16px/1 codicon;
- display: inline-block;
- text-decoration: none;
- text-rendering: auto;
- text-align: center;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- /* icon rules are dynamically created in codiconStyles */
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .codicon-wrench-subaction {
- opacity: 0.5;
- }
- @keyframes codicon-spin {
- 100% {
- transform:rotate(360deg);
- }
- }
- .codicon-sync.codicon-modifier-spin,
- .codicon-loading.codicon-modifier-spin,
- .codicon-gear.codicon-modifier-spin,
- .codicon-notebook-state-executing.codicon-modifier-spin {
- /* Use steps to throttle FPS to reduce CPU usage */
- animation: codicon-spin 1.5s steps(30) infinite;
- }
- .codicon-modifier-disabled {
- opacity: 0.4;
- }
- /* custom speed & easing for loading icon */
- .codicon-loading,
- .codicon-tree-item-loading::before {
- animation-duration: 1s !important;
- animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67) !important;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .context-view {
- position: absolute;
- z-index: 2500;
- }
- .context-view.fixed {
- all: initial;
- font-family: inherit;
- font-size: 13px;
- position: fixed;
- z-index: 2500;
- color: inherit;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-count-badge {
- padding: 3px 6px;
- border-radius: 11px;
- font-size: 11px;
- min-width: 18px;
- min-height: 18px;
- line-height: 11px;
- font-weight: normal;
- text-align: center;
- display: inline-block;
- box-sizing: border-box;
- }
- .monaco-count-badge.long {
- padding: 2px 3px;
- border-radius: 2px;
- min-height: auto;
- line-height: normal;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-dropdown {
- height: 100%;
- padding: 0;
- }
- .monaco-dropdown > .dropdown-label {
- cursor: pointer;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .monaco-dropdown > .dropdown-label > .action-label.disabled {
- cursor: default;
- }
- .monaco-dropdown-with-primary {
- display: flex !important;
- flex-direction: row;
- border-radius: 5px;
- }
- .monaco-dropdown-with-primary > .action-container > .action-label {
- margin-right: 0;
- }
- .monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*='codicon-'] {
- font-size: 12px;
- padding-left: 0px;
- padding-right: 0px;
- line-height: 16px;
- margin-left: -3px;
- }
- .monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
- display: block;
- background-size: 16px;
- background-position: center center;
- background-repeat: no-repeat;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* ---------- Find input ---------- */
- .monaco-findInput {
- position: relative;
- }
- .monaco-findInput .monaco-inputbox {
- font-size: 13px;
- width: 100%;
- }
- .monaco-findInput > .controls {
- position: absolute;
- top: 3px;
- right: 2px;
- }
- .vs .monaco-findInput.disabled {
- background-color: #E1E1E1;
- }
- /* Theming */
- .vs-dark .monaco-findInput.disabled {
- background-color: #333;
- }
- /* Highlighting */
- .monaco-findInput.highlight-0 .controls {
- animation: monaco-findInput-highlight-0 100ms linear 0s;
- }
- .monaco-findInput.highlight-1 .controls {
- animation: monaco-findInput-highlight-1 100ms linear 0s;
- }
- .hc-black .monaco-findInput.highlight-0 .controls,
- .vs-dark .monaco-findInput.highlight-0 .controls {
- animation: monaco-findInput-highlight-dark-0 100ms linear 0s;
- }
- .hc-black .monaco-findInput.highlight-1 .controls,
- .vs-dark .monaco-findInput.highlight-1 .controls {
- animation: monaco-findInput-highlight-dark-1 100ms linear 0s;
- }
- @keyframes monaco-findInput-highlight-0 {
- 0% { background: rgba(253, 255, 0, 0.8); }
- 100% { background: transparent; }
- }
- @keyframes monaco-findInput-highlight-1 {
- 0% { background: rgba(253, 255, 0, 0.8); }
- /* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/
- 99% { background: transparent; }
- }
- @keyframes monaco-findInput-highlight-dark-0 {
- 0% { background: rgba(255, 255, 255, 0.44); }
- 100% { background: transparent; }
- }
- @keyframes monaco-findInput-highlight-dark-1 {
- 0% { background: rgba(255, 255, 255, 0.44); }
- /* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/
- 99% { background: transparent; }
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-hover {
- cursor: default;
- position: absolute;
- overflow: hidden;
- z-index: 50;
- user-select: text;
- -webkit-user-select: text;
- -ms-user-select: text;
- box-sizing: initial;
- animation: fadein 100ms linear;
- line-height: 1.5em;
- }
- .monaco-hover.hidden {
- display: none;
- }
- .monaco-hover .hover-contents:not(.html-hover-contents) {
- padding: 4px 8px;
- }
- .monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) {
- max-width: 500px;
- word-wrap: break-word;
- }
- .monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) hr {
- min-width: 100%;
- }
- .monaco-hover p,
- .monaco-hover .code,
- .monaco-hover ul {
- margin: 8px 0;
- }
- .monaco-hover code {
- font-family: var(--monaco-monospace-font);
- }
- .monaco-hover hr {
- box-sizing: border-box;
- border-left: 0px;
- border-right: 0px;
- margin-top: 4px;
- margin-bottom: -4px;
- margin-left: -8px;
- margin-right: -8px;
- height: 1px;
- }
- .monaco-hover p:first-child,
- .monaco-hover .code:first-child,
- .monaco-hover ul:first-child {
- margin-top: 0;
- }
- .monaco-hover p:last-child,
- .monaco-hover .code:last-child,
- .monaco-hover ul:last-child {
- margin-bottom: 0;
- }
- /* MarkupContent Layout */
- .monaco-hover ul {
- padding-left: 20px;
- }
- .monaco-hover ol {
- padding-left: 20px;
- }
- .monaco-hover li > p {
- margin-bottom: 0;
- }
- .monaco-hover li > ul {
- margin-top: 0;
- }
- .monaco-hover code {
- border-radius: 3px;
- padding: 0 0.4em;
- }
- .monaco-hover .monaco-tokenized-source {
- white-space: pre-wrap;
- }
- .monaco-hover .hover-row.status-bar {
- font-size: 12px;
- line-height: 22px;
- }
- .monaco-hover .hover-row.status-bar .actions {
- display: flex;
- padding: 0px 8px;
- }
- .monaco-hover .hover-row.status-bar .actions .action-container {
- margin-right: 16px;
- cursor: pointer;
- }
- .monaco-hover .hover-row.status-bar .actions .action-container .action .icon {
- padding-right: 4px;
- }
- .monaco-hover .markdown-hover .hover-contents .codicon {
- color: inherit;
- font-size: inherit;
- vertical-align: middle;
- }
- .monaco-hover .hover-contents a.code-link:hover,
- .monaco-hover .hover-contents a.code-link {
- color: inherit;
- }
- .monaco-hover .hover-contents a.code-link:before {
- content: '(';
- }
- .monaco-hover .hover-contents a.code-link:after {
- content: ')';
- }
- .monaco-hover .hover-contents a.code-link > span {
- text-decoration: underline;
- /** Hack to force underline to show **/
- border-bottom: 1px solid transparent;
- text-underline-position: under;
- }
- /** Spans in markdown hovers need a margin-bottom to avoid looking cramped: https://github.com/microsoft/vscode/issues/101496 **/
- .monaco-hover .markdown-hover .hover-contents:not(.code-hover-contents):not(.html-hover-contents) span {
- margin-bottom: 4px;
- display: inline-block;
- }
- .monaco-hover-content .action-container a {
- -webkit-user-select: none;
- user-select: none;
- }
- .monaco-hover-content .action-container.disabled {
- pointer-events: none;
- opacity: 0.4;
- cursor: default;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* ---------- Icon label ---------- */
- .monaco-icon-label {
- display: flex; /* required for icons support :before rule */
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .monaco-icon-label::before {
- /* svg icons rendered as background image */
- background-size: 16px;
- background-position: left center;
- background-repeat: no-repeat;
- padding-right: 6px;
- width: 16px;
- height: 22px;
- line-height: inherit !important;
- display: inline-block;
- /* fonts icons */
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- vertical-align: top;
- flex-shrink: 0; /* fix for https://github.com/microsoft/vscode/issues/13787 */
- }
- .monaco-icon-label > .monaco-icon-label-container {
- min-width: 0;
- overflow: hidden;
- text-overflow: ellipsis;
- flex: 1;
- }
- .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name {
- color: inherit;
- white-space: pre; /* enable to show labels that include multiple whitespaces */
- }
- .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name > .label-separator {
- margin: 0 2px;
- opacity: 0.5;
- }
- .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
- opacity: .7;
- margin-left: 0.5em;
- font-size: 0.9em;
- white-space: pre; /* enable to show labels that include multiple whitespaces */
- }
- .monaco-icon-label.nowrap > .monaco-icon-label-container > .monaco-icon-description-container > .label-description{
- white-space: nowrap
- }
- .vs .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
- opacity: .95;
- }
- .monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-name-container > .label-name,
- .monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
- font-style: italic;
- }
- .monaco-icon-label.deprecated {
- text-decoration: line-through;
- opacity: 0.66;
- }
- /* make sure apply italic font style to decorations as well */
- .monaco-icon-label.italic::after {
- font-style: italic;
- }
- .monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-name-container > .label-name,
- .monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
- text-decoration: line-through;
- }
- .monaco-icon-label::after {
- opacity: 0.75;
- font-size: 90%;
- font-weight: 600;
- margin: auto 16px 0 5px; /* https://github.com/microsoft/vscode/issues/113223 */
- text-align: center;
- }
- /* make sure selection color wins when a label is being selected */
- .monaco-list:focus .selected .monaco-icon-label, /* list */
- .monaco-list:focus .selected .monaco-icon-label::after
- {
- color: inherit !important;
- }
- .monaco-list-row.focused.selected .label-description,
- .monaco-list-row.selected .label-description {
- opacity: .8;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-inputbox {
- position: relative;
- display: block;
- padding: 0;
- box-sizing: border-box;
- /* Customizable */
- font-size: inherit;
- }
- .monaco-inputbox.idle {
- border: 1px solid transparent;
- }
- .monaco-inputbox > .ibwrapper > .input,
- .monaco-inputbox > .ibwrapper > .mirror {
- /* Customizable */
- padding: 4px;
- }
- .monaco-inputbox > .ibwrapper {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .monaco-inputbox > .ibwrapper > .input {
- display: inline-block;
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- line-height: inherit;
- border: none;
- font-family: inherit;
- font-size: inherit;
- resize: none;
- color: inherit;
- }
- .monaco-inputbox > .ibwrapper > input {
- text-overflow: ellipsis;
- }
- .monaco-inputbox > .ibwrapper > textarea.input {
- display: block;
- -ms-overflow-style: none; /* IE 10+: hide scrollbars */
- scrollbar-width: none; /* Firefox: hide scrollbars */
- outline: none;
- }
- .monaco-inputbox > .ibwrapper > textarea.input::-webkit-scrollbar {
- display: none; /* Chrome + Safari: hide scrollbar */
- }
- .monaco-inputbox > .ibwrapper > textarea.input.empty {
- white-space: nowrap;
- }
- .monaco-inputbox > .ibwrapper > .mirror {
- position: absolute;
- display: inline-block;
- width: 100%;
- top: 0;
- left: 0;
- box-sizing: border-box;
- white-space: pre-wrap;
- visibility: hidden;
- word-wrap: break-word;
- }
- /* Context view */
- .monaco-inputbox-container {
- text-align: right;
- }
- .monaco-inputbox-container .monaco-inputbox-message {
- display: inline-block;
- overflow: hidden;
- text-align: left;
- width: 100%;
- box-sizing: border-box;
- padding: 0.4em;
- font-size: 12px;
- line-height: 17px;
- margin-top: -1px;
- word-wrap: break-word;
- }
- /* Action bar support */
- .monaco-inputbox .monaco-action-bar {
- position: absolute;
- right: 2px;
- top: 4px;
- }
- .monaco-inputbox .monaco-action-bar .action-item {
- margin-left: 2px;
- }
- .monaco-inputbox .monaco-action-bar .action-item .codicon {
- background-repeat: no-repeat;
- width: 16px;
- height: 16px;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-keybinding {
- display: flex;
- align-items: center;
- line-height: 10px;
- }
- .monaco-keybinding > .monaco-keybinding-key {
- display: inline-block;
- border-style: solid;
- border-width: 1px;
- border-radius: 3px;
- vertical-align: middle;
- font-size: 11px;
- padding: 3px 5px;
- margin: 0 2px;
- }
- .monaco-keybinding > .monaco-keybinding-key:first-child {
- margin-left: 0;
- }
- .monaco-keybinding > .monaco-keybinding-key:last-child {
- margin-right: 0;
- }
- .monaco-keybinding > .monaco-keybinding-key-separator {
- display: inline-block;
- }
- .monaco-keybinding > .monaco-keybinding-key-chord-separator {
- width: 6px;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-list {
- position: relative;
- height: 100%;
- width: 100%;
- white-space: nowrap;
- }
- .monaco-list.mouse-support {
- user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- .monaco-list > .monaco-scrollable-element {
- height: 100%;
- }
- .monaco-list-rows {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .monaco-list.horizontal-scrolling .monaco-list-rows {
- width: auto;
- min-width: 100%;
- }
- .monaco-list-row {
- position: absolute;
- box-sizing: border-box;
- overflow: hidden;
- width: 100%;
- }
- .monaco-list.mouse-support .monaco-list-row {
- cursor: pointer;
- touch-action: none;
- }
- /* for OS X ballistic scrolling */
- .monaco-list-row.scrolling {
- display: none !important;
- }
- /* Focus */
- .monaco-list.element-focused,
- .monaco-list.selection-single,
- .monaco-list.selection-multiple {
- outline: 0 !important;
- }
- /* Dnd */
- .monaco-drag-image {
- display: inline-block;
- padding: 1px 7px;
- border-radius: 10px;
- font-size: 12px;
- position: absolute;
- z-index: 1000;
- }
- /* Type filter */
- .monaco-list-type-filter {
- display: flex;
- align-items: center;
- position: absolute;
- border-radius: 2px;
- padding: 0px 3px;
- max-width: calc(100% - 10px);
- text-overflow: ellipsis;
- overflow: hidden;
- text-align: right;
- box-sizing: border-box;
- cursor: all-scroll;
- font-size: 13px;
- line-height: 18px;
- height: 20px;
- z-index: 1;
- top: 4px;
- }
- .monaco-list-type-filter.dragging {
- transition: top 0.2s, left 0.2s;
- }
- .monaco-list-type-filter.ne {
- right: 4px;
- }
- .monaco-list-type-filter.nw {
- left: 4px;
- }
- .monaco-list-type-filter > .controls {
- display: flex;
- align-items: center;
- box-sizing: border-box;
- transition: width 0.2s;
- width: 0;
- }
- .monaco-list-type-filter.dragging > .controls,
- .monaco-list-type-filter:hover > .controls {
- width: 36px;
- }
- .monaco-list-type-filter > .controls > * {
- border: none;
- box-sizing: border-box;
- -webkit-appearance: none;
- -moz-appearance: none;
- background: none;
- width: 16px;
- height: 16px;
- flex-shrink: 0;
- margin: 0;
- padding: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- }
- .monaco-list-type-filter > .controls > .filter {
- margin-left: 4px;
- }
- .monaco-list-type-filter-message {
- position: absolute;
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- padding: 40px 1em 1em 1em;
- text-align: center;
- white-space: normal;
- opacity: 0.7;
- pointer-events: none;
- }
- .monaco-list-type-filter-message:empty {
- display: none;
- }
- /* Electron */
- .monaco-list-type-filter {
- cursor: grab;
- }
- .monaco-list-type-filter.dragging {
- cursor: grabbing;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-mouse-cursor-text {
- cursor: text;
- }
- /* The following selector looks a bit funny, but that is needed to cover all the workbench and the editor!! */
- .vs-dark .mac .monaco-mouse-cursor-text, .hc-black .mac .monaco-mouse-cursor-text,
- .vs-dark.mac .monaco-mouse-cursor-text, .hc-black.mac .monaco-mouse-cursor-text {
- 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;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-progress-container {
- width: 100%;
- height: 5px;
- overflow: hidden; /* keep progress bit in bounds */
- }
- .monaco-progress-container .progress-bit {
- width: 2%;
- height: 5px;
- position: absolute;
- left: 0;
- display: none;
- }
- .monaco-progress-container.active .progress-bit {
- display: inherit;
- }
- .monaco-progress-container.discrete .progress-bit {
- left: 0;
- transition: width 100ms linear;
- }
- .monaco-progress-container.discrete.done .progress-bit {
- width: 100%;
- }
- .monaco-progress-container.infinite .progress-bit {
- animation-name: progress;
- animation-duration: 4s;
- animation-iteration-count: infinite;
- animation-timing-function: linear;
- transform: translate3d(0px, 0px, 0px);
- }
- /**
- * The progress bit has a width: 2% (1/50) of the parent container. The animation moves it from 0% to 100% of
- * that container. Since translateX is relative to the progress bit size, we have to multiple it with
- * its relative size to the parent container:
- * parent width: 5000%
- * bit width: 100%
- * translateX should be as follow:
- * 50%: 5000% * 50% - 50% (set to center) = 2450%
- * 100%: 5000% * 100% - 100% (do not overflow) = 4900%
- */
- @keyframes progress { from { transform: translateX(0%) scaleX(1) } 50% { transform: translateX(2500%) scaleX(3) } to { transform: translateX(4900%) scaleX(1) } }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- :root {
- --sash-size: 4px;
- }
- .monaco-sash {
- position: absolute;
- z-index: 35;
- touch-action: none;
- }
- .monaco-sash.disabled {
- pointer-events: none;
- }
- .monaco-sash.mac.vertical {
- cursor: col-resize;
- }
- .monaco-sash.vertical.minimum {
- cursor: e-resize;
- }
- .monaco-sash.vertical.maximum {
- cursor: w-resize;
- }
- .monaco-sash.mac.horizontal {
- cursor: row-resize;
- }
- .monaco-sash.horizontal.minimum {
- cursor: s-resize;
- }
- .monaco-sash.horizontal.maximum {
- cursor: n-resize;
- }
- .monaco-sash.disabled {
- cursor: default !important;
- pointer-events: none !important;
- }
- .monaco-sash.vertical {
- cursor: ew-resize;
- top: 0;
- width: var(--sash-size);
- height: 100%;
- }
- .monaco-sash.horizontal {
- cursor: ns-resize;
- left: 0;
- width: 100%;
- height: var(--sash-size);
- }
- .monaco-sash:not(.disabled) > .orthogonal-drag-handle {
- content: " ";
- height: calc(var(--sash-size) * 2);
- width: calc(var(--sash-size) * 2);
- z-index: 100;
- display: block;
- cursor: all-scroll;
- position: absolute;
- }
- .monaco-sash.horizontal.orthogonal-edge-north:not(.disabled)
- > .orthogonal-drag-handle.start,
- .monaco-sash.horizontal.orthogonal-edge-south:not(.disabled)
- > .orthogonal-drag-handle.end {
- cursor: nwse-resize;
- }
- .monaco-sash.horizontal.orthogonal-edge-north:not(.disabled)
- > .orthogonal-drag-handle.end,
- .monaco-sash.horizontal.orthogonal-edge-south:not(.disabled)
- > .orthogonal-drag-handle.start {
- cursor: nesw-resize;
- }
- .monaco-sash.vertical > .orthogonal-drag-handle.start {
- left: calc(var(--sash-size) * -0.5);
- top: calc(var(--sash-size) * -1);
- }
- .monaco-sash.vertical > .orthogonal-drag-handle.end {
- left: calc(var(--sash-size) * -0.5);
- bottom: calc(var(--sash-size) * -1);
- }
- .monaco-sash.horizontal > .orthogonal-drag-handle.start {
- top: calc(var(--sash-size) * -0.5);
- left: calc(var(--sash-size) * -1);
- }
- .monaco-sash.horizontal > .orthogonal-drag-handle.end {
- top: calc(var(--sash-size) * -0.5);
- right: calc(var(--sash-size) * -1);
- }
- .monaco-sash:before {
- content: '';
- pointer-events: none;
- position: absolute;
- width: 100%;
- height: 100%;
- transition: background-color 0.1s ease-out;
- background: transparent;
- }
- .monaco-sash.vertical:before {
- width: var(--sash-hover-size);
- left: calc(50% - (var(--sash-hover-size) / 2));
- }
- .monaco-sash.horizontal:before {
- height: var(--sash-hover-size);
- top: calc(50% - (var(--sash-hover-size) / 2));
- }
- /** Debug **/
- .monaco-sash.debug {
- background: cyan;
- }
- .monaco-sash.debug.disabled {
- background: rgba(0, 255, 255, 0.2);
- }
- .monaco-sash.debug:not(.disabled) > .orthogonal-drag-handle {
- background: red;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* Arrows */
- .monaco-scrollable-element > .scrollbar > .scra {
- cursor: pointer;
- font-size: 11px !important;
- }
- .monaco-scrollable-element > .visible {
- opacity: 1;
- /* Background rule added for IE9 - to allow clicks on dom node */
- background:rgba(0,0,0,0);
- transition: opacity 100ms linear;
- }
- .monaco-scrollable-element > .invisible {
- opacity: 0;
- pointer-events: none;
- }
- .monaco-scrollable-element > .invisible.fade {
- transition: opacity 800ms linear;
- }
- /* Scrollable Content Inset Shadow */
- .monaco-scrollable-element > .shadow {
- position: absolute;
- display: none;
- }
- .monaco-scrollable-element > .shadow.top {
- display: block;
- top: 0;
- left: 3px;
- height: 3px;
- width: 100%;
- }
- .monaco-scrollable-element > .shadow.left {
- display: block;
- top: 3px;
- left: 0;
- height: 100%;
- width: 3px;
- }
- .monaco-scrollable-element > .shadow.top-left-corner {
- display: block;
- top: 0;
- left: 0;
- height: 3px;
- width: 3px;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-split-view2 {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .monaco-split-view2 > .sash-container {
- position: absolute;
- width: 100%;
- height: 100%;
- pointer-events: none;
- }
- .monaco-split-view2 > .sash-container > .monaco-sash {
- pointer-events: initial;
- }
- .monaco-split-view2 > .monaco-scrollable-element {
- width: 100%;
- height: 100%;
- }
- .monaco-split-view2 > .monaco-scrollable-element > .split-view-container {
- width: 100%;
- height: 100%;
- white-space: nowrap;
- position: relative;
- }
- .monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view {
- white-space: initial;
- position: absolute;
- }
- .monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view:not(.visible) {
- display: none;
- }
- .monaco-split-view2.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view {
- width: 100%;
- }
- .monaco-split-view2.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view {
- height: 100%;
- }
- .monaco-split-view2.separator-border > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
- content: ' ';
- position: absolute;
- top: 0;
- left: 0;
- z-index: 5;
- pointer-events: none;
- background-color: var(--separator-border);
- }
- .monaco-split-view2.separator-border.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
- height: 100%;
- width: 1px;
- }
- .monaco-split-view2.separator-border.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
- height: 1px;
- width: 100%;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-table {
- display: flex;
- flex-direction: column;
- position: relative;
- height: 100%;
- width: 100%;
- white-space: nowrap;
- }
- .monaco-table > .monaco-split-view2 {
- border-bottom: 1px solid transparent;
- }
- .monaco-table > .monaco-list {
- flex: 1;
- }
- .monaco-table-tr {
- display: flex;
- height: 100%;
- }
- .monaco-table-th {
- width: 100%;
- height: 100%;
- font-weight: bold;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .monaco-table-th,
- .monaco-table-td {
- box-sizing: border-box;
- flex-shrink: 0;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {
- content: "";
- position: absolute;
- left: calc(var(--sash-size) / 2);
- width: 0;
- border-left: 1px solid transparent;
- }
- .monaco-table > .monaco-split-view2,
- .monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {
- transition: border-color 0.2s ease-out;
- }
- /*
- .monaco-table:hover > .monaco-split-view2,
- .monaco-table:hover > .monaco-split-view2 .monaco-sash.vertical::before {
- border-color: rgba(204, 204, 204, 0.2);
- } */
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-tl-row {
- display: flex;
- height: 100%;
- align-items: center;
- position: relative;
- }
- .monaco-tl-indent {
- height: 100%;
- position: absolute;
- top: 0;
- left: 16px;
- pointer-events: none;
- }
- .hide-arrows .monaco-tl-indent {
- left: 12px;
- }
- .monaco-tl-indent > .indent-guide {
- display: inline-block;
- box-sizing: border-box;
- height: 100%;
- border-left: 1px solid transparent;
- }
- .monaco-tl-indent > .indent-guide {
- transition: border-color 0.1s linear;
- }
- .monaco-tl-twistie,
- .monaco-tl-contents {
- height: 100%;
- }
- .monaco-tl-twistie {
- font-size: 10px;
- text-align: right;
- padding-right: 6px;
- flex-shrink: 0;
- width: 16px;
- display: flex !important;
- align-items: center;
- justify-content: center;
- transform: translateX(3px);
- }
- .monaco-tl-contents {
- flex: 1;
- overflow: hidden;
- }
- .monaco-tl-twistie::before {
- border-radius: 20px;
- }
- .monaco-tl-twistie.collapsed::before {
- transform: rotate(-90deg);
- }
- .monaco-tl-twistie.codicon-tree-item-loading::before {
- /* Use steps to throttle FPS to reduce CPU usage */
- animation: codicon-spin 1.25s steps(30) infinite;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .quick-input-widget {
- position: absolute;
- width: 600px;
- z-index: 2000;
- padding: 0 1px 1px 1px;
- left: 50%;
- margin-left: -300px;
- }
- .quick-input-titlebar {
- display: flex;
- align-items: center;
- }
- .quick-input-left-action-bar {
- display: flex;
- margin-left: 4px;
- flex: 1;
- }
- .quick-input-title {
- padding: 3px 0px;
- text-align: center;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .quick-input-right-action-bar {
- display: flex;
- margin-right: 4px;
- flex: 1;
- }
- .quick-input-right-action-bar > .actions-container {
- justify-content: flex-end;
- }
- .quick-input-titlebar .monaco-action-bar .action-label.codicon {
- background-position: center;
- background-repeat: no-repeat;
- padding: 2px;
- }
- .quick-input-description {
- margin: 6px;
- }
- .quick-input-header .quick-input-description {
- margin: 4px 2px;
- }
- .quick-input-header {
- display: flex;
- padding: 6px 6px 0px 6px;
- margin-bottom: -2px;
- }
- .quick-input-widget.hidden-input .quick-input-header {
- /* reduce margins and paddings when input box hidden */
- padding: 0;
- margin-bottom: 0;
- }
- .quick-input-and-message {
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- min-width: 0;
- position: relative;
- }
- .quick-input-check-all {
- align-self: center;
- margin: 0;
- }
- .quick-input-filter {
- flex-grow: 1;
- display: flex;
- position: relative;
- }
- .quick-input-box {
- flex-grow: 1;
- }
- .quick-input-widget.show-checkboxes .quick-input-box,
- .quick-input-widget.show-checkboxes .quick-input-message {
- margin-left: 5px;
- }
- .quick-input-visible-count {
- position: absolute;
- left: -10000px;
- }
- .quick-input-count {
- align-self: center;
- position: absolute;
- right: 4px;
- display: flex;
- align-items: center;
- }
- .quick-input-count .monaco-count-badge {
- vertical-align: middle;
- padding: 2px 4px;
- border-radius: 2px;
- min-height: auto;
- line-height: normal;
- }
- .quick-input-action {
- margin-left: 6px;
- }
- .quick-input-action .monaco-text-button {
- font-size: 11px;
- padding: 0 6px;
- display: flex;
- height: 27.5px;
- align-items: center;
- }
- .quick-input-message {
- margin-top: -1px;
- padding: 5px 5px 2px 5px;
- overflow-wrap: break-word;
- }
- .quick-input-message > .codicon {
- margin: 0 0.2em;
- vertical-align: text-bottom;
- }
- .quick-input-progress.monaco-progress-container {
- position: relative;
- }
- .quick-input-progress.monaco-progress-container,
- .quick-input-progress.monaco-progress-container .progress-bit {
- height: 2px;
- }
- .quick-input-list {
- line-height: 22px;
- margin-top: 6px;
- }
- .quick-input-widget.hidden-input .quick-input-list {
- margin-top: 0; /* reduce margins when input box hidden */
- }
- .quick-input-list .monaco-list {
- overflow: hidden;
- max-height: calc(20 * 22px);
- }
- .quick-input-list .quick-input-list-entry {
- box-sizing: border-box;
- overflow: hidden;
- display: flex;
- height: 100%;
- padding: 0 6px;
- }
- .quick-input-list .quick-input-list-entry.quick-input-list-separator-border {
- border-top-width: 1px;
- border-top-style: solid;
- }
- .quick-input-list .monaco-list-row[data-index="0"] .quick-input-list-entry.quick-input-list-separator-border {
- border-top-style: none;
- }
- .quick-input-list .quick-input-list-label {
- overflow: hidden;
- display: flex;
- height: 100%;
- flex: 1;
- }
- .quick-input-list .quick-input-list-checkbox {
- align-self: center;
- margin: 0;
- }
- .quick-input-list .quick-input-list-rows {
- overflow: hidden;
- text-overflow: ellipsis;
- display: flex;
- flex-direction: column;
- height: 100%;
- flex: 1;
- margin-left: 5px;
- }
- .quick-input-widget.show-checkboxes .quick-input-list .quick-input-list-rows {
- margin-left: 10px;
- }
- .quick-input-widget .quick-input-list .quick-input-list-checkbox {
- display: none;
- }
- .quick-input-widget.show-checkboxes .quick-input-list .quick-input-list-checkbox {
- display: inline;
- }
- .quick-input-list .quick-input-list-rows > .quick-input-list-row {
- display: flex;
- align-items: center;
- }
- .quick-input-list .quick-input-list-rows > .quick-input-list-row .monaco-icon-label,
- .quick-input-list .quick-input-list-rows > .quick-input-list-row .monaco-icon-label .monaco-icon-label-container > .monaco-icon-name-container {
- flex: 1; /* make sure the icon label grows within the row */
- }
- .quick-input-list .quick-input-list-rows > .quick-input-list-row .codicon[class*='codicon-'] {
- vertical-align: text-bottom;
- }
- .quick-input-list .quick-input-list-rows .monaco-highlighted-label span {
- opacity: 1;
- }
- .quick-input-list .quick-input-list-entry .quick-input-list-entry-keybinding {
- margin-right: 8px; /* separate from the separator label or scrollbar if any */
- }
- .quick-input-list .quick-input-list-label-meta {
- opacity: 0.7;
- line-height: normal;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .quick-input-list .monaco-highlighted-label .highlight {
- font-weight: bold;
- }
- .quick-input-list .quick-input-list-entry .quick-input-list-separator {
- margin-right: 8px; /* separate from keybindings or actions */
- }
- .quick-input-list .quick-input-list-entry-action-bar {
- display: flex;
- flex: 0;
- overflow: visible;
- }
- .quick-input-list .quick-input-list-entry-action-bar .action-label {
- /*
- * By default, actions in the quick input action bar are hidden
- * until hovered over them or selected.
- */
- display: none;
- }
- .quick-input-list .quick-input-list-entry-action-bar .action-label.codicon {
- margin-right: 4px;
- padding: 0px 2px 2px 2px;
- }
- .quick-input-list .quick-input-list-entry-action-bar {
- margin-top: 1px;
- }
- .quick-input-list .quick-input-list-entry-action-bar {
- margin-right: 4px; /* separate from scrollbar */
- }
- .quick-input-list .quick-input-list-entry .quick-input-list-entry-action-bar .action-label.always-visible,
- .quick-input-list .quick-input-list-entry:hover .quick-input-list-entry-action-bar .action-label,
- .quick-input-list .monaco-list-row.focused .quick-input-list-entry-action-bar .action-label {
- display: flex;
- }
- /* focused items in quick pick */
- .quick-input-list .monaco-list-row.focused .monaco-keybinding-key,
- .quick-input-list .monaco-list-row.focused .quick-input-list-entry .quick-input-list-separator {
- color: inherit
- }
- .quick-input-list .monaco-list-row.focused .monaco-keybinding-key {
- background: none;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .inputarea {
- min-width: 0;
- min-height: 0;
- margin: 0;
- padding: 0;
- position: absolute;
- outline: none !important;
- resize: none;
- border: none;
- overflow: hidden;
- color: transparent;
- background-color: transparent;
- }
- /*.monaco-editor .inputarea {
- position: fixed !important;
- width: 800px !important;
- height: 500px !important;
- top: initial !important;
- left: initial !important;
- bottom: 0 !important;
- right: 0 !important;
- color: black !important;
- background: white !important;
- line-height: 15px !important;
- font-size: 14px !important;
- }*/
- .monaco-editor .inputarea.ime-input {
- z-index: 10;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .view-overlays .current-line {
- display: block;
- position: absolute;
- left: 0;
- top: 0;
- box-sizing: border-box;
- }
- .monaco-editor .margin-view-overlays .current-line {
- display: block;
- position: absolute;
- left: 0;
- top: 0;
- box-sizing: border-box;
- }
- .monaco-editor .margin-view-overlays .current-line.current-line-margin.current-line-margin-both {
- border-right: 0;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /*
- Keeping name short for faster parsing.
- cdr = core decorations rendering (div)
- */
- .monaco-editor .lines-content .cdr {
- position: absolute;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .glyph-margin {
- position: absolute;
- top: 0;
- }
- /*
- Keeping name short for faster parsing.
- cgmr = core glyph margin rendering (div)
- */
- .monaco-editor .margin-view-overlays .cgmr {
- position: absolute;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .lines-content .core-guide {
- position: absolute;
- box-sizing: border-box;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .margin-view-overlays .line-numbers {
- font-variant-numeric: tabular-nums;
- position: absolute;
- text-align: right;
- display: inline-block;
- vertical-align: middle;
- box-sizing: border-box;
- cursor: default;
- height: 100%;
- }
- .monaco-editor .relative-current-line-number {
- text-align: left;
- display: inline-block;
- width: 100%;
- }
- .monaco-editor .margin-view-overlays .line-numbers.lh-odd {
- margin-top: 1px;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* Uncomment to see lines flashing when they're painted */
- /*.monaco-editor .view-lines > .view-line {
- background-color: none;
- animation-name: flash-background;
- animation-duration: 800ms;
- }
- @keyframes flash-background {
- 0% { background-color: lightgreen; }
- 100% { background-color: none }
- }*/
- .mtkcontrol {
- color: rgb(255, 255, 255) !important;
- background: rgb(150, 0, 0) !important;
- }
- .monaco-editor.no-user-select .lines-content,
- .monaco-editor.no-user-select .view-line,
- .monaco-editor.no-user-select .view-lines {
- user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- .monaco-editor .view-lines {
- white-space: nowrap;
- }
- .monaco-editor .view-line {
- position: absolute;
- width: 100%;
- }
- .monaco-editor .mtkz {
- display: inline-block;
- }
- /* TODO@tokenization bootstrap fix */
- /*.monaco-editor .view-line > span > span {
- float: none;
- min-height: inherit;
- margin-left: inherit;
- }*/
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .lines-decorations {
- position: absolute;
- top: 0;
- background: white;
- }
- /*
- Keeping name short for faster parsing.
- cldr = core lines decorations rendering (div)
- */
- .monaco-editor .margin-view-overlays .cldr {
- position: absolute;
- height: 100%;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /*
- Keeping name short for faster parsing.
- cmdr = core margin decorations rendering (div)
- */
- .monaco-editor .margin-view-overlays .cmdr {
- position: absolute;
- left: 0;
- width: 100%;
- height: 100%;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* START cover the case that slider is visible on mouseover */
- .monaco-editor .minimap.slider-mouseover .minimap-slider {
- opacity: 0;
- transition: opacity 100ms linear;
- }
- .monaco-editor .minimap.slider-mouseover:hover .minimap-slider {
- opacity: 1;
- }
- .monaco-editor .minimap.slider-mouseover .minimap-slider.active {
- opacity: 1;
- }
- /* END cover the case that slider is visible on mouseover */
- .monaco-editor .minimap-shadow-hidden {
- position: absolute;
- width: 0;
- }
- .monaco-editor .minimap-shadow-visible {
- position: absolute;
- left: -6px;
- width: 6px;
- }
- .monaco-editor.no-minimap-shadow .minimap-shadow-visible {
- position: absolute;
- left: -1px;
- width: 1px;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .overlayWidgets {
- position: absolute;
- top: 0;
- left:0;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .view-ruler {
- position: absolute;
- top: 0;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .scroll-decoration {
- position: absolute;
- top: 0;
- left: 0;
- height: 6px;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /*
- Keeping name short for faster parsing.
- cslr = core selections layer rendering (div)
- */
- .monaco-editor .lines-content .cslr {
- position: absolute;
- }
- .monaco-editor .top-left-radius { border-top-left-radius: 3px; }
- .monaco-editor .bottom-left-radius { border-bottom-left-radius: 3px; }
- .monaco-editor .top-right-radius { border-top-right-radius: 3px; }
- .monaco-editor .bottom-right-radius { border-bottom-right-radius: 3px; }
- .monaco-editor.hc-black .top-left-radius { border-top-left-radius: 0; }
- .monaco-editor.hc-black .bottom-left-radius { border-bottom-left-radius: 0; }
- .monaco-editor.hc-black .top-right-radius { border-top-right-radius: 0; }
- .monaco-editor.hc-black .bottom-right-radius { border-bottom-right-radius: 0; }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .cursors-layer {
- position: absolute;
- top: 0;
- }
- .monaco-editor .cursors-layer > .cursor {
- position: absolute;
- overflow: hidden;
- }
- /* -- smooth-caret-animation -- */
- .monaco-editor .cursors-layer.cursor-smooth-caret-animation > .cursor {
- transition: all 80ms;
- }
- /* -- block-outline-style -- */
- .monaco-editor .cursors-layer.cursor-block-outline-style > .cursor {
- box-sizing: border-box;
- background: transparent !important;
- border-style: solid;
- border-width: 1px;
- }
- /* -- underline-style -- */
- .monaco-editor .cursors-layer.cursor-underline-style > .cursor {
- border-bottom-width: 2px;
- border-bottom-style: solid;
- background: transparent !important;
- box-sizing: border-box;
- }
- /* -- underline-thin-style -- */
- .monaco-editor .cursors-layer.cursor-underline-thin-style > .cursor {
- border-bottom-width: 1px;
- border-bottom-style: solid;
- background: transparent !important;
- box-sizing: border-box;
- }
- @keyframes monaco-cursor-smooth {
- 0%,
- 20% {
- opacity: 1;
- }
- 60%,
- 100% {
- opacity: 0;
- }
- }
- @keyframes monaco-cursor-phase {
- 0%,
- 20% {
- opacity: 1;
- }
- 90%,
- 100% {
- opacity: 0;
- }
- }
- @keyframes monaco-cursor-expand {
- 0%,
- 20% {
- transform: scaleY(1);
- }
- 80%,
- 100% {
- transform: scaleY(0);
- }
- }
- .cursor-smooth {
- animation: monaco-cursor-smooth 0.5s ease-in-out 0s 20 alternate;
- }
- .cursor-phase {
- animation: monaco-cursor-phase 0.5s ease-in-out 0s 20 alternate;
- }
- .cursor-expand > .cursor {
- animation: monaco-cursor-expand 0.5s ease-in-out 0s 20 alternate;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* ---------- DiffEditor ---------- */
- .monaco-diff-editor .diffOverview {
- z-index: 9;
- }
- .monaco-diff-editor .diffOverview .diffViewport {
- z-index: 10;
- }
- /* colors not externalized: using transparancy on background */
- .monaco-diff-editor.vs .diffOverview { background: rgba(0, 0, 0, 0.03); }
- .monaco-diff-editor.vs-dark .diffOverview { background: rgba(255, 255, 255, 0.01); }
- .monaco-scrollable-element.modified-in-monaco-diff-editor.vs .scrollbar { background: rgba(0,0,0,0); }
- .monaco-scrollable-element.modified-in-monaco-diff-editor.vs-dark .scrollbar { background: rgba(0,0,0,0); }
- .monaco-scrollable-element.modified-in-monaco-diff-editor.hc-black .scrollbar { background: none; }
- .monaco-scrollable-element.modified-in-monaco-diff-editor .slider {
- z-index: 10;
- }
- .modified-in-monaco-diff-editor .slider.active { background: rgba(171, 171, 171, .4); }
- .modified-in-monaco-diff-editor.hc-black .slider.active { background: none; }
- /* ---------- Diff ---------- */
- .monaco-editor .insert-sign,
- .monaco-diff-editor .insert-sign,
- .monaco-editor .delete-sign,
- .monaco-diff-editor .delete-sign {
- font-size: 11px !important;
- opacity: 0.7 !important;
- display: flex !important;
- align-items: center;
- }
- .monaco-editor.hc-black .insert-sign,
- .monaco-diff-editor.hc-black .insert-sign,
- .monaco-editor.hc-black .delete-sign,
- .monaco-diff-editor.hc-black .delete-sign {
- opacity: 1;
- }
- .monaco-editor .inline-deleted-margin-view-zone {
- text-align: right;
- }
- .monaco-editor .inline-added-margin-view-zone {
- text-align: right;
- }
- /* ---------- Inline Diff ---------- */
- .monaco-editor .view-zones .view-lines .view-line span {
- display: inline-block;
- }
- .monaco-editor .margin-view-zones .lightbulb-glyph:hover {
- cursor: pointer;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-diff-editor .diff-review-line-number {
- text-align: right;
- display: inline-block;
- }
- .monaco-diff-editor .diff-review {
- position: absolute;
- user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- .monaco-diff-editor .diff-review-summary {
- padding-left: 10px;
- }
- .monaco-diff-editor .diff-review-shadow {
- position: absolute;
- }
- .monaco-diff-editor .diff-review-row {
- white-space: pre;
- }
- .monaco-diff-editor .diff-review-table {
- display: table;
- min-width: 100%;
- }
- .monaco-diff-editor .diff-review-row {
- display: table-row;
- width: 100%;
- }
- .monaco-diff-editor .diff-review-spacer {
- display: inline-block;
- width: 10px;
- vertical-align: middle;
- }
- .monaco-diff-editor .diff-review-spacer > .codicon {
- font-size: 9px !important;
- }
- .monaco-diff-editor .diff-review-actions {
- display: inline-block;
- position: absolute;
- right: 10px;
- top: 2px;
- }
- .monaco-diff-editor .diff-review-actions .action-label {
- width: 16px;
- height: 16px;
- margin: 2px 0;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* -------------------- IE10 remove auto clear button -------------------- */
- ::-ms-clear {
- display: none;
- }
- /* All widgets */
- /* I am not a big fan of this rule */
- .monaco-editor .editor-widget input {
- color: inherit;
- }
- /* -------------------- Editor -------------------- */
- .monaco-editor {
- position: relative;
- overflow: visible;
- -webkit-text-size-adjust: 100%;
- }
- /* -------------------- Misc -------------------- */
- .monaco-editor .overflow-guard {
- position: relative;
- overflow: hidden;
- }
- .monaco-editor .view-overlays {
- position: absolute;
- top: 0;
- }
- /*
- .monaco-editor .auto-closed-character {
- opacity: 0.3;
- }
- */
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .selection-anchor {
- background-color: #007ACC;
- width: 2px !important;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .bracket-match {
- box-sizing: border-box;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .contentWidgets .codicon-light-bulb,
- .monaco-editor .contentWidgets .codicon-lightbulb-autofix {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .monaco-editor .contentWidgets .codicon-light-bulb:hover,
- .monaco-editor .contentWidgets .codicon-lightbulb-autofix:hover {
- cursor: pointer;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .codelens-decoration {
- overflow: hidden;
- display: inline-block;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: var(--vscode-editorCodeLens-foreground)
- }
- .monaco-editor .codelens-decoration > span,
- .monaco-editor .codelens-decoration > a {
- user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- white-space: nowrap;
- vertical-align: sub;
- }
- .monaco-editor .codelens-decoration > a {
- text-decoration: none;
- }
- .monaco-editor .codelens-decoration > a:hover {
- cursor: pointer;
- color: var(--vscoce-editorLink-activeForeground) !important;
- }
- .monaco-editor .codelens-decoration > a:hover .codicon {
- color: var(--vscoce-editorLink-activeForeground) !important;
- }
- .monaco-editor .codelens-decoration .codicon {
- vertical-align: middle;
- color: currentColor !important;
- color: var(--vscode-editorCodeLens-foreground);
- }
- .monaco-editor .codelens-decoration > a:hover .codicon::before {
- cursor: pointer;
- }
- @keyframes fadein {
- 0% { opacity: 0; visibility: visible;}
- 100% { opacity: 1; }
- }
- .monaco-editor .codelens-decoration.fadein {
- animation: fadein 0.1s linear;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .colorpicker-widget {
- height: 190px;
- user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- .monaco-editor .colorpicker-hover:focus {
- outline: none;
- }
- /* Decoration */
- .colorpicker-color-decoration {
- border: solid 0.1em #000;
- box-sizing: border-box;
- margin: 0.1em 0.2em 0 0.2em;
- width: 0.8em;
- height: 0.8em;
- line-height: 0.8em;
- display: inline-block;
- }
- .hc-black .colorpicker-color-decoration,
- .vs-dark .colorpicker-color-decoration {
- border: solid 0.1em #eee;
- }
- /* Header */
- .colorpicker-header {
- display: flex;
- height: 24px;
- position: relative;
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=);
- background-size: 9px 9px;
- image-rendering: pixelated;
- }
- .colorpicker-header .picked-color {
- width: 216px;
- display: flex;
- align-items: center;
- justify-content: center;
- line-height: 24px;
- cursor: pointer;
- color: white;
- flex: 1;
- }
- .colorpicker-header .picked-color .codicon {
- color: inherit;
- font-size: 14px;
- position: absolute;
- left: 8px;
- }
- .colorpicker-header .picked-color.light {
- color: black;
- }
- .colorpicker-header .original-color {
- width: 74px;
- z-index: inherit;
- cursor: pointer;
- }
- /* Body */
- .colorpicker-body {
- display: flex;
- padding: 8px;
- position: relative;
- }
- .colorpicker-body .saturation-wrap {
- overflow: hidden;
- height: 150px;
- position: relative;
- min-width: 220px;
- flex: 1;
- }
- .colorpicker-body .saturation-box {
- height: 150px;
- position: absolute;
- }
- .colorpicker-body .saturation-selection {
- width: 9px;
- height: 9px;
- margin: -5px 0 0 -5px;
- border: 1px solid rgb(255, 255, 255);
- border-radius: 100%;
- box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
- position: absolute;
- }
- .colorpicker-body .strip {
- width: 25px;
- height: 150px;
- }
- .colorpicker-body .hue-strip {
- position: relative;
- margin-left: 8px;
- cursor: grab;
- background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
- }
- .colorpicker-body .opacity-strip {
- position: relative;
- margin-left: 8px;
- cursor: grab;
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=);
- background-size: 9px 9px;
- image-rendering: pixelated;
- }
- .colorpicker-body .strip.grabbing {
- cursor: grabbing;
- }
- .colorpicker-body .slider {
- position: absolute;
- top: 0;
- left: -2px;
- width: calc(100% + 4px);
- height: 4px;
- box-sizing: border-box;
- border: 1px solid rgba(255, 255, 255, 0.71);
- box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.85);
- }
- .colorpicker-body .strip .overlay {
- height: 150px;
- pointer-events: none;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor.vs .dnd-target {
- border-right: 2px dotted black;
- color: white; /* opposite of black */
- }
- .monaco-editor.vs-dark .dnd-target {
- border-right: 2px dotted #AEAFAD;
- color: #51504f; /* opposite of #AEAFAD */
- }
- .monaco-editor.hc-black .dnd-target {
- border-right: 2px dotted #fff;
- color: #000; /* opposite of #fff */
- }
- .monaco-editor.mouse-default .view-lines,
- .monaco-editor.vs-dark.mac.mouse-default .view-lines,
- .monaco-editor.hc-black.mac.mouse-default .view-lines {
- cursor: default;
- }
- .monaco-editor.mouse-copy .view-lines,
- .monaco-editor.vs-dark.mac.mouse-copy .view-lines,
- .monaco-editor.hc-black.mac.mouse-copy .view-lines {
- cursor: copy;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* Find widget */
- .monaco-editor .find-widget {
- position: absolute;
- z-index: 35;
- height: 33px;
- overflow: hidden;
- line-height: 19px;
- transition: transform 200ms linear;
- padding: 0 4px;
- box-sizing: border-box;
- transform: translateY(calc(-100% - 10px)); /* shadow (10px) */
- }
- .monaco-editor .find-widget textarea {
- margin: 0px;
- }
- .monaco-editor .find-widget.hiddenEditor {
- display: none;
- }
- /* Find widget when replace is toggled on */
- .monaco-editor .find-widget.replaceToggled > .replace-part {
- display: flex;
- }
- .monaco-editor .find-widget.visible {
- transform: translateY(0);
- }
- .monaco-editor .find-widget .monaco-inputbox.synthetic-focus {
- outline: 1px solid -webkit-focus-ring-color;
- outline-offset: -1px;
- }
- .monaco-editor .find-widget .monaco-inputbox .input {
- background-color: transparent;
- min-height: 0;
- }
- .monaco-editor .find-widget .monaco-findInput .input {
- font-size: 13px;
- }
- .monaco-editor .find-widget > .find-part,
- .monaco-editor .find-widget > .replace-part {
- margin: 4px 0 0 17px;
- font-size: 12px;
- display: flex;
- }
- .monaco-editor .find-widget > .find-part .monaco-inputbox,
- .monaco-editor .find-widget > .replace-part .monaco-inputbox {
- min-height: 25px;
- }
- .monaco-editor .find-widget > .replace-part .monaco-inputbox > .ibwrapper > .mirror {
- padding-right: 22px;
- }
- .monaco-editor .find-widget > .find-part .monaco-inputbox > .ibwrapper > .input,
- .monaco-editor .find-widget > .find-part .monaco-inputbox > .ibwrapper > .mirror,
- .monaco-editor .find-widget > .replace-part .monaco-inputbox > .ibwrapper > .input,
- .monaco-editor .find-widget > .replace-part .monaco-inputbox > .ibwrapper > .mirror {
- padding-top: 2px;
- padding-bottom: 2px;
- }
- .monaco-editor .find-widget > .find-part .find-actions {
- height: 25px;
- display: flex;
- align-items: center;
- }
- .monaco-editor .find-widget > .replace-part .replace-actions {
- height: 25px;
- display: flex;
- align-items: center;
- }
- .monaco-editor .find-widget .monaco-findInput {
- vertical-align: middle;
- display: flex;
- flex:1;
- }
- .monaco-editor .find-widget .monaco-findInput .monaco-scrollable-element {
- /* Make sure textarea inherits the width correctly */
- width: 100%;
- }
- .monaco-editor .find-widget .monaco-findInput .monaco-scrollable-element .scrollbar.vertical {
- /* Hide vertical scrollbar */
- opacity: 0;
- }
- .monaco-editor .find-widget .matchesCount {
- display: flex;
- flex: initial;
- margin: 0 0 0 3px;
- padding: 2px 0 0 2px;
- height: 25px;
- vertical-align: middle;
- box-sizing: border-box;
- text-align: center;
- line-height: 23px;
- }
- .monaco-editor .find-widget .button {
- width: 16px;
- height: 16px;
- padding: 3px;
- border-radius: 5px;
- display: flex;
- flex: initial;
- margin-left: 3px;
- background-position: center center;
- background-repeat: no-repeat;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- /* find in selection button */
- .monaco-editor .find-widget .codicon-find-selection {
- width: 22px;
- height: 22px;
- padding: 3px;
- border-radius: 5px;
- }
- .monaco-editor .find-widget .button.left {
- margin-left: 0;
- margin-right: 3px;
- }
- .monaco-editor .find-widget .button.wide {
- width: auto;
- padding: 1px 6px;
- top: -1px;
- }
- .monaco-editor .find-widget .button.toggle {
- position: absolute;
- top: 0;
- left: 3px;
- width: 18px;
- height: 100%;
- border-radius: 0;
- box-sizing: border-box;
- }
- .monaco-editor .find-widget .button.toggle.disabled {
- display: none;
- }
- .monaco-editor .find-widget .disabled {
- opacity: 0.3;
- cursor: default;
- }
- .monaco-editor .find-widget > .replace-part {
- display: none;
- }
- .monaco-editor .find-widget > .replace-part > .monaco-findInput {
- position: relative;
- display: flex;
- vertical-align: middle;
- flex: auto;
- flex-grow: 0;
- flex-shrink: 0;
- }
- .monaco-editor .find-widget > .replace-part > .monaco-findInput > .controls {
- position: absolute;
- top: 3px;
- right: 2px;
- }
- /* REDUCED */
- .monaco-editor .find-widget.reduced-find-widget .matchesCount {
- display:none;
- }
- /* NARROW (SMALLER THAN REDUCED) */
- .monaco-editor .find-widget.narrow-find-widget {
- max-width: 257px !important;
- }
- /* COLLAPSED (SMALLER THAN NARROW) */
- .monaco-editor .find-widget.collapsed-find-widget {
- max-width: 170px !important;
- }
- .monaco-editor .find-widget.collapsed-find-widget .button.previous,
- .monaco-editor .find-widget.collapsed-find-widget .button.next,
- .monaco-editor .find-widget.collapsed-find-widget .button.replace,
- .monaco-editor .find-widget.collapsed-find-widget .button.replace-all,
- .monaco-editor .find-widget.collapsed-find-widget > .find-part .monaco-findInput .controls {
- display:none;
- }
- .monaco-editor .findMatch {
- animation-duration: 0;
- animation-name: inherit !important;
- }
- .monaco-editor .find-widget .monaco-sash {
- left: 0 !important;
- }
- .monaco-editor.hc-black .find-widget .button:before {
- position: relative;
- top: 1px;
- left: 2px;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .margin-view-overlays .codicon-folding-expanded,
- .monaco-editor .margin-view-overlays .codicon-folding-collapsed {
- cursor: pointer;
- opacity: 0;
- transition: opacity 0.5s;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 140%;
- margin-left: 2px;
- }
- .monaco-editor .margin-view-overlays:hover .codicon,
- .monaco-editor .margin-view-overlays .codicon.codicon-folding-collapsed,
- .monaco-editor .margin-view-overlays .codicon.alwaysShowFoldIcons {
- opacity: 1;
- }
- .monaco-editor .inline-folded:after {
- color: grey;
- margin: 0.1em 0.2em 0 0.2em;
- content: "⋯";
- display: inline;
- line-height: 1em;
- cursor: pointer;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* marker zone */
- .monaco-editor .peekview-widget .head .peekview-title .severity-icon {
- display: inline-block;
- vertical-align: text-top;
- margin-right: 4px;
- }
- .monaco-editor .marker-widget {
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .monaco-editor .marker-widget > .stale {
- opacity: 0.6;
- font-style: italic;
- }
- .monaco-editor .marker-widget .title {
- display: inline-block;
- padding-right: 5px;
- }
- .monaco-editor .marker-widget .descriptioncontainer {
- position: absolute;
- white-space: pre;
- user-select: text;
- -webkit-user-select: text;
- -ms-user-select: text;
- padding: 8px 12px 0 20px;
- }
- .monaco-editor .marker-widget .descriptioncontainer .message {
- display: flex;
- flex-direction: column;
- }
- .monaco-editor .marker-widget .descriptioncontainer .message .details {
- padding-left: 6px;
- }
- .monaco-editor .marker-widget .descriptioncontainer .message .source,
- .monaco-editor .marker-widget .descriptioncontainer .message span.code {
- opacity: 0.6;
- }
- .monaco-editor .marker-widget .descriptioncontainer .message a.code-link {
- opacity: 0.6;
- color: inherit;
- }
- .monaco-editor .marker-widget .descriptioncontainer .message a.code-link:before {
- content: '(';
- }
- .monaco-editor .marker-widget .descriptioncontainer .message a.code-link:after {
- content: ')';
- }
- .monaco-editor .marker-widget .descriptioncontainer .message a.code-link > span {
- text-decoration: underline;
- /** Hack to force underline to show **/
- border-bottom: 1px solid transparent;
- text-underline-position: under;
- color: var(--vscode-textLink-foreground);
- }
- .monaco-editor .marker-widget .descriptioncontainer .message a.code-link > span {
- color: var(--vscode-textLink-activeForeground);
- }
- .monaco-editor .marker-widget .descriptioncontainer .filename {
- cursor: pointer;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .goto-definition-link {
- text-decoration: underline;
- cursor: pointer;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* -- zone widget */
- .monaco-editor .zone-widget .zone-widget-container.reference-zone-widget {
- border-top-width: 1px;
- border-bottom-width: 1px;
- }
- .monaco-editor .reference-zone-widget .inline {
- display: inline-block;
- vertical-align: top;
- }
- .monaco-editor .reference-zone-widget .messages {
- height: 100%;
- width: 100%;
- text-align: center;
- padding: 3em 0;
- }
- .monaco-editor .reference-zone-widget .ref-tree {
- line-height: 23px;
- background-color: var(--vscode-peekViewResult-background);
- color: var(--vscode-peekViewResult-lineForeground);
- }
- .monaco-editor .reference-zone-widget .ref-tree .reference {
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .monaco-editor .reference-zone-widget .ref-tree .reference-file {
- display: inline-flex;
- width: 100%;
- height: 100%;
- color: var(--vscode-peekViewResult-fileForeground);
- }
- .monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .selected .reference-file {
- color: inherit !important;
- }
- .monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .monaco-list-rows > .monaco-list-row.selected:not(.highlighted) {
- background-color: var(--vscode-peekViewResult-selectionBackground);
- color: var(--vscode-peekViewResult-selectionForeground) !important;
- }
- .monaco-editor .reference-zone-widget .ref-tree .reference-file .count {
- margin-right: 12px;
- margin-left: auto;
- }
- .monaco-editor .reference-zone-widget .ref-tree .referenceMatch .highlight {
- background-color: var(--vscode-peekViewResult-matchHighlightBackground);
- }
- .monaco-editor .reference-zone-widget .preview .reference-decoration {
- background-color: var(--vscode-peekViewEditor-matchHighlightBackground);
- border: 2px solid var(--vscode-peekViewEditor-matchHighlightBorder);
- box-sizing: border-box;
- }
- .monaco-editor .reference-zone-widget .preview .monaco-editor .monaco-editor-background,
- .monaco-editor .reference-zone-widget .preview .monaco-editor .inputarea.ime-input {
- background-color: var(--vscode-peekViewEditor-background);
- }
- .monaco-editor .reference-zone-widget .preview .monaco-editor .margin {
- background-color: var(--vscode-peekViewEditorGutter-background);
- }
- /* High Contrast Theming */
- .monaco-editor.hc-black .reference-zone-widget .ref-tree .reference-file {
- font-weight: bold;
- }
- .monaco-editor.hc-black .reference-zone-widget .ref-tree .referenceMatch .highlight {
- border: 1px dotted var(--vscode-contrastActiveBorder, transparent);
- box-sizing: border-box;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .suggest-preview-additional-widget {
- white-space: nowrap;
- }
- .monaco-editor .suggest-preview-additional-widget .content-spacer {
- color: transparent;
- white-space: pre;
- }
- .monaco-editor .suggest-preview-additional-widget .button {
- display: inline-block;
- cursor: pointer;
- text-decoration: underline;
- text-underline-position: under;
- }
- .monaco-editor .ghost-text-hidden {
- opacity: 0;
- font-size: 0;
- }
- .monaco-editor .ghost-text-decoration {
- font-style: italic;
- }
- .monaco-editor .suggest-preview-text {
- font-style: italic;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .detected-link,
- .monaco-editor .detected-link-active {
- text-decoration: underline;
- text-underline-position: under;
- }
- .monaco-editor .detected-link-active {
- cursor: pointer;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .monaco-editor-overlaymessage {
- padding-bottom: 8px;
- z-index: 10000;
- }
- .monaco-editor .monaco-editor-overlaymessage.below {
- padding-bottom: 0;
- padding-top: 8px;
- z-index: 10000;
- }
- @keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- .monaco-editor .monaco-editor-overlaymessage.fadeIn {
- animation: fadeIn 150ms ease-out;
- }
- @keyframes fadeOut {
- from { opacity: 1; }
- to { opacity: 0; }
- }
- .monaco-editor .monaco-editor-overlaymessage.fadeOut {
- animation: fadeOut 100ms ease-out;
- }
- .monaco-editor .monaco-editor-overlaymessage .message {
- padding: 1px 4px;
- color: var(--vscode-inputValidation-infoForeground);
- background-color: var(--vscode-inputValidation-infoBackground);
- border: 1px solid var(--vscode-inputValidation-infoBorder);
- }
- .monaco-editor.hc-black .monaco-editor-overlaymessage .message {
- border-width: 2px;
- }
- .monaco-editor .monaco-editor-overlaymessage .anchor {
- width: 0 !important;
- height: 0 !important;
- border-color: transparent;
- border-style: solid;
- z-index: 1000;
- border-width: 8px;
- position: absolute;
- }
- .monaco-editor .monaco-editor-overlaymessage .anchor.top {
- border-bottom-color: var(--vscode-inputValidation-infoBorder);
- }
- .monaco-editor .monaco-editor-overlaymessage .anchor.below {
- border-top-color: var(--vscode-inputValidation-infoBorder);
- }
- .monaco-editor .monaco-editor-overlaymessage:not(.below) .anchor.top,
- .monaco-editor .monaco-editor-overlaymessage.below .anchor.below {
- display: none;
- }
- .monaco-editor .monaco-editor-overlaymessage.below .anchor.top {
- display: inherit;
- top: -8px;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .parameter-hints-widget {
- z-index: 10;
- display: flex;
- flex-direction: column;
- line-height: 1.5em;
- }
- .monaco-editor .parameter-hints-widget > .phwrapper {
- max-width: 440px;
- display: flex;
- flex-direction: row;
- }
- .monaco-editor .parameter-hints-widget.multiple {
- min-height: 3.3em;
- padding: 0;
- }
- .monaco-editor .parameter-hints-widget.visible {
- transition: left .05s ease-in-out;
- }
- .monaco-editor .parameter-hints-widget p,
- .monaco-editor .parameter-hints-widget ul {
- margin: 8px 0;
- }
- .monaco-editor .parameter-hints-widget .monaco-scrollable-element,
- .monaco-editor .parameter-hints-widget .body {
- display: flex;
- flex: 1;
- flex-direction: column;
- min-height: 100%;
- }
- .monaco-editor .parameter-hints-widget .signature {
- padding: 4px 5px;
- }
- .monaco-editor .parameter-hints-widget .docs {
- padding: 0 10px 0 5px;
- white-space: pre-wrap;
- }
- .monaco-editor .parameter-hints-widget .docs.empty {
- display: none;
- }
- .monaco-editor .parameter-hints-widget .docs .markdown-docs {
- white-space: initial;
- }
- .monaco-editor .parameter-hints-widget .docs .markdown-docs code {
- font-family: var(--monaco-monospace-font);
- }
- .monaco-editor .parameter-hints-widget .docs .code {
- white-space: pre-wrap;
- }
- .monaco-editor .parameter-hints-widget .docs code {
- border-radius: 3px;
- padding: 0 0.4em;
- }
- .monaco-editor .parameter-hints-widget .controls {
- display: none;
- flex-direction: column;
- align-items: center;
- min-width: 22px;
- justify-content: flex-end;
- }
- .monaco-editor .parameter-hints-widget.multiple .controls {
- display: flex;
- padding: 0 2px;
- }
- .monaco-editor .parameter-hints-widget.multiple .button {
- width: 16px;
- height: 16px;
- background-repeat: no-repeat;
- cursor: pointer;
- }
- .monaco-editor .parameter-hints-widget .button.previous {
- bottom: 24px;
- }
- .monaco-editor .parameter-hints-widget .overloads {
- text-align: center;
- height: 12px;
- line-height: 12px;
- opacity: 0.5;
- font-family: var(--monaco-monospace-font);
- }
- .monaco-editor .parameter-hints-widget .signature .parameter.active {
- font-weight: bold;
- }
- .monaco-editor .parameter-hints-widget .documentation-parameter > .parameter {
- font-weight: bold;
- margin-right: 0.5em;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .peekview-widget .head {
- box-sizing: border-box;
- display: flex;
- }
- .monaco-editor .peekview-widget .head .peekview-title {
- display: flex;
- align-items: center;
- font-size: 13px;
- margin-left: 20px;
- min-width: 0;
- }
- .monaco-editor .peekview-widget .head .peekview-title.clickable {
- cursor: pointer;
- }
- .monaco-editor .peekview-widget .head .peekview-title .dirname:not(:empty) {
- font-size: 0.9em;
- margin-left: 0.5em;
- }
- .monaco-editor .peekview-widget .head .peekview-title .meta {
- white-space: nowrap;
- }
- .monaco-editor .peekview-widget .head .peekview-title .dirname {
- white-space: nowrap;
- }
- .monaco-editor .peekview-widget .head .peekview-title .filename {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .monaco-editor .peekview-widget .head .peekview-title .meta:not(:empty)::before {
- content: '-';
- padding: 0 0.3em;
- }
- .monaco-editor .peekview-widget .head .peekview-actions {
- flex: 1;
- text-align: right;
- padding-right: 2px;
- }
- .monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar {
- display: inline-block;
- }
- .monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar,
- .monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar > .actions-container {
- height: 100%;
- }
- .monaco-editor .peekview-widget > .body {
- border-top: 1px solid;
- position: relative;
- }
- .monaco-editor .peekview-widget .head .peekview-title .codicon {
- margin-right: 4px;
- }
- .monaco-editor .peekview-widget .monaco-list .monaco-list-row.focused .codicon {
- color: inherit !important;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .rename-box {
- z-index: 100;
- color: inherit;
- }
- .monaco-editor .rename-box.preview {
- padding: 3px 3px 0 3px;
- }
- .monaco-editor .rename-box .rename-input {
- padding: 3px;
- width: calc(100% - 6px);
- }
- .monaco-editor .rename-box .rename-label {
- display: none;
- opacity: .8;
- }
- .monaco-editor .rename-box.preview .rename-label {
- display: inherit;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .snippet-placeholder {
- min-width: 2px;
- outline-style: solid;
- outline-width: 1px;
- background-color: var(--vscode-editor-snippetTabstopHighlightBackground, transparent);
- outline-color: var(--vscode-editor-snippetTabstopHighlightBorder, transparent);
- }
- .monaco-editor .finish-snippet-placeholder {
- outline-style: solid;
- outline-width: 1px;
- background-color: var(--vscode-editor-snippetFinalTabstopHighlightBackground, transparent);
- outline-color: var(--vscode-editor-snippetFinalTabstopHighlightBorder, transparent);
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* Suggest widget*/
- .monaco-editor .suggest-widget {
- width: 430px;
- z-index: 40;
- display: flex;
- flex-direction: column;
- }
- .monaco-editor .suggest-widget.message {
- flex-direction: row;
- align-items: center;
- }
- .monaco-editor .suggest-widget,
- .monaco-editor .suggest-details {
- flex: 0 1 auto;
- width: 100%;
- border-style: solid;
- border-width: 1px;
- border-color: var(--vscode-editorSuggestWidget-border);
- background-color: var(--vscode-editorSuggestWidget-background);
- }
- .monaco-editor.hc-black .suggest-widget,
- .monaco-editor.hc-black .suggest-details {
- border-width: 2px;
- }
- /* Styles for status bar part */
- .monaco-editor .suggest-widget .suggest-status-bar {
- box-sizing: border-box;
- display: none;
- flex-flow: row nowrap;
- justify-content: space-between;
- width: 100%;
- font-size: 80%;
- padding: 0 4px 0 4px;
- border-top: 1px solid var(--vscode-editorSuggestWidget-border);
- overflow: hidden;
- }
- .monaco-editor .suggest-widget.with-status-bar .suggest-status-bar {
- display: flex;
- }
- .monaco-editor .suggest-widget .suggest-status-bar .left {
- padding-right: 8px;
- }
- .monaco-editor .suggest-widget.with-status-bar .suggest-status-bar .action-label {
- color: var(--vscode-editorSuggestWidgetStatus-foreground);
- }
- .monaco-editor .suggest-widget.with-status-bar .suggest-status-bar .action-item:not(:last-of-type) .action-label {
- margin-right: 0;
- }
- .monaco-editor .suggest-widget.with-status-bar .suggest-status-bar .action-item:not(:last-of-type) .action-label::after {
- content: ', ';
- margin-right: 0.3em;
- }
- .monaco-editor .suggest-widget.with-status-bar .monaco-list .monaco-list-row>.contents>.main>.right>.readMore,
- .monaco-editor .suggest-widget.with-status-bar .monaco-list .monaco-list-row.focused.string-label>.contents>.main>.right>.readMore {
- display: none;
- }
- .monaco-editor .suggest-widget.with-status-bar:not(.docs-side) .monaco-list .monaco-list-row:hover>.contents>.main>.right.can-expand-details>.details-label {
- width: 100%;
- }
- /* Styles for Message element for when widget is loading or is empty */
- .monaco-editor .suggest-widget>.message {
- padding-left: 22px;
- }
- /** Styles for the list element **/
- .monaco-editor .suggest-widget>.tree {
- height: 100%;
- width: 100%;
- }
- .monaco-editor .suggest-widget .monaco-list {
- user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- /** Styles for each row in the list element **/
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row {
- display: flex;
- -mox-box-sizing: border-box;
- box-sizing: border-box;
- padding-right: 10px;
- background-repeat: no-repeat;
- background-position: 2px 2px;
- white-space: nowrap;
- cursor: pointer;
- touch-action: none;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused {
- color: var(--vscode-editorSuggestWidget-selectedForeground);
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused .codicon {
- color: var(--vscode-editorSuggestWidget-selectedIconForeground);
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents {
- flex: 1;
- height: 100%;
- overflow: hidden;
- padding-left: 2px;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main {
- display: flex;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: pre;
- justify-content: space-between;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.left, .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right {
- display: flex;
- }
- .monaco-editor .suggest-widget:not(.frozen) .monaco-highlighted-label .highlight {
- font-weight: bold;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-highlighted-label .highlight {
- color: var(--vscode-editorSuggestWidget-highlightForeground);
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused .monaco-highlighted-label .highlight {
- color: var(--vscode-editorSuggestWidget-focusHighlightForeground);
- }
- /** ReadMore Icon styles **/
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.header>.codicon-close,
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.readMore::before {
- color: inherit;
- opacity: 1;
- font-size: 14px;
- cursor: pointer;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.header>.codicon-close {
- position: absolute;
- top: 6px;
- right: 2px;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.header>.codicon-close:hover,
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.readMore:hover {
- opacity: 1;
- }
- /** signature, qualifier, type/details opacity **/
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.details-label {
- opacity: 0.7;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.left>.signature-label {
- overflow: hidden;
- text-overflow: ellipsis;
- opacity: 0.6;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.left>.qualifier-label {
- margin-left: 12px;
- opacity: 0.4;
- font-size: 85%;
- line-height: initial;
- text-overflow: ellipsis;
- overflow: hidden;
- align-self: center;
- }
- /** Type Info and icon next to the label in the focused completion item **/
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.details-label {
- font-size: 85%;
- margin-left: 1.1em;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.details-label>.monaco-tokenized-source {
- display: inline;
- }
- /** Details: if using CompletionItem#details, show on focus **/
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.details-label {
- display: none;
- }
- .monaco-editor .suggest-widget:not(.shows-details) .monaco-list .monaco-list-row.focused>.contents>.main>.right>.details-label {
- display: inline;
- }
- /** Details: if using CompletionItemLabel#details, always show **/
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row:not(.string-label)>.contents>.main>.right>.details-label,
- .monaco-editor .suggest-widget.docs-side .monaco-list .monaco-list-row.focused:not(.string-label)>.contents>.main>.right>.details-label {
- display: inline;
- }
- /** Ellipsis on hover **/
- .monaco-editor .suggest-widget:not(.docs-side) .monaco-list .monaco-list-row:hover>.contents>.main>.right.can-expand-details>.details-label {
- width: calc(100% - 26px);
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.left {
- flex-shrink: 1;
- flex-grow: 1;
- overflow: hidden;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.left>.monaco-icon-label {
- flex-shrink: 0;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row:not(.string-label)>.contents>.main>.left>.monaco-icon-label {
- max-width: 100%;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row.string-label>.contents>.main>.left>.monaco-icon-label {
- flex-shrink: 1;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right {
- overflow: hidden;
- flex-shrink: 4;
- max-width: 70%;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.right>.readMore {
- display: inline-block;
- position: absolute;
- right: 10px;
- width: 18px;
- height: 18px;
- visibility: hidden;
- }
- /** Do NOT display ReadMore when docs is side/below **/
- .monaco-editor .suggest-widget.docs-side .monaco-list .monaco-list-row>.contents>.main>.right>.readMore {
- display: none !important;
- }
- /** Do NOT display ReadMore when using plain CompletionItemLabel (details/documentation might not be resolved) **/
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row.string-label>.contents>.main>.right>.readMore {
- display: none;
- }
- /** Focused item can show ReadMore, but can't when docs is side/below **/
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused.string-label>.contents>.main>.right>.readMore {
- display: inline-block;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row:hover>.contents>.main>.right>.readMore {
- visibility: visible;
- }
- /** Styles for each row in the list **/
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label.deprecated {
- opacity: 0.66;
- text-decoration: unset;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label.deprecated>.monaco-icon-label-container>.monaco-icon-name-container {
- text-decoration: line-through;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label::before {
- height: 100%;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon {
- display: block;
- height: 16px;
- width: 16px;
- margin-left: 2px;
- background-repeat: no-repeat;
- background-size: 80%;
- background-position: center;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon.hide {
- display: none;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon {
- display: flex;
- align-items: center;
- margin-right: 4px;
- }
- .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 {
- display: none;
- }
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon.customcolor .colorspan {
- margin: 0 0 0 0.3em;
- border: 0.1em solid #000;
- width: 0.7em;
- height: 0.7em;
- display: inline-block;
- }
- /** Styles for the docs of the completion item in focus **/
- .monaco-editor .suggest-details-container {
- z-index: 41;
- }
- .monaco-editor .suggest-details {
- display: flex;
- flex-direction: column;
- cursor: default;
- color: var(--vscode-editorSuggestWidget-foreground);
- }
- .monaco-editor .suggest-details.focused {
- border-color: var(--vscode-focusBorder);
- }
- .monaco-editor .suggest-details a {
- color: var(--vscode-textLink-foreground);
- }
- .monaco-editor .suggest-details a:hover {
- color: var(--vscode-textLink-activeForeground);
- }
- .monaco-editor .suggest-details code {
- background-color: var(--vscode-textCodeBlock-background);
- }
- .monaco-editor .suggest-details.no-docs {
- display: none;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element {
- flex: 1;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body {
- box-sizing: border-box;
- height: 100%;
- width: 100%;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.header>.type {
- flex: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- opacity: 0.7;
- white-space: pre;
- margin: 0 24px 0 0;
- padding: 4px 0 12px 5px;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.header>.type.auto-wrap {
- white-space: normal;
- word-break: break-all;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs {
- margin: 0;
- padding: 4px 5px;
- white-space: pre-wrap;
- }
- .monaco-editor .suggest-details.no-type>.monaco-scrollable-element>.body>.docs {
- margin-right: 24px;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs {
- padding: 0;
- white-space: initial;
- min-height: calc(1rem + 8px);
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs>div,
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs>span:not(:empty) {
- padding: 4px 5px;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs>div>p:first-child {
- margin-top: 0;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs>div>p:last-child {
- margin-bottom: 0;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs .monaco-tokenized-source {
- white-space: pre;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs .code {
- white-space: pre-wrap;
- word-wrap: break-word;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>.docs.markdown-docs .codicon {
- vertical-align: sub;
- }
- .monaco-editor .suggest-details>.monaco-scrollable-element>.body>p:empty {
- display: none;
- }
- .monaco-editor .suggest-details code {
- border-radius: 3px;
- padding: 0 0.4em;
- }
- .monaco-editor .suggest-details ul {
- padding-left: 20px;
- }
- .monaco-editor .suggest-details ol {
- padding-left: 20px;
- }
- .monaco-editor .suggest-details p code {
- font-family: var(--monaco-monospace-font);
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .editor-banner {
- box-sizing: border-box;
- cursor: default;
- width: 100%;
- font-size: 12px;
- display: flex;
- overflow: visible;
- height: 26px;
- background: var(--vscode-banner-background);
- }
- .editor-banner .icon-container {
- display: flex;
- flex-shrink: 0;
- align-items: center;
- padding: 0 6px 0 10px;
- }
- .editor-banner .icon-container.custom-icon {
- background-repeat: no-repeat;
- background-position: center center;
- background-size: 16px;
- width: 16px;
- padding: 0;
- margin: 0 6px 0 10px;
- }
- .editor-banner .message-container {
- display: flex;
- align-items: center;
- line-height: 26px;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .editor-banner .message-container p {
- margin-block-start: 0;
- margin-block-end: 0;
- }
- .editor-banner .message-actions-container {
- flex-grow: 1;
- flex-shrink: 0;
- line-height: 26px;
- margin: 0 4px;
- }
- .editor-banner .message-actions-container a.monaco-button {
- width: inherit;
- margin: 2px 8px;
- padding: 0px 12px;
- }
- .editor-banner .message-actions-container a {
- padding: 3px;
- margin-left: 12px;
- text-decoration: underline;
- }
- .editor-banner .action-container {
- padding: 0 10px 0 6px;
- }
- .editor-banner {
- background-color: var(--vscode-banner-background);
- }
- .editor-banner,
- .editor-banner .action-container .codicon,
- .editor-banner .message-actions-container .monaco-link {
- color: var(--vscode-banner-foreground);
- }
- .editor-banner .icon-container .codicon {
- color: var(--vscode-banner-iconForeground);
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .unicode-highlight {
- border: 1px solid var(--vscode-editorUnicodeHighlight-border);
- box-sizing: border-box;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .zone-widget {
- position: absolute;
- z-index: 10;
- }
- .monaco-editor .zone-widget .zone-widget-container {
- border-top-style: solid;
- border-bottom-style: solid;
- border-top-width: 0;
- border-bottom-width: 0;
- position: relative;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .accessibilityHelpWidget {
- padding: 10px;
- vertical-align: middle;
- overflow: scroll;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .iPadShowKeyboard {
- width: 58px;
- min-width: 0;
- height: 36px;
- min-height: 0;
- margin: 0;
- padding: 0;
- position: absolute;
- resize: none;
- overflow: hidden;
- background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA1MyAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNDguMDM2NCA0LjAxMDQySDQuMDA3NzlMNC4wMDc3OSAzMi4wMjg2SDQ4LjAzNjRWNC4wMTA0MlpNNC4wMDc3OSAwLjAwNzgxMjVDMS43OTcyMSAwLjAwNzgxMjUgMC4wMDUxODc5OSAxLjc5OTg0IDAuMDA1MTg3OTkgNC4wMTA0MlYzMi4wMjg2QzAuMDA1MTg3OTkgMzQuMjM5MiAxLjc5NzIxIDM2LjAzMTIgNC4wMDc3OSAzNi4wMzEySDQ4LjAzNjRDNTAuMjQ3IDM2LjAzMTIgNTIuMDM5IDM0LjIzOTIgNTIuMDM5IDMyLjAyODZWNC4wMTA0MkM1Mi4wMzkgMS43OTk4NCA1MC4yNDcgMC4wMDc4MTI1IDQ4LjAzNjQgMC4wMDc4MTI1SDQuMDA3NzlaTTguMDEwNDIgOC4wMTMwMkgxMi4wMTNWMTIuMDE1Nkg4LjAxMDQyVjguMDEzMDJaTTIwLjAxODIgOC4wMTMwMkgxNi4wMTU2VjEyLjAxNTZIMjAuMDE4MlY4LjAxMzAyWk0yNC4wMjA4IDguMDEzMDJIMjguMDIzNFYxMi4wMTU2SDI0LjAyMDhWOC4wMTMwMlpNMzYuMDI4NiA4LjAxMzAySDMyLjAyNlYxMi4wMTU2SDM2LjAyODZWOC4wMTMwMlpNNDAuMDMxMiA4LjAxMzAySDQ0LjAzMzlWMTIuMDE1Nkg0MC4wMzEyVjguMDEzMDJaTTE2LjAxNTYgMTYuMDE4Mkg4LjAxMDQyVjIwLjAyMDhIMTYuMDE1NlYxNi4wMTgyWk0yMC4wMTgyIDE2LjAxODJIMjQuMDIwOFYyMC4wMjA4SDIwLjAxODJWMTYuMDE4MlpNMzIuMDI2IDE2LjAxODJIMjguMDIzNFYyMC4wMjA4SDMyLjAyNlYxNi4wMTgyWk00NC4wMzM5IDE2LjAxODJWMjAuMDIwOEgzNi4wMjg2VjE2LjAxODJINDQuMDMzOVpNMTIuMDEzIDI0LjAyMzRIOC4wMTA0MlYyOC4wMjZIMTIuMDEzVjI0LjAyMzRaTTE2LjAxNTYgMjQuMDIzNEgzNi4wMjg2VjI4LjAyNkgxNi4wMTU2VjI0LjAyMzRaTTQ0LjAzMzkgMjQuMDIzNEg0MC4wMzEyVjI4LjAyNkg0NC4wMzM5VjI0LjAyMzRaIiBmaWxsPSIjNDI0MjQyIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) center center no-repeat;
- border: 4px solid #F6F6F6;
- border-radius: 4px;
- }
- .monaco-editor.vs-dark .iPadShowKeyboard {
- background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA1MyAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNDguMDM2NCA0LjAxMDQySDQuMDA3NzlMNC4wMDc3OSAzMi4wMjg2SDQ4LjAzNjRWNC4wMTA0MlpNNC4wMDc3OSAwLjAwNzgxMjVDMS43OTcyMSAwLjAwNzgxMjUgMC4wMDUxODc5OSAxLjc5OTg0IDAuMDA1MTg3OTkgNC4wMTA0MlYzMi4wMjg2QzAuMDA1MTg3OTkgMzQuMjM5MiAxLjc5NzIxIDM2LjAzMTIgNC4wMDc3OSAzNi4wMzEySDQ4LjAzNjRDNTAuMjQ3IDM2LjAzMTIgNTIuMDM5IDM0LjIzOTIgNTIuMDM5IDMyLjAyODZWNC4wMTA0MkM1Mi4wMzkgMS43OTk4NCA1MC4yNDcgMC4wMDc4MTI1IDQ4LjAzNjQgMC4wMDc4MTI1SDQuMDA3NzlaTTguMDEwNDIgOC4wMTMwMkgxMi4wMTNWMTIuMDE1Nkg4LjAxMDQyVjguMDEzMDJaTTIwLjAxODIgOC4wMTMwMkgxNi4wMTU2VjEyLjAxNTZIMjAuMDE4MlY4LjAxMzAyWk0yNC4wMjA4IDguMDEzMDJIMjguMDIzNFYxMi4wMTU2SDI0LjAyMDhWOC4wMTMwMlpNMzYuMDI4NiA4LjAxMzAySDMyLjAyNlYxMi4wMTU2SDM2LjAyODZWOC4wMTMwMlpNNDAuMDMxMiA4LjAxMzAySDQ0LjAzMzlWMTIuMDE1Nkg0MC4wMzEyVjguMDEzMDJaTTE2LjAxNTYgMTYuMDE4Mkg4LjAxMDQyVjIwLjAyMDhIMTYuMDE1NlYxNi4wMTgyWk0yMC4wMTgyIDE2LjAxODJIMjQuMDIwOFYyMC4wMjA4SDIwLjAxODJWMTYuMDE4MlpNMzIuMDI2IDE2LjAxODJIMjguMDIzNFYyMC4wMjA4SDMyLjAyNlYxNi4wMTgyWk00NC4wMzM5IDE2LjAxODJWMjAuMDIwOEgzNi4wMjg2VjE2LjAxODJINDQuMDMzOVpNMTIuMDEzIDI0LjAyMzRIOC4wMTA0MlYyOC4wMjZIMTIuMDEzVjI0LjAyMzRaTTE2LjAxNTYgMjQuMDIzNEgzNi4wMjg2VjI4LjAyNkgxNi4wMTU2VjI0LjAyMzRaTTQ0LjAzMzkgMjQuMDIzNEg0MC4wMzEyVjI4LjAyNkg0NC4wMzM5VjI0LjAyMzRaIiBmaWxsPSIjQzVDNUM1Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) center center no-repeat;
- border: 4px solid #252526;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .tokens-inspect-widget {
- z-index: 50;
- user-select: text;
- -webkit-user-select: text;
- -ms-user-select: text;
- padding: 10px;
- }
- .tokens-inspect-separator {
- height: 1px;
- border: 0;
- }
- .monaco-editor .tokens-inspect-widget .tm-token {
- font-family: var(--monaco-monospace-font);
- }
- .monaco-editor .tokens-inspect-widget .tm-token-length {
- font-weight: normal;
- font-size: 60%;
- float: right;
- }
- .monaco-editor .tokens-inspect-widget .tm-metadata-table {
- width: 100%;
- }
- .monaco-editor .tokens-inspect-widget .tm-metadata-value {
- font-family: var(--monaco-monospace-font);
- text-align: right;
- }
- .monaco-editor .tokens-inspect-widget .tm-token-type {
- font-family: var(--monaco-monospace-font);
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .quick-input-widget {
- font-size: 13px;
- }
- .quick-input-widget .monaco-highlighted-label .highlight,
- .quick-input-widget .monaco-highlighted-label .highlight {
- color: #0066BF;
- }
- .vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight,
- .vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight {
- color: #9DDDFF;
- }
- .vs-dark .quick-input-widget .monaco-highlighted-label .highlight,
- .vs-dark .quick-input-widget .monaco-highlighted-label .highlight {
- color: #0097fb;
- }
- .hc-black .quick-input-widget .monaco-highlighted-label .highlight,
- .hc-black .quick-input-widget .monaco-highlighted-label .highlight {
- color: #F38518;
- }
- .monaco-keybinding > .monaco-keybinding-key {
- background-color: rgba(221, 221, 221, 0.4);
- border: solid 1px rgba(204, 204, 204, 0.4);
- border-bottom-color: rgba(187, 187, 187, 0.4);
- box-shadow: inset 0 -1px 0 rgba(187, 187, 187, 0.4);
- color: #555;
- }
- .hc-black .monaco-keybinding > .monaco-keybinding-key {
- background-color: transparent;
- border: solid 1px rgb(111, 195, 223);
- box-shadow: none;
- color: #fff;
- }
- .vs-dark .monaco-keybinding > .monaco-keybinding-key {
- background-color: rgba(128, 128, 128, 0.17);
- border: solid 1px rgba(51, 51, 51, 0.6);
- border-bottom-color: rgba(68, 68, 68, 0.6);
- box-shadow: inset 0 -1px 0 rgba(68, 68, 68, 0.6);
- color: #ccc;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* Default standalone editor fonts */
- .monaco-editor {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "HelveticaNeue-Light", system-ui, "Ubuntu", "Droid Sans", sans-serif;
- --monaco-monospace-font: "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace;
- }
- .monaco-menu .monaco-action-bar.vertical .action-item .action-menu-item:focus .action-label {
- stroke-width: 1.2px;
- }
- .monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,
- .monaco-editor.hc-black .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label {
- stroke-width: 1.2px;
- }
- .monaco-hover p {
- margin: 0;
- }
- /* See https://github.com/microsoft/monaco-editor/issues/2168#issuecomment-780078600 */
- .monaco-aria-container {
- position: absolute !important;
- top: 0; /* avoid being placed underneath a sibling element */
- height: 1px;
- width: 1px;
- margin: -1px;
- overflow: hidden;
- padding: 0;
- clip: rect(1px, 1px, 1px, 1px);
- clip-path: inset(50%);
- }
- /* The hc-black theme is already high contrast optimized */
- .monaco-editor.hc-black {
- -ms-high-contrast-adjust: none;
- }
- /* In case the browser goes into high contrast mode and the editor is not configured with the hc-black theme */
- @media screen and (-ms-high-contrast:active) {
- /* current line highlight */
- .monaco-editor.vs .view-overlays .current-line,
- .monaco-editor.vs-dark .view-overlays .current-line {
- border-color: windowtext !important;
- border-left: 0;
- border-right: 0;
- }
- /* view cursors */
- .monaco-editor.vs .cursor,
- .monaco-editor.vs-dark .cursor {
- background-color: windowtext !important;
- }
- /* dnd target */
- .monaco-editor.vs .dnd-target,
- .monaco-editor.vs-dark .dnd-target {
- border-color: windowtext !important;
- }
- /* selected text background */
- .monaco-editor.vs .selected-text,
- .monaco-editor.vs-dark .selected-text {
- background-color: highlight !important;
- }
- /* allow the text to have a transparent background. */
- .monaco-editor.vs .view-line,
- .monaco-editor.vs-dark .view-line {
- -ms-high-contrast-adjust: none;
- }
- /* text color */
- .monaco-editor.vs .view-line span,
- .monaco-editor.vs-dark .view-line span {
- color: windowtext !important;
- }
- /* selected text color */
- .monaco-editor.vs .view-line span.inline-selected-text,
- .monaco-editor.vs-dark .view-line span.inline-selected-text {
- color: highlighttext !important;
- }
- /* allow decorations */
- .monaco-editor.vs .view-overlays,
- .monaco-editor.vs-dark .view-overlays {
- -ms-high-contrast-adjust: none;
- }
- /* various decorations */
- .monaco-editor.vs .selectionHighlight,
- .monaco-editor.vs-dark .selectionHighlight,
- .monaco-editor.vs .wordHighlight,
- .monaco-editor.vs-dark .wordHighlight,
- .monaco-editor.vs .wordHighlightStrong,
- .monaco-editor.vs-dark .wordHighlightStrong,
- .monaco-editor.vs .reference-decoration,
- .monaco-editor.vs-dark .reference-decoration {
- border: 2px dotted highlight !important;
- background: transparent !important;
- box-sizing: border-box;
- }
- .monaco-editor.vs .rangeHighlight,
- .monaco-editor.vs-dark .rangeHighlight {
- background: transparent !important;
- border: 1px dotted activeborder !important;
- box-sizing: border-box;
- }
- .monaco-editor.vs .bracket-match,
- .monaco-editor.vs-dark .bracket-match {
- border-color: windowtext !important;
- background: transparent !important;
- }
- /* find widget */
- .monaco-editor.vs .findMatch,
- .monaco-editor.vs-dark .findMatch,
- .monaco-editor.vs .currentFindMatch,
- .monaco-editor.vs-dark .currentFindMatch {
- border: 2px dotted activeborder !important;
- background: transparent !important;
- box-sizing: border-box;
- }
- .monaco-editor.vs .find-widget,
- .monaco-editor.vs-dark .find-widget {
- border: 1px solid windowtext;
- }
- /* list - used by suggest widget */
- .monaco-editor.vs .monaco-list .monaco-list-row,
- .monaco-editor.vs-dark .monaco-list .monaco-list-row {
- -ms-high-contrast-adjust: none;
- color: windowtext !important;
- }
- .monaco-editor.vs .monaco-list .monaco-list-row.focused,
- .monaco-editor.vs-dark .monaco-list .monaco-list-row.focused {
- color: highlighttext !important;
- background-color: highlight !important;
- }
- .monaco-editor.vs .monaco-list .monaco-list-row:hover,
- .monaco-editor.vs-dark .monaco-list .monaco-list-row:hover {
- background: transparent !important;
- border: 1px solid highlight;
- box-sizing: border-box;
- }
- /* scrollbars */
- .monaco-editor.vs .monaco-scrollable-element > .scrollbar,
- .monaco-editor.vs-dark .monaco-scrollable-element > .scrollbar {
- -ms-high-contrast-adjust: none;
- background: background !important;
- border: 1px solid windowtext;
- box-sizing: border-box;
- }
- .monaco-editor.vs .monaco-scrollable-element > .scrollbar > .slider,
- .monaco-editor.vs-dark .monaco-scrollable-element > .scrollbar > .slider {
- background: windowtext !important;
- }
- .monaco-editor.vs .monaco-scrollable-element > .scrollbar > .slider:hover,
- .monaco-editor.vs-dark .monaco-scrollable-element > .scrollbar > .slider:hover {
- background: highlight !important;
- }
- .monaco-editor.vs .monaco-scrollable-element > .scrollbar > .slider.active,
- .monaco-editor.vs-dark .monaco-scrollable-element > .scrollbar > .slider.active {
- background: highlight !important;
- }
- /* overview ruler */
- .monaco-editor.vs .decorationsOverviewRuler,
- .monaco-editor.vs-dark .decorationsOverviewRuler {
- opacity: 0;
- }
- /* minimap */
- .monaco-editor.vs .minimap,
- .monaco-editor.vs-dark .minimap {
- display: none;
- }
- /* squiggles */
- .monaco-editor.vs .squiggly-d-error,
- .monaco-editor.vs-dark .squiggly-d-error {
- background: transparent !important;
- border-bottom: 4px double #E47777;
- }
- .monaco-editor.vs .squiggly-c-warning,
- .monaco-editor.vs-dark .squiggly-c-warning {
- border-bottom: 4px double #71B771;
- }
- .monaco-editor.vs .squiggly-b-info,
- .monaco-editor.vs-dark .squiggly-b-info {
- border-bottom: 4px double #71B771;
- }
- .monaco-editor.vs .squiggly-a-hint,
- .monaco-editor.vs-dark .squiggly-a-hint {
- border-bottom: 4px double #6c6c6c;
- }
- /* contextmenu */
- .monaco-editor.vs .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,
- .monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label {
- -ms-high-contrast-adjust: none;
- color: highlighttext !important;
- background-color: highlight !important;
- }
- .monaco-editor.vs .monaco-menu .monaco-action-bar.vertical .action-menu-item:hover .action-label,
- .monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:hover .action-label {
- -ms-high-contrast-adjust: none;
- background: transparent !important;
- border: 1px solid highlight;
- box-sizing: border-box;
- }
- /* diff editor */
- .monaco-diff-editor.vs .diffOverviewRuler,
- .monaco-diff-editor.vs-dark .diffOverviewRuler {
- display: none;
- }
- .monaco-editor.vs .line-insert,
- .monaco-editor.vs-dark .line-insert,
- .monaco-editor.vs .line-delete,
- .monaco-editor.vs-dark .line-delete {
- background: transparent !important;
- border: 1px solid highlight !important;
- box-sizing: border-box;
- }
- .monaco-editor.vs .char-insert,
- .monaco-editor.vs-dark .char-insert,
- .monaco-editor.vs .char-delete,
- .monaco-editor.vs-dark .char-delete {
- background: transparent !important;
- }
- }
- /*.monaco-editor.vs [tabindex="0"]:focus {
- outline: 1px solid rgba(0, 122, 204, 0.4);
- outline-offset: -1px;
- opacity: 1 !important;
- }
- .monaco-editor.vs-dark [tabindex="0"]:focus {
- outline: 1px solid rgba(14, 99, 156, 0.6);
- outline-offset: -1px;
- opacity: 1 !important;
- }*/
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-action-bar .action-item.menu-entry .action-label.icon {
- width: 16px;
- height: 16px;
- background-repeat: no-repeat;
- background-position: 50%;
- background-size: 16px;
- }
- .monaco-action-bar .action-item.menu-entry .action-label {
- background-image: var(--menu-entry-icon-light);
- }
- .vs-dark .monaco-action-bar .action-item.menu-entry .action-label,
- .hc-black .monaco-action-bar .action-item.menu-entry .action-label {
- background-image: var(--menu-entry-icon-dark);
- }
- .monaco-dropdown-with-default {
- display: flex !important;
- flex-direction: row;
- border-radius: 5px;
- }
- .monaco-dropdown-with-default > .action-container > .action-label {
- margin-right: 0;
- }
- .monaco-dropdown-with-default > .action-container.menu-entry > .action-label.icon {
- width: 16px;
- height: 16px;
- background-repeat: no-repeat;
- background-position: 50%;
- background-size: 16px;
- }
- .monaco-dropdown-with-default > .action-container.menu-entry > .action-label {
- background-image: var(--menu-entry-icon-light);
- }
- .vs-dark .monaco-dropdown-with-default > .action-container.menu-entry > .action-label,
- .hc-black .monaco-dropdown-with-default > .action-container.menu-entry > .action-label {
- background-image: var(--menu-entry-icon-dark);
- }
- .monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*='codicon-'] {
- font-size: 12px;
- padding-left: 0px;
- padding-right: 0px;
- line-height: 16px;
- margin-left: -3px;
- }
- .monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
- display: block;
- background-size: 16px;
- background-position: center center;
- background-repeat: no-repeat;
- }
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .context-view .monaco-menu {
- min-width: 130px;
- }
|