123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // /**
- // * Copyright © Magento, Inc. All rights reserved.
- // * See COPYING.txt for license details.
- // */
- //
- // Common
- // _____________________________________________
- & when (@media-common = true) {
- // Using buttons mixins
- button,
- a.action.primary {
- .lib-css(border-radius, @button__border-radius);
- }
- button {
- &:not(.primary) {
- .lib-css(box-shadow, @button__shadow);
- &:active {
- .lib-css(box-shadow, @button__shadow-active);
- }
- }
- }
- body {
- &:not(._keyfocus) {
- button {
- &:focus {
- box-shadow: none;
- }
- }
- }
- }
- a.action.primary {
- .lib-link-as-button();
- }
- .action.primary {
- .lib-button-primary();
- }
- }
|