UNPKG

@eclipse-scout/core

Version:
183 lines (151 loc) 4.21 kB
/* * Copyright (c) 2010, 2023 BSI Business Systems Integration AG * * This program and the accompanying materials are made * available under the terms of the Eclipse Public License 2.0 * which is available at https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 */ .button { position: relative; display: inline-flex; align-items: center; justify-content: center; color: @button-color; background-color: @button-background-color; --border-color: @button-border-color; border: 1px solid var(--border-color); border-radius: @button-border-radius; cursor: pointer; padding: @button-padding-y @button-padding-x; &.borderless { background-color: transparent; border: 0; &:focus { #scout.focus-inset-box-shadow(); } } & > .text { #scout.overflow-ellipsis-nowrap(); margin-top: @text-margin-top; } & > .icon { /* Padding only relevant for icons larger than the container */ padding-top: 2px; padding-bottom: 2px; &.with-label { margin-right: 8px; } &.loading, &.broken { .hidden(); } &.image-icon { max-height: 100%; } } & > .font-icon { font-size: @button-font-icon-size; } & > .submenu-icon { #scout.submenu-icon(); padding-left: 8px; .selected& { #scout.submenu-icon-open(); } } & > .button-label, & > .icon, & > .submenu-icon { opacity: 1; transition: opacity @loading-fade-duration; } &:hover { color: @button-hover-color; background-color: @hover-background-color; } &:active, &.active { color: @button-active-color; background-color: @button-active-background-color; } &.selected { color: @selected-color; background-color: @selected-background-color; border-color: @selected-background-color; &:hover { background-color: @selected-hover-background-color; border-color: @selected-hover-background-color; } &.active, &:active { background-color: @selected-active-background-color; border-color: @selected-active-background-color; } &.has-popup { color: @button-color; background-color: @selected-with-popup-background-color; } } &:focus { #scout.focus-border(); } &.default { background-color: @default-button-background-color; /* border is necessary to align the text with text from buttons with a real border */ border-color: @default-button-background-color; color: @default-button-color; &:hover { background-color: @default-button-hover-background-color; border-color: @default-button-hover-background-color; } &:active, &.active { color: @default-button-color; background-color: @default-button-active-background-color; border-color: @default-button-active-background-color; } &.selected { color: @default-button-color; background-color: @default-button-selected-background-color; border-color: @default-button-selected-background-color; } &:focus { #scout.focus-border(); } } &:disabled, &.disabled { background-color: @button-disabled-background-color; border-color: @button-disabled-border-color; color: @button-disabled-color; cursor: default; &:hover, &.active, &:active, &.selected { background-color: @button-disabled-background-color; border-color: @button-disabled-border-color; color: @button-disabled-color; } &.selected { color: @selected-color; background-color: @selected-disabled-background-color; border-color: @selected-disabled-background-color; &.has-popup { color: @button-disabled-color; background-color: @selected-with-popup-background-color; border-color: @selected-with-popup-background-color; } } } &.loading { & > .button-label, & > .icon, & > .submenu-icon { opacity: 0; transition: opacity @loading-fade-duration; } & > .loading-indicator { #scout.loading-indicator(20px); } &.default > .loading-indicator::before { border-color: @default-button-color; } } }