1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // /**
- // * Copyright © Magento, Inc. All rights reserved.
- // * See COPYING.txt for license details.
- // */
- //
- // Common
- // _____________________________________________
- & when (@media-common = true) {
- .actions-toolbar {
- > .primary,
- > .secondary {
- text-align: center;
- .action {
- &:extend(.abs-button-responsive all);
- margin-bottom: @indent__s;
- &:last-child {
- margin-bottom: 0;
- }
- }
- margin-bottom: @indent__s;
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
- }
- //
- // Desktop
- // _____________________________________________
- .media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen__m) {
- .actions-toolbar {
- .lib-actions-toolbar();
- > .primary,
- > .secondary {
- margin-bottom: 0;
- .action {
- margin-bottom: 0;
- width: auto;
- }
- }
- }
- form {
- .actions-toolbar {
- .column:not(.sidebar-main) &,
- .column:not(.sidebar-additional) & {
- &:extend(.abs-margin-for-forms-desktop all);
- }
- }
- }
- }
|