sunburst.css 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714
  1. #toolbar > .toolbar-item.toggleable.toggled-on {
  2. -webkit-transition: border-top 0.25s ease-out 0;
  3. }
  4. .tabbed-pane:not(.help-window-main) .tabbed-pane-header-tab.selected,
  5. .small .tabbed-pane:not(.help-window-main) .tabbed-pane-header-tab.selected {
  6. -webkit-transition: border-top 0.25s ease-out 0;
  7. }
  8. /*-- NETWORK PANES --*/
  9. #network-views {
  10. -webkit-animation: bounceInRight 0.5s ease-in-out;
  11. }
  12. /*-- INACTIVE SELECTORS --*/
  13. .styles-section .properties .overloaded,
  14. .styles-section .properties .inactive,
  15. .styles-section .properties .disabled,
  16. .styles-section .properties .not-parsed-ok {
  17. -webkit-transition: opacity 0.5s ease-in-out 0;
  18. }
  19. .styles-section .properties .enabled-button {
  20. -webkit-transition: visibility 0.5s ease-in-out;
  21. }
  22. /*-- HIGHLIGHT CHILDREN --*/
  23. .panel.elements .parent + .children {
  24. -webkit-transition: 0.5s ease-in 0.25s;
  25. }
  26. .panel.elements .parent.selected.expanded + .children > :last-child *,
  27. .panel.elements .parent.hovered.expanded + .children > :last-child * {
  28. -webkit-transition: opacity 0.5s ease-in-out 0.25s;
  29. }
  30. /*-- POPOVERS --*/
  31. .popover {
  32. -webkit-animation: growFadeIn 0.2s ease-in-out;
  33. }
  34. .popover.top-left-arrow {
  35. -webkit-transform-origin: 25% 0%;
  36. }
  37. .popover.top-right-arrow {
  38. -webkit-transform-origin: 75% 0%;
  39. }
  40. .popover.right-top-arrow {
  41. -webkit-transform-origin: 100% 10%;
  42. }
  43. .popover.right-bottom-arrow {
  44. -webkit-transform-origin: 100% 90%;
  45. }
  46. .popover.bottom-left-arrow {
  47. -webkit-transform-origin: 25% 100%;
  48. }
  49. .popover.bottom-right-arrow {
  50. -webkit-transform-origin: 75% 100%;
  51. }
  52. .popover.left-top-arrow {
  53. -webkit-transform-origin: 0% 10%;
  54. }
  55. .popover.left-bottom-arrow {
  56. -webkit-transform-origin: 0% 90%;
  57. }
  58. /* -- KEYFRAME DECLARATIONS -- */
  59. @-webkit-keyframes match-animation {
  60. 0% {
  61. box-shadow: 0 0 0 #263238;
  62. background-color: #263238;
  63. color: #263238;
  64. }
  65. 50% {
  66. box-shadow: 0 0 25px #80cbc4;
  67. }
  68. 100% {
  69. box-shadow: 0 0 0 #80cbc4;
  70. background-color: #80cbc4;
  71. }
  72. }
  73. @-webkit-keyframes bounceInLeft {
  74. 0% {
  75. opacity: 0;
  76. -webkit-transform: translateX(-550px);
  77. }
  78. 60% {
  79. opacity: 1;
  80. -webkit-transform: translateX(30px);
  81. }
  82. 80% {
  83. -webkit-transform: translateX(-10px);
  84. }
  85. 100% {
  86. -webkit-transform: translateX(0);
  87. }
  88. }
  89. @-webkit-keyframes bounceInRight {
  90. 0% {
  91. opacity: 0;
  92. -webkit-transform: translateX(550px);
  93. }
  94. 60% {
  95. opacity: 1;
  96. -webkit-transform: translateX(-30px);
  97. }
  98. 80% {
  99. -webkit-transform: translateX(10px);
  100. }
  101. 100% {
  102. -webkit-transform: translateX(0);
  103. }
  104. }
  105. @-webkit-keyframes bounceInUp {
  106. 0% {
  107. opacity: 0;
  108. -webkit-transform: translateY(500px);
  109. }
  110. 60% {
  111. opacity: 1;
  112. -webkit-transform: translateY(-30px);
  113. }
  114. 80% {
  115. -webkit-transform: translateY(10px);
  116. }
  117. 100% {
  118. -webkit-transform: translateY(0);
  119. }
  120. }
  121. @-webkit-keyframes slideInLeftBig {
  122. 0% {
  123. -webkit-transform: translateX(-500px);
  124. }
  125. 100% {
  126. -webkit-transform: translateX(0);
  127. }
  128. }
  129. @-webkit-keyframes slideInRightBig {
  130. 0% {
  131. -webkit-transform: translateX(500px);
  132. }
  133. 100% {
  134. -webkit-transform: translateX(0);
  135. }
  136. }
  137. @-webkit-keyframes growFadeIn {
  138. 0% {
  139. opacity: 0;
  140. -webkit-transform: scale(0.3);
  141. }
  142. 100% {
  143. -webkit-transform: scale(1);
  144. }
  145. }
  146. .panel.visible {
  147. -webkit-transform: translatez(0);
  148. }
  149. /*-- HIGHLIGHT CHILDREN --*/
  150. .panel.elements /deep/ .parent + .children {
  151. -webkit-transition: 0.5s ease-in 0.25s;
  152. }
  153. .panel.elements /deep/ .hovered.parent.expanded + .children > li:last-of-type .webkit-html-tag.close,
  154. .panel.elements /deep/ .selected.parent.expanded + .children > li:last-of-type .webkit-html-tag.close {
  155. -webkit-transition: opacity 0.5s ease-in-out 0.25s;
  156. }
  157. .panel.elements .parent.selected.expanded + .children,
  158. .panel.elements .parent.hovered.expanded + .children {
  159. border-bottom-left-radius: 5px;
  160. border-bottom-right-radius: 5px;
  161. padding-bottom: 5px !important;
  162. box-shadow: inset 0px 0px 3px 0px #a6f2f8 !important;
  163. border-bottom: 1px solid #2f3740 !important;
  164. }
  165. .panel.elements .parent.selected.expanded + .children > li .webkit-html-pseudo-element:first-child,
  166. .panel.elements .parent.hovered.expanded + .children > li .webkit-html-pseudo-element:first-child {
  167. color: #80cbc4 !important;
  168. }
  169. .panel.elements .parent.selected.expanded + .children > :last-child *,
  170. .panel.elements .parent.hovered.expanded + .children > :last-child * {
  171. opacity: .6;
  172. }
  173. .panel.elements /deep/ .parent.selected.expanded + .children,
  174. .panel.elements /deep/ .parent.hovered.expanded + .children {
  175. border-bottom-left-radius: 5px;
  176. border-bottom-right-radius: 5px;
  177. padding-bottom: 5px !important;
  178. box-shadow: inset 0px 0px 3px 0px #a6f2f8 !important;
  179. border-bottom: none !important;
  180. }
  181. .panel.elements /deep/ .parent.selected.expanded + .children > li .webkit-html-pseudo-element:first-child,
  182. .panel.elements /deep/ .parent.hovered.expanded + .children > li .webkit-html-pseudo-element:first-child {
  183. color: #80cbc4 !important;
  184. }
  185. .panel.elements /deep/ .parent.selected.expanded + .children > li:last-of-type .webkit-html-tag.close,
  186. .panel.elements /deep/ .parent.hovered.expanded + .children > li:last-of-type .webkit-html-tag.close {
  187. opacity: 0.5 !important;
  188. }
  189. .cm-breakpoint .CodeMirror-gutter-elt {
  190. color: #000 !important;
  191. font-weight: 700 !important;
  192. }
  193. .CodeMirror-cursor {
  194. border-left: 1px solid #cdd3de !important;
  195. }
  196. .cm-error {
  197. background: #9d1e15 !important;
  198. border-radius: 2px !important;
  199. color: #eee !important;
  200. }
  201. .CodeMirror-gutter-elt {
  202. color: #546e7a !important;
  203. }
  204. .CodeMirror-gutters {
  205. background: #111 !important;
  206. border-right: 2px solid #2e3c43 !important;
  207. }
  208. .CodeMirror-selected,
  209. span.CodeMirror-selectedtext {
  210. background: #2e3c43 !important;
  211. }
  212. .CodeMirror-code .CodeMirror-matchingbracket {
  213. color: #80cbc4 !important;
  214. text-shadow: 0 0 3px #80cbc4 !important;
  215. border-bottom: none !important;
  216. font-weight: 800 !important;
  217. }
  218. .CodeMirror-code .CodeMirror-nonmatchingbracket {
  219. color: #db0404 !important;
  220. text-shadow: 0 0 3px #db0404 !important;
  221. border-bottom: none !important;
  222. font-weight: 800 !important;
  223. }
  224. .cm-search-highlight-start:before {
  225. border-color: #80cbc4 !important;
  226. }
  227. .cm-search-highlight-end:before {
  228. border-color: #80cbc4 !important;
  229. }
  230. .cm-search-highlight:before {
  231. border-color: #80cbc4 !important;
  232. padding: 2px !important;
  233. }
  234. .cm-line-with-selection .cm-column-with-selection.cm-search-highlight:before {
  235. background-color: #80cbc4 !important;
  236. border-radius: 2px !important;
  237. }
  238. span.cm-token-highlight {
  239. background-color: transparent !important;
  240. padding: 0px !important;
  241. }
  242. span.cm-token-highlight:before {
  243. border-color: #80cbc4 !important;
  244. }
  245. .cm-line-with-selection span.cm-column-with-selection {
  246. color: #000 !important;
  247. background-color: #80cbc4 !important;
  248. }
  249. .cm-whitespace:before {
  250. color: #2e3c43 !important;
  251. }
  252. .cm-tab:before {
  253. border-bottom: 1px solid #2e3c43 !important;
  254. }
  255. .cm-highlight {
  256. -webkit-animation: "fadeout-revised" 3s 0s !important;
  257. }
  258. .cm-highlight *:not(.CodeMirror-linenumber) {
  259. color: #e6e6e6 !important;
  260. }
  261. .cm-execution-line {
  262. background-color: #3e4c58 !important;
  263. outline: 1px solid #2e3c43 !important;
  264. }
  265. .CodeMirror-linenumber {
  266. border-right: none !important;
  267. }
  268. .cm-line-without-source-mapping {
  269. background-color: #222 !important;
  270. }
  271. @-webkit-keyframes fadeout-revised {
  272. 0% {
  273. background-color: #3e4c58;
  274. }
  275. 50% {
  276. background-color: #3e4c58;
  277. }
  278. 100% {
  279. background-color: #263238;
  280. outline: 1px solid #263238;
  281. }
  282. }
  283. /************************************************
  284. /* Elements Crumbs
  285. /************************************************/
  286. #elements-crumbs {
  287. background: #111 !important;
  288. border-top: 1px solid #2e3c43 !important;
  289. border-top: none !important;
  290. height: 19px !important;
  291. }
  292. #elements-crumbs .crumbs {
  293. text-shadow: none !important;
  294. color: #b1bdc4 !important;
  295. }
  296. #elements-crumbs .crumbs .crumb {
  297. -webkit-border-image: none !important;
  298. border-left: 1px solid #2e3c43 !important;
  299. border-right: 1px solid #282e35 !important;
  300. padding: 0 10px !important;
  301. margin: 0 !important;
  302. line-height: 18px !important;
  303. }
  304. #elements-crumbs .crumbs .crumb:hover {
  305. color: #f8f8f8 !important;
  306. background-color: #b1bdc4 !important;
  307. }
  308. #elements-crumbs .crumbs .crumb.selected {
  309. background-color: #3e4c58 !important;
  310. text-shadow: none !important;
  311. color: #f8f8f8 !important;
  312. cursor: default;
  313. }
  314. /***************************************************
  315. /* Dialog Boxes
  316. /* -------------------------------------------
  317. /* Search Functions/Selectors in File [Ctrl+Shift+O]
  318. /***************************************************/
  319. .dialog {
  320. background: #282e35 !important;
  321. box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.6) !important;
  322. border: 1px solid #2e3c43 !important;
  323. }
  324. .dialog .fill {
  325. border: none !important;
  326. }
  327. .dialog .selected {
  328. background-color: #3e4c58 !important;
  329. box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, 0.3) !important;
  330. color: #cdd3de !important;
  331. }
  332. .dialog input,
  333. .dialog input:focus {
  334. background-color: #222 !important;
  335. border: none !important;
  336. color: #e6e6e6 !important;
  337. padding: 0 5px;
  338. }
  339. .filtered-item-list-dialog-item {
  340. background-color: #222 !important;
  341. border-top: 1px solid #2e3c43 !important;
  342. border-bottom: 1px solid #2e3c43 !important;
  343. }
  344. .filtered-item-list-dialog-item .filtered-item-list-dialog-subtitle {
  345. color: #808080 !important;
  346. }
  347. .filtered-item-list-dialog-item:not(.selected):hover {
  348. background-color: #282e35 !important;
  349. box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, 0.8) !important;
  350. }
  351. .filtered-item-list-dialog-item .filtered-item-list-dialog-title,
  352. .filtered-item-list-dialog-item span {
  353. color: #e6e6e6 !important;
  354. }
  355. .filtered-item-list-dialog-item .highlight {
  356. color: #80cbc4 !important;
  357. }
  358. .filtered-item-list-dialog > div.container {
  359. background-color: #222 !important;
  360. }
  361. .text-button,
  362. [is="text-button"] {
  363. background: #111 !important;
  364. color: #cdd3de !important;
  365. border: none !important;
  366. border-radius: 3px !important;
  367. cursor: pointer !important;
  368. box-shadow: none !important;
  369. text-shadow: none !important;
  370. }
  371. .text-button:disabled,
  372. [is="text-button"]:disabled {
  373. cursor: default !important;
  374. opacity: 0.3 !important;
  375. }
  376. .text-button:not(:disabled):active,
  377. [is="text-button"]:not(:disabled):active {
  378. box-shadow: inset 0 1px 1px 0 #151515, 0 1px 1px 0 #6f6f6f !important;
  379. }
  380. .chrome-select {
  381. background-color: #282e35 !important;
  382. border-color: #2e3c43 !important;
  383. color: #e6e6e6 !important;
  384. background-image: none !important;
  385. text-shadow: none !important;
  386. -webkit-appearance: menulist !important;
  387. box-shadow: none !important;
  388. }
  389. .chrome-select:disabled {
  390. opacity: .3 !important !important;
  391. }
  392. .chrome-select:focus {
  393. outline-color: none !important !important;
  394. }
  395. .search-drawer-header label.search-config-label,
  396. .drawer .settings-tab label,
  397. #drawer-footer td label {
  398. text-shadow: none !important;
  399. color: #b1bdc4 !important;
  400. }
  401. .overrides-view .tabbed-pane-header-tab {
  402. color: #b1bdc4 !important;
  403. }
  404. .overrides-view .tabbed-pane-content {
  405. color: #b1bdc4 !important;
  406. }
  407. .overrides-view .tabbed-pane-content :disabled {
  408. color: rgba(204, 204, 204, 0.3) !important;
  409. }
  410. .overrides-view input,
  411. .overrides-view select {
  412. background-color: #282e35 !important;
  413. border-color: #2e3c43 !important;
  414. color: #e6e6e6 !important;
  415. }
  416. .overrides-view input:disabled,
  417. .overrides-view select:disabled {
  418. opacity: .3 !important !important;
  419. }
  420. .overrides-view input:focus,
  421. .overrides-view select:focus {
  422. outline-color: none !important !important;
  423. }
  424. input[type="range"]::-webkit-slider-runnable-track {
  425. background: #111 !important;
  426. border-top: 1px solid #2e3c43 !important;
  427. height: 5px !important;
  428. text-align: center !important;
  429. margin: 10px 0 !important;
  430. }
  431. input[type='range']::-webkit-slider-thumb {
  432. position: relative !important;
  433. top: -5px !important;
  434. }
  435. .revision-history-link {
  436. color: #80cbc4 !important;
  437. }
  438. .outline-disclosure.revision-history-drawer ol li {
  439. padding-top: 2px !important;
  440. line-height: 15px !important;
  441. }
  442. .revision-history-drawer > ol > .parent {
  443. background-color: #2a2a2a !important;
  444. color: #b1bdc4 !important;
  445. border-top: 1px solid #2e3c43 !important;
  446. border-bottom: 1px solid #151515 !important;
  447. margin: 0 !important;
  448. height: 22px !important;
  449. }
  450. .revision-history-drawer > ol > .parent + .children {
  451. margin-bottom: 10px !important;
  452. }
  453. .revision-history-drawer .revision-history-revision {
  454. color: #b1bdc4 !important;
  455. background-color: #222 !important;
  456. border-top: 1px solid #363636 !important;
  457. border-bottom: 1px solid #1a1a1a !important;
  458. height: 22px !important;
  459. line-height: 20px !important;
  460. }
  461. .revision-history-drawer .webkit-line-number {
  462. background: #111 !important;
  463. border-right: 1px solid #2e3c43 !important;
  464. padding: 1px 5px 1px 0 !important;
  465. display: inline-block;
  466. color: #546e7a !important;
  467. }
  468. .revision-history-drawer .source-code {
  469. margin: 5px 0 15px 10px !important;
  470. }
  471. .revision-history-drawer .source-code .revision-history-line-separator:nth-child(1) {
  472. background-color: #222 !important;
  473. }
  474. .revision-history-drawer .revision-history-line-separator {
  475. margin-top: 4px !important;
  476. }
  477. .revision-history-drawer .revision-history-line-removed,
  478. .revision-history-drawer .revision-history-line-added {
  479. background-color: #222 !important;
  480. }
  481. .revision-history-drawer .revision-history-line-removed span:last-child,
  482. .revision-history-drawer .revision-history-line-added span:last-child {
  483. margin-left: 2px;
  484. }
  485. .revision-history-drawer .revision-history-line-removed {
  486. color: #ff5a5a !important;
  487. }
  488. .revision-history-drawer .revision-history-line-added {
  489. color: #7eb17e !important;
  490. }
  491. .help-footnote {
  492. border-top: none !important;
  493. }
  494. .help-footnote a {
  495. color: #80cbc4;
  496. }
  497. button.overrides-swap {
  498. background: #111 !important;
  499. color: #cdd3de !important;
  500. border: none !important;
  501. border-radius: 3px !important;
  502. cursor: pointer !important;
  503. box-shadow: none !important;
  504. text-shadow: none !important;
  505. }
  506. button.overrides-swap:disabled {
  507. cursor: default !important;
  508. opacity: 0.3 !important;
  509. }
  510. button.overrides-swap:not(:disabled):active {
  511. box-shadow: inset 0 1px 1px 0 #151515, 0 1px 1px 0 #6f6f6f !important;
  512. }
  513. .overrides-activate-device #tab-device .tabbed-pane-header-tab-title::after,
  514. .overrides-activate-media #tab-media .tabbed-pane-header-tab-title::after,
  515. .overrides-activate-network #tab-network .tabbed-pane-header-tab-title::after,
  516. .overrides-activate-sensors #tab-sensors .tabbed-pane-header-tab-title::after {
  517. color: #80cbc4 !important;
  518. }
  519. /**********************************************/
  520. /* Find Module [ctrl+shift+F / cmd+shift+F]
  521. /**********************************************/
  522. #search-results-pane-file-based .search-result,
  523. ::shadow #search-results-pane-file-based .search-result {
  524. background-color: #2a2a2a !important;
  525. color: #b1bdc4 !important;
  526. border-top: 1px solid #363636 !important;
  527. border-bottom: 1px solid #2e3c43 !important;
  528. line-height: 18px !important;
  529. margin: 0 !important;
  530. }
  531. #search-results-pane-file-based .show-more-matches,
  532. ::shadow #search-results-pane-file-based .show-more-matches {
  533. color: #80cbc4 !important;
  534. }
  535. #search-results-pane-file-based .parent:hover,
  536. ::shadow #search-results-pane-file-based .parent:hover {
  537. background-color: #282e35 !important;
  538. color: #d9d9d9 !important;
  539. }
  540. #search-results-pane-file-based .parent .search-result-file-name,
  541. ::shadow #search-results-pane-file-based .parent .search-result-file-name {
  542. color: #546e7a !important;
  543. }
  544. #search-results-pane-file-based .parent .search-result-matches-count,
  545. ::shadow #search-results-pane-file-based .parent .search-result-matches-count {
  546. color: #71f38f !important;
  547. }
  548. .toolbar-search button,
  549. ::shadow .search-action-button {
  550. background: #111 !important;
  551. color: #cdd3de !important;
  552. border: none!important;
  553. border-radius: 3px !important;
  554. cursor: pointer !important;
  555. box-shadow: none !important;
  556. text-shadow: none !important;
  557. }
  558. .toolbar-search button:disabled {
  559. cursor: default !important;
  560. opacity: 0.3 !important;
  561. }
  562. .toolbar-search button:not(:disabled):active {
  563. box-shadow: inset 0 1px 1px 0 #151515, 0 1px 1px 0 #6f6f6f !important;
  564. }
  565. .toolbar-search-control,
  566. ::shadow .toolbar-search-control {
  567. background-color: #282e35 !important;
  568. border: 1px solid #2e3c43 !important;
  569. }
  570. .toolbar-search-control input,
  571. ::shadow .toolbar-search-control input {
  572. background-color: #282e35 !important;
  573. border-color: #2e3c43 !important;
  574. color: #e6e6e6 !important;
  575. border-color: none !important;
  576. }
  577. .toolbar-search-control input:disabled,
  578. ::shadow .toolbar-search-control input:disabled {
  579. opacity: .3 !important;
  580. }
  581. .toolbar-search-control input:focus,
  582. ::shadow .toolbar-search-control input:focus {
  583. outline-color: none !important;
  584. }
  585. .toolbar-search-control .toolbar-search-navigation-controls,
  586. ::shadow .toolbar-search-control .toolbar-search-navigation-controls {
  587. background: #111 !important;
  588. }
  589. .toolbar-search-control .toolbar-search-navigation.toolbar-search-navigation-prev,
  590. .toolbar-search-control .toolbar-search-navigation.toolbar-search-navigation-next,
  591. ::shadow .toolbar-search-control .toolbar-search-navigation.toolbar-search-navigation-prev,
  592. ::shadow .toolbar-search-control .toolbar-search-navigation.toolbar-search-navigation-next {
  593. border: 1px solid #363636 !important;
  594. }
  595. ::shadow .search-replace.toolbar-replace-control {
  596. background-color: #282e35 !important;
  597. border-color: #2e3c43 !important;
  598. color: #e6e6e6 !important;
  599. }
  600. ::shadow .search-replace.toolbar-replace-control:disabled {
  601. opacity: .3 !important;
  602. }
  603. ::shadow .search-replace.toolbar-replace-control:focus {
  604. outline-color: none !important;
  605. }
  606. .search-drawer-header input[type="text"].search-config-search,
  607. ::shadow .search-config-search {
  608. background-color: #282e35 !important;
  609. color: #e6e6e6 !important;
  610. border: 1px solid #2e3c43 !important;
  611. }
  612. .search-drawer-header input[type="text"].search-config-search:focus,
  613. ::shadow .search-config-search:focus {
  614. outline-color: #80cbc4 !important;
  615. }
  616. #drawer-contents .search-match-line-number,
  617. ::shadow .search-match-line-number {
  618. background: #111 !important;
  619. border-right: 1px solid #2e3c43 !important;
  620. padding: 1px 5px 1px 0 !important;
  621. display: inline-block;
  622. color: #546e7a !important;
  623. }
  624. #search-results-pane-file-based .search-match .highlighted-match,
  625. .highlighted-search-result,
  626. .webkit-highlighted-line.webkit-line-content,
  627. ::shadow #search-results-pane-file-based .search-match .highlighted-match {
  628. color: #000000 !important;
  629. border-radius: 2px !important;
  630. font-size: 1em !important;
  631. background-color: #80cbc4 !important;
  632. box-shadow: rgba(0, 0, 0, 0.498039) 3px 3px 4px 0px !important;
  633. }
  634. .search-match:hover {
  635. background-color: #282e35 !important;
  636. box-shadow: inset 0 1px 0 0 #282e35, inset 0 -1px 0 0 #282e35;
  637. }
  638. .status-bar,
  639. ::shadow .search-bar {
  640. background-color: #282e35 !important;
  641. border-top: none !important;
  642. border-bottom: none !important;
  643. }
  644. .search-results-matches {
  645. color: #b1bdc4 !important;
  646. }
  647. .search-match-content,
  648. ::shadow .search-match-content {
  649. color: #b1bdc4 !important;
  650. }
  651. .search-status-bar-summary,
  652. ::shadow .search-status-bar-summary {
  653. background: linear-gradient(#505050, #363636) !important;
  654. border-top: 1px solid #505050 !important;
  655. }
  656. .search-drawer-header input[type="checkbox"].search-config-checkbox {
  657. vertical-align: middle !important;
  658. }
  659. .sidebar-pane-filter-box {
  660. border-top: 1px solid #2e3c43 !important;
  661. }
  662. .sidebar-pane-filter-box.styles-filter-engaged {
  663. background-color: transparent !important;
  664. }
  665. .sidebar-pane-filter-box > input {
  666. color: #b1bdc4 !important;
  667. }
  668. .styles-section .properties li.filter-match,
  669. .styles-section .simple-selector.filter-match {
  670. background-color: #3e4c58 !important;
  671. box-shadow: 0 0 0 1px #2e3c43 !important;
  672. border-radius: 2px;
  673. }
  674. ::shadow ::shadow .regex-search-status-bar-item.status-bar-item.toggled-off .status-bar-button-text,
  675. ::shadow ::shadow .case-sensitive-search-status-bar-item.status-bar-item.toggled-off .status-bar-button-text {
  676. color: #b1bdc4 !important;
  677. }
  678. ::shadow ::shadow .regex-search-status-bar-item.status-bar-item.toggled-on .status-bar-button-text,
  679. ::shadow ::shadow .case-sensitive-search-status-bar-item.status-bar-item.toggled-on .status-bar-button-text {
  680. color: #80cbc4 !important;
  681. }
  682. ::shadow ::shadow .status-bar-item .status-bar-button-text {
  683. color: #b1bdc4 !important;
  684. }
  685. /**********************************************
  686. /* DevTool Chrome
  687. /**********************************************/
  688. #console-messages,
  689. #console-view,
  690. #network-views .CodeMirror-lines,
  691. #script-view-fallback,
  692. .console-view-wrapper,
  693. .dialog .fill,
  694. .drawer .revision-history-drawer,
  695. .help-window-main,
  696. .panel .split-view-contents,
  697. .panel,
  698. .panel-enabler-view,
  699. .profiles-sidebar-tree-box,
  700. .resource-view .script-view,
  701. .sidebar-overlay,
  702. .split-view-vertical .sidebar-pane.composite .properties-tree,
  703. .styles-section.read-only,
  704. .tabbed-pane-content,
  705. .tabbed-pane-content.has-no-tabs .timeline-records-title,
  706. .timeline-records-list,
  707. #timeline-overview-sidebar {
  708. background-color: #000 !important;
  709. z-index: 0;
  710. }
  711. .panel-enabler-view {
  712. color: #b1bdc4;
  713. }
  714. .panel .sidebar-tree-item.selected {
  715. background-color: #3e4c58 !important;
  716. color: #e6e6e6 !important;
  717. box-shadow: inset 0 1px 0 0 #2e3c43, inset 0 -1px 0 0 #2e3c43;
  718. }
  719. .panel .sidebar-tree-item:not(.selected):hover {
  720. background-color: #282e35 !important;
  721. color: #b1bdc4 !important;
  722. box-shadow: inset 0 1px 0 0 #282e35, inset 0 -1px 0 0 #282e35;
  723. }
  724. .panel .sidebar-tree-item .disclosure-button {
  725. background-color: #8c8c8c !important;
  726. }
  727. .panel .data-grid th {
  728. border: none !important;
  729. }
  730. .panel .status-bar {
  731. border-bottom: 1px solid #505050;
  732. }
  733. .panel .status-bar-text {
  734. color: #b1bdc4 !important;
  735. }
  736. body.dock-to-right.inactive:not(.undocked):not(.overlay-contents),
  737. body.dock-to-right:not(.undocked):not(.overlay-contents) {
  738. border-left: transparent !important;
  739. }
  740. .split-view.vbox > .split-view-sidebar.split-view-contents-second:not(.maximized) {
  741. border-top: none !important;
  742. }
  743. .tabbed-pane-content .settings-tab-text-button {
  744. background: #111 !important;
  745. border-top: 1px solid #2e3c43 !important;
  746. color: #cdd3de !important;
  747. border-radius: 3px !important;
  748. cursor: pointer !important;
  749. box-shadow: none !important;
  750. text-shadow: none !important;
  751. }
  752. .tabbed-pane-content .settings-tab-text-button:disabled {
  753. cursor: default !important;
  754. opacity: 0.3 !important;
  755. }
  756. .tabbed-pane-content .settings-tab-text-button:not(:disabled):active {
  757. box-shadow: inset 0 1px 1px 0 #151515, 0 1px 1px 0 #6f6f6f !important;
  758. }
  759. .split-view.vbox > .split-view-resizer > .split-view-resizer-border,
  760. .split-view.hbox > .split-view-resizer > .split-view-resizer-border {
  761. border: none !important;
  762. }
  763. .sidebar {
  764. background: none !important;
  765. }
  766. .editing {
  767. background-color: #222 !important;
  768. outline: 1px solid #80cbc4 !important;
  769. color: #b1bdc4 !important;
  770. }
  771. /**********************************************/
  772. /* Navigation Arrows
  773. /**********************************************/
  774. .styles-section.matched-styles .properties li.parent.expanded .expand-element,
  775. #console-messages .console-group-messages .section.expanded .header::before,
  776. #console-messages .properties-tree li.parent.expanded::before,
  777. .outline-disclosure li.parent.expanded::before,
  778. .properties-tree li.parent.expanded::before,
  779. .section.expanded > .header::before,
  780. .section .event-bar.expanded .header::before,
  781. .sidebar-pane .parent.expanded::before,
  782. .sidebar-pane-stack .sidebar-pane-title.expanded::before,
  783. .timeline-expandable-expanded .timeline-expandable-arrow,
  784. .styles-section.matched-styles .style-properties li.parent.expanded .expand-element {
  785. background-color: #8c8c8c !important;
  786. background-image: none !important;
  787. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  788. -webkit-transition: -webkit-transform 0.1s ease-in-out;
  789. -webkit-mask-position: -4px -96px;
  790. -webkit-transform: rotate(90deg);
  791. }
  792. .sidebar-pane-stack .sidebar-pane-title.expanded::before {
  793. -webkit-transform: rotate(90deg) translateX(2px);
  794. }
  795. .styles-section.matched-styles .properties li.parent .expand-element,
  796. #console-messages .console-group-messages .section .header::before,
  797. #console-messages .properties-tree li.parent::before,
  798. .outline-disclosure li.parent::before,
  799. #search-results-pane-file-based .parent::before,
  800. .properties-tree li.parent::before,
  801. .section > .header::before,
  802. .section .event-bar .header::before,
  803. .sidebar-pane .parent::before,
  804. .sidebar-pane-stack .sidebar-pane-title::before,
  805. .timeline-expandable-collapsed .timeline-expandable-arrow,
  806. ::shadow #search-results-pane-file-based .parent::before,
  807. .styles-section.matched-styles .style-properties li.parent .expand-element {
  808. background-color: #8c8c8c !important;
  809. background-image: none !important;
  810. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  811. -webkit-transition: -webkit-transform 0.1s ease-in-out;
  812. -webkit-mask-position: -4px -96px;
  813. -webkit-transform: rotate(0deg);
  814. }
  815. .data-grid th.sort-ascending > div::after {
  816. background-color: #8c8c8c !important;
  817. background-image: none !important;
  818. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  819. -webkit-transition: -webkit-transform 0.1s ease-in-out;
  820. -webkit-mask-position: -4px -108px !important;
  821. }
  822. .data-grid th.sort-descending > div::after {
  823. background-color: #8c8c8c !important;
  824. background-image: none !important;
  825. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  826. -webkit-transition: -webkit-transform 0.1s ease-in-out;
  827. -webkit-mask-position: -20px -96px !important;
  828. }
  829. #search-results-pane-file-based .parent.expanded::before,
  830. ::shadow #search-results-pane-file-based .parent.expanded::before {
  831. -webkit-mask-position: -20px -96px !important;
  832. }
  833. #search-results-pane-file-based .parent.expanded::before,
  834. ::shadow #search-results-pane-file-based .parent.expanded::before {
  835. -webkit-mask-position: -20px -93px !important;
  836. }
  837. #search-results-pane-file-based .parent::before,
  838. ::shadow #search-results-pane-file-based .parent::before {
  839. -webkit-mask-position: -4px -93px !important;
  840. }
  841. .panel.network . li.parent::before {
  842. top: 3px !important;
  843. }
  844. .sidebar-tabbed-pane .section > .header::before,
  845. .event-bars .event-bar .header::before {
  846. margin-top: 3px !important;
  847. }
  848. .status-bar-select-arrow {
  849. background-color: #8c8c8c !important;
  850. background-image: none !important;
  851. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  852. -webkit-transition: -webkit-transform 0.1s ease-in-out;
  853. -webkit-mask-position: -20px -96px !important;
  854. }
  855. /**********************************************
  856. /* Element Highlighter
  857. /**********************************************/
  858. .panel.elements #elements-content .CodeMirror {
  859. outline: none !important;
  860. }
  861. .panel.elements ::shadow .outline-disclosure ol:focus li.selected .selection,
  862. .panel.console ::shadow .outline-disclosure ol:focus li.selected .selection,
  863. .panel.elements ::shadow .elements-disclosure ol:focus li.selected .selection,
  864. .panel.console ::shadow .elements-disclosure ol:focus li.selected .selection,
  865. .panel.elements ::shadow .outline-disclosure li.selected .selection,
  866. .panel.console ::shadow .outline-disclosure li.selected .selection,
  867. .panel.elements ::shadow .elements-disclosure li.selected .selection,
  868. .panel.console ::shadow .elements-disclosure li.selected .selection {
  869. /* outline: 1px solid #2e3c43 !important; */
  870. background-color: #3e4c58 !important;
  871. }
  872. .panel.elements ::shadow .outline-disclosure li.hovered:not(.selected) .selection,
  873. .panel.console ::shadow .outline-disclosure li.hovered:not(.selected) .selection,
  874. .panel.elements ::shadow .elements-disclosure li.hovered:not(.selected) .selection,
  875. .panel.console ::shadow .elements-disclosure li.hovered:not(.selected) .selection {
  876. border-radius: 0 !important;
  877. background-color: #282e35 !important;
  878. border-top: 1px solid #282e35 !important;
  879. border-bottom: 1px solid #282e35 !important;
  880. }
  881. .outline-disclosure li.in-clipboard .highlight {
  882. outline: 1px dashed #546e7a !important;
  883. }
  884. /**********************************************
  885. /* Element Highlighter
  886. /**********************************************/
  887. .paint-profiler-overview,
  888. .paint-profiler-canvas-container canvas,
  889. .paint-profiler-view canvas {
  890. background-color: #222 !important;
  891. }
  892. .progress-banner {
  893. background-color: rgba(111, 111, 111, 0.5) !important;
  894. color: #b1bdc4 !important;
  895. }
  896. .layers.panel .outline-disclosure li {
  897. margin-top: 2px !important;
  898. }
  899. .layers.panel .selection {
  900. height: 18px !important;
  901. }
  902. .sidebar-tree li {
  903. color: #b1bdc4 !important;
  904. }
  905. /**********************************************
  906. /* Network Tab (uses _tables.less for list of nodes)
  907. /**********************************************/
  908. #network-container {
  909. border-top: none !important;
  910. }
  911. #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:hover {
  912. text-decoration: none !important;
  913. }
  914. .data-grid {
  915. border: none !important;
  916. }
  917. .data-grid th.sort-ascending,
  918. .data-grid th.sort-descending,
  919. .data-grid th.sortable,
  920. .data-grid .timeline-column {
  921. border-right: 1px solid #2e3c43 !important;
  922. }
  923. .data-grid .network-timeline-grid .resources-divider-label {
  924. color: #b1bdc4 !important;
  925. }
  926. .data-grid .network-timeline-grid .resources-divider {
  927. border-right: 1px solid #2e3c43;
  928. }
  929. .highlighted-row {
  930. -webkit-animation: "fadeout-revised" 2s 0s !important;
  931. }
  932. /*dropdownlist in network panel*/
  933. .timeline-column option {
  934. color: #b1bdc4 !important;
  935. background: #111 !important;
  936. }
  937. .resource-view.image .title {
  938. color: #b1bdc4 !important;
  939. }
  940. .resource-view.image .infoList dt {
  941. color: #626262 !important;
  942. margin-bottom: 5px !important;
  943. }
  944. .resource-view.image .infoList dd {
  945. color: #b1bdc4 !important;
  946. margin-bottom: 5px !important;
  947. }
  948. .request-headers-view .header-name {
  949. color: #626262 !important;
  950. }
  951. .request-headers-view .header-value {
  952. color: #b1bdc4 !important;
  953. }
  954. .request-headers-view .caution {
  955. color: #ddbb00 !important;
  956. }
  957. /* Fallback Support */
  958. .resource-source-frame-fallback {
  959. background-color: #282e35 !important;
  960. color: #b1bdc4 !important;
  961. }
  962. /* Network Timing Pane */
  963. .resource-timing-view table {
  964. background-color: #282e35 !important;
  965. padding: 20px !important;
  966. border-radius: 4px;
  967. margin: 20px !important;
  968. }
  969. .resource-timing-view table td .network-timing-bar-title {
  970. color: #b1bdc4 !important;
  971. text-shadow: 0 1px 1px #2e3c43 !important;
  972. }
  973. .resource-timing-view .network-timing-table .footnote a,
  974. .resource-timing-view .network-timing-table .network-timing-footer a {
  975. color: #c792ea;
  976. }
  977. #network-views .request-headers-view .parent,
  978. .network .request-headers-view .parent {
  979. background-color: #282828 !important;
  980. color: #b1bdc4 !important;
  981. border-top: 1px solid #2e3c43 !important;
  982. border-bottom: 1px solid #151515 !important;
  983. line-height: 18px;
  984. }
  985. #network-views .script-view-fallback {
  986. background-color: #222 !important;
  987. color: #b1bdc4 !important;
  988. }
  989. .request-headers-view .outline-disclosure .header-count,
  990. .request-headers-view .outline-disclosure .header-toggle {
  991. color: #80cbc4 !important;
  992. margin-left: 4px !important;
  993. }
  994. .request-headers-view .outline-disclosure .header-toggle:hover {
  995. text-shadow: 0 0 10px #80cbc4;
  996. }
  997. .network-cell-subtitle {
  998. color: #bfbfbf !important;
  999. }
  1000. .network-log-grid.data-grid th {
  1001. border-bottom: transparent !important;
  1002. }
  1003. .network.panel .panel-status-bar {
  1004. border-bottom: none !important;
  1005. }
  1006. .data-grid .network-error-row,
  1007. .data-grid .network-error-row > td,
  1008. .data-grid .network-error-row .network-cell-subtitle {
  1009. color: #ff5a5a !important;
  1010. }
  1011. /**********************************************/
  1012. /* Elements/Network
  1013. /**********************************************/
  1014. .panel:not(.timeline):not(.audits):not(.profiles):not(.cpu-profiler):not(.css-profiler):not(.heap-profiler):not(.canvas-profiler) table,
  1015. .network-graph-bar,
  1016. .network-graph-label,
  1017. .network-graph-bar-area {
  1018. color: #b1bdc4 !important;
  1019. }
  1020. .network-summary-bar {
  1021. background: #111 !important;
  1022. border-top: 1px solid #2e3c43 !important;
  1023. border-top: none !important;
  1024. color: #b1bdc4 !important;
  1025. }
  1026. .network-log-grid.data-grid .bottom-filler-td {
  1027. background: none !important;
  1028. }
  1029. #network-views .resource-view.html {
  1030. background-color: #fff !important;
  1031. }
  1032. /**********************************************
  1033. /* Profilers
  1034. /**********************************************/
  1035. #profile-views .data-grid td > div,
  1036. .profile-launcher-view label,
  1037. .retainers-view-header,
  1038. .profile-launcher-view-tree-item,
  1039. .sidebar-tree-section,
  1040. .resources-divider-label,
  1041. .panel:not(.timeline) .sidebar-tree-item,
  1042. .profile-entry-info,
  1043. ::shadow .flame-chart-entry-info {
  1044. color: #b1bdc4 !important;
  1045. }
  1046. .profile-entry-info,
  1047. ::shadow .flame-chart-entry-info {
  1048. text-shadow: 0 0 1px #263238;
  1049. background-color: rgba(34, 34, 34, 0.9) !important;
  1050. border-radius: 4px;
  1051. }
  1052. #profile-views .data-grid button {
  1053. color: #bfbfbf !important;
  1054. }
  1055. .heap-snapshot-view tr:not(.selected) td.object-column span.highlight {
  1056. background-color: #3e4c58 !important;
  1057. border-radius: 3px;
  1058. }
  1059. .profiles-status-bar {
  1060. background: #111 !important;
  1061. border-top: 1px solid #2e3c43 !important;
  1062. box-shadow: none !important;
  1063. border-bottom: none !important;
  1064. }
  1065. .profiles-status-bar .status-bar {
  1066. background-color: transparent !important;
  1067. }
  1068. .profiles-status-bar .status-bar,
  1069. .retainers-view-header,
  1070. .heap-snapshot-view .class-view-toolbar {
  1071. border-top: none !important;
  1072. border-bottom: none !important;
  1073. }
  1074. input.status-bar-item {
  1075. background-color: #2e3c43;
  1076. color: #e6e6e6;
  1077. border: 1px solid #2e3c43;
  1078. }
  1079. input.status-bar-item:hover,
  1080. input.status-bar-item:focus {
  1081. border: 1px solid #2e3c43 !important;
  1082. }
  1083. .heap-snapshot-view .heap-snapshot-view-resizer {
  1084. background: #111 !important;
  1085. border-top: 1px solid #2e3c43 !important;
  1086. box-shadow: none !important;
  1087. border-top: none !important;
  1088. border-bottom: none !important;
  1089. color: #b1bdc4;
  1090. }
  1091. #profile-views .data-container .object-column {
  1092. color: #b1bdc4;
  1093. }
  1094. #profile-views .data-container .object-column button {
  1095. background: #111 !important;
  1096. color: #cdd3de !important;
  1097. border: none !important;
  1098. border-radius: 3px !important;
  1099. cursor: pointer !important;
  1100. box-shadow: none !important;
  1101. text-shadow: none !important;
  1102. }
  1103. #profile-views .data-container .object-column button:disabled {
  1104. cursor: default !important;
  1105. opacity: 0.3 !important;
  1106. }
  1107. #profile-views .data-container .object-column button:not(:disabled):active {
  1108. box-shadow: inset 0 1px 1px 0 #151515, 0 1px 1px 0 #6f6f6f !important;
  1109. }
  1110. .data-grid td,
  1111. .heap-snapshot-stats-name,
  1112. .heap-snapshot-stats-size {
  1113. color: #b1bdc4 !important;
  1114. }
  1115. /**********************************************
  1116. /* Resources Tab
  1117. /**********************************************/
  1118. .resources-status-bar .status-bar {
  1119. background: #111 !important;
  1120. border-top: 1px solid #2e3c43 !important;
  1121. box-shadow: none !important;
  1122. border-top: none !important;
  1123. }
  1124. /*-- WEB SQL --*/
  1125. .database-query-prompt {
  1126. color: #b1bdc4 !important;
  1127. }
  1128. .database-user-query {
  1129. border-top: 1px solid #263238 !important;
  1130. border-bottom: 1px solid #080808 !important;
  1131. padding-bottom: 10px !important;
  1132. }
  1133. .database-user-query + span {
  1134. padding: 2px 0 !important;
  1135. border-top: 1px solid #263238 !important;
  1136. border-bottom: 1px solid #080808 !important;
  1137. background-color: #282e35 !important;
  1138. width: 100% !important;
  1139. }
  1140. .database-user-query .database-query-text {
  1141. color: #b1bdc4 !important;
  1142. width: 100% !important;
  1143. display: inline-block !important;
  1144. margin-bottom: 5px;
  1145. margin-top: 2px;
  1146. }
  1147. .database-user-query::before,
  1148. .database-query-result::before {
  1149. margin-top: -5px !important;
  1150. }
  1151. .database-user-query .error {
  1152. color: #ff5a5a !important;
  1153. }
  1154. .indexed-db-database-view .outline-disclosure .attribute-name {
  1155. color: #ffcb6b !important;
  1156. }
  1157. .indexed-db-database-view .outline-disclosure .attribute-value {
  1158. color: #c3e88d !important;
  1159. }
  1160. /*************************************
  1161. * Help/Settings Overlay
  1162. *************************************/
  1163. .help-window-main {
  1164. color: #b1bdc4 !important;
  1165. /***************************************************
  1166. /* Workspaces Dialog Box
  1167. ****************************************************/
  1168. }
  1169. .help-window-main .settings-tab-container header {
  1170. border-bottom: 1px solid #6f6f6f !important;
  1171. }
  1172. .help-window-main .help-footnote {
  1173. border-top: 1px solid #6f6f6f !important;
  1174. }
  1175. .help-window-main label,
  1176. .help-window-main label:hover {
  1177. color: #b1bdc4 !important;
  1178. }
  1179. .help-window-main .tabbed-pane-header-tab.selected {
  1180. color: #80cbc4 !important;
  1181. }
  1182. .help-window-main .help-section-title {
  1183. color: #80cbc4 !important;
  1184. }
  1185. .help-window-main .help-block label,
  1186. .help-window-main .help-block td {
  1187. color: #b1bdc4 !important;
  1188. }
  1189. .help-window-main select,
  1190. .help-window-main input,
  1191. .help-window-main option {
  1192. background-color: #282e35 !important;
  1193. border-color: #2e3c43 !important;
  1194. color: #e6e6e6 !important;
  1195. }
  1196. .help-window-main select:disabled,
  1197. .help-window-main input:disabled,
  1198. .help-window-main option:disabled {
  1199. opacity: .3 !important;
  1200. }
  1201. .help-window-main select:focus,
  1202. .help-window-main input:focus,
  1203. .help-window-main option:focus {
  1204. outline-color: none !important;
  1205. }
  1206. .help-window-main fieldset:disabled label {
  1207. color: rgba(204, 204, 204, 0.3) !important;
  1208. }
  1209. .help-window-main select:disabled,
  1210. .help-window-main input:disabled,
  1211. .help-window-main .settings-tab-text-button:disabled {
  1212. background-image: none !important;
  1213. box-shadow: none !important;
  1214. text-shadow: none !important;
  1215. }
  1216. .help-window-main .help-key-cell .help-key {
  1217. color: #333333 !important;
  1218. }
  1219. .help-window-main .help-key-cell span {
  1220. color: #eeeeee !important;
  1221. }
  1222. .help-window-main .settings-list-container {
  1223. padding: 10px !important;
  1224. background-color: #222 !important;
  1225. }
  1226. .help-window-main .settings-list {
  1227. border: 1px solid #454545 !important;
  1228. }
  1229. .help-window-main .settings-list-item {
  1230. background-color: #282e35 !important;
  1231. border-top: 1px solid #2e3c43 !important;
  1232. border-bottom: 1px solid #2e3c43 !important;
  1233. }
  1234. .help-window-main .settings-list-item.selected {
  1235. background-color: rgba(150, 255, 150, 0.2) !important;
  1236. }
  1237. .help-window-main .settings-list-item:nth-child(1) {
  1238. border-top: none !important;
  1239. }
  1240. .help-window-main .settings-list-item:last-child {
  1241. border-bottom: none !important;
  1242. }
  1243. .help-window-main .file-system-path-name {
  1244. color: #80cbc4 !important;
  1245. }
  1246. .file-system-path,
  1247. .list-column-text,
  1248. .settings-list-column-path {
  1249. color: #b1bdc4 !important;
  1250. }
  1251. .list-column-editor {
  1252. background-color: #282e35 !important;
  1253. border: 1px solid #2e3c43 !important;
  1254. color: #e6e6e6 !important;
  1255. }
  1256. .settings-dialog {
  1257. border: 1px solid #454545 !important;
  1258. background-color: #222 !important;
  1259. border-radius: 4px !important;
  1260. }
  1261. .settings-dialog .dialog-contents label {
  1262. color: #b1bdc4;
  1263. }
  1264. .settings-dialog .dialog-contents .header {
  1265. color: #eeeeee !important;
  1266. }
  1267. .settings-dialog .dialog-contents .block-header {
  1268. color: #80cbc4 !important;
  1269. }
  1270. .settings-dialog .settings-list-container {
  1271. background-color: #444444 !important;
  1272. }
  1273. .settings-dialog .settings-list {
  1274. border-color: #444444 !important;
  1275. border-radius: 2px !important;
  1276. }
  1277. .settings-dialog .settings-list-item {
  1278. background-color: #444444 !important;
  1279. border-top: 1px solid #2e3c43 !important;
  1280. /* testsasdf */
  1281. border-bottom: 1px solid #2e3c43 !important;
  1282. /* testsasdf */
  1283. color: #333333 !important;
  1284. }
  1285. .settings-dialog .add-list-item {
  1286. border-bottom: none !important;
  1287. }
  1288. .settings-dialog .file-mappings-list .settings-list-item:first-child,
  1289. .settings-dialog .excluded-folders-section .settings-list-item:first-child {
  1290. border-top: none !important;
  1291. }
  1292. .swatch {
  1293. width: 12px !important;
  1294. height: 12px !important;
  1295. }
  1296. .blackbox-dialog .columns-header {
  1297. color: #80cbc4 !important;
  1298. }
  1299. /**********************************************
  1300. /* Sources Tab
  1301. /**********************************************/
  1302. /*placeholder text when no file is open*/
  1303. .tabbed-pane-placeholder,
  1304. ::shadow .tabbed-pane-placeholder {
  1305. text-shadow: 0 1px 0 #181818 !important;
  1306. color: #999999 !important;
  1307. }
  1308. /*-- Save Problem Overlay --*/
  1309. .source-frame-unsaved-committed-changes {
  1310. background-color: #222 !important;
  1311. }
  1312. .source-frame-debugger-script {
  1313. background-color: #222 !important;
  1314. }
  1315. .sidebar-pane {
  1316. /* Breakpoints/Dom Breakpoints */
  1317. /* Call Stack */
  1318. }
  1319. .sidebar-pane .breakpoints-list-deactivated {
  1320. background-color: #282e35 !important;
  1321. opacity: 0.3 !important;
  1322. }
  1323. .sidebar-pane .breakpoint-list li {
  1324. color: #80cbc4 !important;
  1325. border-top: 1px solid #343434 !important;
  1326. border-bottom: 1px solid #101010 !important;
  1327. }
  1328. .sidebar-pane .breakpoint-list li:not(.breakpoint-hit):hover {
  1329. background-color: #282e35 !important;
  1330. border-top: 1px solid #343434 !important;
  1331. border-bottom: 1px solid #101010 !important;
  1332. }
  1333. .sidebar-pane .breakpoint-hit {
  1334. background: #3e4c58 !important;
  1335. border-top: 1px solid #2e3c43 !important;
  1336. border-bottom: 1px solid #2e3c43 !important;
  1337. color: #eee !important;
  1338. }
  1339. .sidebar-pane .placard .title,
  1340. .sidebar-pane .placard .subtitle,
  1341. .sidebar-pane ::shadow .list-item .title,
  1342. .sidebar-pane ::shadow .list-item .subtitle {
  1343. color: #b1bdc4 !important;
  1344. }
  1345. .sidebar-pane .placard:nth-of-type(2n),
  1346. .sidebar-pane ::shadow .list-item:nth-of-type(2n) {
  1347. background: #2a2a2a !important;
  1348. }
  1349. .sidebar-pane .placard.selected,
  1350. .sidebar-pane ::shadow .list-item.selected {
  1351. background: #3e4c58 !important;
  1352. color: #e6e6e6 !important;
  1353. border-top: 1px solid #2e3c43 !important;
  1354. border-bottom: 1px solid #2e3c43 !important;
  1355. }
  1356. .sidebar-pane .placard.selected .title,
  1357. .sidebar-pane .placard.selected .subtitle,
  1358. .sidebar-pane ::shadow .list-item.selected .title,
  1359. .sidebar-pane ::shadow .list-item.selected .subtitle {
  1360. color: #e6e6e6 !important;
  1361. }
  1362. .sidebar-pane .hidden-placards-message,
  1363. .sidebar-pane .callstack-info.status {
  1364. background-color: #2e3c43 !important;
  1365. color: #ddbb00;
  1366. }
  1367. .sidebar-pane .hidden-placards-message .node-link,
  1368. .sidebar-pane .callstack-info.status .node-link {
  1369. color: #80cbc4;
  1370. }
  1371. .sidebar-pane > .body .placard + .info,
  1372. .sidebar-pane > .body ::shadow .list-item + .info {
  1373. background: #111 !important;
  1374. border-top: 0 !important;
  1375. color: #80cbc4 !important;
  1376. font-style: normal !important;
  1377. }
  1378. .breakpoints-deactivated .breakpoint-list {
  1379. background-color: #b1bdc4 !important;
  1380. opacity: .3 !important;
  1381. }
  1382. /*Pane Headers*/
  1383. .sidebar-pane-title {
  1384. background: #111 !important;
  1385. border-top: 1px solid #2e3c43 !important;
  1386. color: #b1bdc4;
  1387. border-top: none !important;
  1388. border-bottom: 1px solid #2e3c43 !important;
  1389. }
  1390. .sidebar-pane-stack > .sidebar-pane.visible:nth-last-of-type(1) {
  1391. border-bottom: none !important;
  1392. }
  1393. .sidebar-pane .children.expanded,
  1394. li.breakpoint-hit .breakpoint-hit-marker {
  1395. background-color: transparent !important;
  1396. }
  1397. .pane-title-button.add,
  1398. .sidebar-pane-toolbar > .pane-title-button.refresh {
  1399. /*background-image: none !important;*/
  1400. -webkit-background-position: -24px 0 !important;
  1401. background-color: #b1bdc4 !important;
  1402. -webkit-mask-repeat: no-repeat !important;
  1403. }
  1404. .pane-title-button.add {
  1405. -webkit-mask-image: url(Images/paneAddButtons.png) !important;
  1406. }
  1407. .sidebar-pane-toolbar > .pane-title-button.refresh {
  1408. -webkit-mask-image: url(Images/paneRefreshButtons.png) !important;
  1409. }
  1410. .panel.elements .sidebar-pane .sidebar-pane-toolbar .pane-title-button.element-state,
  1411. .panel.elements .sidebar-pane .sidebar-pane-toolbar .pane-title-button.animations-controls,
  1412. .panel.elements .sidebar-pane .sidebar-pane-toolbar .pane-title-button.add {
  1413. background-color: #cdd3de !important;
  1414. }
  1415. .panel.elements .sidebar-pane .sidebar-pane-toolbar > .pane-title-button.element-state,
  1416. .panel.elements .sidebar-pane .sidebar-pane-toolbar > .pane-title-button.animations-controls,
  1417. .panel.elements .sidebar-pane .sidebar-pane-toolbar > .pane-title-button.add {
  1418. background-image: none !important;
  1419. }
  1420. .panel.elements .sidebar-pane-toolbar > select > option,
  1421. .panel.elements .sidebar-pane-toolbar > select > hr {
  1422. color: #b1bdc4 !important;
  1423. background-color: #222 !important;
  1424. }
  1425. .panel.elements .sidebar-pane-toolbar > select.select-settings {
  1426. /*background-image: none !important; */
  1427. -webkit-background-position: -24px 0 !important;
  1428. background-color: #b1bdc4 !important;
  1429. -webkit-mask-repeat: no-repeat !important;
  1430. -webkit-mask-image: url(Images/paneSettingsButtons.png) !important;
  1431. }
  1432. .panel.elements .sidebar-pane-toolbar .pane-title-button.element-state {
  1433. -webkit-mask-image: url(Images/paneElementStateButtons.png) !important;
  1434. }
  1435. .panel.elements .sidebar-pane-toolbar .pane-title-button.animations-controls {
  1436. -webkit-mask-image: url(Images/paneAnimationsButtons.png) !important;
  1437. }
  1438. .panel.elements .sidebar-pane-toolbar .pane-title-button.animations-controls {
  1439. background-color: #000000 !important;
  1440. }
  1441. .panel.elements .sidebar-pane-toolbar .pane-title-button.element-state,
  1442. .panel.elements .sidebar-pane-toolbar .pane-title-button.animations-controls,
  1443. .panel.elements .sidebar-pane-toolbar .pane-title-button.add {
  1444. background-color: #546e7a !important;
  1445. }
  1446. /* Highlight in Scripts */
  1447. .webkit-highlighted-line.webkit-line-content {
  1448. border-radius: 2px;
  1449. }
  1450. .webkit-highlighted-line.webkit-line-content * {
  1451. color: #181818 !important;
  1452. }
  1453. /*exception icon state colors */
  1454. .scripts-pause-on-exceptions-status-bar-item.toggled-all .glyph {
  1455. background-color: #dc0303 !important;
  1456. }
  1457. .scripts-pause-on-exceptions-status-bar-item.toggled-uncaught .glyph {
  1458. background-color: #d5bf00 !important;
  1459. }
  1460. .webkit-highlighted-line {
  1461. background-color: #80cbc4 !important;
  1462. }
  1463. .alternate-status-bar-buttons-bar .scripts-pause,
  1464. .alternate-status-bar-buttons-bar .scripts-long-resume,
  1465. .alternate-status-bar-buttons-bar .status-bar-item {
  1466. background-color: #282e35 !important;
  1467. border: 1px solid #263238 !important;
  1468. }
  1469. .alternate-status-bar-buttons-bar .status-bar-item.emulate-active {
  1470. background-color: #222 !important;
  1471. border: 1px solid #2e3c43 !important;
  1472. }
  1473. .properties-tree li,
  1474. .outline-disclosure li::before,
  1475. .properties-tree li.parent {
  1476. background-color: inherit !important;
  1477. line-height: inherit !important;
  1478. }
  1479. .event-listener-breakpoints.properties-tree li {
  1480. height: auto !important;
  1481. padding-top: 0 !important;
  1482. }
  1483. .event-listener-breakpoints.properties-tree li:before {
  1484. -webkit-mask-position: -4px -93px !important;
  1485. }
  1486. .event-listener-breakpoints.properties-tree li .checkbox-elem {
  1487. top: 2px !important;
  1488. }
  1489. .event-listener-breakpoints.properties-tree li.parent .checkbox-elem {
  1490. top: 3px !important;
  1491. }
  1492. .source-frame-infobar {
  1493. color: #ddbb00;
  1494. border-bottom: 1px solid #2e3c43 !important;
  1495. background-color: #2e3c43 !important;
  1496. }
  1497. .source-frame-infobar-toggle-link {
  1498. color: #80cbc4 !important;
  1499. }
  1500. .sidebar-pane-button-new-rule {
  1501. background-color: #546e7a !important;
  1502. background-image: none;
  1503. -webkit-mask-image: url(Images/paneAddButtons.png) !important;
  1504. -webkit-mask-position: 0 0 !important;
  1505. }
  1506. .sidebar-pane-button-new-rule:hover {
  1507. -webkit-mask-position: -23px 0 !important;
  1508. }
  1509. .text-editor-value-decoration {
  1510. background-color: #282e35 !important;
  1511. color: #b1bdc4 !important;
  1512. padding: 0 5px;
  1513. border-radius: 2px !important;
  1514. box-shadow: 0 1px 0 0 #2e3c43 !important;
  1515. border-top: 1px solid #1c1c1c !important;
  1516. }
  1517. /**********************************************
  1518. /* Sources Panel Controls
  1519. /**********************************************/
  1520. .scripts-status-bar {
  1521. background: #111 !important;
  1522. border-top: 1px solid #2e3c43 !important;
  1523. overflow: none !important;
  1524. }
  1525. .scripts-debug-toolbar {
  1526. background: #111 !important;
  1527. border-top: 1px solid #2e3c43 !important;
  1528. }
  1529. .help-indent-labels label {
  1530. color: #b1bdc4 !important;
  1531. }
  1532. .scripts-debug-toolbar-drawer {
  1533. background-color: transparent !important;
  1534. border-bottom: none !important;
  1535. color: #b1bdc4 !important;
  1536. }
  1537. .CodeMirror .webkit-html-message-bubble {
  1538. color: #111 !important;
  1539. border-radius: 2px !important;
  1540. padding: 2px !important;
  1541. }
  1542. .CodeMirror-linewidget .source-frame-breakpoint-condition {
  1543. border-radius: 4px !important;
  1544. background: #111 !important;
  1545. border-top: 1px solid #2e3c43 !important;
  1546. }
  1547. .CodeMirror-linewidget .source-frame-breakpoint-condition input {
  1548. color: #b1bdc4 !important;
  1549. }
  1550. .CodeMirror-linewidget .source-frame-breakpoint-message {
  1551. color: #80cbc4 !important;
  1552. }
  1553. .CodeMirror-linewidget #source-frame-breakpoint-condition {
  1554. background-color: #222 !important;
  1555. border: none !important;
  1556. height: 22px !important;
  1557. }
  1558. /**********************************************
  1559. /* Timeline Tab
  1560. /**********************************************/
  1561. .timeline .panel-status-bar {
  1562. color: #b1bdc4 !important;
  1563. }
  1564. .timeline-category-statusbar-item,
  1565. .timeline-records-stats,
  1566. .record-title,
  1567. .timeline-aggregated-category {
  1568. text-shadow: none !important;
  1569. color: #b1bdc4 !important;
  1570. }
  1571. #timeline-graphs .timeline-graph-side.hovered,
  1572. .timeline-records-list .timeline-tree-item.hovered:not(.selected) {
  1573. background-color: #282e35 !important;
  1574. outline: 1px solid #282e35 !important;
  1575. }
  1576. #timeline-graphs .timeline-graph-side.selected,
  1577. .timeline-records-list .timeline-tree-item.selected {
  1578. background-color: #3e4c58 !important;
  1579. outline: 1px solid #2e3c43 !important;
  1580. }
  1581. .timeline-records-list .timeline-tree-item {
  1582. color: #b1bdc4 !important;
  1583. }
  1584. .timeline-records-list .timeline-tree-item .data.dimmed {
  1585. color: #b1bdc4 !important;
  1586. opacity: .7 !important;
  1587. }
  1588. /* Timeline */
  1589. .sidebar-tree-section {
  1590. text-shadow: none !important;
  1591. }
  1592. .timeline-tree-item.selected .timeline-tree-item-expand-arrow,
  1593. .timeline-tree-item-expand-arrow {
  1594. background-color: #8c8c8c !important;
  1595. }
  1596. #counter-values-bar,
  1597. #memory-graphs-container .sidebar-tree-section,
  1598. .timeline-records-title,
  1599. .timeline-details-view-title {
  1600. background: #111 !important;
  1601. border-top: 1px solid #2e3c43 !important;
  1602. color: #b1bdc4 !important;
  1603. text-shadow: none !important;
  1604. }
  1605. #counter-values-bar {
  1606. position: relative !important;
  1607. top: 1px !important;
  1608. border-bottom: none !important;
  1609. }
  1610. .timeline-aggregated-info-legend > div,
  1611. .memory-counter-sidebar-info {
  1612. color: #b1bdc4 !important;
  1613. }
  1614. .timeline-details-view-row-title {
  1615. color: #626262 !important;
  1616. }
  1617. .timeline-details-view-title {
  1618. border-bottom: none !important;
  1619. }
  1620. .timeline-details-view-row-value,
  1621. .timeline-details-view-row-stack-trace {
  1622. color: #b1bdc4 !important;
  1623. }
  1624. .timeline-details-view-row .timeline-details-view-row-stack-trace .webkit-html-resource-link {
  1625. color: #c792ea !important;
  1626. }
  1627. #timeline-overview-sidebar {
  1628. padding-right: 0 !important;
  1629. border-right: 1px solid #263238 !important;
  1630. }
  1631. #timeline-overview-sidebar .sidebar-tree-item:hover {
  1632. border-left: 6px solid #282e35 !important;
  1633. }
  1634. #timeline-overview-sidebar .sidebar-tree-item.selected {
  1635. border-left: 6px solid #2e3c43 !important;
  1636. }
  1637. #timeline-overview-sidebar .sidebar-tree-item.selected .icon {
  1638. background-color: #e6e6e6 !important;
  1639. }
  1640. #timeline-overview-sidebar .sidebar-tree-item.selected .title {
  1641. color: #e6e6e6 !important;
  1642. }
  1643. #timeline-overview-sidebar .icon {
  1644. background-color: #cdd3de !important;
  1645. }
  1646. #timeline-overview-sidebar .title {
  1647. color: #cdd3de !important;
  1648. }
  1649. .timeline-cpu-curtain-left,
  1650. .timeline-cpu-curtain-right {
  1651. background-color: #b1bdc4 !important;
  1652. opacity: 0.3 !important;
  1653. }
  1654. .timeline-expandable {
  1655. border-left: 1px solid #919#2e3c43598 !important;
  1656. }
  1657. .timeline-expandable-left {
  1658. border-top: 1px solid #b1bdc4 !important;
  1659. border-bottom: 1px solid #b1bdc4 !important;
  1660. }
  1661. .timeline-utilization-strip .timeline-graph-bar {
  1662. border-color: rgba(200, 200, 200, 0.3) !important;
  1663. background-color: rgba(200, 200, 200, 0.2) !important;
  1664. }
  1665. #timeline-overview-panel {
  1666. border-bottom: 1px solid #505050 !important;
  1667. }
  1668. .timeline .resources-event-divider.timeline-frame-divider,
  1669. .resources-divider {
  1670. background-color: #2a2a2a !important;
  1671. }
  1672. .panel:not(.network) .resources-dividers-label-bar {
  1673. background: transparent !important;
  1674. border-bottom: 1px solid #2e3c43 !important;
  1675. }
  1676. .panel #timeline-grid-header .resources-dividers-label-bar {
  1677. background: #111 !important;
  1678. border-top: 1px solid #2e3c43 !important;
  1679. }
  1680. .overview-grid-dividers-background {
  1681. background-color: red !important;
  1682. }
  1683. #timeline-overview-container {
  1684. background-color: #222 !important;
  1685. }
  1686. #timeline-overview-container canvas {
  1687. background-color: transparent !important;
  1688. }
  1689. .overview-grid-window-resizer {
  1690. box-shadow: none !important;
  1691. }
  1692. .overview-grid-window-rulers {
  1693. border-right: 1px solid #80cbc4;
  1694. border-left: 1px solid #80cbc4;
  1695. background: #80cbc4 !important;
  1696. opacity: 0.2 !important;
  1697. }
  1698. .timeline-frame-strip {
  1699. color: #b1bdc4 !important;
  1700. }
  1701. .overview-grid-dividers-background {
  1702. background-color: #282e35 !important;
  1703. }
  1704. .overview-grid-window {
  1705. background-color: #222 !important;
  1706. }
  1707. #memory-counters-graph {
  1708. border-right: 1px solid #2a2a2a !important;
  1709. }
  1710. .timeline-frame-container {
  1711. background: none !important;
  1712. }
  1713. #timeline-overview-panel .split-view-sidebar > label {
  1714. color: #b1bdc4 !important;
  1715. }
  1716. .timeline-range-summary > div {
  1717. color: #b1bdc4 !important;
  1718. }
  1719. .pie-chart-foreground {
  1720. color: #b1bdc4;
  1721. }
  1722. .timeline-progress-pane {
  1723. background-color: rgba(111, 111, 111, 0.5) !important;
  1724. color: #b1bdc4 !important;
  1725. }
  1726. /* ==========================================================================
  1727. Popovers
  1728. ========================================================================== */
  1729. .popover {
  1730. border-width: 0 !important;
  1731. background: #282e35 !important;
  1732. }
  1733. .popover .arrow {
  1734. background-image: url() !important;
  1735. }
  1736. .popover .content {
  1737. border-radius: 3px !important;
  1738. color: #b1bdc4 !important;
  1739. }
  1740. .popover .content .source-frame-popover-title {
  1741. color: #ff8b3e !important;
  1742. }
  1743. .popover .content .source-frame-popover-tree {
  1744. border-top: 1px solid #546e7a !important;
  1745. }
  1746. .popover .content .popover-details-title {
  1747. color: #ddbb00 !important;
  1748. }
  1749. .popover .content .popover-details-row-title {
  1750. color: #929ba2 !important;
  1751. }
  1752. .popover .content .network-timing-bar {
  1753. background-color: #80cbc4 !important;
  1754. border-left-color: #80cbc4 !important;
  1755. }
  1756. .popover .content .network-timing-bar-title {
  1757. color: #b1bdc4 !important;
  1758. text-shadow: 0 1px 1px #2e3c43;
  1759. }
  1760. .popover a.undefined {
  1761. color: #c792ea !important;
  1762. }
  1763. .webkit-line-content .text-editor-overlay-highlight {
  1764. background-color: #3e4c58 !important;
  1765. outline: 1px solid #2e3c43 !important;
  1766. }
  1767. .spectrum-container {
  1768. border: none !important;
  1769. background: #111 !important;
  1770. border-radius: 3px !important;
  1771. padding: 7px 10px !important;
  1772. }
  1773. .spectrum-container .swatch {
  1774. margin-right: 3px !important;
  1775. }
  1776. .spectrum-range-container {
  1777. padding-bottom: 0 !important;
  1778. }
  1779. .spectrum-range-container input {
  1780. position: static !important;
  1781. }
  1782. .bezier-icon {
  1783. background-color: #80cbc4 !important;
  1784. }
  1785. .bezier-icon path {
  1786. stroke: #263238 !important;
  1787. }
  1788. ::shadow .bezier-preview-container {
  1789. background: #b1bdc4 !important;
  1790. }
  1791. ::shadow .bezier-preview-animation {
  1792. background-color: #80cbc4 !important;
  1793. }
  1794. ::shadow .bezier-curve circle.bezier-control-circle {
  1795. fill: #80cbc4 !important;
  1796. }
  1797. ::shadow .bezier-curve line.bezier-control-line {
  1798. stroke: #80cbc4 !important;
  1799. }
  1800. ::shadow .bezier-curve line.bezier-control-accent {
  1801. stroke: #b1bdc4 !important;
  1802. }
  1803. ::shadow .bezier-curve line.linear-line {
  1804. stroke: #282e35 !important;
  1805. }
  1806. ::shadow .bezier-curve path.bezier-path {
  1807. stroke: #000 !important;
  1808. }
  1809. /**********************************************
  1810. /* Readability
  1811. /* -------------------------------------------
  1812. /* Adjust the line height for elements|sources
  1813. /* tab, find, and console. Adjust margin-top
  1814. /* to line up expand/collapse arrow in
  1815. /* elements panel
  1816. /**********************************************/
  1817. .text-editor .inner-container .webkit-line-content,
  1818. .text-editor-lines .inner-container .webkit-line-number,
  1819. .styles-section .properties li,
  1820. .CodeMirror-lines,
  1821. #search-results-pane-file-based .search-match,
  1822. ::shadow #search-results-pane-file-based .search-match {
  1823. line-height: 14px !important;
  1824. }
  1825. .panel.elements .outline-disclosure li.parent::before {
  1826. margin-top: 1px;
  1827. }
  1828. /**********************************************
  1829. /* Screencast
  1830. /**********************************************/
  1831. .screencast {
  1832. background-color: #222 !important;
  1833. }
  1834. .screencast .screencast-viewport {
  1835. background-color: #2e3c43;
  1836. box-shadow: 0 0 2px 0 #80cbc4;
  1837. margin: auto !important;
  1838. }
  1839. .screencast .screencast-navigation button {
  1840. background-color: #80cbc4 !important;
  1841. -webkit-mask-image: -webkit-image-set(url(Images/navigationControls.png) 1x, url(Images/navigationControls_2x.png) 2x);
  1842. background-image: none !important;
  1843. border: none !important;
  1844. width: 21px !important;
  1845. height: 21px !important;
  1846. cursor: pointer !important;
  1847. }
  1848. .screencast .screencast-navigation button.back {
  1849. -webkit-mask-position: 0 2px;
  1850. }
  1851. .screencast .screencast-navigation button.forward {
  1852. -webkit-mask-position: -17px 2px;
  1853. }
  1854. .screencast .screencast-navigation button.reload {
  1855. -webkit-mask-position: -36px 2px;
  1856. }
  1857. .screencast .screencast-navigation button[disabled] {
  1858. background-color: #b1bdc4 !important;
  1859. opacity: 1 !important;
  1860. cursor: default !important;
  1861. }
  1862. .screencast .screencast-navigation .progress {
  1863. background-color: #80cbc4 !important;
  1864. }
  1865. .screencast .screencast-navigation input {
  1866. background: #282e35 !important;
  1867. color: #e6e6e6 !important;
  1868. border: 1px solid #2e3c43 !important;
  1869. }
  1870. /**********************************************
  1871. /* Scrollbars
  1872. /**********************************************/
  1873. ::-webkit-scrollbar,
  1874. .CodeMirror-scrollbar-filler,
  1875. .CodeMirror-gutter-filler {
  1876. width: 6px !important;
  1877. height: 12px !important;
  1878. border-radius: 25px !important;
  1879. background-color: #37474f !important;
  1880. }
  1881. ::-webkit-scrollbar-track:horizontal,
  1882. .custom-popup-horizontal-scroll ::-webkit-scrollbar-track:horizontal,
  1883. .custom-popup-vertical-scroll ::-webkit-scrollbar-track:horizontal,
  1884. .custom-popup-vertical-scroll .custom-popup-horizontal-scroll ::-webkit-scrollbar-track:horizontal,
  1885. .custom-popup-horizontal-scroll .custom-popup-vertical-scroll ::-webkit-scrollbar-track:horizontal {
  1886. -webkit-box-shadow: none !important;
  1887. background: #111 !important;
  1888. }
  1889. ::-webkit-scrollbar-track:vertical,
  1890. .custom-popup-horizontal-scroll ::-webkit-scrollbar-track:vertical,
  1891. .custom-popup-vertical-scroll ::-webkit-scrollbar-track:vertical,
  1892. .custom-popup-vertical-scroll .custom-popup-horizontal-scroll ::-webkit-scrollbar-track:vertical,
  1893. .custom-popup-horizontal-scroll .custom-popup-vertical-scroll ::-webkit-scrollbar-track:vertical {
  1894. -webkit-box-shadow: none !important;
  1895. background: #111 !important;
  1896. }
  1897. ::-webkit-scrollbar-corner,
  1898. .CodeMirror-scrollbar-filler,
  1899. .CodeMirror-gutter-filler {
  1900. -webkit-box-shadow: inset 1px 5px 6px rgba(0, 0, 0, 0.3) !important;
  1901. }
  1902. ::-webkit-scrollbar-thumb {
  1903. border-radius: 0px !important;
  1904. background-color: #37474f !important;
  1905. border: none!important;
  1906. }
  1907. ::-webkit-scrollbar-thumb:horizontal {
  1908. -webkit-box-shadow: none !important;
  1909. }
  1910. ::-webkit-scrollbar-thumb:vertical {
  1911. -webkit-box-shadow: none !important;
  1912. }
  1913. /*Popover scrollbar overrides */
  1914. .custom-popup-horizontal-scroll ::-webkit-scrollbar-track,
  1915. .custom-popup-vertical-scroll ::-webkit-scrollbar-track,
  1916. .custom-popup-vertical-scroll .custom-popup-horizontal-scroll ::-webkit-scrollbar-track,
  1917. .custom-popup-horizontal-scroll .custom-popup-vertical-scroll ::-webkit-scrollbar-track {
  1918. -webkit-box-shadow: none !important;
  1919. background-image: none !important;
  1920. }
  1921. .custom-popup-horizontal-scroll ::-webkit-scrollbar-thumb {
  1922. -webkit-border-image: none !important;
  1923. }
  1924. .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical {
  1925. -webkit-box-shadow: inset 4px 1px 8px 1px rgba(0, 0, 0, 0.3) !important;
  1926. }
  1927. .custom-popup-horizontal-scroll ::-webkit-scrollbar-track-piece:horizontal {
  1928. -webkit-box-shadow: inset 1px 5px 6px rgba(0, 0, 0, 0.3) !important;
  1929. }
  1930. .custom-popup-horizontal-scroll ::-webkit-scrollbar-thumb:horizontal:active,
  1931. .custom-popup-horizontal-scroll ::-webkit-scrollbar-thumb:horizontal:hover,
  1932. .custom-popup-horizontal-scroll ::-webkit-scrollbar-track-piece:horizontal:decrement,
  1933. .custom-popup-horizontal-scroll ::-webkit-scrollbar-track-piece:horizontal:increment,
  1934. .custom-popup-vertical-scroll ::-webkit-scrollbar-thumb:vertical:active,
  1935. .custom-popup-vertical-scroll ::-webkit-scrollbar-thumb:vertical:hover,
  1936. .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:decrement,
  1937. .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:increment {
  1938. -webkit-border-image: none !important;
  1939. }
  1940. .custom-popup-horizontal-scroll ::-webkit-scrollbar,
  1941. .custom-popup-vertical-scroll ::-webkit-scrollbar {
  1942. background: none !important;
  1943. }
  1944. /**********************************************
  1945. /* Elements/Sources Right Sidebar
  1946. /**********************************************/
  1947. .styles-section {
  1948. padding: 4px 0 !important;
  1949. margin: 0 10px;
  1950. border-top: 1px solid #2e3c43 !important;
  1951. border-bottom: none !important;
  1952. }
  1953. .styles-section:first-child {
  1954. border-top: none !important;
  1955. }
  1956. .styles-section.read-only:not(.computed-style) {
  1957. background-color: #222 !important;
  1958. margin: 0;
  1959. padding-left: 10px !important;
  1960. padding-right: 10px !important;
  1961. }
  1962. .styles-section .value {
  1963. color: #fbe793 !important;
  1964. font-weight: 600;
  1965. }
  1966. .styles-section .child-editing,
  1967. .styles-section .header .subtitle {
  1968. color: #999999 !important;
  1969. }
  1970. .styles-section .properties .overloaded,
  1971. .styles-section .properties .inactive,
  1972. .styles-section .properties .disabled,
  1973. .styles-section .properties .not-parsed-ok {
  1974. opacity: .5 !important;
  1975. }
  1976. .event-bars .event-bar .header .title {
  1977. text-shadow: none !important;
  1978. color: #b1bdc4 !important;
  1979. }
  1980. .sidebar-pane {
  1981. /*-- METRICS--*/
  1982. }
  1983. .sidebar-pane .body,
  1984. .sidebar-pane .monospace {
  1985. color: #b1bdc4 !important;
  1986. }
  1987. .sidebar-pane .section.expanded > .header {
  1988. border-bottom: 1px solid #2e3c43 !important;
  1989. }
  1990. .sidebar-pane .section.expanded > .properties-tree {
  1991. background-color: #222 !important;
  1992. }
  1993. .sidebar-pane .body .metrics {
  1994. color: #000 !important;
  1995. border-top: 1px solid #2e3c43 !important;
  1996. border-bottom: 1px solid #2e3c43 !important;
  1997. margin-top: 5px !important;
  1998. }
  1999. .sidebar-pane .body .metrics .position,
  2000. .sidebar-pane .body .metrics .margin:not([style^=background-color]),
  2001. .sidebar-pane .body .metrics .border:not([style^=background-color]),
  2002. .sidebar-pane .body .metrics .padding:not([style^=background-color]),
  2003. .sidebar-pane .body .metrics .margin:not([style^=background-color]),
  2004. .sidebar-pane .body .metrics .content:not([style^=background-color]) {
  2005. background-color: #546e7a !important;
  2006. }
  2007. .sidebar-pane .section:first-child {
  2008. border-top: none !important;
  2009. }
  2010. .styles-section.first-styles-section,
  2011. .sidebar-separator + .styles-section {
  2012. border-top: none !important;
  2013. }
  2014. .sidebar-separator {
  2015. background: #111 !important;
  2016. border-top: 1px solid #2e3c43 !important;
  2017. color: #b1bdc4 !important;
  2018. text-shadow: none !important;
  2019. border-top: none !important;
  2020. border-bottom: none !important;
  2021. }
  2022. /*-- PSEUDO STATE DISPLAY --*/
  2023. .styles-element-state-pane {
  2024. background: #313131 !important;
  2025. padding: 4px 0 !important;
  2026. border-bottom: 1px solid #2e3c43 !important;
  2027. }
  2028. .styles-element-state-pane.expanded {
  2029. margin-top: 0 !important;
  2030. }
  2031. .sidebar-pane-stack .event-category,
  2032. .sidebar-pane .section,
  2033. .events-pane > ol > li.parent {
  2034. border-top: 1px solid #343434 !important;
  2035. border-bottom: 1px solid #101010 !important;
  2036. margin-top: 0 !important;
  2037. }
  2038. /**********************************************
  2039. /* Resources & Sources Sidebar
  2040. /**********************************************/
  2041. .panel:not(.elements):not(.console) {
  2042. /*-- currently selected element --*/
  2043. }
  2044. .panel:not(.elements):not(.console) .base-storage-tree-element-title,
  2045. .panel:not(.elements):not(.console) .base-storage-tree-element-subtitle,
  2046. .panel:not(.elements):not(.console) .base-navigator-tree-element-title {
  2047. color: #b1bdc4 !important;
  2048. top: 0 !important;
  2049. }
  2050. .panel:not(.elements):not(.console) .selected .base-storage-tree-element-title,
  2051. .panel:not(.elements):not(.console) .selected .base-storage-tree-element-subtitle,
  2052. .panel:not(.elements):not(.console) .selected .base-navigator-tree-element-title {
  2053. color: #e6e6e6 !important;
  2054. text-shadow: none !important;
  2055. }
  2056. .panel:not(.elements):not(.console) .sidebar li {
  2057. color: #b1bdc4 !important;
  2058. }
  2059. .panel:not(.elements):not(.console) .outline-disclosure li.selected .selection {
  2060. background: #3e4c58 !important;
  2061. color: #e6e6e6 !important;
  2062. border-top: 1px solid #2e3c43 !important;
  2063. border-bottom: 1px solid #2e3c43 !important;
  2064. margin-top: -1px !important;
  2065. }
  2066. .panel:not(.elements):not(.console) .outline-disclosure li:hover:not(.selected) .selection,
  2067. .panel:not(.elements):not(.console) .outline-disclosure li.hovered:not(.selected) .selection {
  2068. display: block !important;
  2069. background: #282e35 !important;
  2070. border-top: 1px solid #282e35 !important;
  2071. border-bottom: 1px solid #282e35 !important;
  2072. margin-top: -1px !important;
  2073. height: 18px !important;
  2074. border-radius: 0 !important;
  2075. }
  2076. .panel:not(.elements):not(.console) .outline-disclosure ol:focus li.selected .selection {
  2077. background: #3e4c58 !important;
  2078. color: #e6e6e6 !important;
  2079. border-top: 1px solid #2e3c43 !important;
  2080. border-bottom: 1px solid #2e3c43 !important;
  2081. margin-top: -1px !important;
  2082. text-shadow: none !important;
  2083. }
  2084. .panel:not(.elements):not(.console) .sidebar-overlay {
  2085. border-right: 1px solid #2a2a2a !important;
  2086. box-shadow: #141414 5px 0px 22px 3px !important;
  2087. }
  2088. .sidebar li.selected .selection {
  2089. background-image: none !important;
  2090. border: none !important;
  2091. }
  2092. /************************************************
  2093. /* Status bar
  2094. /************************************************/
  2095. select.status-bar-item,
  2096. select.status-bar-item:hover,
  2097. ::shadow select.status-bar-item,
  2098. .toolbar::shadow select.toolbar-item,
  2099. .toolbar::shadow select.toolbar-item:hover,
  2100. ::shadow .toolbar::shadow select.toolbar-item {
  2101. color: #b1bdc4 !important;
  2102. text-shadow: none !important;
  2103. border-left: 1px solid #2e3c43 !important;
  2104. border-right: 1px solid #2e3c43 !important;
  2105. background: inherit !important;
  2106. border-top: none !important;
  2107. border-bottom: none !important;
  2108. }
  2109. select.status-bar-item option,
  2110. .toolbar::shadow select.toolbar-item option {
  2111. background-color: #222 !important;
  2112. }
  2113. .status-bar-items {
  2114. border-left: none !important;
  2115. }
  2116. /*text color of status bar labels */
  2117. .status-bar label[for=search-replace-trigger],
  2118. #bottom-status-bar-container .type,
  2119. #bottom-status-bar-container .timeline-records-stats,
  2120. .source-frame-cursor-position,
  2121. .search-status-bar-summary .search-message,
  2122. .search-results-status-bar-message,
  2123. ::shadow .search-status-bar-summary .search-message {
  2124. text-shadow: none !important;
  2125. color: #b1bdc4 !important;
  2126. }
  2127. /*-- GLYPHS --*/
  2128. button.scripts-step-over .glyph .toggled-on .long-click-glyph,
  2129. button.scripts-step-into .glyph .toggled-on .long-click-glyph,
  2130. button.scripts-step-out .glyph .toggled-on .long-click-glyph,
  2131. .filters-toggle.toggled-active .glyph .toggled-on .long-click-glyph,
  2132. button.status-bar-item.toggled-on .glyph .toggled-on .long-click-glyph,
  2133. button.status-bar-item.toggled-on .glyph:not(.shadow) .toggled-on .long-click-glyph,
  2134. button.clear-status-bar-item:active .glyph .toggled-on .long-click-glyph,
  2135. button.garbage-collect-status-bar-item:active .glyph .toggled-on .long-click-glyph,
  2136. button.glue-async-status-bar-item:active .glyph .toggled-on .long-click-glyph,
  2137. .filters-toggle.toggled-shown .glyph .toggled-on .long-click-glyph,
  2138. ::shadow .toggled-on .long-click-glyph {
  2139. background-color: #80cbc4 !important;
  2140. }
  2141. button.scripts-step-over .glyph .long-click-glyph,
  2142. button.scripts-step-into .glyph .long-click-glyph,
  2143. button.scripts-step-out .glyph .long-click-glyph,
  2144. .filters-toggle.toggled-active .glyph .long-click-glyph,
  2145. button.status-bar-item.toggled-on .glyph .long-click-glyph,
  2146. button.status-bar-item.toggled-on .glyph:not(.shadow) .long-click-glyph,
  2147. button.clear-status-bar-item:active .glyph .long-click-glyph,
  2148. button.garbage-collect-status-bar-item:active .glyph .long-click-glyph,
  2149. button.glue-async-status-bar-item:active .glyph .long-click-glyph,
  2150. .filters-toggle.toggled-shown .glyph .long-click-glyph,
  2151. ::shadow .long-click-glyph {
  2152. background-color: #b1bdc4 !important;
  2153. }
  2154. .toolbar-background button.status-bar-item .glyph,
  2155. .toolbar-background button.status-bar-item .long-click-glyph {
  2156. background-color: #b1bdc4 !important;
  2157. }
  2158. #scripts-debugger-status {
  2159. color: #80cbc4 !important;
  2160. }
  2161. button.scripts-step-over:disabled .glyph,
  2162. button.scripts-step-into:disabled .glyph,
  2163. button.scripts-step-out:disabled .glyph {
  2164. background-color: #222 !important;
  2165. }
  2166. .sources-status-bar,
  2167. .panel-status-bar,
  2168. .resources-status-bar .status-bar,
  2169. .overrides-footer,
  2170. .status-bar,
  2171. ::shadow .search-bar {
  2172. background: #111 !important;
  2173. border-top: 1px solid #2e3c43 !important;
  2174. border-top: none!important;
  2175. color: #b1bdc4 !important;
  2176. }
  2177. .checkbox-filter-checkbox,
  2178. label.checkbox,
  2179. .checkbox-filter-checkbox-check,
  2180. .filter-checkbox-filter .type,
  2181. #text-filter-regex + label {
  2182. color: #b1bdc4 !important;
  2183. }
  2184. .checkbox-filter-checkbox {
  2185. background: #fff !important;
  2186. }
  2187. .filter-bitset-filter li {
  2188. padding: 2px 6px !important;
  2189. margin: auto 2px !important;
  2190. border-radius: 8px !important;
  2191. }
  2192. .status-bar-select-arrow {
  2193. position: relative !important;
  2194. right: 5px !important;
  2195. }
  2196. .event-listener-breakpoints .checkbox-elem {
  2197. top: 0 !important;
  2198. }
  2199. .save-device-button,
  2200. .remove-device-button {
  2201. background: #111 !important;
  2202. color: #cdd3de !important;
  2203. border: none !important;
  2204. border-radius: 3px !important;
  2205. cursor: pointer !important;
  2206. box-shadow: none !important;
  2207. text-shadow: none !important;
  2208. }
  2209. .save-device-button:disabled,
  2210. .remove-device-button:disabled {
  2211. cursor: default !important;
  2212. opacity: 0.3 !important;
  2213. }
  2214. .save-device-button:not(:disabled):active,
  2215. .remove-device-button:not(:disabled):active {
  2216. box-shadow: inset 0 1px 1px 0 #151515, 0 1px 1px 0 #6f6f6f !important;
  2217. }
  2218. /**********************************************
  2219. /* Suggest Box
  2220. /**********************************************/
  2221. .suggest-box {
  2222. color: #000 !important;
  2223. background-color: #222 !important;
  2224. border: 2px rgba(0, 0, 0, 0.2) solid !important;
  2225. box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.1) !important;
  2226. }
  2227. .suggest-box-content-item.source-code:hover {
  2228. background-color: #282e35 !important;
  2229. border: 1px solid #b1bdc4 !important;
  2230. }
  2231. .suggest-box-content-item.source-code.selected {
  2232. background-color: #282e35 !important;
  2233. }
  2234. .suggest-box .source-code .prefix {
  2235. color: #80cbc4 !important;
  2236. }
  2237. .suggest-box .source-code .suffix {
  2238. color: #d9d9d9 !important;
  2239. }
  2240. /**********************************************
  2241. /* Code Highlighting
  2242. /**********************************************/
  2243. .cm-js-atom {
  2244. color: #80cbc4 !important;
  2245. }
  2246. .cm-js-attribute {
  2247. color: #4e87bf !important;
  2248. }
  2249. .cm-js-builtin {
  2250. color: #8da6ce !important;
  2251. }
  2252. .cm-js-comment {
  2253. color: #546e7a !important;
  2254. font-style: italic;
  2255. }
  2256. .cm-js-def {
  2257. color: #c792ea !important;
  2258. font-weight: 600;
  2259. }
  2260. .cm-js-error {
  2261. background: #9D1E15 !important;
  2262. color: #f8f8f8 !important;
  2263. }
  2264. .cm-js-header {
  2265. color: #ff6400 !important;
  2266. }
  2267. .cm-js-hr {
  2268. color: #aeaeae !important;
  2269. }
  2270. .cm-js-keyword {
  2271. color: #c792ea !important;
  2272. font-style: italic;
  2273. }
  2274. .cm-js-link {
  2275. color: #8da6ce !important;
  2276. }
  2277. .cm-js-meta {
  2278. color: #d8fa3c !important;
  2279. }
  2280. .cm-js-number,
  2281. .section .properties .number,
  2282. .event-properties .number {
  2283. color: #80cbc4 !important;
  2284. }
  2285. .cm-js-operator {
  2286. color: #c3e88b !important;
  2287. }
  2288. .cm-js-property {
  2289. color: #76aeff !important;
  2290. }
  2291. .cm-js-string {
  2292. color: #c792ea !important;
  2293. }
  2294. .cm-js-string-2 {
  2295. color: #c792ea !important;
  2296. }
  2297. .cm-js-tag {
  2298. color: #929ba2 !important;
  2299. }
  2300. .cm-js-variable {
  2301. color: #80cbc4 !important;
  2302. }
  2303. .cm-js-variable-2 {
  2304. color: #ffcb6b !important;
  2305. }
  2306. .source-frame-eval-expression {
  2307. background-color: #3e4c58 !important;
  2308. border-color: #2e3c43 !important;
  2309. }
  2310. .cm-atom {
  2311. color: #80cbc4 !important;
  2312. }
  2313. .cm-comment {
  2314. color: #546e7a !important;
  2315. font-style: italic;
  2316. }
  2317. .cm-variable {
  2318. color: #b1bdc4 !important;
  2319. }
  2320. .cm-string {
  2321. color: #c792ea !important;
  2322. }
  2323. .cm-keyword {
  2324. color: #fbe793 !important;
  2325. font-style: italic;
  2326. }
  2327. .cm-number {
  2328. color: #80cbc4 !important;
  2329. }
  2330. .cm-operator {
  2331. color: #80cbc4 !important;
  2332. }
  2333. .cm-error {
  2334. background: #9D1E15 !important;
  2335. color: #f8f8f8 !important;
  2336. }
  2337. .cm-s-default .cm-property {
  2338. color: #b1bdc4 !important;
  2339. }
  2340. /*--CSS--*/
  2341. .cm-css-atom {
  2342. color: #80cbc4 !important;
  2343. }
  2344. .cm-css-builtin {
  2345. color: #fad431 !important;
  2346. }
  2347. .cm-css-def {
  2348. color: #fad431 !important;
  2349. }
  2350. .cm-css-comment {
  2351. color: #546e7a !important;
  2352. font-style: italic;
  2353. }
  2354. .cm-css-meta {
  2355. color: #fbe793 !important;
  2356. }
  2357. .cm-css-number {
  2358. color: #fb516d !important;
  2359. }
  2360. .cm-css-operator {
  2361. color: #fad431 !important;
  2362. }
  2363. .cm-css-property {
  2364. color: #fad431 !important;
  2365. }
  2366. .cm-css-qualifier {
  2367. color: #fad431 !important;
  2368. }
  2369. .cm-css-string {
  2370. color: #c792ea !important;
  2371. }
  2372. .cm-css-string-2 {
  2373. color: #80cbc4 !important;
  2374. }
  2375. .cm-css-tag {
  2376. color: #fad431 !important;
  2377. }
  2378. .cm-css-variable {
  2379. color: #fad431 !important;
  2380. }
  2381. .cm-css-variable-2 {
  2382. color: #fad431 !important;
  2383. }
  2384. /*--HTML--*/
  2385. .cm-xml-comment {
  2386. color: #6c6c6c !important;
  2387. font-style: italic !important;
  2388. }
  2389. .cm-xml-error {
  2390. color: #bf4c4c !important;
  2391. }
  2392. .cm-xml-string {
  2393. color: #fbe793 !important;
  2394. }
  2395. .cm-xml-tag {
  2396. color: #929ba2 !important;
  2397. }
  2398. .cm-xml-attribute {
  2399. color: #80cbc4 !important;
  2400. }
  2401. .cm-xml-link {
  2402. color: #c792ea !important;
  2403. }
  2404. ::shadow .webkit-html-fragment {
  2405. color: #ddbb00 !important;
  2406. }
  2407. .outline-disclosure ol li .highlight {
  2408. color: #ddbb00 !important;
  2409. }
  2410. /*--GLOBAL--*/
  2411. .CodeMirror-code {
  2412. color: #b1bdc4;
  2413. }
  2414. /**********************************************
  2415. /* Code Highlighting [WEBKIT]
  2416. /**********************************************/
  2417. .cm-js-atom {
  2418. color: #89f5a2 !important;
  2419. }
  2420. .cm-js-attribute {
  2421. color: #4e87bf !important;
  2422. }
  2423. .cm-js-builtin {
  2424. color: #8da6ce !important;
  2425. }
  2426. .cm-js-comment {
  2427. color: #676767 !important;
  2428. font-style: italic;
  2429. }
  2430. .cm-js-def {
  2431. color: #49a6d2 !important;
  2432. }
  2433. .cm-js-error {
  2434. background: #9D1E15 !important;
  2435. color: #f8f8f8 !important;
  2436. }
  2437. .cm-js-header {
  2438. color: #ff6400 !important;
  2439. }
  2440. .cm-js-hr {
  2441. color: #aeaeae !important;
  2442. }
  2443. .cm-js-keyword {
  2444. color: #8b6ccf !important;
  2445. font-style: italic;
  2446. }
  2447. .cm-js-link {
  2448. color: #8da6ce !important;
  2449. }
  2450. .cm-js-meta {
  2451. color: #d8fa3c !important;
  2452. }
  2453. .cm-js-number {
  2454. color: #89f5a2 !important;
  2455. }
  2456. .cm-js-operator {
  2457. color: #cdb943 !important;
  2458. }
  2459. .cm-js-property {
  2460. color: #cdb943 !important;
  2461. }
  2462. .cm-js-string {
  2463. color: #f07b3c !important;
  2464. }
  2465. .cm-js-string-2 {
  2466. color: #f07b3c !important;
  2467. }
  2468. .cm-js-tag {
  2469. color: #49a6d2 !important;
  2470. }
  2471. .cm-js-variable {
  2472. color: #EDDFAF !important;
  2473. }
  2474. .cm-js-variable-2 {
  2475. color: #EDDFAF !important;
  2476. }
  2477. .source-frame-eval-expression {
  2478. background-color: #424242 !important;
  2479. border-color: #686868 !important;
  2480. }
  2481. .cm-atom {
  2482. color: #89f5a2 !important;
  2483. }
  2484. .cm-comment {
  2485. color: #676767 !important;
  2486. font-style: italic;
  2487. }
  2488. .cm-variable {
  2489. color: #EDDFAF !important;
  2490. }
  2491. .cm-string {
  2492. color: #f07b3c !important;
  2493. }
  2494. .cm-keyword {
  2495. color: #8b6ccf !important;
  2496. font-style: italic;
  2497. }
  2498. .cm-number {
  2499. color: #89f5a2 !important;
  2500. }
  2501. .cm-operator {
  2502. color: #cdb943 !important;
  2503. }
  2504. .cm-error {
  2505. background: #9D1E15 !important;
  2506. color: #f8f8f8 !important;
  2507. }
  2508. .cm-s-default .cm-property {
  2509. color: #EDDFAF !important;
  2510. }
  2511. .cm-css-atom {
  2512. color: #EDDFAF !important;
  2513. }
  2514. .cm-css-builtin {
  2515. color: #ff9635 !important;
  2516. }
  2517. .cm-css-def {
  2518. color: #ff9635 !important;
  2519. }
  2520. .cm-css-comment {
  2521. color: #676767 !important;
  2522. font-style: italic;
  2523. }
  2524. .cm-css-meta {
  2525. color: #EDBF82 !important;
  2526. }
  2527. .cm-css-number {
  2528. color: #EDDFAF !important;
  2529. }
  2530. .cm-css-operator {
  2531. color: #EDDFAF !important;
  2532. }
  2533. .cm-css-property {
  2534. color: #EDBF82 !important;
  2535. }
  2536. .cm-css-qualifier {
  2537. color: #ff9635 !important;
  2538. }
  2539. .cm-css-string {
  2540. color: #e3b959 !important;
  2541. }
  2542. .cm-css-string-2 {
  2543. color: #EDDFAF !important;
  2544. }
  2545. .cm-css-tag {
  2546. color: #ff9635 !important;
  2547. }
  2548. .cm-css-variable {
  2549. color: #ff9635 !important;
  2550. }
  2551. .cm-css-variable-2 {
  2552. color: #ff9635 !important;
  2553. }
  2554. .cm-xml-comment {
  2555. color: #969896 !important;
  2556. font-style: italic !important;
  2557. }
  2558. .cm-xml-error {
  2559. color: #bf4c4c !important;
  2560. }
  2561. .cm-xml-string {
  2562. color: #b9ca4a !important;
  2563. }
  2564. .cm-xml-tag {
  2565. color: #d54e53 !important;
  2566. }
  2567. .cm-xml-attribute {
  2568. color: #e78c45 !important;
  2569. }
  2570. .cm-xml-link {
  2571. color: #7aa6da !important;
  2572. }
  2573. .shadow-root .webkit-html-fragment.shadow-root {
  2574. color: #ddbb00 !important;
  2575. }
  2576. .outline-disclosure ol li .highlight {
  2577. color: #ddbb00 !important;
  2578. }
  2579. .CodeMirror-code {
  2580. color: #EDDFAF;
  2581. }
  2582. .webkit-html-attribute-name {
  2583. color: #90BDE8 !important;
  2584. }
  2585. .webkit-html-attribute-value {
  2586. color: #76BA53 !important;
  2587. }
  2588. .webkit-html-comment {
  2589. color: #969896 !important;
  2590. font-style: italic;
  2591. }
  2592. .webkit-html-resource-link,
  2593. .webkit-html-external-link {
  2594. color: #EA9C77 !important;
  2595. text-decoration: none !important;
  2596. }
  2597. .webkit-line-gutter-backdrop + table .webkit-html-external-link {
  2598. color: #d33682 !important; }
  2599. .webkit-html-tag,
  2600. .webkit-html-tag-name {
  2601. color: #4B9CE9 !important;
  2602. }
  2603. .webkit-html-text-node,
  2604. .webkit-html-css-node,
  2605. .webkit-html-js-node {
  2606. color: #85b7f1 !important;
  2607. }
  2608. .webkit-html-pseudo-element {
  2609. color: #c3d7ee !important;
  2610. }
  2611. .selector-matches {
  2612. color: #ff9635 !important;
  2613. }
  2614. .webkit-css-selector {
  2615. color: #ff9635 !important;
  2616. }
  2617. .webkit-css-at-rule {
  2618. color: #b094bb !important;
  2619. }
  2620. .webkit-css-color {
  2621. color: #ff9635 !important;
  2622. }
  2623. .webkit-css-comment {
  2624. color: #676767 !important;
  2625. }
  2626. .webkit-css-important {
  2627. color: #ff0000 !important;
  2628. }
  2629. .webkit-css-keyword {
  2630. color: #EA9C77 !important;
  2631. }
  2632. .webkit-css-number {
  2633. color: #EDDFAF !important;
  2634. }
  2635. .webkit-css-property,
  2636. .styles-section .properties > li .webkit-css-property {
  2637. color: #EDBF82 !important;
  2638. font-weight: 400;
  2639. }
  2640. .webkit-css-string {
  2641. color: #e3b959 !important;
  2642. }
  2643. .webkit-css-url {
  2644. color: #7aa6da !important;
  2645. }
  2646. .section .properties .name,
  2647. .event-properties .name,
  2648. .console-formatted-object .name {
  2649. color: #77a8c6 !important;
  2650. }
  2651. .console-formatted-object,
  2652. .console-formatted-array {
  2653. color: #7c7c7c !important;
  2654. }
  2655. .console-formatted-function {
  2656. color: #8b6ccf !important;
  2657. }
  2658. .console-formatted-number {
  2659. color: #89f5a2 !important;
  2660. }
  2661. .console-formatted-boolean {
  2662. color: #89f5a2 !important;
  2663. }
  2664. .console-object-preview {
  2665. color: #dddddd !important;
  2666. }
  2667. .console-formatted-regexp {
  2668. color: #ff54e8 !important;
  2669. }
  2670. .console-formatted-string {
  2671. color: #ff8737 !important;
  2672. }
  2673. .console-formatted-undefined {
  2674. color: #ad4e4e !important;
  2675. }
  2676. .json .title {
  2677. color: #EDDFAF !important;
  2678. }
  2679. .json .separator {
  2680. color: #919191 !important;
  2681. }
  2682. /**********************************************/
  2683. /* Tables
  2684. /**********************************************/
  2685. .data-grid {
  2686. border: 1px solid #151515 !important;
  2687. background-color: transparent !important;
  2688. background-image: none !important;
  2689. }
  2690. .data-grid th,
  2691. .data-grid .data {
  2692. background: none !important;
  2693. border-left: 1px solid #2e3c43 !important;
  2694. }
  2695. .data-grid .header {
  2696. background: #111 !important;
  2697. border-top: 1px solid #2e3c43 !important;
  2698. }
  2699. .data-grid .header th {
  2700. color: #80cbc4 !important;
  2701. }
  2702. .data-grid .header .key-column,
  2703. .data-grid .header .value-column {
  2704. border: none !important;
  2705. }
  2706. .data-grid td {
  2707. border-left: 1px solid #282828 !important;
  2708. }
  2709. .data-grid .data-container a {
  2710. text-decoration: none;
  2711. color: #c792ea !important;
  2712. }
  2713. .data-grid .data-container tr:nth-child(odd) {
  2714. background-color: #222 !important;
  2715. }
  2716. .data-grid .data-container tr:nth-child(even) {
  2717. background-color: #282e35 !important;
  2718. }
  2719. .data-grid .data-container tr:not(.selected):not(.filler):hover {
  2720. background-color: #282e35 !important;
  2721. outline: 1px solid #414141 !important;
  2722. }
  2723. .data-grid .data-container tr.selected {
  2724. background-color: #3e4c58 !important;
  2725. outline: 1px solid #2e3c43 !important;
  2726. }
  2727. .data-grid .data-container tr .editing * {
  2728. color: #FFF !important;
  2729. background-color: #222 !important;
  2730. }
  2731. /***********************/
  2732. /* Tabbed Panes
  2733. /***********************/
  2734. .tabbed-pane:not(.help-window-main) .tabbed-pane-header {
  2735. background: #111 !important;
  2736. border-top: 1px solid #2e3c43 !important;
  2737. border-bottom: none;
  2738. }
  2739. .tabbed-pane:not(.help-window-main) .tabbed-pane-header .tabbed-pane-header-tab {
  2740. border-top: 2px solid #b1bdc4 !important;
  2741. border-left: none !important;
  2742. border-right: none !important;
  2743. padding: 2px 7px !important;
  2744. margin: 0 !important;
  2745. margin-top: 0 !important;
  2746. margin-bottom: 1px !important;
  2747. border-color: transparent !important;
  2748. }
  2749. .tabbed-pane:not(.help-window-main) .tabbed-pane-header .tabbed-pane-header-tab:hover {
  2750. color: #f8f8f8 !important;
  2751. }
  2752. .tabbed-pane:not(.help-window-main) .tabbed-pane-header .tabbed-pane-header-tab.selected {
  2753. background: none !important;
  2754. border-top: 2px solid #80cbc4 !important;
  2755. color: #f8f8f8 !important;
  2756. font-size: 1em;
  2757. }
  2758. .tabbed-pane:not(.help-window-main) .tabbed-pane-header .editor-container-unsaved-committed-changes-icon + .tabbed-pane-header-tab-title {
  2759. color: #ddbb00;
  2760. }
  2761. .tabbed-pane:not(.help-window-main) .tabbed-pane-header .tabbed-pane-header-contents {
  2762. color: #999999 !important;
  2763. }
  2764. .tabbed-pane:not(.help-window-main) .tabbed-pane-header .tabbed-pane-header-tab-title {
  2765. line-height: 16px !important;
  2766. }
  2767. .tabbed-pane:not(.help-window-main) .overrides-view .tabbed-pane-header-tab {
  2768. border-top: none !important;
  2769. margin-left: 6px !important;
  2770. }
  2771. .tabbed-pane:not(.help-window-main) .overrides-view .tabbed-pane-header-tab.selected {
  2772. border-top: none !important;
  2773. border-left: 6px solid #80cbc4 !important;
  2774. margin-left: 0 !important;
  2775. }
  2776. .tabbed-pane-content not(.overrides-view) .tabbed-pane-header {
  2777. flex: 0 0 25px !important;
  2778. }
  2779. .tabbed-pane-content not(.overrides-view) .tabbed-pane-header .tabbed-pane-header-tab {
  2780. height: 25px !important;
  2781. line-height: 18.75px !important;
  2782. cursor: pointer !important;
  2783. }
  2784. #drawer-contents .tabbed-pane-header,
  2785. .inactive #drawer-contents .tabbed-pane-header {
  2786. border-top: none !important;
  2787. border-bottom: #b1bdc4 !important;
  2788. }
  2789. .tabbed-pane-tab-slider,
  2790. ::shadow .tabbed-pane-tab-slider {
  2791. display: none !important;
  2792. }
  2793. body .toolbar-background,
  2794. body.undocked.platform-mac-mountain-lion.inactive .toolbar-background,
  2795. body.undocked.platform-mac-mountain-lion .toolbar-background,
  2796. body.platform-mac-mountain-lion.inactive .toolbar-background,
  2797. body.platform-mac-mountain-lion .toolbar-background,
  2798. body.undocked.platform-mac.inactive .toolbar-background,
  2799. body.undocked.platform-mac .toolbar-background,
  2800. body.inactive .toolbar-background,
  2801. body:not(.undocked) .toolbar-background {
  2802. background: #111 !important;
  2803. border-top: 1px solid #2e3c43 !important;
  2804. border-bottom: none !important;
  2805. }
  2806. select.tabbed-pane-header-tabs-drop-down-select {
  2807. background-color: #222 !important;
  2808. color: #b1bdc4 !important;
  2809. }
  2810. .toolbar .tabbed-pane-header .tabbed-pane-header-tab {
  2811. height: 34px !important;
  2812. line-height: 25.5px !important;
  2813. padding: 2px 4px !important;
  2814. cursor: pointer !important;
  2815. border-image: none !important;
  2816. }
  2817. .toolbar .tabbed-pane-header .tabbed-pane-header-tabs-drop-down {
  2818. line-height: 30.6px;
  2819. }
  2820. .toolbar .toolbar-controls-left,
  2821. .toolbar .toolbar-controls-right {
  2822. padding-top: 6px !important;
  2823. border-bottom: 1px solid #2e3c43 !important;
  2824. }
  2825. #network-views .network-item-view .tabbed-pane-header {
  2826. padding-top: 0 !important;
  2827. }
  2828. #network-views .network-item-view .tabbed-pane-header .tabbed-pane-header-tab {
  2829. height: 31px !important;
  2830. }
  2831. #network-views .network-item-view .tabbed-pane-header .tabbed-pane-header-tab-title {
  2832. line-height: 21px !important;
  2833. }
  2834. #network-views.small .network-item-view .tabbed-pane-header .tabbed-pane-header-tab-title {
  2835. line-height: 12px !important;
  2836. }
  2837. .tabbed-pane-header-tabs-drop-down {
  2838. color: #999 !important;
  2839. }
  2840. .split-view.hbox > .split-view-sidebar.split-view-contents-second:not(.maximized) {
  2841. border-left: 2px solid #2e3c43 !important;
  2842. }
  2843. .split-view.hbox > .split-view-sidebar.split-view-contents-first:not(.maximized) {
  2844. border-right: 2px solid #2e3c43 !important;
  2845. }
  2846. .tabbed-pane-header-tab {
  2847. width: auto !important;
  2848. }
  2849. .filter-bitset-filter li,
  2850. .filter-bitset-filter li.selected,
  2851. .filter-bitset-filter li:hover,
  2852. .filter-bitset-filter li:active {
  2853. text-shadow: 0 0 0 #b1bdc4 !important;
  2854. color: #b1bdc4 !important;
  2855. }
  2856. .filter-bitset-filter li:hover {
  2857. background: #2e3c43 !important;
  2858. }
  2859. .filter-bitset-filter li.selected {
  2860. color: #f2f2f2 !important;
  2861. background: #282e35 !important;
  2862. }
  2863. .filter-bitset-filter li.selected.error {
  2864. background: #ff5a5a !important;
  2865. }
  2866. .filter-bitset-filter li.selected.warning {
  2867. background: #ddbb00 !important;
  2868. }
  2869. .filter-bitset-filter li.selected.info {
  2870. background: #80cbc4 !important;
  2871. }
  2872. .filter-bitset-filter li.selected.log {
  2873. background: #929ba2 !important;
  2874. }
  2875. .filter-bitset-filter li.selected.debug {
  2876. background: #fc844c !important;
  2877. }
  2878. .network-filters-header,
  2879. .console-filters-header,
  2880. .timeline-filters-header {
  2881. background: #2e3c43;
  2882. }
  2883. /*separator between all | rest of options*/
  2884. .filter-bitset-filter-divider {
  2885. background-color: #2e3c43 !important;
  2886. }
  2887. .status-bar-counter,
  2888. body .inspector-view-toolbar.status-bar::shadow .status-bar-item {
  2889. color: #b1bdc4 !important;
  2890. }
  2891. .status-bar-counter:hover {
  2892. border-bottom: none !important;
  2893. }
  2894. .tabbed-pane-header-tabs-drop-down > select.drop-down-menu option {
  2895. background-color: #222 !important;
  2896. color: #b1bdc4 !important;
  2897. }
  2898. .overrides-splash-screen {
  2899. color: #b1bdc4 !important;
  2900. }
  2901. .overrides-splash-screen .glyph {
  2902. background-color: #b1bdc4 !important;
  2903. }
  2904. .tabbed-pane-header-tab.overrides-activate .tabbed-pane-header-tab-title::after {
  2905. color: #80cbc4 !important;
  2906. }
  2907. ::shadow .shadow-split-view.hbox.shadow-split-view-first-is-sidebar > .shadow-split-view-sidebar:not(.maximized) {
  2908. border-right: 2px solid #2e3c43 !important;
  2909. }
  2910. ::shadow .shadow-split-view.hbox > .shadow-split-view-sidebar:not(.maximized) {
  2911. border-left: 2px solid #2e3c43 !important;
  2912. }
  2913. ::shadow .shadow-split-view.vbox > .shadow-split-view-resizer > .shadow-split-view-resizer-border {
  2914. border-top: none !important;
  2915. }
  2916. ::shadow .status-bar-item > .glyph,
  2917. ::shadow .shadow-split-view button.sidebar-show-hide-button {
  2918. background-color: #b1bdc4 !important;
  2919. }
  2920. ::shadow .status-bar-item[disabled] {
  2921. opacity: 0.5 !important;
  2922. }
  2923. ::shadow button.status-bar-item.toggled-on .glyph,
  2924. ::shadow .filter-status-bar-item.toggled-shown .glyph,
  2925. ::shadow button.status-bar-item:not([disabled]):active .glyph {
  2926. background-color: #80cbc4 !important;
  2927. }
  2928. @-webkit-keyframes fadeout-revised {
  2929. 0% {
  2930. background-color: #3e4c58;
  2931. }
  2932. 50% {
  2933. background-color: #3e4c58;
  2934. }
  2935. 100% {
  2936. background-color: #263238;
  2937. outline: 1px solid #263238;
  2938. }
  2939. }
  2940. body ::shadow .editing {
  2941. background-color: #222 !important;
  2942. outline: 1px solid #80cbc4 !important;
  2943. color: #b1bdc4 !important;
  2944. }
  2945. body ::shadow .CodeMirror {
  2946. outline: none !important;
  2947. border: 1px solid #2e3c43 !important;
  2948. border-radius: 5px;
  2949. box-shadow: inset 0 0 15px 0 rgba(17, 17, 17, 0.6) !important;
  2950. margin: 10px 0;
  2951. padding: 10px 0 0 10px !important;
  2952. color: #b1bdc4 !important;
  2953. }
  2954. body ::shadow ::-webkit-scrollbar,
  2955. body ::shadow .CodeMirror-scrollbar-filler,
  2956. body ::shadow .CodeMirror-gutter-filler {
  2957. width: 12px !important;
  2958. height: 12px !important;
  2959. background-color: #222 !important;
  2960. }
  2961. body ::shadow ::-webkit-scrollbar-track:horizontal,
  2962. body ::shadow .custom-popup-horizontal-scroll ::-webkit-scrollbar-track:horizontal,
  2963. body ::shadow .custom-popup-vertical-scroll ::-webkit-scrollbar-track:horizontal,
  2964. body ::shadow .custom-popup-vertical-scroll .custom-popup-horizontal-scroll ::-webkit-scrollbar-track:horizontal,
  2965. body ::shadow .custom-popup-horizontal-scroll .custom-popup-vertical-scroll ::-webkit-scrollbar-track:horizontal {
  2966. -webkit-box-shadow: none !important;
  2967. background: #282e35 !important;
  2968. }
  2969. body ::shadow ::-webkit-scrollbar-track:vertical,
  2970. body ::shadow .custom-popup-horizontal-scroll ::-webkit-scrollbar-track:vertical,
  2971. body ::shadow .custom-popup-vertical-scroll ::-webkit-scrollbar-track:vertical,
  2972. body ::shadow .custom-popup-vertical-scroll .custom-popup-horizontal-scroll ::-webkit-scrollbar-track:vertical,
  2973. body ::shadow .custom-popup-horizontal-scroll .custom-popup-vertical-scroll ::-webkit-scrollbar-track:vertical {
  2974. -webkit-box-shadow: none !important;
  2975. background: #282e35 !important;
  2976. }
  2977. body ::shadow ::-webkit-scrollbar-corner,
  2978. body ::shadow .CodeMirror-scrollbar-filler,
  2979. body ::shadow .CodeMirror-gutter-filler {
  2980. -webkit-box-shadow: none !important;
  2981. background: #282e35 !important;
  2982. }
  2983. body ::shadow ::-webkit-scrollbar-thumb {
  2984. border-radius: 0px !important;
  2985. background-color: #222 !important;
  2986. border: none !important;
  2987. }
  2988. body ::shadow ::-webkit-scrollbar-thumb:horizontal {
  2989. -webkit-box-shadow: none !important;
  2990. }
  2991. body ::shadow ::-webkit-scrollbar-thumb:vertical {
  2992. -webkit-box-shadow: none !important;
  2993. }
  2994. body ::shadow .styles-section.matched-styles .properties li.parent.expanded .expand-element,
  2995. body ::shadow #console-messages .console-group-messages .section.expanded .header::before,
  2996. body ::shadow #console-messages .properties-tree li.parent.expanded::before,
  2997. body ::shadow .outline-disclosure li.parent.expanded::before,
  2998. body ::shadow .properties-tree li.parent.expanded::before,
  2999. body ::shadow .section.expanded > .header::before,
  3000. body ::shadow .section .event-bar.expanded .header::before,
  3001. body ::shadow .sidebar-pane .parent.expanded::before,
  3002. body ::shadow .sidebar-pane-stack .sidebar-pane-title.expanded::before,
  3003. body ::shadow .timeline-expandable-expanded .timeline-expandable-arrow {
  3004. background-color: #8c8c8c !important;
  3005. background-image: none !important;
  3006. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  3007. -webkit-mask-position: -4px -96px !important;
  3008. -webkit-mask-repeat: no-repeat !important;
  3009. -webkit-transition: -webkit-transform 0.1s ease-in-out;
  3010. -webkit-transform: rotate(90deg);
  3011. }
  3012. body ::shadow .sidebar-pane-stack .sidebar-pane-title.expanded::before {
  3013. -webkit-transform: rotate(90deg) translateX(2px);
  3014. }
  3015. body ::shadow .styles-section.matched-styles .properties li.parent .expand-element,
  3016. body ::shadow #console-messages .console-group-messages .section .header::before,
  3017. body ::shadow #console-messages .properties-tree li.parent::before,
  3018. body ::shadow .outline-disclosure li.parent::before,
  3019. body ::shadow #search-results-pane-file-based .parent::before,
  3020. body ::shadow .properties-tree li.parent::before,
  3021. body ::shadow .section > .header::before,
  3022. body ::shadow .section .event-bar .header::before,
  3023. body ::shadow .sidebar-pane .parent::before,
  3024. body ::shadow .sidebar-pane-stack .sidebar-pane-title::before,
  3025. body ::shadow .timeline-expandable-collapsed .timeline-expandable-arrow,
  3026. body ::shadow ::shadow #search-results-pane-file-based .parent::before {
  3027. background-color: #8c8c8c !important;
  3028. background-image: none !important;
  3029. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  3030. -webkit-mask-position: -4px -96px !important;
  3031. -webkit-mask-repeat: no-repeat !important;
  3032. -webkit-transition: -webkit-transform 0.1s ease-in-out;
  3033. -webkit-transform: rotate(0deg);
  3034. }
  3035. body ::shadow .data-grid th.sort-ascending > div::after {
  3036. background-color: #8c8c8c !important;
  3037. background-image: none !important;
  3038. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  3039. -webkit-mask-position: -4px -96px !important;
  3040. -webkit-mask-repeat: no-repeat !important;
  3041. -webkit-transition: -webkit-transform 0.1s ease-in-out;
  3042. -webkit-mask-position: -4px -108px !important;
  3043. }
  3044. body ::shadow .data-grid th.sort-descending > div::after {
  3045. background-color: #8c8c8c !important;
  3046. background-image: none !important;
  3047. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  3048. -webkit-mask-position: -4px -96px !important;
  3049. -webkit-mask-repeat: no-repeat !important;
  3050. -webkit-transition: -webkit-transform 0.1s ease-in-out;
  3051. -webkit-mask-position: -20px -96px !important;
  3052. }
  3053. body ::shadow #search-results-pane-file-based .parent.expanded::before,
  3054. body ::shadow ::shadow #search-results-pane-file-based .parent.expanded::before {
  3055. -webkit-mask-position: -20px -96px !important;
  3056. }
  3057. body ::shadow #search-results-pane-file-based .parent.expanded::before,
  3058. body ::shadow ::shadow #search-results-pane-file-based .parent.expanded::before {
  3059. -webkit-mask-position: -20px -93px !important;
  3060. }
  3061. body ::shadow #search-results-pane-file-based .parent::before,
  3062. body ::shadow ::shadow #search-results-pane-file-based .parent::before {
  3063. -webkit-mask-position: -4px -93px !important;
  3064. }
  3065. body ::shadow .panel.network .outline-disclosure li.parent::before {
  3066. top: 3px !important;
  3067. }
  3068. body ::shadow .sidebar-tabbed-pane .section > .header::before,
  3069. body ::shadow .event-bars .event-bar .header::before {
  3070. margin-top: 3px !important;
  3071. }
  3072. body ::shadow .status-bar-select-arrow {
  3073. background-color: #8c8c8c !important;
  3074. background-image: none !important;
  3075. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  3076. -webkit-mask-position: -4px -96px !important;
  3077. -webkit-mask-repeat: no-repeat !important;
  3078. -webkit-transition: -webkit-transform 0.1s ease-in-out;
  3079. -webkit-mask-position: -20px -96px !important;
  3080. }
  3081. body /deep/ .highlighted-search-result {
  3082. color: #000000 !important;
  3083. border-radius: 2px !important;
  3084. font-size: 1em !important;
  3085. background-color: #80cbc4 !important;
  3086. box-shadow: rgba(0, 0, 0, 0.498039) 3px 3px 4px 0px !important;
  3087. }
  3088. .timeline-aggregated-category + span {
  3089. text-shadow: none !important;
  3090. color: #b1bdc4 !important;
  3091. }
  3092. .glyph {
  3093. background-color: rgba(140, 140, 140, 0.7) !important;
  3094. }
  3095. ::shadow .crumbs {
  3096. text-shadow: none !important;
  3097. color: #b1bdc4 !important;
  3098. }
  3099. ::shadow .crumbs .crumb {
  3100. -webkit-border-image: none !important;
  3101. border-left: 1px solid #2e3c43 !important;
  3102. border-right: 1px solid #282e35 !important;
  3103. padding: 0 10px !important;
  3104. margin: 0 !important;
  3105. line-height: 18px !important;
  3106. }
  3107. ::shadow .crumbs .crumb:hover {
  3108. color: #f8f8f8 !important;
  3109. background-color: #b1bdc4 !important;
  3110. }
  3111. ::shadow .crumbs .crumb.selected {
  3112. background-color: #3e4c58 !important;
  3113. text-shadow: none !important;
  3114. color: #f8f8f8 !important;
  3115. cursor: default;
  3116. }
  3117. .image-view .title {
  3118. color: #b1bdc4 !important;
  3119. }
  3120. .image-view .infoList dt {
  3121. color: #626262 !important;
  3122. margin-bottom: 5px !important;
  3123. }
  3124. .image-view .infoList dd {
  3125. color: #b1bdc4 !important;
  3126. margin-bottom: 5px !important;
  3127. }
  3128. .image-view dd > a.undefined {
  3129. color: #c792ea !important;
  3130. }
  3131. .timeline-details-view-body {
  3132. background-color: #222 !important;
  3133. }
  3134. .timeline-details-view-row {
  3135. border-bottom: 1px solid #2e3c43 !important;
  3136. }
  3137. .timeline-details-view-row-value {
  3138. border-left: 1px solid #2e3c43 !important;
  3139. color: #b1bdc4 !important;
  3140. }
  3141. .timeline-details-view-row-title {
  3142. color: #626262 !important;
  3143. }
  3144. .timeline-aggregated-info-legend > div,
  3145. .memory-counter-sidebar-info {
  3146. color: #b1bdc4 !important;
  3147. }
  3148. ::shadow .flame-chart-selected-element {
  3149. border-color: #3e4c58 !important;
  3150. background-color: rgba(54, 76, 59, 0.6) !important;
  3151. }
  3152. .layer-tree.outline-disclosure li,
  3153. .profiler-log-view li {
  3154. color: #b1bdc4 !important;
  3155. }
  3156. .timeline-layers-view-properties table tr td:nth-child(1) {
  3157. color: #626262 !important;
  3158. }
  3159. .timeline-layers-view-properties table tr td:nth-child(2) {
  3160. color: #b1bdc4 !important;
  3161. }
  3162. .timeline-layers-view-properties td {
  3163. border: 1px solid #2e3c43 !important;
  3164. }
  3165. ::shadow .spectrum-display-value,
  3166. ::shadow .spectrum-range-container {
  3167. color: #b1bdc4 !important;
  3168. }
  3169. .toolbar > .status-bar {
  3170. background-color: transparent !important;
  3171. height: inherit !important;
  3172. padding-top: 6px !important;
  3173. border-bottom: 1px solid #2e3c43 !important;
  3174. box-shadow: inset 0 1px 0 #626262 !important;
  3175. }
  3176. .filter-bar.hbox {
  3177. padding: 2px 0;
  3178. }
  3179. ::shadow .toolbar-search-control {
  3180. background-color: #282e35 !important;
  3181. border-color: #2e3c43 !important;
  3182. color: #e6e6e6 !important;
  3183. }
  3184. ::shadow .toolbar-search-control:disabled,
  3185. ::shadow ::shadow .toolbar-search-control:disabled {
  3186. opacity: .3 !important;
  3187. }
  3188. ::shadow .toolbar-search-control:focus,
  3189. ::shadow ::shadow .toolbar-search-control:focus {
  3190. outline-color: none !important;
  3191. }
  3192. ::shadow #search-results-pane-file-based .search-match:hover,
  3193. ::shadow ::shadow #search-results-pane-file-based .search-match:hover {
  3194. box-shadow: inset 0 1px 0 #282e35, inset 0 -1px 0 #282e35 !important;
  3195. background-color: #2e3c43;
  3196. color: #b1bdc4;
  3197. }
  3198. html /deep/ .component-root {
  3199. color: #b1bdc4 !important;
  3200. }
  3201. .filter-input-field {
  3202. background-color: #282e35 !important;
  3203. border-color: #2e3c43 !important;
  3204. color: #e6e6e6 !important;
  3205. }
  3206. .filter-input-field:disabled {
  3207. opacity: .3 !important !important;
  3208. }
  3209. .filter-input-field:focus {
  3210. outline-color: none !important !important;
  3211. }
  3212. ::shadow select.status-bar-item,
  3213. ::shadow .toolbar::shadow select.toolbar-item {
  3214. margin-right: -15px !important;
  3215. }
  3216. ::shadow select.status-bar-item /deep/ option,
  3217. ::shadow .toolbar::shadow select.toolbar-item /deep/ option {
  3218. background-color: #222 !important;
  3219. }
  3220. #glass-pane .status-bar.fill {
  3221. background-image: none !important;
  3222. background-color: transparent !important;
  3223. }
  3224. ::shadow .status-bar-shadow.floating {
  3225. background-color: #282e35 !important;
  3226. border: none !important;
  3227. }
  3228. ::shadow .status-bar-shadow.floating .status-bar-item {
  3229. border: 1px solid #263238 !important;
  3230. }
  3231. #memory-graphs-container > div:last-child {
  3232. background: #111 !important;
  3233. }
  3234. .timeline-layers-view > div:last-child,
  3235. .timeline-layers-view-properties > div:last-child {
  3236. background-color: #222 !important;
  3237. }
  3238. body.undocked.platform-mac.inactive .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header,
  3239. body.undocked.platform-mac .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header,
  3240. body.platform-mac.inactive .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header,
  3241. body.platform-mac .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header,
  3242. body .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header {
  3243. background: #111 !important;
  3244. }
  3245. ::shadow .tabbed-pane-header {
  3246. background: #111 !important;
  3247. }
  3248. ::shadow .tabbed-pane-header-contents {
  3249. color: #999999 !important;
  3250. }
  3251. .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header {
  3252. flex: 0 0 34px !important;
  3253. }
  3254. .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-tabs-drop-down-container {
  3255. padding-top: 6px !important;
  3256. }
  3257. .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-contents .tabbed-pane-header-tab {
  3258. height: 34px !important;
  3259. line-height: 25.5px !important;
  3260. }
  3261. ::shadow .tabbed-pane-header-tabs-drop-down-container {
  3262. color: #999999 !important;
  3263. }
  3264. .tabbed-pane::shadow .tabbed-pane-header {
  3265. border-bottom: 1px solid #263238 !important;
  3266. border: none;
  3267. }
  3268. .tabbed-pane::shadow .tabbed-pane-header-tab {
  3269. border-color: transparent !important;
  3270. border-image: none !important;
  3271. border-left: none !important;
  3272. border-right: none !important;
  3273. border-top: 2px solid #b1bdc4 !important;
  3274. cursor: pointer !important;
  3275. margin: 0 !important;
  3276. margin-bottom: 1px !important;
  3277. margin-top: 0 !important;
  3278. padding: 2px 4px !important;
  3279. width: auto !important;
  3280. color: #b1bdc4 !important;
  3281. }
  3282. .tabbed-pane::shadow .tabbed-pane-header-tab:hover {
  3283. color: #f8f8f8 !important;
  3284. }
  3285. .tabbed-pane::shadow .tabbed-pane-header-tab.selected {
  3286. background: none !important;
  3287. border-top: 2px solid #80cbc4 !important;
  3288. color: #f8f8f8 !important;
  3289. font-size: 1em;
  3290. }
  3291. ::shadow .tabbed-pane-content {
  3292. background-color: #222 !important;
  3293. }
  3294. ::shadow .search-drawer-header label.search-config-label {
  3295. color: #b1bdc4 !important;
  3296. }
  3297. .panel .status-bar::shadow .status-bar-shadow {
  3298. background: #111 !important;
  3299. border-top: 1px solid #2e3c43 !important;
  3300. box-shadow: none !important;
  3301. border-bottom: none !important;
  3302. }
  3303. .tabbed-pane-header-before::shadow .status-bar-shadow,
  3304. .tabbed-pane-header-after::shadow .status-bar-shadow {
  3305. height: 34px !important;
  3306. }
  3307. ::shadow .shadow-split-view.vbox > .shadow-split-view-sidebar:not(.maximized) {
  3308. border-top: none !important;
  3309. }
  3310. .device-name {
  3311. color: #626262 !important;
  3312. }
  3313. .device-serial {
  3314. color: #b1bdc4 !important;
  3315. }
  3316. .overrides-splash-screen .status-bar {
  3317. background-color: #222 !important;
  3318. background-image: none !important;
  3319. }
  3320. .overrides-view {
  3321. padding-top: 0 !important;
  3322. }
  3323. .overrides-view ::shadow .tabbed-pane-content {
  3324. padding: 10px;
  3325. }
  3326. .network-details-view-tall-header .network-item-view::shadow .tabbed-pane-header {
  3327. padding-top: 0 !important;
  3328. }
  3329. .network-details-view-tall-header .network-item-view::shadow .tabbed-pane-header-tab {
  3330. height: 31px !important;
  3331. padding-top: 5px !important;
  3332. }
  3333. .network .request-headers-view .parent {
  3334. margin-top: 1px !important;
  3335. }
  3336. ::shadow .suggest-box {
  3337. color: #000 !important;
  3338. background-color: #222 !important;
  3339. border: 2px rgba(0, 0, 0, 0.2) solid !important;
  3340. box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.1) !important;
  3341. }
  3342. ::shadow .suggest-box-content-item.source-code:hover {
  3343. background-color: #282e35 !important;
  3344. border: 1px solid #b1bdc4 !important;
  3345. }
  3346. ::shadow .suggest-box-content-item.source-code.selected {
  3347. background-color: #282e35 !important;
  3348. }
  3349. ::shadow .suggest-box .source-code .prefix {
  3350. color: #80cbc4 !important;
  3351. }
  3352. ::shadow .suggest-box .source-code .suffix {
  3353. color: #d9d9d9 !important;
  3354. }
  3355. ::shadow .vertical-tab-layout .tabbed-pane-header-tab {
  3356. padding-left: 20px !important;
  3357. border-top: none !important;
  3358. color: #b1bdc4 !important;
  3359. }
  3360. ::shadow .vertical-tab-layout .tabbed-pane-header-tab.selected {
  3361. border-top: none !important;
  3362. border-left: 7px solid #80cbc4 !important;
  3363. padding-left: 13px !important;
  3364. }
  3365. .help-window-main ::shadow .tabbed-pane-header {
  3366. background-image: none !important;
  3367. box-shadow: none !important;
  3368. }
  3369. .help-window-main ::shadow .tabbed-pane-header-contents {
  3370. box-shadow: none !important;
  3371. }
  3372. ::shadow style + .text-prompt-editing {
  3373. background-color: #222 !important;
  3374. outline: 1px solid #80cbc4 !important;
  3375. }
  3376. ::shadow .text-prompt-editing > ::content * {
  3377. color: #80cbc4 !important;
  3378. }
  3379. .callstack-info.status {
  3380. border-top: none !important;
  3381. }
  3382. #devices-tab-content .devices-list {
  3383. border: 1px solid #2e3c43 !important;
  3384. }
  3385. #devices-tab-content .devices-title {
  3386. color: #80cbc4 !important;
  3387. }
  3388. #devices-tab-content .devices-list-item {
  3389. color: #b1bdc4;
  3390. }
  3391. #devices-tab-content .devices-list-item:hover {
  3392. background: #282e35 !important;
  3393. border-top: 1px solid #282e35 !important;
  3394. border-bottom: 1px solid #282e35 !important;
  3395. }
  3396. #devices-tab-content .devices-list-item .devices-list-title {
  3397. opacity: 0.2 !important;
  3398. }
  3399. #devices-tab-content .devices-list-item.device-list-item-show .devices-list-title {
  3400. color: #b1bdc4 !important;
  3401. opacity: 1 !important;
  3402. }
  3403. #devices-tab-content .devices-edit-container {
  3404. background: #282e35 !important;
  3405. }
  3406. #devices-tab-content .devices-custom-separator {
  3407. border-top: 1px solid #151515 !important;
  3408. border-bottom: 1px solid #2e3c43 !important;
  3409. }
  3410. #devices-tab-content .devices-list-edit,
  3411. #devices-tab-content .devices-list-remove {
  3412. -webkit-mask-image: url(Images/toolbarButtonGlyphs.png) !important;
  3413. background-color: #80cbc4 !important;
  3414. background-image: none !important;
  3415. }
  3416. #devices-tab-content .devices-list-edit {
  3417. -webkit-mask-position: -224px -72px;
  3418. }
  3419. #devices-tab-content .devices-list-remove {
  3420. -webkit-mask-position: -128px -24px;
  3421. }
  3422. .events-pane > ol > li.parent {
  3423. margin: 0 !important;
  3424. padding-bottom: 2px !important;
  3425. }
  3426. .events-pane > ol > ol > li {
  3427. border-top: none !important;
  3428. }
  3429. .events-pane .sidebar-pane .section.expanded > .header,
  3430. .events-pane .children .section.event-bar {
  3431. border-bottom: none !important;
  3432. }
  3433. body .sidebar-pane .parent:not(.event-category) + .children.expanded {
  3434. border-left: none !important;
  3435. }
  3436. .hidden-callframes-message {
  3437. background: #2e3c43;
  3438. text-align: center;
  3439. }
  3440. .hidden-callframes-message .link {
  3441. color: #c792ea !important;
  3442. }
  3443. .styles-section-title .media-list.media-matches .media.editable-media,
  3444. .styles-section-title .media-list {
  3445. color: #8c8c8c !important;
  3446. }
  3447. .styles-section-title .media-list.media-matches .media.editable-media.media-matches .media.editable-media .media-text,
  3448. .styles-section-title .media-list.media-matches .media.editable-media .media-text {
  3449. color: #b1bdc4 !important;
  3450. }
  3451. .styles-section .header .title .media-list.media-matches .media.editable-media {
  3452. color: #b1bdc4 !important;
  3453. }
  3454. .watch-expressions {
  3455. margin-top: 0 !important;
  3456. }
  3457. .watch-expressions .name {
  3458. color: #77a8c6 !important;
  3459. }
  3460. .watch-expression .primitive-value:hover,
  3461. .watch-expression .section .header:hover {
  3462. background-color: #282e35 !important;
  3463. box-shadow: inset 0 1px 0 0 #282e35, inset 0 -1px 0 0 #282e35;
  3464. }
  3465. .error-message {
  3466. color: #ff5a5a !important;
  3467. }
  3468. .settings-experiment-hidden label {
  3469. background-color: #222 !important;
  3470. }
  3471. .settings-experiment-hidden label .dt-checkbox-text {
  3472. color: #80cbc4 !important;
  3473. }
  3474. .event-listener-tree > li {
  3475. border-top: none !important;
  3476. }
  3477. .event-listener-tree .name {
  3478. color: #77a8c6 !important;
  3479. }
  3480. #network-overview-container {
  3481. border-bottom: none !important;
  3482. }
  3483. .network-overview-canvas-container {
  3484. background-color: #222 !important;
  3485. }
  3486. /* ==========================================================================
  3487. Find
  3488. ========================================================================== */
  3489. .styles-section .style-properties li.filter-match,
  3490. .styles-section .simple-selector.filter-match {
  3491. background-color: #3e4c58 !important;
  3492. box-shadow: 0 0 0 1px #2e3c43 !important;
  3493. border-radius: 2px;
  3494. }
  3495. /* ==========================================================================
  3496. Sources
  3497. ========================================================================== */
  3498. .text-editor-value-decoration {
  3499. background-color: #282e35 !important;
  3500. color: #b1bdc4 !important;
  3501. padding: 0 5px;
  3502. border-radius: 2px !important;
  3503. box-shadow: 0 1px 0 0 #2e3c43 !important;
  3504. border-top: 1px solid #1c1c1c !important;
  3505. }
  3506. .source-frame-infobar::shadow .infobar-warning {
  3507. color: #ddbb00;
  3508. border-bottom: 1px solid #2e3c43 !important;
  3509. background-color: #2e3c43 !important;
  3510. }
  3511. .source-frame-infobar::shadow .source-frame-infobar-toggle-link {
  3512. color: #80cbc4 !important;
  3513. }
  3514. .cm-execution-line-tail {
  3515. background-color: #212e24 !important;
  3516. border-radius: 2px !important;
  3517. }
  3518. /* ==========================================================================
  3519. Popovers
  3520. ========================================================================== */
  3521. .popover {
  3522. min-height: 0 !important;
  3523. }
  3524. /* ==========================================================================
  3525. Sources (watch)
  3526. ========================================================================== */
  3527. .watch-expression-header:hover {
  3528. background-color: #282e35 !important;
  3529. }
  3530. /* ==========================================================================
  3531. Elements - Accessibility
  3532. ========================================================================== */
  3533. div.ax-computed-name {
  3534. border-bottom: 1px solid #2e3c43 !important;
  3535. }
  3536. ::shadow .ax-name {
  3537. color: #77a8c6 !important;
  3538. }
  3539. ::shadow .ax-role {
  3540. color: #b1bdc4 !important;
  3541. }
  3542. /* ==========================================================================
  3543. Toolbar
  3544. ========================================================================== */
  3545. body .inspector-view-toolbar.toolbar::shadow .toolbar-button-theme {
  3546. background-color: #b1bdc4 !important;
  3547. }
  3548. .inspector-view-toolbar-left,
  3549. .inspector-view-toolbar.tabbed-pane-header-after {
  3550. margin-top: 7px !important;
  3551. }
  3552. .console-view .toolbar,
  3553. .network .toolbar {
  3554. background: #111 !important;
  3555. border-top: 1px solid #2e3c43 !important;
  3556. }
  3557. ::shadow .toolbar-item > .glyph,
  3558. ::shadow .toolbar-item > .glyph:active,
  3559. ::shadow .filter-toolbar-item.toggled-shown .glyph,
  3560. ::shadow button.toolbar-item.toggled-on .glyph {
  3561. background-color: #80cbc4 !important;
  3562. }
  3563. ::shadow .toolbar-item > .glyph,
  3564. ::shadow button.toolbar-item.toggled-off .glyph {
  3565. background-color: #b1bdc4 !important;
  3566. }
  3567. ::shadow .toolbar-counter-item {
  3568. color: #b1bdc4 !important;
  3569. }
  3570. /* ==========================================================================
  3571. Status Bars
  3572. ========================================================================== */
  3573. #sources-panel-sources-view .sources-toolbar {
  3574. background: #111 !important;
  3575. border-top: 1px solid #2e3c43 !important;
  3576. border-top: none !important;
  3577. color: #b1bdc4 !important;
  3578. }
  3579. .toolbar::shadow .toolbar-select-arrow {
  3580. position: relative !important;
  3581. right: 5px !important;
  3582. }
  3583. .resources-toolbar,
  3584. ::shadow .search-toolbar-summary {
  3585. background: #111 !important;
  3586. border-top: 1px solid #2e3c43 !important;
  3587. color: #b1bdc4 !important;
  3588. border-top: none !important;
  3589. }
  3590. .profiles-toolbar {
  3591. background: #111 !important;
  3592. border-top: 1px solid #2e3c43 !important;
  3593. color: #b1bdc4 !important;
  3594. border-bottom: none !important;
  3595. }
  3596. /* ==========================================================================
  3597. Toolbars
  3598. ========================================================================== */
  3599. ::shadow .shadow-split-widget.hbox > .shadow-split-widget-sidebar:not(.maximized) {
  3600. border-left: 2px solid #2e3c43 !important;
  3601. }
  3602. ::shadow .shadow-split-widget.hbox.shadow-split-widget-first-is-sidebar > .shadow-split-widget-sidebar:not(.maximized) {
  3603. border-right: 2px solid #2e3c43 !important;
  3604. }
  3605. /* ==========================================================================
  3606. Elements Sidebar
  3607. ========================================================================== */
  3608. .styles-animations-controls-pane.expanded {
  3609. border-bottom: 1px solid #2e3c43 !important;
  3610. background: #313131 !important;
  3611. }
  3612. .styles-animations-controls-pane > * {
  3613. margin: 3px 4px !important;
  3614. }
  3615. /* ==========================================================================
  3616. Toolbars
  3617. ========================================================================== */
  3618. .dt-checkbox-text,
  3619. ::shadow .dt-checkbox-text,
  3620. ::content .dt-checkbox-text {
  3621. color: #b1bdc4 !important;
  3622. }
  3623. ::shadow .shadow-split-widget button.sidebar-show-hide-button {
  3624. background-color: #b1bdc4 !important;
  3625. }
  3626. /* ==========================================================================
  3627. Console
  3628. ========================================================================== */
  3629. ::shadow .shadow-split-widget.vbox > .shadow-split-widget-sidebar:not(.maximized) {
  3630. border-top: none !important;
  3631. }
  3632. .overrides-view label,
  3633. .overrides-view fieldset > span,
  3634. #metrics-override-section span,
  3635. #metrics-override-section td,
  3636. #geolocation-override-section td {
  3637. color: #626262 !important;
  3638. }
  3639. ::shadow .object-properties-section-name,
  3640. .console-view-object-properties-section span {
  3641. color: #546e7a !important;
  3642. }
  3643. .tabbed-pane::shadow .tabbed-pane-header-tab {
  3644. background: #37474f !important;
  3645. background-color: #37474f !important;
  3646. }
  3647. .request-headers-view .outline-disclosure li.parent.expanded::before
  3648. .data-grid .header-container {
  3649. -webkit-mask-position: -4px -98px !important;
  3650. }
  3651. ::shadow > .toolbar-shadow .toolbar-button.hover .toolbar-glyph {
  3652. background-color: hsl(218, 81%, 59%) !important;
  3653. }
  3654. .filter-bar {
  3655. background-color: #37474f !important;
  3656. }
  3657. .request-headers-view .outline-disclosure li.parent.expanded::before {
  3658. -webkit-mask-position: -4px -98px !important;
  3659. }
  3660. ::shadow > .tree-outline-disclosure .tree-outline li.navigator-folder-tree-item .tree-element-title {
  3661. color: #b1bdc4 !important;
  3662. }
  3663. .scope-chain-sidebar-pane-section-title {
  3664. color: #546e7a !important;
  3665. }
  3666. ::shadow .odd-row {
  3667. background-color: #3e4c58 !important;
  3668. }
  3669. ::shadow .tree-element-title {
  3670. color: #f8f8f8 !important;
  3671. }
  3672. ::shadow .tree-outline li.selected .selection {
  3673. background-color: #546e7a !important;
  3674. }
  3675. ::shadow ol.tree-outline:focus li.selected .selection {
  3676. background-color: hsl(218, 81%, 59%) !important;
  3677. }
  3678. ::shadow .cm-line-without-source-mapping {
  3679. background-color: #222 !important;
  3680. }
  3681. ::shadow .CodeMirror pre {
  3682. background-color: #222 !important;
  3683. }
  3684. .network-status-pane {
  3685. background-color: #2e3c43 !important;
  3686. }
  3687. .resources-dividers-label-bar {
  3688. background-color: #3e4c58 !important;
  3689. }
  3690. * {
  3691. color: #b1bdc4 !important;
  3692. }
  3693. span.being-edited {
  3694. color: #cdd3de !important;
  3695. }