editor.main.css 133 KB

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