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 32
32
<!-- Click expand icon -->
33
33
<conditionalClick selector =" {{AdminTaxRuleFormSection.additionalSettings}}" dependentSelector =" {{AdminTaxRuleFormSection.additionalSettingsOpened}}" visible =" false" stepKey =" openAdditionalSettings" />
34
34
<!-- Check class in selector -->
35
- <seeElement selector =" details#detailsbase_fieldset .__show " stepKey =" seeBox" />
35
+ <seeElement selector =" details#detailsbase_fieldset ._show " stepKey =" seeBox" />
36
36
<!-- Logout-->
37
37
<actionGroup ref =" AdminLogoutActionGroup" stepKey =" logoutFromAdmin" />
38
38
</after >
Original file line number Diff line number Diff line change @@ -322,11 +322,11 @@ $scriptString.= <<<script
322
322
require(['jquery'], function($) {
323
323
jQuery('.admin__collapsible-block-wrapper').on('click', function () {
324
324
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 ');
327
327
} else {
328
- jQuery(this).removeClass('__show ');
329
- jQuery(this).children().removeClass('__show ');
328
+ jQuery(this).removeClass('_show ');
329
+ jQuery(this).children().removeClass('_show ');
330
330
}
331
331
});
332
332
});
Original file line number Diff line number Diff line change 29
29
}
30
30
}
31
31
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
+ }
38
42
}
39
43
// @codingStandardsIgnoreEnd
You can’t perform that action at this time.
0 commit comments