123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- // /**
- // * Copyright © Magento, Inc. All rights reserved.
- // * See COPYING.txt for license details.
- // */
- //
- // Common
- // _____________________________________________
- & when (@media-common = true) {
- .actions-toolbar {
- > .primary,
- > .secondary {
- margin-bottom: @indent__s;
- text-align: center;
- .action {
- &:extend(.abs-button-responsive all);
- margin-bottom: @indent__s;
- &:last-child {
- margin-bottom: 0;
- }
- }
- &:last-child {
- margin-bottom: 0;
- }
- }
- > .secondary {
- .action.back {
- display: none;
- }
- }
- }
- }
- //
- // 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) & {
- }
- }
- }
- }
|