File tree Expand file tree Collapse file tree 3 files changed +15
-11
lines changed
view/adminhtml/templates/rule
design/adminhtml/Magento/backend/Magento_Tax/web/css/source Expand file tree Collapse file tree 3 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 3232 <!-- Click expand icon -->
3333 <conditionalClick selector =" {{AdminTaxRuleFormSection.additionalSettings}}" dependentSelector =" {{AdminTaxRuleFormSection.additionalSettingsOpened}}" visible =" false" stepKey =" openAdditionalSettings" />
3434 <!-- Check class in selector -->
35- <seeElement selector =" details#detailsbase_fieldset .__show " stepKey =" seeBox" />
35+ <seeElement selector =" details#detailsbase_fieldset ._show " stepKey =" seeBox" />
3636 <!-- Logout-->
3737 <actionGroup ref =" AdminLogoutActionGroup" stepKey =" logoutFromAdmin" />
3838 </after >
Original file line number Diff line number Diff line change @@ -322,11 +322,11 @@ $scriptString.= <<<script
322322require(['jquery'], function($) {
323323 jQuery('.admin__collapsible-block-wrapper').on('click', function () {
324324 if(!this.hasAttribute('open')) {
325- jQuery(this).addClass('__show ');
326- jQuery(this).children().addClass('__show ');
325+ jQuery(this).addClass('_show ');
326+ jQuery(this).children().addClass('_show ');
327327 } else {
328- jQuery(this).removeClass('__show ');
329- jQuery(this).children().removeClass('__show ');
328+ jQuery(this).removeClass('_show ');
329+ jQuery(this).children().removeClass('_show ');
330330 }
331331 });
332332});
Original file line number Diff line number Diff line change 2929 }
3030}
3131
32- .admin__collapsible-block-wrapper.__show .admin__collapsible-title.__show :before {
33- content : @icon-expand-close__content ;
34- font-size : @collapsible-title-icon__size ;
35- position : absolute ;
36- right : @data-grid__font-size ;
37- top : 2.3rem ;
32+ .admin__collapsible-block-wrapper {
33+ .admin__collapsible-title._show {
34+ & :before {
35+ content : @icon-expand-close__content ;
36+ font-size : @collapsible-title-icon__size ;
37+ position : absolute ;
38+ right : @data-grid__font-size ;
39+ top : 2.3rem ;
40+ }
41+ }
3842}
3943// @codingStandardsIgnoreEnd
You can’t perform that action at this time.
0 commit comments