styles-old.less 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202
  1. // /**
  2. // * Copyright © Magento, Inc. All rights reserved.
  3. // * See COPYING.txt for license details.
  4. // */
  5. @import 'source/lib/_lib.less'; // Global lib
  6. @import 'source/lib/_utilities.less';
  7. @baseDir: "../"; // Default
  8. // Backend
  9. @import "../mui/clearless/_all.less";
  10. @import "../mui/styles/_vars.less";
  11. @import (reference) "../mui/styles/_abstract.less"; // Import some abstract
  12. // DO NOT REMOVE! Can be dangerous (need for Product Creation)
  13. .collapse.in,
  14. .no-js .collapse {
  15. height: auto !important;
  16. overflow: visible;
  17. }
  18. .invisible {
  19. visibility: hidden;
  20. }
  21. // DO NOT REMOVE! Can be dangerous (need for Product Creation)
  22. .admin__scope-old {
  23. box-sizing: content-box;
  24. @import "../mui/styles/_base.less";
  25. @import "../mui/styles/_table.less"; // Import table styles
  26. .field {
  27. position: relative;
  28. box-sizing: border-box;
  29. margin: 0 0 12px 0;
  30. }
  31. .field > .label {
  32. margin: 0 0 6px;
  33. }
  34. // TODO: remove after all templates refactoring
  35. span.required {
  36. display: none;
  37. }
  38. .field.required > .label {
  39. &:not(.admin__field-label) {
  40. :after {
  41. content: '*';
  42. color: #f00;
  43. margin-left: 3px;
  44. }
  45. }
  46. }
  47. //
  48. // Control with added before and after content
  49. // ---------------------------------------------
  50. .addon {
  51. padding: 0;
  52. display: table;
  53. width: 100%;
  54. }
  55. .addon textarea,
  56. .addon select,
  57. .addon input {
  58. width: 100%;
  59. border-radius: 0;
  60. box-shadow: none;
  61. margin: 0;
  62. }
  63. .addon select {
  64. width: auto;
  65. }
  66. .addon select + .addafter {
  67. border: none;
  68. }
  69. .ie .addon textarea,
  70. .ie .addon select {
  71. display: inline-block;
  72. }
  73. .addon textarea:first-child,
  74. .addon select:first-child,
  75. .addon input[type=text]:first-child,
  76. .addon .addbefore:first-child {
  77. border-radius: 0;
  78. }
  79. .addon textarea:last-child,
  80. .addon select:last-child,
  81. .addon input[type=text]:last-child,
  82. .addon .addafter:last-child {
  83. border-radius: 0;
  84. }
  85. .addon .addbefore,
  86. .addon .addafter {
  87. background: #f5f5f5;
  88. background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  89. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  90. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  91. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  92. background-image: linear-gradient(top, #ffffff, #e6e6e6);
  93. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  94. background-repeat: repeat-x;
  95. vertical-align: middle;
  96. width: 1px;
  97. color: #666;
  98. font-size: 11px;
  99. font-weight: bold;
  100. height: 0;
  101. white-space: nowrap;
  102. display: inline-block;
  103. display: table-cell;
  104. padding: 4px;
  105. border: solid #ccc;
  106. border-width: 1px 0 1px 1px;
  107. }
  108. .addon .addafter {
  109. border-width: 1px 1px 1px 0;
  110. }
  111. .choice .addafter,
  112. .choice .addbefore {
  113. display: inline;
  114. }
  115. // Addon left aligned
  116. .field-price .addon {
  117. direction: rtl;
  118. }
  119. .field-price .addon > * {
  120. direction: ltr;
  121. }
  122. .field-price .addon .addafter {
  123. border-width: 1px 0 1px 1px;
  124. border-radius: 1px 0 0 1px;
  125. }
  126. // For disabled field with prefix/suffix
  127. .admin__field-control {
  128. .admin__control-addon {
  129. [class*='admin__control-'][type] {
  130. &[disabled],
  131. &:focus {
  132. background-color: transparent;
  133. border-color: transparent;
  134. }
  135. }
  136. }
  137. }
  138. //
  139. // Form actions
  140. // ---------------------------------------------
  141. .form-actions {
  142. padding: 10px;
  143. margin: 10px 0;
  144. }
  145. //
  146. // Default view for fields: Labels are above the controls
  147. // ---------------------------------------------
  148. .form-inline .label,
  149. .form-inline .control {
  150. margin: 0;
  151. float: left;
  152. width: 55%;
  153. box-sizing: border-box;
  154. }
  155. .form-inline .label {
  156. width: 45%;
  157. text-align: right;
  158. padding: 5px 15px 0 0;
  159. }
  160. .form-inline .choice {
  161. position: relative;
  162. z-index: 1;
  163. }
  164. .form-inline .choice .control {
  165. position: absolute;
  166. margin-top: 4px;
  167. width: auto;
  168. left: 45%;
  169. }
  170. .form-inline .choice .tooltip {
  171. margin-left: 20px;
  172. position: relative;
  173. z-index: 1;
  174. margin-top: 7px;
  175. }
  176. .form-inline .with-tooltip:not(.choice) {
  177. padding-top: 20px;
  178. }
  179. .control .control-value {
  180. display: inline-block;
  181. padding: 6px 0 0;
  182. vertical-align: top;
  183. }
  184. .control .control-value.special {
  185. font-weight: bold;
  186. }
  187. //
  188. // Field with multiple fields
  189. // ---------------------------------------------
  190. // TODO: rename 'fields-group' class. Propose - 'group'
  191. [class^="fields-group-"] .field {
  192. vertical-align: top;
  193. margin: 0;
  194. display: inline-block;
  195. }
  196. [class^="fields-group-"] .field .label {
  197. width: auto;
  198. float: none;
  199. text-align: left;
  200. padding-right: 0;
  201. }
  202. [class^="fields-group-"] .choice .label {
  203. display: inline;
  204. }
  205. [class^="fields-group-"] .field .control {
  206. float: none;
  207. width: auto;
  208. margin-left: 0;
  209. }
  210. @media screen and (max-width: 960px) {
  211. [class^="fields-group-"] .field {
  212. width: 100% !important;
  213. margin-bottom: 20px !important;
  214. }
  215. }
  216. [class^="fields-group-"] {
  217. letter-spacing: -0.31em; // webkit
  218. word-spacing: -0.43em; // IE < 8 && gecko
  219. }
  220. [class^="fields-group-"] > * {
  221. letter-spacing: normal;
  222. word-spacing: normal;
  223. }
  224. //
  225. // Form field with nested controls inside
  226. // ---------------------------------------------
  227. .nested {
  228. padding: 6px 0 0;
  229. }
  230. .nested .choice .label,
  231. .nested .choice .control {
  232. float: none;
  233. position: static;
  234. left: auto;
  235. text-align: left;
  236. display: inline;
  237. padding: 0;
  238. }
  239. .nested .field {
  240. width: auto;
  241. padding: 0;
  242. margin: 5px 0;
  243. display: block;
  244. }
  245. .nested .field:first-child {
  246. margin-top: 0;
  247. }
  248. .nested .field:last-child {
  249. margin-bottom: 0;
  250. }
  251. //
  252. // Clearfix
  253. // ---------------------------------------------
  254. .buttons-set:before,
  255. .buttons-set:after,
  256. .form-inline .field:before,
  257. .form-inline .field:after,
  258. .form-actions:before,
  259. .form-actions:after,
  260. .clearfix:before,
  261. .clearfix:after {
  262. content: "";
  263. display: table;
  264. }
  265. .buttons-set:after,
  266. .form-inline .field:after,
  267. .form-actions:after,
  268. .clearfix:after {
  269. clear: both;
  270. }
  271. //
  272. // Reset 'button view' for actions
  273. // --------------------------------------
  274. .customer-current-activity .action-refresh,
  275. .data-table .action-.delete,
  276. .data-table .action-.delete:hover,
  277. .data-table .action-.delete:active,
  278. .data-table .action-.delete.active,
  279. .data-table .action-delete,
  280. .data-table .action-delete:hover,
  281. .data-table .action-delete:active,
  282. .data-table .action-delete.active,
  283. .data-table .action-locked,
  284. .data-table .action-locked:hover,
  285. .data-table .action-locked:active,
  286. .data-table .action-locked.active,
  287. .data-table .action-locked[disabled],
  288. #product-variations-matrix .action-choose,
  289. .action-manage-images,
  290. .action-manage-images:hover,
  291. .action-manage-images:active,
  292. .action-manage-images.active,
  293. .action-manage-images[disabled],
  294. .image-panel .action-close,
  295. .image-panel .action-close:hover,
  296. .image-panel .action-close:active,
  297. .image-panel .action-close.active,
  298. .image-panel .action-close[disabled],
  299. .image-panel-controls .action-remove,
  300. .image-panel-controls .action-remove:hover,
  301. .image-panel-controls .action-remove:active,
  302. .image-panel-controls .action-remove.active,
  303. .image-panel-controls .action-remove[disabled],
  304. .vde-image-sizing .action-connect,
  305. .vde-image-sizing .action-connect:hover,
  306. .vde-image-sizing .action-connect:active,
  307. .vde-image-sizing .action-connect.active,
  308. .vde-image-sizing .action-connect[disabled],
  309. .suggest-expandable .action-show-all,
  310. .suggest-expandable .action-show-all:hover,
  311. .suggest-expandable .action-show-all:active,
  312. .suggest-expandable .action-show-all.active,
  313. .suggest-expandable .action-show-all[disabled],
  314. .custom-file > .action-add,
  315. .custom-file > .action-add:hover,
  316. .custom-file > .action-add:active,
  317. .custom-file > .action-add.active,
  318. .custom-file > .action-add[disabled],
  319. .vde-tools-header .action-close,
  320. .vde-tools-header .action-close:hover,
  321. .vde-tools-header .action-close:active,
  322. .vde-tools-header .action-close.active,
  323. .image .action-delete,
  324. .image .action-delete:hover,
  325. .image .action-delete:active,
  326. .image .action-delete.active,
  327. .fieldset-wrapper-title .actions .action-delete,
  328. .fieldset-wrapper-title .actions .action-delete:hover,
  329. .fieldset-wrapper-title .actions .action-delete:active,
  330. .fieldset-wrapper-title .actions .action-delete.active,
  331. .notification .action-close,
  332. .notification .action-close:hover,
  333. .notification .action-close:active,
  334. .notification .action-close.active,
  335. .page-login .action-forgotpassword,
  336. .page-login .action-forgotpassword:hover,
  337. .page-login .action-forgotpassword:active,
  338. .page-login .action-forgotpassword.active,
  339. .page-login .action-back,
  340. .page-login .action-back:hover,
  341. .page-login .action-back:active,
  342. .page-login .action-back.active,
  343. .data-table .action-.delete[disabled],
  344. .data-table .action-delete[disabled],
  345. .data-table .action-locked[disabled],
  346. .image-panel .action-close[disabled],
  347. .image-panel-controls .action-remove[disabled],
  348. .suggest-expandable .action-show-all[disabled],
  349. #store-view-window [class^='action-close'],
  350. #store-view-window [class^='action-close']:hover,
  351. #store-view-window [class^='action-close']:active,
  352. #store-view-window [class^='action-close'].active,
  353. #store-view-window [class^='action-close'][disabled],
  354. .custom-file > .action-add[disabled],
  355. .image .action-delete,
  356. .image .action-delete:hover,
  357. .image .action-delete:active,
  358. .image .action-delete.active,
  359. .fieldset-wrapper-title .actions .action-delete,
  360. .fieldset-wrapper-title .actions .action-delete:hover,
  361. .fieldset-wrapper-title .actions .action-delete:active,
  362. .fieldset-wrapper-title .actions .action-delete.active,
  363. .notification .action-close,
  364. .notification .action-close:hover,
  365. .notification .action-close:active,
  366. .notification .action-close.active,
  367. .vde-tools-header .action-close[disabled],
  368. .vde-image-sizing .action-reset,
  369. .vde-image-sizing .action-reset:hover,
  370. .vde-image-sizing .action-reset:active,
  371. .vde-image-sizing .action-reset.active,
  372. .vde-image-sizing .action-reset[disabled],
  373. .vde-image-sizing .action-connect,
  374. .vde-image-sizing .action-connect:hover,
  375. .vde-image-sizing .action-connect:active,
  376. .vde-image-sizing .action-connect.active,
  377. .vde-image-sizing .action-connect[disabled],
  378. .vde-tab-data .action-download,
  379. .vde-tab-data .action-download:hover,
  380. .vde-tab-data .action-download:active,
  381. .vde-tab-data .action-download.active,
  382. .vde-tab-data .action-download[disabled],
  383. .vde-tab-data .action-delete,
  384. .vde-tab-data .action-delete:hover,
  385. .vde-tab-data .action-delete:active,
  386. .vde-tab-data .action-delete.active,
  387. .vde-tab-data .action-delete[disabled],
  388. .vde-tab-data .action-edit,
  389. .vde-tab-data .action-edit:hover,
  390. .vde-tab-data .action-edit:active,
  391. .vde-tab-data .action-edit.active,
  392. .vde-tab-data .action-edit[disabled],
  393. .image .action-delete[disabled],
  394. .fieldset-wrapper-title .actions .action-delete[disabled] {
  395. border: none;
  396. border-radius: 0;
  397. background: none;
  398. margin: 0;
  399. padding: 0;
  400. box-shadow: none;
  401. text-shadow: none;
  402. filter: none;
  403. }
  404. .attribute-popup .messages {
  405. margin: 0 15px;
  406. }
  407. .fade.critical-notification {
  408. display: block;
  409. }
  410. .fade.critical-notification .popup {
  411. top: 200px;
  412. }
  413. //
  414. // Actions as links
  415. // --------------------------------------
  416. .notification-entry-dialog .action-close {
  417. background: none;
  418. border: none;
  419. color: #6d665e;
  420. font-weight: normal;
  421. font-size: 12px;
  422. cursor: pointer;
  423. text-decoration: underline;
  424. }
  425. .notification-entry-dialog .action-close:hover {
  426. color: @color-black;
  427. border-bottom-color: @color-black;
  428. filter: none;
  429. }
  430. //
  431. // Fileupload button
  432. // --------------------------------------
  433. .action-upload {
  434. position: relative;
  435. }
  436. .action-upload > input[type="file"] {
  437. position: absolute;
  438. left: 0;
  439. top: 0;
  440. right: 0;
  441. bottom: 0;
  442. opacity: 0;
  443. font-size: 10em;
  444. }
  445. //
  446. // Dropdown menu
  447. // --------------------------------------
  448. .dropdown-menu,
  449. .ui-autocomplete {
  450. position: absolute;
  451. display: none;
  452. list-style: none;
  453. min-width: 100px;
  454. margin: 1px 0 0;
  455. padding: 0;
  456. right: 0;
  457. top: 100%;
  458. border: 1px solid #cac2b5;
  459. background: @color-white;
  460. box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
  461. z-index: 990;
  462. }
  463. .dropdown-menu > li,
  464. .ui-autocomplete > li {
  465. padding: 5px;
  466. border-bottom: 1px solid #e5e5e5;
  467. }
  468. .dropdown-menu > li.selected,
  469. .ui-autocomplete > li.selected {
  470. background: #eef8fc;
  471. }
  472. .dropdown-menu > li:hover,
  473. .ui-autocomplete > li:hover {
  474. background: #eef8fc;
  475. }
  476. .dropdown-menu > li:last-child,
  477. .ui-autocomplete > li:last-child {
  478. border-bottom: none;
  479. }
  480. .dropdown-menu > li > .item,
  481. .ui-autocomplete > li > .item {
  482. cursor: pointer;
  483. }
  484. .dropdown-menu-top {
  485. margin: 0 0 3px;
  486. top: auto;
  487. bottom: 100%;
  488. }
  489. .ui-autocomplete {
  490. right: auto;
  491. }
  492. .ui-autocomplete > li {
  493. padding: 0;
  494. }
  495. .ui-autocomplete > li > a {
  496. display: block;
  497. padding: 5px;
  498. }
  499. .ui-autocomplete > li > a.level-0 {
  500. padding-left: 5px !important;
  501. }
  502. .ui-autocomplete .ui-state-focus {
  503. background: #f5f5f5;
  504. }
  505. .active .dropdown-menu {
  506. display: block;
  507. }
  508. //
  509. // Actions Dropdown
  510. // --------------------------------------
  511. .action-dropdown {
  512. text-align: left;
  513. position: relative;
  514. display: inline-block;
  515. }
  516. .action-dropdown > [class^='action-'] {
  517. float: left;
  518. border-radius: 0;
  519. }
  520. .action-dropdown > .action-default {
  521. border-radius: 5px 0 0 5px;
  522. }
  523. .action-dropdown > .action-toggle {
  524. border-left: 1px solid #c5c0b9;
  525. border-radius: 0 5px 5px 0;
  526. margin-left: -1px;
  527. padding: 4px 7px;
  528. }
  529. .action-dropdown > .action-toggle > span {
  530. display: none;
  531. }
  532. .action-dropdown > .action-toggle:before {
  533. display: block;
  534. font-family: 'MUI-Icons';
  535. font-style: normal;
  536. speak: none;
  537. font-weight: normal;
  538. -webkit-font-smoothing: antialiased;
  539. content: '\e02c'; // arrow down
  540. font-size: 11px;
  541. }
  542. .action-dropdown > .action-toggle.active:before {
  543. content: '\e029'; // arrow up
  544. }
  545. .action-dropdown > .action-toggle.primary {
  546. border-left: 1px solid #e1721d;
  547. }
  548. .action-dropdown > .action-toggle.primary:hover {
  549. background: #e2701a;
  550. margin-left: -1px;
  551. }
  552. .action-dropdown.active .dropdown-menu {
  553. display: block;
  554. white-space: nowrap;
  555. }
  556. .action-dropdown.active .dropdown-menu > li {
  557. padding: 0;
  558. }
  559. .action-dropdown .dropdown-menu > li > .item {
  560. display: block;
  561. padding: 6px 10px 5px;
  562. color: #333;
  563. text-decoration: none;
  564. }
  565. //
  566. // Action delete icon
  567. // --------------------------------------
  568. // TODO: replase ".action-.delete" to ".action-delete" after buttons refactoring
  569. .data-table .action-.delete span,
  570. .data-table .action-delete span,
  571. .data-table .action-locked span,
  572. .image .action-delete span,
  573. .fieldset-wrapper-title .actions .action-delete span {
  574. display: none;
  575. }
  576. .data-table .action-.delete:before,
  577. .data-table .action-delete:before,
  578. .image .action-delete:before,
  579. .fieldset-wrapper-title .actions .action-delete:before {
  580. font-family: 'MUI-Icons';
  581. font-style: normal;
  582. speak: none;
  583. font-weight: normal;
  584. font-size: 18px;
  585. -webkit-font-smoothing: antialiased;
  586. content: '\e07f'; // delete icon
  587. color: #b7b3ad;
  588. }
  589. //
  590. // Locked action icon
  591. // --------------------------------------
  592. .data-table .action-locked:before {
  593. font-family: 'MUI-Icons';
  594. font-style: normal;
  595. speak: none;
  596. font-weight: normal;
  597. font-size: 20px;
  598. -webkit-font-smoothing: antialiased;
  599. content: '\e03e'; // lock icon
  600. color: #b7b3ad;
  601. }
  602. .data-table .action-.delete:hover:before,
  603. .data-table .action-delete:hover:before,
  604. .data-table .action-locked:hover:before,
  605. .image .action-delete:hover:before,
  606. .fieldset-wrapper-title .actions .action-delete:hover:before {
  607. color: #7e7e7e;
  608. }
  609. .data-table input.action-.delete[type="button"],
  610. .data-table input.action-.delete[type="submit"],
  611. .data-table input.action-.delete[type="reset"],
  612. .data-table button.action-.delete,
  613. .data-table input.action-.delete[type="button"]:visited,
  614. .data-table input.action-.delete[type="submit"]:visited,
  615. .data-table input.action-.delete[type="reset"]:visited,
  616. .data-table button.action-.delete:visited,
  617. .data-table input.action-.delete[type="button"]:hover,
  618. .data-table input.action-.delete[type="submit"]:hover,
  619. .data-table input.action-.delete[type="reset"]:hover,
  620. .data-table button.action-.delete:hover,
  621. .data-table input.action-.delete[type="button"]:active,
  622. .data-table input.action-.delete[type="submit"]:active,
  623. .data-table input.action-.delete[type="reset"]:active,
  624. .data-table button.action-.delete:active {
  625. background: transparent;
  626. padding: 3px 7px 0;
  627. }
  628. .data-table input.action-.delete[type=button]:hover:before,
  629. .data-table input.action-.delete[type=submit]:hover:before,
  630. .data-table input.action-.delete[type=reset]:hover:before,
  631. .data-table button.action-.delete:hover:before,
  632. .data-table input.action-.delete[type=button]:focus:before,
  633. .data-table input.action-.delete[type=submit]:focus:before,
  634. .data-table input.action-.delete[type=reset]:focus:before,
  635. .data-table button.action-.delete:focus:before {
  636. background: transparent;
  637. color: #a5a29d;
  638. }
  639. //
  640. // Forms
  641. // --------------------------------------
  642. fieldset {
  643. min-width: 0;
  644. padding: 20px;
  645. }
  646. legend {
  647. padding: 0 10px;
  648. margin: 0 -10px;
  649. }
  650. fieldset legend + br {
  651. display: none;
  652. }
  653. label > input[type="radio"],
  654. label > input[type="checkbox"] {
  655. margin: -3px 3px 0 0;
  656. vertical-align: middle;
  657. }
  658. input[type=text],
  659. input[type=password],
  660. input[type=datetime],
  661. input[type=datetime-local],
  662. input[type=date],
  663. input[type=month],
  664. input[type=time],
  665. input[type=week],
  666. input[type=number],
  667. input[type=range],
  668. input[type=email],
  669. input[type=url],
  670. input[type=search],
  671. input.search,
  672. input[type=tel],
  673. input[type=color],
  674. textarea,
  675. select {
  676. box-sizing: border-box;
  677. border: 1px solid #adadad;
  678. border-radius: 1px;
  679. padding: .6rem 1rem .6rem;
  680. color: #303030;
  681. background-color: @color-white;
  682. font-weight: 500;
  683. font-size: 14px;
  684. height: 33px;
  685. &:focus {
  686. border-color: #007bdb;
  687. box-shadow: none;
  688. outline: 0;
  689. }
  690. }
  691. select {
  692. &:not([multiple]) {
  693. .lib-css(appearance, none, 1);
  694. display: inline-block;
  695. line-height: normal;
  696. min-width: 80px;
  697. background-repeat: no-repeat;
  698. background-image+: url('../images/arrows-bg.svg');
  699. background-position+: ~'calc(100% - 12px)' -34px;
  700. background-size+: auto;
  701. background-image+: linear-gradient(#e3e3e3, #e3e3e3);
  702. background-position+: 100%;
  703. background-size+: 33px 100%;
  704. background-image+: linear-gradient(#adadad, #adadad);
  705. background-position+: ~'calc(100% - 33px)' 0;
  706. background-size+: 1px 100%;
  707. padding-right: 44px;
  708. &:focus {
  709. background-image+: url('../images/arrows-bg.svg');
  710. background-position+: ~'calc(100% - 12px)' 13px;
  711. background-image+: linear-gradient(#e3e3e3, #e3e3e3);
  712. background-position+: 100%;
  713. background-image+: linear-gradient(#007bdb, #007bdb);
  714. background-position+: ~'calc(100% - 33px)' 0;
  715. }
  716. &::-ms-expand {
  717. display: none;
  718. }
  719. }
  720. }
  721. select[multiple],
  722. select[size] {
  723. height: auto;
  724. }
  725. textarea {
  726. resize: vertical;
  727. padding-top: 6px;
  728. padding-bottom: 6px;
  729. line-height: 1.18em;
  730. max-width: none;
  731. min-height: 100px;
  732. }
  733. textarea,
  734. .input-text {
  735. height: auto;
  736. }
  737. input[type="radio"],
  738. input[type="checkbox"] {
  739. .lib-css(appearance, none, 1);
  740. background: @color-white;
  741. border-radius: 2px;
  742. border: 1px solid #adadad;
  743. cursor: pointer;
  744. display: inline-block;
  745. height: 16px;
  746. margin: 0 5px 0 0;
  747. position: relative;
  748. transition: all 0.1s ease-in;
  749. vertical-align: middle;
  750. width: 16px;
  751. &:focus {
  752. border-color: #007bdb;
  753. box-shadow: none;
  754. outline: 0;
  755. }
  756. &[disabled] {
  757. background-color: #e9e9e9;
  758. border-color: #adadad;
  759. opacity: .5;
  760. &.admin__control-checkbox,
  761. &.admin__control-radio {
  762. opacity: 0.01;
  763. }
  764. }
  765. &:checked {
  766. &:after {
  767. font-family: 'Admin Icons';
  768. content: "\e62d";
  769. display: inline-block;
  770. position: absolute;
  771. top: 0;
  772. left: 0;
  773. width: 14px;
  774. color: #514943;
  775. font-size: 11px;
  776. line-height: 13px;
  777. text-align: center;
  778. font-weight: 400
  779. }
  780. }
  781. }
  782. // Fix for jquery.jstree.js (checkboxes in admin__scope-old only)
  783. .jstree .jstree-real-checkbox {
  784. display: none;
  785. }
  786. input[type="radio"] {
  787. border-radius: 8px;
  788. &:checked {
  789. &:after {
  790. content: '';
  791. display: block;
  792. width: 10px;
  793. height: 10px;
  794. border-radius: 10px;
  795. background: #514943;
  796. top: 50%;
  797. left: 50%;
  798. position: absolute;
  799. margin-top: -5px;
  800. margin-left: -5px;
  801. }
  802. }
  803. }
  804. input[disabled],
  805. select[disabled],
  806. textarea[disabled],
  807. input[readonly],
  808. select[readonly],
  809. textarea[readonly] {
  810. background-color: #e9e9e9;
  811. border-color: #adadad;
  812. color: #303030;
  813. opacity: .5;
  814. cursor: not-allowed;
  815. }
  816. select[disabled] option[selected] {
  817. color: @color-white;
  818. background: #aaa;
  819. }
  820. textarea:-moz-placeholder,
  821. input:-moz-placeholder {
  822. color: #999 !important;
  823. font-style: italic;
  824. }
  825. option.placeholder {
  826. color: #999 !important;
  827. font-style: italic !important;
  828. }
  829. :-ms-input-placeholder {
  830. color: #999 !important;
  831. font-style: italic;
  832. }
  833. ::-webkit-input-placeholder {
  834. color: #999 !important;
  835. }
  836. :-moz-placeholder {
  837. color: #999 !important;
  838. }
  839. .form-inline .control {
  840. width: 100%;
  841. .control-inner-wrap {
  842. padding-top: 7px;
  843. }
  844. }
  845. .form-inline .label {
  846. width: 20%;
  847. padding-top: 8px;
  848. padding-right: 30px;
  849. &.admin__field-label {
  850. padding-top: 0;
  851. padding-right: 30px;
  852. width: 20%;
  853. margin-left: 0;
  854. }
  855. }
  856. .form-inline .label ~ .control {
  857. margin: 0;
  858. width: 60%;
  859. }
  860. .form-inline .no-label .control {
  861. margin-left: 20%;
  862. width: 60%;
  863. }
  864. fieldset.field [class^='fields-group-'] .field .control {
  865. width: auto;
  866. margin: 0 0 0 20px;
  867. }
  868. .form-inline .field-service {
  869. box-sizing: border-box;
  870. float: left;
  871. width: 20%;
  872. padding: 7px 0 0 15px;
  873. color: #999;
  874. font-size: 12px;
  875. letter-spacing: .05em;
  876. }
  877. .form-inline .field-service[value-scope]:before {
  878. content: attr(value-scope) !important;
  879. white-space: nowrap;
  880. display: block;
  881. margin-bottom: 5px;
  882. }
  883. .form-inline .field-service .checkbox {
  884. margin: 0;
  885. vertical-align: middle;
  886. }
  887. .form-inline > form > div > .message {
  888. margin-left: 18px;
  889. margin-right: 18px;
  890. }
  891. .control > input {
  892. width: 100%;
  893. padding: 4px 10px;
  894. }
  895. .control > input[type="button"] {
  896. width: auto;
  897. }
  898. .control > input._has-datepicker {
  899. width: 160px;
  900. }
  901. .control {
  902. > input[type="file"] {
  903. width: auto;
  904. }
  905. > input[type="checkbox"],
  906. > input[type="radio"] {
  907. width: 16px;
  908. padding: 0;
  909. }
  910. }
  911. .control > table {
  912. width: 100%;
  913. }
  914. .multi-input {
  915. margin: 0 0 20px;
  916. }
  917. .multi-input > input {
  918. width: 100%;
  919. }
  920. .control .input-file {
  921. margin-top: 4px;
  922. }
  923. .control {
  924. ._has-datepicker {
  925. & + .ui-datepicker-trigger {
  926. .lib-button-reset();
  927. .lib-icon-font(
  928. @icon-calendar,
  929. @_icon-font-size: 42px,
  930. @_icon-font-line-height: 30px,
  931. @_icon-font-text-hide: true,
  932. @_icon-font-position: after,
  933. @_icon-font-color: @field-date-icon--color
  934. );
  935. display: inline-block;
  936. vertical-align: middle;
  937. &:focus {
  938. outline: 0;
  939. box-shadow: none;
  940. }
  941. }
  942. }
  943. }
  944. .nobr {
  945. white-space: nowrap;
  946. }
  947. //
  948. // Form Validation
  949. // --------------------------------------
  950. label.mage-error {
  951. border: 1px solid #e22626;
  952. display: block;
  953. margin: 2px 0 0;
  954. padding: 6px 10px 10px;
  955. background: #fff8d6;
  956. color: #555;
  957. font-size: 12px;
  958. font-weight: 500;
  959. box-sizing: border-box;
  960. }
  961. textarea.mage-error,
  962. select.mage-error,
  963. input.mage-error {
  964. border-color: #e22626 !important;
  965. }
  966. input.mage-error ~ .addafter {
  967. border-color: #e22626 !important;
  968. }
  969. //
  970. // Forms for Store Scope
  971. // --------------------------------------
  972. .form-inline .field-store_id .label + .control,
  973. .form-inline .field-store_ids .label + .control,
  974. .form-inline .field-website_ids .label + .control,
  975. .form-inline .field-website_id .label + .control,
  976. .form-inline .field-select_stores .label + .control,
  977. .form-inline .field-stores .label + .control {
  978. width: auto;
  979. }
  980. //
  981. // Forms styles
  982. // --------------------------------------
  983. .page-content-inner {
  984. position: relative;
  985. background: #f5f2ed;
  986. border: 1px solid #b7b2a6;
  987. border-radius: 5px;
  988. padding: 20px;
  989. }
  990. .fieldset-wrapper,
  991. .fieldset {
  992. background: @color-white;
  993. border: 0;
  994. margin: 0;
  995. padding: 5px 0 38px;
  996. position: relative;
  997. }
  998. .fieldset-wrapper > .fieldset-wrapper-title,
  999. .fieldset > .legend {
  1000. position: static;
  1001. float: left;
  1002. width: 100%;
  1003. box-sizing: border-box;
  1004. padding: 0;
  1005. border-bottom: 1px solid #cac3b4;
  1006. margin: 0 0 18px;
  1007. }
  1008. .fieldset-wrapper > .fieldset-wrapper-title {
  1009. float: none;
  1010. }
  1011. .fieldset-wrapper > .fieldset-wrapper-title .title,
  1012. .fieldset > .legend span {
  1013. color: #303030;
  1014. font-size: 1.7rem;
  1015. font-weight: 600;
  1016. padding: 7px 0 10px;
  1017. display: inline-block;
  1018. }
  1019. //
  1020. // collapsible fieldset-wrapper
  1021. // --------------------------------------
  1022. // Fieldset styles in another fieldset
  1023. .fieldset .fieldset-wrapper,
  1024. .fieldset-wrapper .fieldset-wrapper {
  1025. border: 1px solid #cac3b4;
  1026. border-radius: 2px;
  1027. margin-bottom: 5px;
  1028. padding: 0;
  1029. }
  1030. .fieldset .fieldset-wrapper .fieldset-wrapper-title,
  1031. .fieldset-wrapper .fieldset-wrapper .fieldset-wrapper-title {
  1032. background: #f7f3eb;
  1033. padding: 0 18px;
  1034. border: 0;
  1035. }
  1036. .fieldset .fieldset-wrapper.opened .fieldset-wrapper-title,
  1037. .fieldset-wrapper .fieldset-wrapper.opened .fieldset-wrapper-title {
  1038. border-bottom: 1px solid #cccbca;
  1039. -webkit-touch-callout: none;
  1040. -webkit-user-select: none; // use in 41 Chrome
  1041. -moz-user-select: none; // use in 36 Firefox
  1042. -ms-user-select: none; // use in 11 IE
  1043. user-select: none;
  1044. min-height: 39px;
  1045. }
  1046. .fieldset .fieldset-wrapper .fieldset-wrapper-title .actions,
  1047. .fieldset-wrapper .fieldset-wrapper .fieldset-wrapper-title .actions {
  1048. padding: 6px 0 0;
  1049. }
  1050. .fieldset .fieldset-wrapper .fieldset-wrapper-title .title,
  1051. .fieldset-wrapper .fieldset-wrapper .fieldset-wrapper-title .title {
  1052. padding-top: 9px;
  1053. padding-bottom: 8px;
  1054. color: #555;
  1055. font: normal 16px/1.333 Arial, Verdana, sans-serif;
  1056. }
  1057. .fieldset .fieldset-wrapper .fieldset-wrapper-title .title:before,
  1058. .fieldset-wrapper .fieldset-wrapper .fieldset-wrapper-title .title:before {
  1059. top: 9px;
  1060. }
  1061. .fieldset-wrapper-content .fieldset > .title {
  1062. margin-top: 0;
  1063. padding-left: 22px;
  1064. }
  1065. .fieldset-wrapper .draggable-handle,
  1066. .fieldset .draggable-handle {
  1067. background: url(../Magento_Backend/images/draggable-handle-vertical.png) no-repeat 0 0;
  1068. color: #b2b0ad;
  1069. cursor: ns-resize;
  1070. height: 14px;
  1071. line-height: 14px;
  1072. margin: 0;
  1073. vertical-align: top;
  1074. width: 8px;
  1075. &:before {
  1076. display: none;
  1077. }
  1078. }
  1079. .fieldset-wrapper-title > .draggable-handle {
  1080. position: absolute;
  1081. left: 10px;
  1082. top: 12px;
  1083. }
  1084. .fieldset .fieldset-wrapper .fieldset-wrapper-content,
  1085. .fieldset-wrapper .fieldset-wrapper .fieldset-wrapper-content {
  1086. padding: 0 10px;
  1087. }
  1088. // Sortable fieldsets
  1089. .ui-sortable {
  1090. margin-bottom: 15px; // should be the same as .sortable-wrapper
  1091. }
  1092. .ui-sortable .entry-edit .fieldset-wrapper-title,
  1093. #product_options_container_top .fieldset-wrapper-title {
  1094. padding-left: 30px;
  1095. }
  1096. #super_config-wrapper,
  1097. #grouped-wrapper {
  1098. border-bottom: 0;
  1099. }
  1100. .fieldset .legend > .actions {
  1101. float: right;
  1102. padding-top: 8px;
  1103. }
  1104. .fieldset-wrapper-title > .actions {
  1105. float: right;
  1106. }
  1107. .fieldset > .legend + br {
  1108. display: block;
  1109. height: 0;
  1110. overflow: hidden;
  1111. clear: left;
  1112. }
  1113. .fieldset-wrapper .fieldset,
  1114. .fieldset .fieldset {
  1115. background: transparent;
  1116. padding: 9px 0;
  1117. border: none;
  1118. border-radius: 0;
  1119. margin: 0 0 29px;
  1120. }
  1121. .fieldset .comment {
  1122. margin: 0 0 29px 10px;
  1123. }
  1124. .fieldset {
  1125. .field {
  1126. margin: 0 0 29px;
  1127. }
  1128. }
  1129. .with-note .note,
  1130. .field .note,
  1131. .data-table .note {
  1132. color: #303030;
  1133. font-size: 12px;
  1134. font-weight: 400;
  1135. margin: 5px 0;
  1136. }
  1137. .fieldset .field .options-list {
  1138. list-style: none;
  1139. margin: 0;
  1140. padding: 0;
  1141. }
  1142. .fieldset .field .options-list input[type="checkbox"],
  1143. .fieldset .field .options-list input[type="radio"] {
  1144. margin-right: 5px;
  1145. }
  1146. [class^="fields-group-"] .field {
  1147. margin-bottom: 0;
  1148. }
  1149. .fieldset-wrapper .fieldset:last-child,
  1150. .fieldset .fieldset:last-child,
  1151. .fieldset .field:last-child {
  1152. margin-bottom: 0;
  1153. }
  1154. .fieldset .label {
  1155. color: #303030;
  1156. font-size: 14px;
  1157. font-weight: 600;
  1158. }
  1159. .fieldset .control .label {
  1160. .style9();
  1161. padding-top: 0;
  1162. }
  1163. .form-inline div:not([class*='fields-group']) > .field > .label,
  1164. .form-inline .fieldset > .field > .label {
  1165. color: #303030;
  1166. font-size: 14px;
  1167. font-weight: 600;
  1168. line-height: 3.2rem;
  1169. padding: 0 30px 0 0;
  1170. white-space: nowrap;
  1171. word-wrap: break-word;
  1172. &:before {
  1173. content: '.';
  1174. margin-left: -7px;
  1175. overflow: hidden;
  1176. visibility: hidden;
  1177. width: 0;
  1178. }
  1179. span {
  1180. display: inline-block;
  1181. line-height: 1.33;
  1182. vertical-align: middle;
  1183. white-space: normal;
  1184. &[data-config-scope] {
  1185. position: relative;
  1186. &:before {
  1187. bottom: -1.3rem;
  1188. color: #808080;
  1189. content: attr(data-config-scope);
  1190. font-size: 1.1rem;
  1191. font-weight: @font-weight__regular;
  1192. min-width: 15rem;
  1193. position: absolute;
  1194. right: 0;
  1195. text-transform: lowercase;
  1196. }
  1197. }
  1198. }
  1199. }
  1200. .details-content > .field.required > .label,
  1201. .fieldset > .field.required > .label {
  1202. padding-left: 1.5rem;
  1203. &:after {
  1204. content: '';
  1205. }
  1206. span {
  1207. &:after {
  1208. color: #e22626;
  1209. content: '*';
  1210. display: inline-block;
  1211. font-size: 1.6rem;
  1212. font-weight: 500;
  1213. line-height: 1;
  1214. margin-left: 10px;
  1215. margin-top: 0;
  1216. position: absolute;
  1217. top: 1.2rem;
  1218. z-index: 1;
  1219. }
  1220. &[data-config-scope] {
  1221. position: relative;
  1222. &:after {
  1223. top: .2rem;
  1224. }
  1225. }
  1226. }
  1227. }
  1228. .form-inline {
  1229. .details-content > .field.required > .label,
  1230. .fieldset > .field.required > .label {
  1231. padding-left: 0;
  1232. span {
  1233. &:after {
  1234. left: auto;
  1235. margin-left: 10px;
  1236. top: 1.2rem;
  1237. }
  1238. &[data-config-scope] {
  1239. &:after {
  1240. top: .2rem;
  1241. }
  1242. }
  1243. }
  1244. }
  1245. }
  1246. .with-addon {
  1247. .textarea {
  1248. margin: 0 0 6px;
  1249. }
  1250. .addon {
  1251. display: inline-block;
  1252. width: auto;
  1253. }
  1254. }
  1255. .fieldset .control .textarea,
  1256. .fieldset .control .addon .textarea {
  1257. width: 100%;
  1258. }
  1259. .details-content > .field > input[type="checkbox"],
  1260. .fieldset > .field > input[type="checkbox"] {
  1261. margin-top: 9px;
  1262. }
  1263. .fieldset-alt {
  1264. position: relative;
  1265. display: table-row;
  1266. border: 0;
  1267. padding: 0;
  1268. margin-bottom: 20px;
  1269. width: 100%;
  1270. }
  1271. .fieldset-alt > .field {
  1272. display: table-cell;
  1273. vertical-align: top;
  1274. padding-right: 4%;
  1275. }
  1276. .fieldset-alt > .field.no-display {
  1277. display: none;
  1278. }
  1279. .fieldset-alt .field > .label {
  1280. display: block;
  1281. width: 100%;
  1282. clear: both;
  1283. text-align: left;
  1284. margin: 0 0 10px;
  1285. }
  1286. .fieldset-alt .label + .control {
  1287. width: 100%;
  1288. }
  1289. .fieldset-alt .field-option-title {
  1290. width: 50%;
  1291. }
  1292. .fieldset .tooltip .help {
  1293. margin: 5px 0 0 15px;
  1294. display: inline-block;
  1295. }
  1296. .fieldset-alt .field-option-store-view {
  1297. width: 20%;
  1298. }
  1299. .fieldset-alt .field-option-input-type {
  1300. width: 20%;
  1301. }
  1302. .fieldset-alt .field-option-input-type select {
  1303. width: 100%;
  1304. }
  1305. .fieldset-alt .field-option-req {
  1306. width: 105px;
  1307. white-space: nowrap;
  1308. }
  1309. .fieldset-alt .field-option-req .control {
  1310. position: relative;
  1311. top: 32px;
  1312. }
  1313. .fieldset-alt .field-option-position,
  1314. .fieldset-alt .field-option-position .control {
  1315. width: 60px;
  1316. }
  1317. // "Use default" checkbox
  1318. .use-default-control {
  1319. display: none;
  1320. }
  1321. .use-default-label {
  1322. cursor: pointer;
  1323. text-decoration: underline;
  1324. font-size: 11px;
  1325. color: #a29c94;
  1326. }
  1327. .use-default-label:hover {
  1328. color: #7e7e7e;
  1329. }
  1330. //
  1331. // Custom Multiselect
  1332. // --------------------------------------
  1333. .multiselect-alt {
  1334. margin: 0;
  1335. padding: 0;
  1336. list-style: none;
  1337. border: 1px solid #ccc;
  1338. border-radius: 5px;
  1339. color: #333;
  1340. }
  1341. .multiselect-alt .item {
  1342. position: relative;
  1343. border-top: 1px solid @color-white;
  1344. cursor: pointer;
  1345. }
  1346. .multiselect-alt .item:first-child {
  1347. border-top: 0;
  1348. }
  1349. .multiselect-alt .item.selected {
  1350. background: #d7ebf5;
  1351. }
  1352. .multiselect-alt .item.selected:hover {
  1353. background: #afdef2;
  1354. }
  1355. .multiselect-alt label {
  1356. display: block;
  1357. cursor: pointer;
  1358. padding: 6px 25px 5px;
  1359. }
  1360. .multiselect-alt .item.selected label:before {
  1361. position: absolute;
  1362. left: 8px;
  1363. top: 1px;
  1364. bottom: 0;
  1365. width: 10px;
  1366. line-height: 28px;
  1367. font-family: 'MUI-Icons';
  1368. font-style: normal;
  1369. speak: none;
  1370. font-weight: normal;
  1371. -webkit-font-smoothing: antialiased;
  1372. content: '\e01e'; // checked icon
  1373. text-align: center;
  1374. color: #7ba4b1;
  1375. font-size: 9px;
  1376. text-shadow: 0 -1px 1px #60727b;
  1377. }
  1378. .multiselect-alt input[type="checkbox"] {
  1379. width: 0;
  1380. height: 0;
  1381. opacity: 0;
  1382. margin: 0;
  1383. padding: 0;
  1384. }
  1385. //
  1386. // Form item with table
  1387. // --------------------------------------
  1388. .with-table {
  1389. .label {
  1390. float: none;
  1391. text-align: left;
  1392. width: 100%;
  1393. }
  1394. .control {
  1395. clear: left;
  1396. float: none;
  1397. width: 100%;
  1398. }
  1399. }
  1400. //
  1401. // Form currency label
  1402. // --------------------------------------
  1403. .addon {
  1404. input[type="text"] {
  1405. border-width: 1px 1px 1px 0;
  1406. ~ .addafter strong {
  1407. display: inline-block;
  1408. background: @color-white;
  1409. line-height: 24px;
  1410. margin: 0 3px 0 0;
  1411. padding-left: 4px;
  1412. padding-right: 4px;
  1413. position: relative;
  1414. font-size: 14px;
  1415. font-weight: 400;
  1416. color: #858585;
  1417. top: 0;
  1418. }
  1419. &:focus ~ .addafter {
  1420. border-color: #007bdb;
  1421. strong {
  1422. margin-top: 0;
  1423. }
  1424. }
  1425. }
  1426. .addafter {
  1427. background: none;
  1428. color: #a6a6a6;
  1429. border-width: 1px 1px 1px 0;
  1430. border-radius: 1px 1px 0 0;
  1431. padding: 0;
  1432. border-color: #ada89e;
  1433. }
  1434. input[type="text"],
  1435. select {
  1436. &[disabled],
  1437. &[readonly] {
  1438. ~ .addafter {
  1439. background-color: #e9e9e9;
  1440. border-color: #adadad;
  1441. color: #303030;
  1442. opacity: .5;
  1443. cursor: not-allowed;
  1444. }
  1445. }
  1446. }
  1447. .pager input {
  1448. border-width: 1px;
  1449. }
  1450. }
  1451. .field-weight,
  1452. .field-base_price {
  1453. .addon {
  1454. input[type="text"] {
  1455. border-width: 1px 0 1px 1px;
  1456. }
  1457. }
  1458. }
  1459. .field.type-price .addon,
  1460. .field-price .addon,
  1461. .field-special_price .addon,
  1462. .field-gift_wrapping_price .addon,
  1463. .field-msrp .addon {
  1464. direction: rtl;
  1465. }
  1466. .field.type-price .addon > *,
  1467. .field-price .addon > *,
  1468. .field-special_price .addon > *,
  1469. .field-gift_wrapping_price .addon > *,
  1470. .field-msrp .addon > * {
  1471. direction: ltr;
  1472. }
  1473. .field.type-price .addon .addafter,
  1474. .field-price .addon .addafter,
  1475. .field-special_price .addon .addafter,
  1476. .field-gift_wrapping_price .addon .addafter,
  1477. .field-msrp .addon .addafter {
  1478. border-width: 1px 0 1px 1px;
  1479. border-radius: 1px 0 0 1px;
  1480. }
  1481. .field.type-price .addon input[type=text]:first-child,
  1482. .field-price .addon input[type=text]:first-child,
  1483. .field-special_price .addon input[type=text]:first-child,
  1484. .field-gift_wrapping_price .addon input[type=text]:first-child,
  1485. .field-msrp .addon input[type=text]:first-child {
  1486. border-radius: 0 1px 1px 0;
  1487. }
  1488. .field.type-price input:focus,
  1489. .field-price input:focus,
  1490. .field-special_price input:focus,
  1491. .field-gift_wrapping_price input:focus,
  1492. .field-msrp input:focus {
  1493. border-color: #007bdb;
  1494. }
  1495. .field.type-price input:focus ~ label.addafter,
  1496. .field-price input:focus ~ label.addafter,
  1497. .field-special_price input:focus ~ label.addafter,
  1498. .field-gift_wrapping_price input:focus ~ label.addafter,
  1499. .field-msrp input:focus ~ label.addafter {
  1500. border-color: #007bdb;
  1501. }
  1502. .field.type-price input ~ label.addafter strong,
  1503. .field-price input ~ label.addafter strong,
  1504. .field-special_price input ~ label.addafter strong,
  1505. .field-msrp input ~ label.addafter strong,
  1506. .field-gift_wrapping_price input ~ label.addafter strong {
  1507. margin-left: 2px;
  1508. margin-right: -2px;
  1509. }
  1510. //
  1511. // Details element
  1512. // --------------------------------------
  1513. summary {
  1514. cursor: pointer;
  1515. display: inline-block;
  1516. }
  1517. .no-details details > * {
  1518. display: none;
  1519. }
  1520. .no-details details > summary:before {
  1521. float: left;
  1522. width: 20px;
  1523. content: '► ';
  1524. }
  1525. .no-details details.open > summary:before {
  1526. content: '▼ ';
  1527. }
  1528. .no-details details summary {
  1529. display: block;
  1530. }
  1531. //
  1532. // Blockquotes
  1533. // --------------------------------------
  1534. blockquote {
  1535. border-left: 2px solid #ccc;
  1536. padding-left: 5px;
  1537. }
  1538. blockquote small:before {
  1539. content: '\2014 \00A0';
  1540. }
  1541. //
  1542. // Addresses
  1543. // --------------------------------------
  1544. address {
  1545. font-style: normal;
  1546. }
  1547. //
  1548. // X-tree styles
  1549. // --------------------------------------
  1550. .x-tree-node .leaf .x-tree-node-icon {
  1551. background-image: url(../images/fam_leaf.png);
  1552. }
  1553. .x-tree-node .system-leaf .x-tree-node-icon {
  1554. background-image: url(../images/fam_application_form_delete.png);
  1555. }
  1556. //
  1557. // Styles for "js" tooltip with positionings
  1558. // --------------------------------------
  1559. .tipsy {
  1560. padding: 11px;
  1561. }
  1562. .tipsy-inner {
  1563. padding: 12px 15px;
  1564. max-width: 185px;
  1565. background: #faf8f6;
  1566. border: 1px solid #dcd8ce;
  1567. box-shadow: 0 2px 5px rgba(49, 48, 43, .4);
  1568. }
  1569. .tipsy-inner .error {
  1570. width: 158px;
  1571. }
  1572. .tipsy-inner .error h5 {
  1573. color: #be0a0a;
  1574. font-size: 16px;
  1575. font-weight: 500;
  1576. margin: 0 0 6px;
  1577. }
  1578. .tipsy-inner .error p {
  1579. color: #676056;
  1580. line-height: 1.5;
  1581. margin: 0;
  1582. }
  1583. .tipsy-e .tipsy-arrow {
  1584. top: 50%;
  1585. left: 1px;
  1586. margin-top: -10px;
  1587. border-top: 10px solid transparent;
  1588. border-right: 10px solid #dcd8ce;
  1589. border-bottom: 10px solid transparent;
  1590. border-left: none;
  1591. }
  1592. .tipsy-w .tipsy-arrow {
  1593. top: 50%;
  1594. right: 0;
  1595. margin-top: -10px;
  1596. border-top: 10px solid transparent;
  1597. border-right: none;
  1598. border-bottom: 10px solid transparent;
  1599. border-left: 10px solid #dcd8ce;
  1600. }
  1601. .tipsy-n .tipsy-arrow,
  1602. .tipsy-ne .tipsy-arrow,
  1603. .tipsy-nw .tipsy-arrow {
  1604. bottom: 1px;
  1605. border-top: 10px solid #dcd8ce;
  1606. border-right: 10px solid transparent;
  1607. border-bottom: none;
  1608. border-left: 10px solid transparent;
  1609. }
  1610. .tipsy-ne .tipsy-arrow {
  1611. left: 16px;
  1612. }
  1613. .tipsy-nw .tipsy-arrow {
  1614. right: 16px;
  1615. }
  1616. .tipsy-s .tipsy-arrow,
  1617. .tipsy-se .tipsy-arrow,
  1618. .tipsy-sw .tipsy-arrow {
  1619. top: 1px;
  1620. border-left: 10px solid transparent;
  1621. border-right: 10px solid transparent;
  1622. border-bottom: 10px solid #dcd8ce;
  1623. border-top: none;
  1624. }
  1625. .tipsy-se .tipsy-arrow {
  1626. left: 16px;
  1627. }
  1628. .tipsy-sw .tipsy-arrow {
  1629. right: 16px;
  1630. }
  1631. .tipsy-arrow:after,
  1632. .tipsy-arrow:before {
  1633. position: absolute;
  1634. width: 0;
  1635. height: 0;
  1636. content: '';
  1637. }
  1638. .tipsy-e .tipsy-arrow:after {
  1639. top: -5px;
  1640. left: 2px;
  1641. margin-top: -4px;
  1642. border-top: 9px solid transparent;
  1643. border-right: 9px solid #faf8f6;
  1644. border-bottom: 9px solid transparent;
  1645. }
  1646. .tipsy-e .tipsy-arrow:before {
  1647. top: -8px;
  1648. margin-top: 0;
  1649. border-top: 10px solid transparent;
  1650. border-right: 10px solid rgba(49, 48, 43, .1);
  1651. border-bottom: 10px solid transparent;
  1652. }
  1653. .tipsy-w .tipsy-arrow:after {
  1654. top: -5px;
  1655. left: -12px;
  1656. margin-top: -4px;
  1657. border-top: 9px solid transparent;
  1658. border-right: none;
  1659. border-bottom: 9px solid transparent;
  1660. border-left: 9px solid #faf8f6;
  1661. }
  1662. .tipsy-w .tipsy-arrow:before {
  1663. top: -8px;
  1664. left: -10px;
  1665. margin-top: 0;
  1666. border-top: 10px solid transparent;
  1667. border-right: none;
  1668. border-bottom: 10px solid transparent;
  1669. border-left: 10px solid rgba(49, 48, 43, .1);
  1670. }
  1671. .tipsy-n .tipsy-arrow:after,
  1672. .tipsy-ne .tipsy-arrow:after,
  1673. .tipsy-nw .tipsy-arrow:after {
  1674. margin-top: -4px;
  1675. left: -9px;
  1676. top: -7px;
  1677. border-top: 9px solid #faf8f6;
  1678. border-right: 9px solid transparent;
  1679. border-left: 9px solid transparent;
  1680. }
  1681. .tipsy-n .tipsy-arrow:before,
  1682. .tipsy-ne .tipsy-arrow:before,
  1683. .tipsy-nw .tipsy-arrow:before {
  1684. left: -10px;
  1685. top: -8px;
  1686. margin-top: 0;
  1687. border-top: 10px solid rgba(49, 48, 43, .1);
  1688. border-right: 10px solid transparent;
  1689. border-left: 10px solid transparent;
  1690. }
  1691. .tipsy-s .tipsy-arrow:after,
  1692. .tipsy-sw .tipsy-arrow:after,
  1693. .tipsy-se .tipsy-arrow:after {
  1694. left: -9px;
  1695. top: 6px;
  1696. margin-top: -4px;
  1697. border-top: none;
  1698. border-right: 9px solid transparent;
  1699. border-bottom: 9px solid #faf8f6;
  1700. border-left: 9px solid transparent;
  1701. }
  1702. .tipsy-inner dl {
  1703. margin: 0;
  1704. }
  1705. .tipsy-inner dt {
  1706. margin: 0 0 4px;
  1707. font-size: 16px;
  1708. font-weight: 400;
  1709. color: #f47b20;
  1710. }
  1711. .tipsy-inner dd {
  1712. margin: 0;
  1713. color: #676056;
  1714. font-size: 12px;
  1715. line-height: 18px;
  1716. font-family: Arial, Helvetica, sans-serif;
  1717. }
  1718. // Backup popup
  1719. // TODO: remove after backups page js refactoring
  1720. .backup-dialog {
  1721. margin-top: inherit !important;
  1722. }
  1723. .col-left {
  1724. float: left;
  1725. }
  1726. .col-right {
  1727. float: right;
  1728. }
  1729. .col-1-layout {
  1730. .main-col {
  1731. width: auto;
  1732. }
  1733. }
  1734. .col-2-left-layout {
  1735. margin: 0 auto;
  1736. position: relative;
  1737. &:before {
  1738. position: absolute;
  1739. content: "";
  1740. background-color: @color-white;
  1741. right: 0;
  1742. top: 0;
  1743. bottom: 0;
  1744. min-width: 730px;
  1745. width: 80%;
  1746. }
  1747. }
  1748. .col-2-left-layout .main-col,
  1749. .col-2-right-layout .main-col {
  1750. min-width: 730px;
  1751. }
  1752. //
  1753. // Switcher
  1754. // -------------------------------------
  1755. .admin__actions-switch {
  1756. .admin__actions-switch-checkbox {
  1757. position: absolute;
  1758. z-index: -1;
  1759. }
  1760. }
  1761. .admin__actions-switch {
  1762. .admin__actions-switch-checkbox {
  1763. position: absolute;
  1764. z-index: -1;
  1765. }
  1766. }
  1767. //
  1768. // Content actions panel (with buttons, switchers...)
  1769. // --------------------------------------
  1770. // .page-actions {
  1771. // padding: 0 0 20px;
  1772. // text-align: right;
  1773. // }
  1774. .page-actions .buttons-group {
  1775. vertical-align: top;
  1776. text-align: left;
  1777. }
  1778. .page-actions > .switcher {
  1779. display: inline-block;
  1780. vertical-align: top;
  1781. margin: 6px 10px 0 0;
  1782. }
  1783. // .main-col .page-actions {
  1784. // padding: 20px 0;
  1785. // }
  1786. .catalog-product-index .page-actions {
  1787. padding-top: 0;
  1788. }
  1789. [class^=" catalog-product-"] .store-scope .store-tree {
  1790. float: left;
  1791. }
  1792. // TODO: refactor trees
  1793. .x-tree ul {
  1794. margin: 0;
  1795. padding: 0;
  1796. }
  1797. .tree-wrapper {
  1798. width: 100%;
  1799. overflow: auto;
  1800. float: left; // Fixed Chrome scroll issue
  1801. }
  1802. .page-actions.fixed .page-actions-inner:before {
  1803. content: attr(data-title);
  1804. float: left;
  1805. font-size: 20px;
  1806. max-width: 50%;
  1807. overflow: hidden;
  1808. text-overflow: ellipsis;
  1809. white-space: nowrap;
  1810. }
  1811. // Dynamic Grid
  1812. // Used in pages like Catalog -> Attributes
  1813. .dynamic-grid th {
  1814. padding: 2px;
  1815. width: 100px;
  1816. }
  1817. .dynamic-grid td {
  1818. padding: 2px;
  1819. }
  1820. .dynamic-grid td input {
  1821. width: 94px;
  1822. }
  1823. tr.dynamic-grid td,
  1824. tr.dynamic-grid th {
  1825. padding: 2px 10px 2px 0;
  1826. width: auto;
  1827. }
  1828. tr.dynamic-grid input.input-text {
  1829. width: 154px;
  1830. }
  1831. .available {
  1832. color: #080;
  1833. font-weight: bold;
  1834. }
  1835. .not-available {
  1836. color: #800;
  1837. }
  1838. .categories-side-col {
  1839. padding: 0 3%;
  1840. }
  1841. //
  1842. // Website store views tree
  1843. // --------------------------------------
  1844. .store-tree {
  1845. .website-name {
  1846. font-size: 14px;
  1847. font-weight: bold;
  1848. }
  1849. .webiste-groups {
  1850. margin: 5px 0 20px 25px;
  1851. dt {
  1852. font-weight: bold;
  1853. }
  1854. dd {
  1855. margin: 5px 0 15px 15px;
  1856. > ul {
  1857. list-style: none;
  1858. margin: 0;
  1859. padding: 0;
  1860. > li {
  1861. margin: 0 0 5px;
  1862. }
  1863. }
  1864. }
  1865. }
  1866. }
  1867. //
  1868. // Tree Store Scope
  1869. // ---------------------------------------------
  1870. .tree-store-scope {
  1871. .buttons-set {
  1872. margin-bottom: 9px;
  1873. button {
  1874. margin-right: 4px;
  1875. }
  1876. }
  1877. .field {
  1878. margin: 0 0 5px;
  1879. input[type="checkbox"] {
  1880. &:not(.banner-content-checkbox) {
  1881. margin-right: 8px;
  1882. position: relative;
  1883. top: 2px;
  1884. }
  1885. }
  1886. .addafter {
  1887. display: inline-block;
  1888. padding-top: 6px;
  1889. }
  1890. }
  1891. .tooltip {
  1892. .help {
  1893. margin-top: 11px;
  1894. }
  1895. }
  1896. }
  1897. //
  1898. // Widgets
  1899. // --------------------------------------
  1900. .widget-layout-updates .fieldset-wrapper,
  1901. .widget-layout-updates .data-table {
  1902. margin: 0 0 18px;
  1903. }
  1904. .widget-layout-updates .fieldset-wrapper-title label {
  1905. &:not(.mage-error) {
  1906. padding: 10px 0 0;
  1907. }
  1908. }
  1909. .widget-layout-updates .fieldset-wrapper-title select {
  1910. margin: 3px 10px 5px;
  1911. }
  1912. .widget-layout-updates .fieldset-wrapper-title span,
  1913. .widget-layout-updates .fieldset-wrapper-title select {
  1914. vertical-align: middle;
  1915. }
  1916. .widget-layout-updates .data-table {
  1917. table-layout: fixed;
  1918. }
  1919. .widget-layout-updates .data-table,
  1920. .widget-layout-updates .data-table tr:nth-child(odd) td,
  1921. .widget-layout-updates .data-table tr:nth-child(odd):hover td {
  1922. background: none;
  1923. border: none;
  1924. }
  1925. .widget-layout-updates .data-table th,
  1926. .widget-layout-updates .data-table tbody td {
  1927. border: none;
  1928. padding: 5px 10px;
  1929. }
  1930. .widget-layout-updates .data-table select {
  1931. margin: 0;
  1932. max-width: 99%;
  1933. overflow: hidden;
  1934. }
  1935. .widget-layout-updates .chooser_container {
  1936. padding: 0 10px;
  1937. margin-bottom: 18px;
  1938. }
  1939. .widget-layout-updates .chooser_container p {
  1940. margin: 0 0 18px;
  1941. }
  1942. .widget-layout-updates .chooser_container p img,
  1943. .widget-layout-updates .chooser_container p input {
  1944. vertical-align: middle;
  1945. }
  1946. //
  1947. // Preview window
  1948. // --------------------------------------
  1949. .preview-window {
  1950. background: @color-white;
  1951. }
  1952. .preview-window .toolbar {
  1953. background: #f5f2ed;
  1954. padding: 20px;
  1955. }
  1956. .preview-window .toolbar .switcher {
  1957. margin: 0;
  1958. }
  1959. .preview-window .toolbar .switcher span {
  1960. background: none;
  1961. width: auto;
  1962. }
  1963. //
  1964. // Global 'No Products found' block
  1965. // --------------------------------------
  1966. .no-products-message {
  1967. background: #fbfaf6;
  1968. padding: 12px;
  1969. text-align: center;
  1970. font-size: 12px;
  1971. color: #666;
  1972. margin-bottom: 13px;
  1973. }
  1974. //
  1975. // WYSIWYG
  1976. // --------------------------------------
  1977. .action-wysiwyg {
  1978. margin: 10px 0;
  1979. }
  1980. #catalog-wysiwyg-editor .buttons-set {
  1981. margin-bottom: 9px;
  1982. }
  1983. #catalog-wysiwyg-editor .buttons-set button {
  1984. margin-right: 4px;
  1985. }
  1986. //
  1987. // Add Attribute Popup
  1988. // --------------------------------------
  1989. #create_new_attribute {
  1990. overflow: hidden;
  1991. }
  1992. #create_new_attribute > .loading-mask {
  1993. left: -25px;
  1994. top: -50px;
  1995. }
  1996. #front_fieldset-wrapper {
  1997. border-bottom: 0;
  1998. }
  1999. .attribute-popup {
  2000. background: none;
  2001. }
  2002. .attribute-popup #edit_form {
  2003. display: block;
  2004. > div:last-of-type {
  2005. margin-bottom: 150px;
  2006. }
  2007. }
  2008. .attribute-popup #edit_form > .fieldset > .legend {
  2009. display: none;
  2010. }
  2011. .attribute-popup .wrapper-popup {
  2012. padding: 0;
  2013. height: 511px;
  2014. overflow-x: hidden;
  2015. overflow-y: auto;
  2016. }
  2017. .attribute-popup .fieldset,
  2018. .attribute-popup .fieldset-wrapper {
  2019. border: none;
  2020. border-radius: 0;
  2021. padding: 4px 0 20px;
  2022. margin: 0 23px 20px;
  2023. }
  2024. .attribute-popup .fieldset-wrapper {
  2025. border-top: none;
  2026. }
  2027. .attribute-popup .fieldset-wrapper:not(.admin__collapsible-block) .fieldset-wrapper-title {
  2028. border-bottom: none;
  2029. }
  2030. .attribute-popup .fieldset-wrapper .fieldset-wrapper-content > .fieldset {
  2031. margin-left: 0;
  2032. margin-right: 0;
  2033. }
  2034. .attribute-popup .fieldset > .field > input[type="checkbox"] {
  2035. margin-top: 7px;
  2036. }
  2037. .attribute-popup .fieldset .label {
  2038. width: 35%;
  2039. }
  2040. .attribute-popup .admin__collapsible-block-wrapper,
  2041. #manage-titles-wrapper {
  2042. .fieldset-wrapper-title {
  2043. margin-bottom: 0;
  2044. padding-bottom: 0;
  2045. }
  2046. .col-store-view {
  2047. .input-text {
  2048. width: 100%;
  2049. }
  2050. }
  2051. }
  2052. .attribute-popup .admin__collapsible-block-wrapper .fieldset-wrapper-title > .title:before {
  2053. color: #797269;
  2054. font-size: 14px;
  2055. top: 9px;
  2056. }
  2057. .attribute-popup form .entry-edit:first-child .fieldset {
  2058. border-bottom: 1px solid #dfdcd7;
  2059. }
  2060. .attribute-popup .fieldset .legend {
  2061. border: none;
  2062. }
  2063. .attribute-popup .page-actions [class^='action-'] {
  2064. margin-left: 18px;
  2065. }
  2066. .attribute-popup #base_fieldset {
  2067. padding-top: 20px;
  2068. }
  2069. .attribute-popup #base_fieldset > .legend {
  2070. display: none;
  2071. }
  2072. .attribute-popup .page-actions-placeholder {
  2073. display: none;
  2074. }
  2075. .attribute-popup .page-actions.fixed .page-actions-inner {
  2076. background: @color-white;
  2077. padding: 0;
  2078. min-width: 100%;
  2079. max-width: 100%;
  2080. min-height: 100%;
  2081. margin: 0;
  2082. }
  2083. .attribute-popup .footer {
  2084. display: none;
  2085. }
  2086. #manage-options-panel {
  2087. .admin__control-table {
  2088. clear: both;
  2089. }
  2090. .input-text {
  2091. width: 100%;
  2092. }
  2093. }
  2094. // Custom grids view
  2095. .CustomGridView {
  2096. .page-layout-admin-1column .page-columns {
  2097. background: transparent;
  2098. }
  2099. }
  2100. // Custom grid action view for Primary Add Button at grid tables
  2101. .CustomGridAction {
  2102. .grid-actions {
  2103. border-radius: 5px 5px 0 0;
  2104. margin-top: 20px;
  2105. padding: 9px 15px;
  2106. }
  2107. .page-actions.fixed {
  2108. left: 0;
  2109. margin: 0;
  2110. padding: 0 21px;
  2111. position: fixed;
  2112. }
  2113. .page-actions {
  2114. position: absolute;
  2115. z-index: 2;
  2116. margin-top: 10px;
  2117. margin-left: 15px;
  2118. padding: 0;
  2119. }
  2120. }
  2121. // Custom page-actions view
  2122. .sidebar-actions {
  2123. padding: 14px 0;
  2124. }
  2125. .sidebar-actions button {
  2126. margin: 0 0 5px;
  2127. }
  2128. .data-table .fpt-item-container {
  2129. td {
  2130. vertical-align: top;
  2131. }
  2132. select:first-child {
  2133. margin-bottom: 8px;
  2134. }
  2135. }
  2136. // Clearfix
  2137. .clearfix:before,
  2138. .clearfix:after,
  2139. [class$="-layout"]:after,
  2140. .tabs-horiz:before,
  2141. .tabs-horiz:after,
  2142. .page-create-order:before,
  2143. .page-create-order:after,
  2144. .order-addresses:before,
  2145. .order-addresses:after,
  2146. .order-summary:before,
  2147. .order-summary:after,
  2148. .order-methods:before,
  2149. .order-methods:after,
  2150. .payment-methods:before,
  2151. .payment-methods:after,
  2152. .grid-actions:before,
  2153. .grid-actions:after,
  2154. .fieldset-wrapper-title:before,
  2155. .fieldset-wrapper-title:after {
  2156. content: "";
  2157. display: table;
  2158. }
  2159. .clearfix:after,
  2160. [class$="-layout"]:after,
  2161. .tabs-horiz:after,
  2162. .page-create-order:after,
  2163. .order-addresses:after,
  2164. .order-summary:after,
  2165. .order-methods:after,
  2166. .payment-methods:after,
  2167. .grid-actions:after,
  2168. .fieldset-wrapper-title:after {
  2169. clear: both;
  2170. }
  2171. //
  2172. // Pages.less (begin)
  2173. // ---------------------------------------------
  2174. .field-weight .control .field:first-child {
  2175. width: 36%;
  2176. margin-right: 15px;
  2177. }
  2178. #allow_open_amount {
  2179. margin-top: 8px;
  2180. }
  2181. #tab_content_downloadableInfo .data-table td {
  2182. vertical-align: top;
  2183. .row {
  2184. margin-bottom: 10px;
  2185. }
  2186. }
  2187. //
  2188. // Customer
  2189. // ---------------------------------------------
  2190. #customer_info_tabs_account_content #_accountsendemail {
  2191. margin-top: 8px;
  2192. }
  2193. .customer-information:before,
  2194. .customer-information:after {
  2195. content: "";
  2196. display: table;
  2197. }
  2198. .customer-information:after {
  2199. clear: both;
  2200. }
  2201. .customer-information .admin__table-secondary,
  2202. .customer-information address {
  2203. width: 48.5%;
  2204. }
  2205. .customer-information .admin__table-secondary {
  2206. float: left;
  2207. width: 48.5%;
  2208. }
  2209. .customer-information address {
  2210. float: right;
  2211. line-height: 2.2;
  2212. padding-top: 4px;
  2213. }
  2214. .address-list {
  2215. float: left;
  2216. list-style: none;
  2217. margin: 0 0 10px;
  2218. padding: 0;
  2219. width: 278px;
  2220. }
  2221. //
  2222. // Configuration -> Design
  2223. // ---------------------------------------------
  2224. #row_design_theme_ua_regexp {
  2225. .design_theme_ua_regexp {
  2226. float: left;
  2227. width: 100%;
  2228. }
  2229. .tooltip {
  2230. margin-top: 8px;
  2231. }
  2232. .note {
  2233. clear: both;
  2234. }
  2235. }
  2236. .form-list {
  2237. .small-image-preview {
  2238. display: inline-block;
  2239. margin: 0 @indent__xs 0 0;
  2240. vertical-align: middle;
  2241. }
  2242. .delete-image {
  2243. display: block;
  2244. margin: @indent__xs 0;
  2245. white-space: nowrap;
  2246. }
  2247. }
  2248. //
  2249. // Configuration -> Advanced -> System -> Notifications section
  2250. // ---------------------------------------------
  2251. #row_system_adminnotification_last_update {
  2252. .value {
  2253. vertical-align: bottom;
  2254. }
  2255. }
  2256. //
  2257. // CMS -> Banners
  2258. // ---------------------------------------------
  2259. // Banner Properties
  2260. #banner_properties_customer_segment_ids {
  2261. min-width: 20%;
  2262. }
  2263. //
  2264. // CMS -> Manage Hierarchy
  2265. // ---------------------------------------------
  2266. .cms-hierarchy .cms-scope {
  2267. float: right;
  2268. margin-right: 25px;
  2269. position: relative;
  2270. top: 2px;
  2271. z-index: 1;
  2272. }
  2273. .cms-hierarchy #tree-container {
  2274. margin-top: 25px;
  2275. overflow: auto;
  2276. padding-bottom: 10px;
  2277. }
  2278. .cms-hierarchy .cms-hierarchy-tree {
  2279. width: 48.93617020799999%;
  2280. float: left;
  2281. margin: 10px 0 8px 0;
  2282. }
  2283. .cms-hierarchy .cms-hierarchy-node {
  2284. width: 48.93617020799999%;
  2285. float: left;
  2286. margin: 10px 0 8px 2.127659574%;
  2287. }
  2288. .cms-hierarchy #cms_page_grid_container {
  2289. clear: both;
  2290. }
  2291. .cms-hierarchy .store-switcher {
  2292. position: relative;
  2293. top: 10px;
  2294. }
  2295. .cms-hierarchy .store-switcher label {
  2296. margin-right: 8px;
  2297. }
  2298. .cms-hierarchy-node #node_properties_fieldset #node_preview {
  2299. position: relative;
  2300. top: 6px;
  2301. }
  2302. .cms-hierarchy-node .form-inline .label {
  2303. width: 30%;
  2304. }
  2305. //
  2306. // CMS -> Widgets
  2307. // ---------------------------------------------
  2308. #widget_instace_tabs_properties_section_content .widget-option-label {
  2309. margin-top: 7px;
  2310. display: inline-block;
  2311. }
  2312. //
  2313. // CMS -> Manage Content
  2314. // --------------------------------------
  2315. // Content
  2316. .cms-manage-content-actions textarea {
  2317. width: 100%;
  2318. }
  2319. //
  2320. // System -> Action Log -> Report
  2321. // --------------------------------------
  2322. .adminhtml-logging-details .log-details-grid table {
  2323. th {
  2324. border: 1px solid #c9c2b8;
  2325. border-width: 0 0 1px;
  2326. padding: 6px 10px 7px;
  2327. background: @color-white;
  2328. .style2();
  2329. span {
  2330. border: 0;
  2331. padding: 0;
  2332. }
  2333. }
  2334. td {
  2335. border: none;
  2336. padding: 6px 10px 7px;
  2337. background: @color-white;
  2338. }
  2339. tr:last-child td {
  2340. border: 1px solid #eae8e4;
  2341. border-width: 0 0 1px;
  2342. }
  2343. tr.on-mouse {
  2344. cursor: inherit;
  2345. }
  2346. tr:nth-child(odd) td,
  2347. tr.on-mouse:nth-child(odd):hover td {
  2348. background: #fbfaf6;
  2349. }
  2350. }
  2351. //
  2352. // System -> Roles
  2353. // --------------------------------------
  2354. #gws_container ul {
  2355. padding: 0;
  2356. margin: 0;
  2357. list-style: none;
  2358. }
  2359. #gws_container ul ul {
  2360. margin: .8em 0 .8em 1.4em;
  2361. }
  2362. #gws_container input[type="checkbox"] {
  2363. margin-right: 3px;
  2364. position: relative;
  2365. top: -1px;
  2366. }
  2367. //
  2368. // Reports
  2369. // --------------------------------------
  2370. .reports-title .page-actions {
  2371. float: right;
  2372. }
  2373. .reports-title .store-switcher {
  2374. padding: 14px 0 18px;
  2375. }
  2376. .reports-content select {
  2377. width: 160px;
  2378. }
  2379. .reports-content input._has-datepicker {
  2380. width: 133px;
  2381. }
  2382. .reports-content .required .control {
  2383. position: relative;
  2384. }
  2385. .reports-content input._has-datepicker + label.mage-error {
  2386. left: 0;
  2387. position: absolute;
  2388. top: 30px;
  2389. }
  2390. .reports-title:before,
  2391. .reports-title:after {
  2392. content: "";
  2393. display: table;
  2394. }
  2395. .reports-title:after {
  2396. clear: both;
  2397. }
  2398. .table-fieldset-alt,
  2399. .type-options {
  2400. margin-bottom: 20px;
  2401. }
  2402. .table-fieldset-alt thead th,
  2403. .table-fieldset-alt tbody tr td {
  2404. border-width: 0;
  2405. }
  2406. .table-fieldset-alt tbody tr:nth-child(odd) td,
  2407. .table-fieldset-alt tbody tr:nth-child(odd):hover td {
  2408. background: @color-white;
  2409. }
  2410. //
  2411. // System - Tax
  2412. // --------------------------------------
  2413. .mselect-hidden + .mage-error {
  2414. position: absolute;
  2415. top: 100%;
  2416. }
  2417. //
  2418. // Tags
  2419. // --------------------------------------
  2420. .tag-title {
  2421. overflow: hidden;
  2422. }
  2423. .tag-title .page-actions {
  2424. float: right;
  2425. }
  2426. //
  2427. // Attribute Mapping
  2428. // --------------------------------------
  2429. .field-attributes_box .control-value {
  2430. width: 100%;
  2431. }
  2432. //
  2433. // Sales
  2434. // --------------------------------------
  2435. #order-totals strong {
  2436. .style28();
  2437. }
  2438. #order-billing-method-summary a,
  2439. #order-shipping-method-summary a {
  2440. .style3();
  2441. }
  2442. .customer-current-activity-inner {
  2443. padding: 18px;
  2444. }
  2445. .customer-current-activity .action-refresh {
  2446. float: right;
  2447. &:hover {
  2448. text-decoration: none;
  2449. }
  2450. }
  2451. .order-currency {
  2452. padding: 18px;
  2453. }
  2454. .order-details-existing-customer {
  2455. background: @color-white;
  2456. padding-left: 0;
  2457. position: relative;
  2458. width: 77.9%;
  2459. float: right;
  2460. }
  2461. #order-data .order-account-information {
  2462. float: none;
  2463. width: auto;
  2464. }
  2465. #order-data .actions .action-add,
  2466. #order-data .actions .action-delete,
  2467. #order-customer-selector .actions .action-add {
  2468. margin: 0 0 0 20px;
  2469. }
  2470. #order-data .order-methods ul,
  2471. #order-data .payment-methods ul {
  2472. list-style: none;
  2473. margin: 0;
  2474. padding: 0;
  2475. }
  2476. #order-data .order-methods dl,
  2477. #order-data .order-methods dt,
  2478. #order-data .order-methods dd,
  2479. #order-data .payment-methods dl,
  2480. #order-data .payment-methods dt,
  2481. #order-data .payment-methods dd {
  2482. margin: 0;
  2483. padding: 0;
  2484. }
  2485. #order-data .order-methods dd + dt,
  2486. #order-data .payment-methods dd + dt {
  2487. margin-top: 17px;
  2488. }
  2489. #order-data .order-methods dt,
  2490. #order-data .payment-methods dt {
  2491. margin: 0 0 8px;
  2492. }
  2493. .order-account-information {
  2494. .admin__fieldset-wrapper-title {
  2495. margin: 0 0 18px;
  2496. padding: 12px 0 14px;
  2497. .title {
  2498. margin: 0;
  2499. }
  2500. }
  2501. }
  2502. .order-gift-options {
  2503. padding: 0 18px;
  2504. }
  2505. .order-coupons .box-left,
  2506. .order-gift-options .box-left {
  2507. float: left;
  2508. width: 49%;
  2509. }
  2510. .order-coupons .box-right,
  2511. .order-gift-options .box-right {
  2512. float: right;
  2513. width: 49%;
  2514. }
  2515. .order-gift-options .box-left:last-child,
  2516. .order-gift-options .fieldset-wrapper-title + .box-right {
  2517. float: none;
  2518. width: auto;
  2519. }
  2520. .order-coupons .content {
  2521. .action- {
  2522. vertical-align: top;
  2523. }
  2524. input[type="text"] {
  2525. height: 28px;
  2526. }
  2527. }
  2528. .order-gift-options {
  2529. fieldset {
  2530. border-radius: 5px;
  2531. }
  2532. .gift-wrapping-form select {
  2533. margin-left: 10px;
  2534. }
  2535. .giftmessage-whole-order-container {
  2536. textarea {
  2537. height: 6em;
  2538. width: 100%;
  2539. }
  2540. .actions {
  2541. margin-left: 20%;
  2542. }
  2543. }
  2544. }
  2545. .ui-dialog.gift-options-popup .ui-dialog-content {
  2546. padding: 25px;
  2547. }
  2548. .ui-dialog.gift-options-popup .ui-dialog-content h4 {
  2549. margin: 0 0 17px;
  2550. }
  2551. .gift-options-tooltip {
  2552. background: @color-white;
  2553. border-radius: 5px;
  2554. padding: 10px;
  2555. box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  2556. }
  2557. #order-data .box-left fieldset,
  2558. #order-data .box-right fieldset {
  2559. border-radius: 5px;
  2560. }
  2561. .adminhtml-rma-new .order-totals {
  2562. float: none;
  2563. width: 100%;
  2564. }
  2565. //
  2566. // Sales -> Create Order
  2567. // --------------------------------------
  2568. #order-data .page-actions {
  2569. padding-top: 0;
  2570. }
  2571. .create-order-sidebar-container > div + div {
  2572. border-top: 1px solid #cac3b4;
  2573. margin-top: 35px;
  2574. }
  2575. .create-order-sidebar-container > div .head h5 {
  2576. .style9();
  2577. margin: 17px 0 17px;
  2578. }
  2579. .customer-current-activity-inner > h4 {
  2580. .style10();
  2581. border-bottom: 1px solid #cac3b4;
  2582. margin-top: 0;
  2583. padding: 0 0 16px;
  2584. }
  2585. .customer-current-activity-inner .auto-scroll {
  2586. margin-right: -18px;
  2587. margin-left: -18px;
  2588. .no-items {
  2589. padding: 5px 18px;
  2590. display: block;
  2591. }
  2592. }
  2593. .customer-current-activity-inner .data-table {
  2594. thead {
  2595. background-color: transparent;
  2596. }
  2597. thead th {
  2598. background-color: transparent;
  2599. .style18();
  2600. border: 0;
  2601. &:first-child {
  2602. padding-left: 18px;
  2603. }
  2604. &:last-child {
  2605. padding-right: 18px;
  2606. }
  2607. }
  2608. tbody tr {
  2609. td {
  2610. background-color: transparent;
  2611. border: 0;
  2612. &:first-child {
  2613. padding-left: 18px;
  2614. }
  2615. &:first-child {
  2616. padding-right: 18px;
  2617. }
  2618. }
  2619. &:nth-child(2n + 1) td {
  2620. background: #e0dace;
  2621. }
  2622. }
  2623. }
  2624. .customer-current-activity .action-refresh {
  2625. float: right;
  2626. }
  2627. .customer-current-activity .action-refresh,
  2628. .customer-current-activity .data-table .icon {
  2629. display: inline-block;
  2630. text-indent: 100%;
  2631. overflow: hidden;
  2632. height: 16px;
  2633. width: 16px;
  2634. line-height: 16px;
  2635. white-space: nowrap;
  2636. }
  2637. .customer-current-activity .action-refresh:before,
  2638. .customer-current-activity .data-table .icon:before {
  2639. content: "\e010";
  2640. color: #c3c2be;
  2641. display: block;
  2642. text-indent: 0;
  2643. font-size: 16px;
  2644. line-height: 16px;
  2645. font-family: 'MUI-Icons';
  2646. font-style: normal;
  2647. font-weight: normal;
  2648. speak: none;
  2649. -webkit-font-smoothing: antialiased;
  2650. }
  2651. .customer-current-activity .data-table .icon-remove:before {
  2652. content: "\e07f";
  2653. }
  2654. .customer-current-activity .data-table .icon-add:before {
  2655. content: "\e071";
  2656. }
  2657. .customer-current-activity .auto-scroll {
  2658. .style18();
  2659. overflow: auto;
  2660. max-height: 150px;
  2661. }
  2662. .customer-current-activity .auto-scroll + button {
  2663. margin: 22px 0 0;
  2664. }
  2665. .customer-current-activity .actions {
  2666. border-top: none;
  2667. margin: 20px 0 0;
  2668. padding: 0;
  2669. }
  2670. .overlay {
  2671. background: rgba(255, 255, 255, .5);
  2672. border-radius: 5px;
  2673. position: absolute;
  2674. top: 0;
  2675. bottom: 0;
  2676. left: 0;
  2677. right: 0;
  2678. span {
  2679. color: #111;
  2680. font-weight: bold;
  2681. position: absolute;
  2682. top: 56px;
  2683. left: 0;
  2684. margin: 0 8px;
  2685. padding: 10px;
  2686. background: @color-white;
  2687. }
  2688. }
  2689. //
  2690. // Orders comments
  2691. //--------------------------------------
  2692. .note-list {
  2693. list-style: none;
  2694. padding: 0;
  2695. li {
  2696. border-top: 1px solid #ededed;
  2697. padding: 9px 0;
  2698. &:first-child {
  2699. border: 0;
  2700. padding-top: 13px;
  2701. }
  2702. }
  2703. div {
  2704. font-size: 12px;
  2705. }
  2706. .note-list-date,
  2707. .note-list-status,
  2708. .note-list-customer span {
  2709. font-weight: bold;
  2710. }
  2711. .note-list-time,
  2712. .note-list-status {
  2713. border-right: 1px solid #676056;
  2714. padding: 0 5px 0 0;
  2715. margin: 0 5px 0 0;
  2716. }
  2717. .note-list-customer {
  2718. white-space: nowrap;
  2719. }
  2720. .note-list-comment {
  2721. margin: 5px 0 0;
  2722. }
  2723. .note-list-customer-notapplicable {
  2724. color: #d87e34;
  2725. }
  2726. .note-list-customer-notified {
  2727. color: #185b00;
  2728. }
  2729. .note-list-customer-not-notified {
  2730. color: #963535;
  2731. }
  2732. }
  2733. .adminhtml-rma-item-attribute-edit .col-position input {
  2734. text-align: center;
  2735. }
  2736. .order-subtotal .label {
  2737. text-align: right;
  2738. }
  2739. .items-to-invoice {
  2740. border: 1px solid #c0bbaf;
  2741. margin-top: 13px;
  2742. width: 100%;
  2743. }
  2744. .items-to-invoice td,
  2745. table.items-to-invoice tbody tr:hover td {
  2746. background-color: #e6e3de;
  2747. border: 0;
  2748. text-align: center;
  2749. }
  2750. .items-to-invoice .grand-total {
  2751. color: #19a3d1;
  2752. font-weight: bold;
  2753. }
  2754. .creditmemo-totals .data-table input[type="text"] {
  2755. text-align: right;
  2756. width: 60px;
  2757. }
  2758. .col-product .product_to_add {
  2759. float: right;
  2760. }
  2761. //
  2762. // Orders refund
  2763. //--------------------------------------
  2764. .field-refund-store-credit {
  2765. .input-text {
  2766. text-align: right;
  2767. width: 60px;
  2768. }
  2769. }
  2770. //
  2771. // Packaging for Shipping Popup
  2772. // --------------------------------------
  2773. #popup-window-mask,
  2774. .popup-window-mask {
  2775. background: rgba(0, 0, 0, .5);
  2776. position: absolute;
  2777. top: 0;
  2778. right: 0;
  2779. bottom: 0;
  2780. left: 0;
  2781. width: 100%;
  2782. height: 100%;
  2783. z-index: 999;
  2784. }
  2785. .grid .popup-window {
  2786. text-align: left;
  2787. }
  2788. .grid tr.on-mouse td .popup-window .data-table tbody tr:nth-child(2n+1) td,
  2789. .grid table tbody tr.on-mouse:nth-child(odd):hover td .popup-window .data-table tbody tr:nth-child(2n+1) td,
  2790. .grid table tbody tr.on-mouse:nth-child(odd):hover td .popup-window .data-table tbody tr:nth-child(2n+1):hover td,
  2791. .grid table tbody tr.on-mouse:nth-child(2n+1):hover td .popup-window .data-table tbody tr:nth-child(2n+1) td,
  2792. .grid table tbody tr.on-mouse:nth-child(2n+1):hover td .popup-window .data-table tbody tr:nth-child(2n+1):hover td,
  2793. .grid table tbody tr.on-mouse:hover td .popup-window .data-table tbody tr:nth-child(2n+1),
  2794. .grid table tbody tr.on-mouse:hover th .popup-window .data-table tbody tr:nth-child(2n+1) {
  2795. background-color: #fbfaf6;
  2796. }
  2797. .grid .popup-window {
  2798. text-align: left;
  2799. }
  2800. .popup-window-buttons-set {
  2801. text-align: right;
  2802. padding: 25px;
  2803. }
  2804. .popup-window-title {
  2805. background: #f3efea;
  2806. padding: 19px 20px;
  2807. }
  2808. .popup-window-title .title {
  2809. color: #676056;
  2810. display: block;
  2811. font-size: 20px;
  2812. line-height: 1;
  2813. }
  2814. .popup-window-title .actions {
  2815. float: right;
  2816. }
  2817. .popup-window-content {
  2818. padding: 25px 25px 0;
  2819. }
  2820. .popup-window-content > ul {
  2821. list-style: none;
  2822. padding: 0;
  2823. }
  2824. .sp-methods > dt {
  2825. font-weight: bold;
  2826. }
  2827. .sp-methods > dd {
  2828. margin: 5px 0 5px 15px;
  2829. }
  2830. .sp-methods > dd > ul {
  2831. list-style: none;
  2832. padding: 0;
  2833. }
  2834. //
  2835. // Popup Configuration Popup
  2836. // --------------------------------------
  2837. #product_composite_configure_messages {
  2838. margin-left: 0 !important;
  2839. padding: 10px 15px;
  2840. }
  2841. .rma-popup,
  2842. .cms-popup {
  2843. background: @color-white;
  2844. box-shadow: 0 3px 6px rgba(0, 0, 0, .4);
  2845. cursor: default;
  2846. position: fixed;
  2847. left: 50%;
  2848. top: 50%;
  2849. z-index: 1000;
  2850. }
  2851. .rma-popup {
  2852. width: 540px;
  2853. margin: 0 0 0 -271px;
  2854. }
  2855. .rma-popup .entry-edit .fieldset {
  2856. border: none;
  2857. }
  2858. .rma-popup .validation-advice,
  2859. .rma-popup label.mage-error {
  2860. margin-left: 0;
  2861. }
  2862. .rma-popup .content {
  2863. background: @color-white;
  2864. border-bottom: 1px solid #ccc;
  2865. max-height: 400px;
  2866. overflow: auto;
  2867. }
  2868. .rma-popup .content .grid {
  2869. padding: 0;
  2870. }
  2871. .rma-popup .content .grid table {
  2872. border-bottom: 1px solid #cbd3d4;
  2873. }
  2874. .rma-popup .product-options {
  2875. border-bottom: 1px solid #e7e7e7;
  2876. margin: 0 0 15px;
  2877. padding: 0 0 12px;
  2878. }
  2879. .rma-popup .product-options .required {
  2880. color: #333 !important;
  2881. font-weight: normal !important;
  2882. }
  2883. .rma-popup .product-options .required em {
  2884. color: #d40707;
  2885. }
  2886. .rma-popup .last-fieldset .product-options {
  2887. border: 0 none;
  2888. margin-bottom: 0;
  2889. padding-bottom: 0;
  2890. }
  2891. .rma-popup .buttons-set {
  2892. text-align: right;
  2893. margin: 0;
  2894. overflow: hidden;
  2895. padding: 7px 10px 8px;
  2896. }
  2897. .rma-popup .buttons-set {
  2898. width: 518px;
  2899. }
  2900. .cms-popup .buttons-set {
  2901. width: 289px;
  2902. }
  2903. .rma-popup .buttons-set button {
  2904. margin: 0 0 0 5px;
  2905. }
  2906. .grid .rma-popup .form-list tr,
  2907. .grid tr.even .rma-popup .form-list tr,
  2908. .grid tr.on-mouse .rma-popup .form-list tr {
  2909. background: @color-white !important;
  2910. }
  2911. //
  2912. // URL rewrite
  2913. // --------------------------------------
  2914. .adminhtml-urlrewrite-edit .field-entity-type-selector .label {
  2915. width: auto;
  2916. }
  2917. //
  2918. // Cart Price Rule
  2919. // --------------------------------------
  2920. .fieldset .field-coupon_code,
  2921. .fieldset .field-rule_use_auto_generation {
  2922. margin-bottom: 0;
  2923. }
  2924. .field-rule_use_auto_generation .label {
  2925. margin-left: 5px;
  2926. }
  2927. .field-rule_use_auto_generation .nested {
  2928. margin-bottom: 29px;
  2929. }
  2930. //
  2931. // Product Image Placeholders
  2932. // --------------------------------------
  2933. #catalog_placeholder .input-file,
  2934. #catalog_placeholder .delete-image > input {
  2935. margin-right: 5px;
  2936. }
  2937. // Permanent Redirect for old URL
  2938. .control > [name="product[url_key_create_redirect]"],
  2939. .control > [name="general[url_key_create_redirect]"] {
  2940. float: left;
  2941. margin: 8px 5px 0 0;
  2942. }
  2943. .control > [name="product[url_key_create_redirect]"] + .label,
  2944. .control > [name="general[url_key_create_redirect]"] + .label {
  2945. width: auto;
  2946. padding-top: 8px;
  2947. }
  2948. //
  2949. // New Product Attribute Set
  2950. // --------------------------------------
  2951. .field-skeleton_set .select {
  2952. width: 100%;
  2953. }
  2954. #affected-attribute-set-form .fieldset .field {
  2955. margin-bottom: 12px;
  2956. &:last-child {
  2957. margin-bottom: 0;
  2958. }
  2959. }
  2960. //
  2961. // Cache Management
  2962. // --------------------------------------
  2963. .additional-cache-management .label {
  2964. margin-top: 5px;
  2965. }
  2966. //
  2967. // Categories
  2968. // --------------------------------------
  2969. .category-content .form-inline.permissions-custom-options {
  2970. .messages {
  2971. li {
  2972. margin-top: 0;
  2973. }
  2974. }
  2975. .data-table {
  2976. margin-bottom: 25px;
  2977. }
  2978. }
  2979. //
  2980. // Marketing - Email Reminders
  2981. // --------------------------------------
  2982. .lt-1280 .adminhtml-reminder-edit #customerGrid .grid .filter .range div.date {
  2983. min-width: 0;
  2984. }
  2985. //
  2986. // Customers - Manage Shopping Cart
  2987. // --------------------------------------
  2988. .checkout-index-index {
  2989. .products-search {
  2990. margin-top: 35px;
  2991. > .actions {
  2992. text-align: right;
  2993. margin: 10px 0;
  2994. }
  2995. }
  2996. .shopping-cart-items {
  2997. > .actions {
  2998. margin-bottom: 15px;
  2999. }
  3000. .box-left,
  3001. .box.right {
  3002. width: 49%;
  3003. fieldset {
  3004. border-radius: 5px;
  3005. }
  3006. }
  3007. .box-left {
  3008. float: left;
  3009. }
  3010. .box.right {
  3011. float: right;
  3012. }
  3013. }
  3014. .grid table .action-configure {
  3015. float: right;
  3016. }
  3017. }
  3018. //
  3019. // Clearfix
  3020. // --------------------------------------
  3021. .shopping-cart-items:before,
  3022. .shopping-cart-items:after,
  3023. .image-panel:before,
  3024. .image-panel:after,
  3025. .images:before,
  3026. .images:after,
  3027. .tax-rate-popup .field:before,
  3028. .tax-rate-popup .field:after,
  3029. .clearfix:before,
  3030. .clearfix:after,
  3031. #tab_content_downloadableInfo .data-table td .row:before,
  3032. #tab_content_downloadableInfo .data-table td .row:after {
  3033. content: "";
  3034. display: table;
  3035. }
  3036. .shopping-cart-items:after,
  3037. .image-panel:after,
  3038. .images:after,
  3039. .tax-rate-popup .field:after,
  3040. .clearfix:after,
  3041. #tab_content_downloadableInfo .data-table td .row:after {
  3042. clear: both;
  3043. }
  3044. //
  3045. // pages.less (end)
  3046. // --------------------------------------
  3047. //
  3048. // debug.less (begin)
  3049. // ==========================================================================
  3050. //
  3051. // This file was created to debug old classes in order to indicate where we must replase it with new ones
  3052. .debug {
  3053. border: 1px solid red !important;
  3054. }
  3055. //
  3056. // Sales
  3057. // --------------------------------------
  3058. .order-items .entry-edit-head .form-buttons {
  3059. float: right;
  3060. }
  3061. .order-items .entry-edit-head .icon-head {
  3062. display: inline;
  3063. }
  3064. .order-items .entry-edit-head {
  3065. margin-bottom: 20px;
  3066. }
  3067. .order-items .entry-edit-head:before,
  3068. .order-items .entry-edit-head:after {
  3069. content: "";
  3070. display: table;
  3071. }
  3072. .order-items .entry-edit-head:after {
  3073. clear: both;
  3074. }
  3075. //
  3076. // Import-export tax rates
  3077. // --------------------------------------
  3078. .import-export-tax-rates input[type=file] {
  3079. margin-right: 10px;
  3080. }
  3081. .import-tax-rates,
  3082. .export-tax-rates {
  3083. float: left;
  3084. width: 48.9362%;
  3085. }
  3086. .export-tax-rates {
  3087. margin-left: 2.12766%;
  3088. }
  3089. .import-export-tax-rates:before,
  3090. .import-export-tax-rates:after {
  3091. content: "";
  3092. display: table;
  3093. }
  3094. .import-export-tax-rates:after {
  3095. clear: both;
  3096. }
  3097. //
  3098. // Product
  3099. // --------------------------------------
  3100. .tier {
  3101. margin: 20px 0 0;
  3102. }
  3103. //
  3104. // Edit attribute set
  3105. // --------------------------------------
  3106. .attribute-set-col {
  3107. display: block;
  3108. float: left;
  3109. margin-left: 2.127659574%;
  3110. -moz-box-sizing: border-box;
  3111. box-sizing: border-box;
  3112. width: 31.9149%;
  3113. }
  3114. .edit-attribute-set,
  3115. .attribute-set-col:first-child {
  3116. margin-left: 0;
  3117. }
  3118. .attribute-set-tree {
  3119. margin-top: 5px;
  3120. overflow: auto;
  3121. height: 400px;
  3122. width: 100%;
  3123. }
  3124. .attribute-set:before,
  3125. .attribute-set:after {
  3126. content: "";
  3127. display: table;
  3128. }
  3129. .attribute-set:after {
  3130. clear: both;
  3131. }
  3132. //
  3133. // Manage Categories
  3134. // --------------------------------------
  3135. .catalog-category-edit .category-edit-title {
  3136. float: left;
  3137. }
  3138. //
  3139. // Catalog Price Rule
  3140. // --------------------------------------
  3141. .rule-tree-wrapper {
  3142. line-height: 28px;
  3143. }
  3144. .rule-tree .fieldset {
  3145. min-width: 0; // Fixed Chrome fieldset issue
  3146. }
  3147. @-moz-document url-prefix() { // Fixed Firefox fieldset issue
  3148. .rule-tree .fieldset {
  3149. display: table-cell;
  3150. }
  3151. }
  3152. .rule-tree ul {
  3153. list-style: none;
  3154. padding-left: 16px;
  3155. border-left: dotted 1px #888;
  3156. }
  3157. .rule-tree li {
  3158. margin: 0 0 10px;
  3159. }
  3160. .rule-tree .x-tree ul {
  3161. padding-left: 0 !important;
  3162. border-left: none !important;
  3163. }
  3164. .rule-tree {
  3165. ._has-datepicker {
  3166. + .ui-datepicker-trigger {
  3167. position: static;
  3168. }
  3169. }
  3170. }
  3171. .rule-param .label {
  3172. color: @color-black;
  3173. float: none;
  3174. text-align: left;
  3175. padding: 0;
  3176. vertical-align: baseline;
  3177. width: auto;
  3178. }
  3179. .rule-param .label-disabled {
  3180. color: #eee;
  3181. cursor: default;
  3182. text-decoration: none;
  3183. }
  3184. .rule-chooser,
  3185. .rule-param .element,
  3186. .rule-param-edit .label {
  3187. display: none;
  3188. }
  3189. .rule-chooser .field-row {
  3190. .lib-clearfix();
  3191. display: block;
  3192. margin-bottom: 17px;
  3193. .input-text {
  3194. margin-top: 5px;
  3195. }
  3196. .ui-datepicker-trigger {
  3197. margin-left: 5px;
  3198. margin-top: -2px;
  3199. }
  3200. }
  3201. .rule-param input,
  3202. .rule-param select {
  3203. width: auto !important;
  3204. margin: 0;
  3205. min-width: 170px;
  3206. }
  3207. .rule-param-edit .element {
  3208. display: inline;
  3209. position: relative;
  3210. }
  3211. .rule-param-edit .element input.input-date,
  3212. .rule-param-edit .element input.input-date[readonly] {
  3213. background-color: @color-white;
  3214. min-width: 140px;
  3215. width: 140px !important;
  3216. cursor: pointer;
  3217. text-align: center;
  3218. opacity: 1;
  3219. margin-right: 10px;
  3220. padding-right: 40px;
  3221. + .ui-datepicker-trigger {
  3222. position: absolute;
  3223. width: 140px;
  3224. text-align: right;
  3225. left: 0;
  3226. }
  3227. }
  3228. .rule-param-edit .element .addafter {
  3229. padding-left: 5px;
  3230. }
  3231. [class^="rule-param-"] img,
  3232. .rule-chooser-trigger img {
  3233. vertical-align: middle;
  3234. }
  3235. .rule-chooser {
  3236. border: solid 1px #CCC;
  3237. margin: 20px;
  3238. padding: 15px 10px;
  3239. overflow: auto;
  3240. }
  3241. .rule-param-wait {
  3242. background: url(../mui/images/ajax-loader-small.gif) no-repeat left center;
  3243. padding-left: 20px;
  3244. }
  3245. //
  3246. // URL Rewrite
  3247. // --------------------------------------
  3248. .field-entity-type-selector {
  3249. padding-top: 13px;
  3250. }
  3251. //
  3252. // debug.less (end)
  3253. // --------------------------------------
  3254. // Magento Import instructions
  3255. //@magento_import "source/_module-old.less"; // import theme styles
  3256. //
  3257. // WYSIWYG editor styles fixes
  3258. // ---------------------------------------------
  3259. .defaultSkin {
  3260. table.mceLayout {
  3261. td {
  3262. background: @color-white;
  3263. }
  3264. }
  3265. td.mceToolbar {
  3266. padding: 1px 0 0;
  3267. }
  3268. }
  3269. .ui-tabs-panel {
  3270. border-top: 0;
  3271. }
  3272. #category_tab_content {
  3273. .ui-tabs-panel {
  3274. border-top: 1px solid #adadad;
  3275. }
  3276. }
  3277. }
  3278. //
  3279. // Pages styles
  3280. // ---------------------------------------------
  3281. [class^=" catalog-product-"],
  3282. [class^=" newsletter-"] {
  3283. .admin__scope-old {
  3284. .page-actions .action-back.mage-error {
  3285. color: #b57c72;
  3286. }
  3287. }
  3288. }
  3289. .catalog-product-new,
  3290. .catalog-product-edit {
  3291. .admin__scope-old {
  3292. .user-defined.type-select select {
  3293. width: 100%;
  3294. }
  3295. }
  3296. }
  3297. .customer-index-edit {
  3298. .admin__scope-old {
  3299. .grid tr.headings th > span {
  3300. white-space: normal;
  3301. }
  3302. }
  3303. }
  3304. // Configuration -> Payment Methods
  3305. .adminhtml-system-config-edit {
  3306. .admin__scope-old {
  3307. .payflow-settings-notice {
  3308. margin-top: 2rem;
  3309. padding: 10px;
  3310. .important-label {
  3311. .style32();
  3312. }
  3313. ul.options-list strong {
  3314. .style28();
  3315. }
  3316. }
  3317. .pp-buttons-container {
  3318. .action-default {
  3319. display: inline-block;
  3320. margin-bottom: @indent__xs;
  3321. }
  3322. }
  3323. }
  3324. }
  3325. .adminhtml-system-backup-index,
  3326. .adminhtml-scheduled-operation-index,
  3327. .adminhtml-system-currency-index,
  3328. .adminhtml-system-currencysymbol-index,
  3329. .adminhtml-cache-index,
  3330. .adminhtml-system-store-index,
  3331. .sales-order-status-index {
  3332. .admin__scope-old {
  3333. .page-actions.fixed {
  3334. background-image: none;
  3335. padding: 0 21px;
  3336. position: fixed;
  3337. }
  3338. }
  3339. }
  3340. .adminhtml-system-currency-index {
  3341. .admin__scope-old {
  3342. .page-actions.fixed .import-service {
  3343. display: inline-block;
  3344. float: none;
  3345. }
  3346. }
  3347. }
  3348. .adminhtml-cache-index {
  3349. .admin__scope-old {
  3350. .additional-cache-management {
  3351. margin-bottom: 0;
  3352. }
  3353. }
  3354. }
  3355. // Reports - PayPal Settlement Reports
  3356. .adminhtml-paypal-reports-index {
  3357. .admin__scope-old {
  3358. .grid tr.headings th > span {
  3359. white-space: normal;
  3360. }
  3361. .col-transaction_event_code {
  3362. max-width: 150px;
  3363. }
  3364. .col-amount,
  3365. .col-fee-amount {
  3366. text-align: right;
  3367. }
  3368. }
  3369. }
  3370. // Newsletter Templates
  3371. .newsletter-template-index {
  3372. .admin__scope-old {
  3373. .col-id {
  3374. width: 35px;
  3375. }
  3376. .col-actions {
  3377. width: 80px;
  3378. }
  3379. .col-type {
  3380. width: 100px;
  3381. }
  3382. .col-added,
  3383. .col-updated {
  3384. width: 140px;
  3385. }
  3386. }
  3387. }
  3388. .admin__scope-old {
  3389. .buttons-set {
  3390. margin: 0 0 15px;
  3391. button {
  3392. margin-right: 4px;
  3393. }
  3394. }
  3395. }
  3396. // Newsletter - Queue
  3397. .newsletter-queue-index {
  3398. .admin__scope-old {
  3399. .col-id {
  3400. width: 35px;
  3401. }
  3402. .col-finish,
  3403. .col-start {
  3404. width: 130px;
  3405. }
  3406. .col-status,
  3407. .col-processed,
  3408. .col-recipients {
  3409. white-space: nowrap;
  3410. width: 85px;
  3411. }
  3412. td.col-processed,
  3413. .newsletter-queue-index td.col-recipients {
  3414. text-align: right;
  3415. }
  3416. .col-actions {
  3417. width: 80px;
  3418. }
  3419. }
  3420. }
  3421. // Newsletter - Subscribers
  3422. .newsletter-subscriber-index {
  3423. .admin__scope-old {
  3424. .col-id {
  3425. width: 35px;
  3426. }
  3427. .col-type {
  3428. width: 75px;
  3429. }
  3430. .col-status {
  3431. white-space: nowrap;
  3432. width: 85px;
  3433. }
  3434. }
  3435. }
  3436. // Newsletter - Problems
  3437. .newsletter-problem-index {
  3438. .admin__scope-old {
  3439. .col-select {
  3440. width: 25px;
  3441. }
  3442. .col-id {
  3443. width: 35px;
  3444. }
  3445. .col-start {
  3446. width: 130px;
  3447. }
  3448. .col-error-code {
  3449. width: 150px;
  3450. }
  3451. }
  3452. }
  3453. [class*="-order-"] .admin__scope-old .order-information,
  3454. [class*="-order-"] .admin__scope-old .order-billing-address,
  3455. [class*="-order-"] .admin__scope-old .order-payment-method,
  3456. [class^=" adminhtml-rma-"] .admin__scope-old .order-comments-history,
  3457. [class^=" adminhtml-rma-"] .admin__scope-old .order-shipping-address,
  3458. [class^=" adminhtml-rma-"] .admin__scope-old .rma-request-details {
  3459. float: left;
  3460. width: 49.5%;
  3461. }
  3462. [class*="-order-"] .admin__scope-old .order-totals,
  3463. [class*="-order-"] .admin__scope-old .order-account-information,
  3464. [class*="-order-"] .admin__scope-old .order-shipping-address,
  3465. [class*="-order-"] .admin__scope-old .order-payment-method-virtual,
  3466. [class*="-order-"] .admin__scope-old .order-shipping-method,
  3467. [class^=" adminhtml-rma-"] .admin__scope-old .rma-confirmation,
  3468. [class^=" adminhtml-rma-"] .admin__scope-old .order-shipping-method,
  3469. [class^=" adminhtml-rma-"] .admin__scope-old .order-return-address {
  3470. float: right;
  3471. width: 49%;
  3472. }
  3473. [class*="-order-"] {
  3474. .admin__scope-old {
  3475. .order-card-validation {
  3476. width: 49.5%;
  3477. box-sizing: border-box;
  3478. .actions {
  3479. margin-top: 17px;
  3480. }
  3481. }
  3482. .order-totals {
  3483. .field.choice {
  3484. margin: 20px 0;
  3485. }
  3486. }
  3487. }
  3488. }
  3489. [class^=" sales-"] {
  3490. .admin__scope-old {
  3491. .order-information .fieldset-wrapper > .fieldset-wrapper-title .title {
  3492. width: 100%;
  3493. }
  3494. }
  3495. }
  3496. .adminhtml-rma-new .admin__scope-old .order-totals,
  3497. [class^=" adminhtml-rma-"] .admin__scope-old .rma-comments-history {
  3498. float: none;
  3499. width: 100%;
  3500. }
  3501. .checkout-index-index .checkout-errors {
  3502. .fieldset-wrapper-title {
  3503. border-bottom: 0;
  3504. margin: 0;
  3505. }
  3506. .title {
  3507. border-bottom: 1px solid #cac3b4;
  3508. margin: 0 0 18px;
  3509. width: 100%;
  3510. }
  3511. }
  3512. [class^=" sales-"] {
  3513. .admin__scope-old {
  3514. tr.headings {
  3515. .col-parent-transaction-id > span,
  3516. .col-method > span,
  3517. .col-transaction-id > span,
  3518. .col-transaction-type > span,
  3519. .col-gtbase > span,
  3520. .col-gtpurchased > span,
  3521. .col-discont > span {
  3522. white-space: normal;
  3523. }
  3524. }
  3525. }
  3526. }
  3527. [class*="-order-"] {
  3528. .admin__scope-old {
  3529. .col-price .label,
  3530. .col-subtotal .label {
  3531. display: inline-block;
  3532. min-width: 60px;
  3533. white-space: nowrap;
  3534. }
  3535. .order-subtotal .label {
  3536. width: 80%;
  3537. }
  3538. }
  3539. }
  3540. [class*="-order-"] {
  3541. .admin__scope-old {
  3542. .item-options {
  3543. margin: 5px 0 5px 10px;
  3544. dt {
  3545. font-weight: bold;
  3546. }
  3547. dd {
  3548. margin: 0 0 0 10px;
  3549. }
  3550. }
  3551. }
  3552. }
  3553. [class~=" -order-creditmemo-"] {
  3554. .admin__scope-old {
  3555. .no-items {
  3556. padding-top: 13px;
  3557. text-align: center;
  3558. }
  3559. }
  3560. }
  3561. .adminhtml-order-shipment-new {
  3562. .admin__scope-old {
  3563. .order-totals .fieldset-wrapper {
  3564. padding-top: 18px;
  3565. }
  3566. }
  3567. }
  3568. [class^=" adminhtml-rma-"],
  3569. .adminhtml-rma-edit {
  3570. .admin__scope-old {
  3571. .rma-items th.col-qty span {
  3572. text-align: left;
  3573. white-space: normal;
  3574. }
  3575. }
  3576. }
  3577. .adminhtml-rma-edit .admin__scope-old .data-table .col-carrier,
  3578. [class^=" sales-billing-agreement-"] .admin__scope-old .log-details .data-table th {
  3579. width: 20%;
  3580. }
  3581. .adminhtml-rma-edit {
  3582. .admin__scope-old {
  3583. .data-table {
  3584. .col-title {
  3585. width: 35%;
  3586. }
  3587. .col-number {
  3588. width: 25%;
  3589. }
  3590. }
  3591. }
  3592. }
  3593. [class*="-order-"] .admin__scope-old .order-shipping-address .price,
  3594. .order-shipping-address .admin__scope-old .shipping-description-title {
  3595. font-weight: bold;
  3596. }
  3597. [class^=" adminhtml-rma-"] {
  3598. .admin__scope-old {
  3599. .col-actions a {
  3600. cursor: pointer;
  3601. white-space: nowrap;
  3602. }
  3603. .col-reason input[type="text"] {
  3604. margin: 5px 0 0;
  3605. width: 100%;
  3606. }
  3607. .col-actions .separator {
  3608. margin: 0 3px;
  3609. }
  3610. }
  3611. }
  3612. [class^=" sales-"] {
  3613. .admin__scope-old {
  3614. .order-payment-method .data-table {
  3615. margin-top: 15px;
  3616. }
  3617. .order-payment-currency {
  3618. margin-top: 15px;
  3619. }
  3620. .grid .data {
  3621. border-bottom: 1px solid #c0bbaf;
  3622. }
  3623. .grid td .option-label {
  3624. font-weight: bold;
  3625. }
  3626. .grid td .option-value {
  3627. margin: 0 0 0 10px;
  3628. }
  3629. }
  3630. }
  3631. [class^=" adminhtml-extension-custom-"] {
  3632. .admin__scope-old {
  3633. #authors_fieldset .data-table td {
  3634. vertical-align: top;
  3635. }
  3636. }
  3637. }
  3638. [class*="-order-"] {
  3639. .admin__scope-old {
  3640. .order-billing-address .packaging-window .actions,
  3641. .order-shipping-address .packaging-window .actions {
  3642. margin: 0;
  3643. }
  3644. }
  3645. }
  3646. //
  3647. // Tables
  3648. // ---------------------------------------------
  3649. // Sales
  3650. [class^=' sales-order-'] {
  3651. .admin__scope-old {
  3652. .grid .col-name {
  3653. &:extend(.col-220-max all);
  3654. }
  3655. }
  3656. }
  3657. .sales-order-index {
  3658. .admin__scope-old {
  3659. .grid .col-name {
  3660. &:extend(.col-110-max all);
  3661. }
  3662. }
  3663. }
  3664. .sales-order-create-index {
  3665. .admin__scope-old {
  3666. .col-phone {
  3667. &:extend(.col-70-max all);
  3668. }
  3669. .col-in_products {
  3670. &:extend(.col-70);
  3671. }
  3672. }
  3673. }
  3674. // Sales -> Create Order
  3675. .sales-order-create-index,
  3676. .sales-order-edit-index {
  3677. .admin__scope-old {
  3678. .grid,
  3679. .grid-actions {
  3680. &:extend(.side-paddings-0);
  3681. table .action-configure {
  3682. float: right;
  3683. &.disabled {
  3684. cursor: default;
  3685. opacity: .5;
  3686. &:hover {
  3687. text-decoration: none;
  3688. }
  3689. }
  3690. }
  3691. }
  3692. .data-table {
  3693. .border td {
  3694. padding-bottom: 15px;
  3695. }
  3696. .col-product {
  3697. &:extend(.ellipsis all);
  3698. &:extend(.col-150-max all);
  3699. }
  3700. }
  3701. .actions.update {
  3702. margin: 10px 0;
  3703. }
  3704. }
  3705. }
  3706. // Sales -> Create Shipment
  3707. .adminhtml-order-shipment-new {
  3708. .admin__scope-old {
  3709. .grid .col-product {
  3710. max-width: 770px;
  3711. width: 770px;
  3712. }
  3713. }
  3714. }
  3715. // Sales -> Return
  3716. [class^=' adminhtml-rma-'] {
  3717. .admin__scope-old {
  3718. .fieldset-wrapper .data-table td {
  3719. &:extend(.ellipsis all);
  3720. &:extend(.col-670-max);
  3721. }
  3722. .grid {
  3723. .col-product_sku {
  3724. &:extend(.ellipsis all);
  3725. &:extend(.col-70-max all);
  3726. }
  3727. .col-name,
  3728. .col-product {
  3729. &:extend(.col-150-max all);
  3730. }
  3731. .col-product_name {
  3732. &:extend(.ellipsis all);
  3733. &:extend(.col-110-max all);
  3734. }
  3735. }
  3736. .col-actions {
  3737. a {
  3738. &:extend(.col-actions-links);
  3739. }
  3740. }
  3741. .rma-request-details {
  3742. &:extend(.data-table-td-max all);
  3743. }
  3744. #rma_items_grid_table .headings th {
  3745. &:extend(.nowrap all);
  3746. }
  3747. }
  3748. }
  3749. //
  3750. // Products
  3751. // --------------------------------------
  3752. .catalog-product-index {
  3753. .admin__scope-old {
  3754. .grid .col-name {
  3755. &:extend(.col-110-max all);
  3756. }
  3757. }
  3758. }
  3759. .catalog-product-edit {
  3760. .admin__scope-old {
  3761. .ui-tabs-panel .grid {
  3762. .hor-scroll {
  3763. &:extend(.h-scroll);
  3764. }
  3765. .col-name,
  3766. .col-type,
  3767. .col-sku {
  3768. &:extend(.col-70-max all);
  3769. }
  3770. .col-price,
  3771. .col-position {
  3772. &:extend(.col-50 all);
  3773. }
  3774. }
  3775. }
  3776. }
  3777. .catalog-product-index {
  3778. .admin__scope-old {
  3779. .grid .hor-scroll {
  3780. &:extend(.h-scroll);
  3781. }
  3782. }
  3783. }
  3784. .catalog-product-review-index {
  3785. .admin__scope-old {
  3786. .grid {
  3787. .col-name,
  3788. .col-title {
  3789. &:extend(.col-110-max all);
  3790. }
  3791. }
  3792. }
  3793. }
  3794. // Products -> Categories
  3795. .catalog-category-edit {
  3796. .admin__scope-old {
  3797. .grid {
  3798. .col-name {
  3799. &:extend(.col-220-max all);
  3800. }
  3801. }
  3802. }
  3803. }
  3804. // Customer
  3805. .customer-index-index {
  3806. .admin__scope-old {
  3807. .grid {
  3808. .col-name {
  3809. max-width: 90px;
  3810. width: 90px;
  3811. }
  3812. .col-customer_since,
  3813. .col-billing_country_id {
  3814. &:extend(.col-70-max all);
  3815. }
  3816. .col-billing_region {
  3817. width: 70px;
  3818. }
  3819. }
  3820. }
  3821. }
  3822. [class^=' customer-index-'] {
  3823. .admin__scope-old {
  3824. .fieldset-wrapper,
  3825. .accordion {
  3826. .grid .col-created_at {
  3827. &:extend(.col-70-max all);
  3828. }
  3829. }
  3830. .col-action a {
  3831. &:extend(.col-actions-links);
  3832. }
  3833. }
  3834. }
  3835. .customer-index-edit {
  3836. .admin__scope-old {
  3837. .ui-tabs-panel .grid .col-name {
  3838. &:extend(.col-110-max all);
  3839. }
  3840. }
  3841. }
  3842. // Customer -> Customer Segments
  3843. .col-grid_segment_name {
  3844. .admin__scope-old {
  3845. &:extend(.col-570-max all);
  3846. &:extend(.ellipsis all);
  3847. }
  3848. }
  3849. // Marketing -> Catalog Event
  3850. .adminhtml-catalog-event-index {
  3851. .admin__scope-old {
  3852. .col-category {
  3853. &:extend(.ellipsis all);
  3854. &:extend(.col-220-max all);
  3855. }
  3856. }
  3857. }
  3858. // Marketing -> Search Terms
  3859. [class^=' catalog-search'] {
  3860. .admin__scope-old {
  3861. .col-search_query,
  3862. .col-synonym_for,
  3863. .col-redirect {
  3864. &:extend(.ellipsis all);
  3865. &:extend(.col-150-max all);
  3866. }
  3867. }
  3868. }
  3869. // Marketing -> URL Rewrites
  3870. .adminhtml-urlrewrite-index {
  3871. .admin__scope-old {
  3872. .col-request_path {
  3873. &:extend(.ellipsis all);
  3874. &:extend(.col-150-max all);
  3875. }
  3876. }
  3877. }
  3878. .content-category-tree {
  3879. clear: both;
  3880. .jstree-default {
  3881. margin-bottom: 3rem;
  3882. .disabled {
  3883. > a {
  3884. color: #a29c94;
  3885. }
  3886. }
  3887. }
  3888. }
  3889. // Marketing -> Reviews
  3890. .review-product-index {
  3891. .admin__scope-old {
  3892. .grid {
  3893. .hor-scroll {
  3894. &:extend(.h-scroll);
  3895. }
  3896. .col-name {
  3897. &:extend(.col-110-max all);
  3898. }
  3899. }
  3900. }
  3901. }
  3902. // Content -> Pages
  3903. .adminhtml-cms-page-index {
  3904. .admin__scope-old {
  3905. .col-title,
  3906. .col-identifier {
  3907. &:extend(.ellipsis all);
  3908. &:extend(.col-110-max all);
  3909. }
  3910. }
  3911. }
  3912. // Content -> Hierarchy
  3913. .adminhtml-cms-hierarchy-index {
  3914. .admin__scope-old {
  3915. .col-title,
  3916. .col-identifier {
  3917. &:extend(.ellipsis all);
  3918. max-width: 410px;
  3919. width: 410px;
  3920. }
  3921. }
  3922. }
  3923. // Content -> Widgets
  3924. .adminhtml-widget-instance-index {
  3925. .admin__scope-old {
  3926. .col-title {
  3927. &:extend(.col-370-max all);
  3928. &:extend(.ellipsis all);
  3929. }
  3930. }
  3931. }
  3932. .adminhtml-widget-instance-edit {
  3933. .admin__scope-old {
  3934. .grid-chooser .control {
  3935. margin-top: -19px;
  3936. width: 80%;
  3937. .grid-actions {
  3938. padding: 0 0 15px;
  3939. }
  3940. .grid {
  3941. padding: 0;
  3942. }
  3943. .addon {
  3944. input:last-child,
  3945. select:last-child {
  3946. border-radius: 0;
  3947. }
  3948. }
  3949. }
  3950. }
  3951. .fieldset-widget-options { // ToDo UI: To be removed after renderer form elements is refactored or updated.
  3952. .admin__field {
  3953. &:last-child {
  3954. .mage-error {
  3955. margin-bottom: @indent__m;
  3956. margin-top: -@indent__xl;
  3957. }
  3958. }
  3959. }
  3960. }
  3961. }
  3962. // Reports -> Low Stock
  3963. .reports-report-product-lowstock {
  3964. .admin__scope-old {
  3965. .grid {
  3966. .col-name {
  3967. &:extend(.col-670-max all);
  3968. }
  3969. .col-sku {
  3970. &:extend(.col-220-max all);
  3971. }
  3972. }
  3973. }
  3974. }
  3975. .reports-report-shopcart-product,
  3976. .reports-report-review-customer {
  3977. .admin__scope-old {
  3978. .grid .col-name {
  3979. &:extend(.col-670-max all);
  3980. }
  3981. }
  3982. }
  3983. .reports-report-shopcart-abandoned {
  3984. .admin__scope-old {
  3985. .grid .col-name {
  3986. &:extend(.col-150-max all);
  3987. }
  3988. }
  3989. }
  3990. // Reports
  3991. [class^=' reports-'] [class^='col-total'],
  3992. [class^=' reports-'] [class^='col-average'],
  3993. [class^=' reports-'] [class^='col-ref-'],
  3994. [class^=' reports-'] [class^='col-rate'],
  3995. [class^=' reports-'] [class^='col-tax-amount'] {
  3996. .admin__scope-old {
  3997. &:extend(.col-70 all);
  3998. }
  3999. }
  4000. .reports-report-sales-invoiced,
  4001. .reports-report-sales-refunde {
  4002. .admin__scope-old {
  4003. .grid .col-period {
  4004. &:extend(.col-auto all);
  4005. }
  4006. }
  4007. }
  4008. // Reports -> Search Terms
  4009. .reports-index-search {
  4010. .admin__scope-old {
  4011. .col-query_text {
  4012. &:extend(.col-570-max all);
  4013. &:extend(.ellipsis all);
  4014. }
  4015. }
  4016. }
  4017. // Reports -> Ordered Products Report
  4018. .reports-report-product-sold {
  4019. .admin__scope-old {
  4020. .grid .col-name {
  4021. max-width: 720px;
  4022. width: 720px;
  4023. }
  4024. }
  4025. }
  4026. // Reports -> Newsletter Problem Reports
  4027. .newsletter-problem-index {
  4028. .admin__scope-old {
  4029. .grid {
  4030. .col-name,
  4031. .col-subject,
  4032. .col-product {
  4033. &:extend(.col-220-max all);
  4034. }
  4035. }
  4036. }
  4037. }
  4038. // Content -> Banners
  4039. .adminhtml-banner-edit {
  4040. .admin__scope-old {
  4041. .grid .col-name {
  4042. &:extend(.col-220-max all);
  4043. }
  4044. }
  4045. }
  4046. // Stroes -> Tax rules
  4047. .tax-rule-index {
  4048. .admin__scope-old {
  4049. .grid .col-title {
  4050. &:extend(.col-150-max all);
  4051. }
  4052. }
  4053. }
  4054. // Stores -> Returns Attributes
  4055. .adminhtml-rma-item-attribute-index {
  4056. .admin__scope-old {
  4057. .grid {
  4058. .col-label {
  4059. &:extend(.col-220-max all);
  4060. }
  4061. .col-attr-code {
  4062. &:extend(.ellipsis);
  4063. &:extend(.col-150-max all);
  4064. }
  4065. }
  4066. }
  4067. }
  4068. .adminhtml-rma-edit {
  4069. .admin__scope-old {
  4070. .hor-scroll {
  4071. &:extend(.h-scroll);
  4072. }
  4073. }
  4074. }
  4075. // Stores -> All Stores
  4076. .adminhtml-system-store-index {
  4077. .admin__scope-old {
  4078. .grid td {
  4079. &:extend(.ellipsis all);
  4080. max-width: 310px;
  4081. }
  4082. }
  4083. }
  4084. // Stores -> Currency
  4085. .adminhtml-system-currency-index {
  4086. .admin__scope-old {
  4087. .grid {
  4088. padding-top: 0;
  4089. }
  4090. .col-currency-edit-rate {
  4091. min-width: 40px;
  4092. }
  4093. .col__base-currency {
  4094. font-weight: bold;
  4095. }
  4096. .old-rate {
  4097. display: block;
  4098. margin-top: 3px;
  4099. text-align: center;
  4100. }
  4101. .hor-scroll {
  4102. overflow-x: auto;
  4103. min-width: 970px;
  4104. }
  4105. }
  4106. }
  4107. // Stores -> Currency symbol
  4108. .adminhtml-system-currencysymbol-index {
  4109. .admin__scope-old {
  4110. .col-currency {
  4111. width: 35%;
  4112. }
  4113. .grid .input-text {
  4114. margin: 0 10px 0 0;
  4115. width: 50%;
  4116. }
  4117. }
  4118. }
  4119. // Stores -> Customer attributes
  4120. [class^=' adminhtml-customer-'],
  4121. .adminhtml-rma-item-attribute-index {
  4122. .admin__scope-old {
  4123. .col-label {
  4124. &:extend(.col-370-max all);
  4125. }
  4126. .col-required,
  4127. .col-system,
  4128. .col-is_visible,
  4129. .col-sort_order {
  4130. &:extend(.col-70 all);
  4131. }
  4132. }
  4133. }
  4134. // Stores -> Product Attribute
  4135. .catalog-product-attribute-index {
  4136. .admin__scope-old {
  4137. .col-attr-code,
  4138. .col-label {
  4139. &:extend(.col-110-max all);
  4140. &:extend(.ellipsis);
  4141. }
  4142. [class^=' col-is_'],
  4143. .col-required,
  4144. .col-system {
  4145. &:extend(.col-70 all);
  4146. }
  4147. }
  4148. }
  4149. // Stores -> Product Attribute Edit
  4150. .catalog-product-attribute-edit {
  4151. .admin__scope-old {
  4152. .data-table {
  4153. th {
  4154. &._required {
  4155. span {
  4156. &:after {
  4157. content: '*';
  4158. .lib-typography(
  4159. @_font-size: @form-field-label-asterisk__font-size,
  4160. @_color: @form-field-label-asterisk__color,
  4161. @_font-family: @form-field-label-asterisk__font-family,
  4162. @_font-weight: @form-field-label-asterisk__font-weight,
  4163. @_line-height: @form-field-label-asterisk__line-height,
  4164. @_font-style: @form-field-label-asterisk__font-style
  4165. );
  4166. .lib-css(margin, @form-field-label-asterisk__margin);
  4167. }
  4168. }
  4169. }
  4170. }
  4171. }
  4172. }
  4173. .admin__control-table-wrapper {
  4174. clear: both;
  4175. }
  4176. }
  4177. .catalog-product-set-index {
  4178. .admin__scope-old {
  4179. .col-set_name {
  4180. max-width: 930px;
  4181. width: 930px;
  4182. }
  4183. }
  4184. }
  4185. // System -> Export
  4186. .adminhtml-export-index {
  4187. .admin__scope-old {
  4188. .grid-actions,
  4189. .data-grid {
  4190. &:extend(.side-paddings-0);
  4191. }
  4192. .col-label,
  4193. .col-code {
  4194. &:extend(.col-220-max all);
  4195. }
  4196. .col-code {
  4197. &:extend(.ellipsis all);
  4198. }
  4199. .data-grid {
  4200. td {
  4201. vertical-align: middle;
  4202. }
  4203. .input-text-range {
  4204. margin: 0 10px 0 5px;
  4205. width: 37%;
  4206. }
  4207. ._has-datepicker {
  4208. margin: 0 5px;
  4209. width: 32%;
  4210. }
  4211. .admin__control-support-text {
  4212. margin-right: .5rem;
  4213. }
  4214. }
  4215. .data-grid-checkbox-cell {
  4216. padding-right: 1rem;
  4217. padding-left: 1rem;
  4218. text-align: center;
  4219. }
  4220. }
  4221. }
  4222. // System -> Scheduled Imports/Exports
  4223. .adminhtml-scheduled-operation-index {
  4224. .admin__scope-old {
  4225. .grid .col-name {
  4226. &:extend(.col-220-max all);
  4227. }
  4228. }
  4229. }
  4230. // System -> Report
  4231. .adminhtml-logging-index {
  4232. .admin__scope-old {
  4233. .grid .col-fullaction {
  4234. &:extend(.ellipsis all);
  4235. &:extend(.col-220-max all);
  4236. }
  4237. }
  4238. }
  4239. // System -> Notifications
  4240. .adminhtml-notification-index {
  4241. .col-actions a {
  4242. &:extend(.col-actions-links);
  4243. white-space: nowrap;
  4244. }
  4245. }
  4246. .adminhtml-process-list {
  4247. .admin__scope-old {
  4248. .col-action a,
  4249. .col-mode {
  4250. &:extend(.nowrap all);
  4251. }
  4252. }
  4253. }
  4254. .adminhtml-notification-index,
  4255. .adminhtml-cache-index,
  4256. .adminhtml-process-list,
  4257. .indexer-indexer-list {
  4258. .admin__scope-old {
  4259. .grid .col-select {
  4260. width: 10px;
  4261. }
  4262. }
  4263. }
  4264. // System -> Locked Users
  4265. .adminhtml-locks-index {
  4266. .admin__scope-old {
  4267. .grid .col-name {
  4268. &:extend(.col-570 all);
  4269. }
  4270. }
  4271. }
  4272. // System -> Custom Variables
  4273. .adminhtml-system-variable-index {
  4274. .admin__scope-old {
  4275. .grid .col-code {
  4276. &:extend(.col-370-max all);
  4277. &:extend(.ellipsis all);
  4278. }
  4279. }
  4280. }
  4281. .adminhtml-logging-index {
  4282. .admin__scope-old {
  4283. .grid .col-info {
  4284. &:extend(.col-110-max all);
  4285. &:extend(.ellipsis all);
  4286. }
  4287. }
  4288. }
  4289. //
  4290. // Login page captcha reload @todo ui - remove after loader consistency
  4291. // _____________________________________________
  4292. // Tax popup
  4293. .tax-rate-popup .form-inline .field {
  4294. position: static;
  4295. &.required .label {
  4296. position: relative;
  4297. z-index: 1;
  4298. }
  4299. }
  4300. // Product tabs
  4301. #product-edit-form-tabs .ui-tabs-panel {
  4302. border-top-width: 0;
  4303. .main-col & {
  4304. padding-left: 0;
  4305. padding-right: 0;
  4306. }
  4307. }
  4308. //
  4309. // Temporary override @todo ui - remove after refactoring of 3-rd party tree styles
  4310. // _____________________________________________
  4311. .ext-strict {
  4312. .x-small-editor {
  4313. .x-form-text.x-form-field.folder {
  4314. height: auto !important;
  4315. }
  4316. }
  4317. }
  4318. // ==|== print styles =======================================================
  4319. // Print styles.
  4320. // Inlined to avoid required HTTP connection: h5bp.com/r
  4321. // ==========================================================================
  4322. @media print {
  4323. * {
  4324. background: transparent !important;
  4325. color: @color-black !important;
  4326. box-shadow: none !important;
  4327. text-shadow: none !important;
  4328. filter: none !important;
  4329. -ms-filter: none !important;
  4330. }
  4331. // Black prints faster: h5bp.com/s
  4332. a, a:visited {
  4333. text-decoration: underline;
  4334. }
  4335. a[href]:after {
  4336. content: " (" attr(href) ")";
  4337. }
  4338. abbr[title]:after {
  4339. content: " (" attr(title) ")";
  4340. }
  4341. .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
  4342. content: "";
  4343. }
  4344. // Don't show links for images, or javascript/internal links
  4345. pre, blockquote {
  4346. border: 1px solid #999;
  4347. page-break-inside: avoid;
  4348. }
  4349. thead {
  4350. display: table-header-group;
  4351. }
  4352. // h5bp.com/t
  4353. tr, img {
  4354. page-break-inside: avoid;
  4355. }
  4356. img {
  4357. max-width: 100% !important;
  4358. }
  4359. @page {
  4360. margin: 0.5cm;
  4361. }
  4362. p, h2, h3 {
  4363. orphans: 3;
  4364. widows: 3;
  4365. }
  4366. h2, h3 {
  4367. page-break-after: avoid;
  4368. }
  4369. }