button, .button, input[type="button"], input[type="reset"], input[type="submit"] { background-color: rgb(var(--button-background)); padding: 0.25em 1em; margin: 0; color: rgb(var(--button-text)); font-size: 1em; font-family: var(--theme-font-ui-name); font-weight: var(--theme-font-ui-weight); font-style: var(--theme-font-ui-style); min-height: 2.5em; line-height: 1; border: 0; border-radius: var(--theme-radius); position: relative; text-align: center; text-decoration: none; white-space: nowrap; cursor: pointer; display: inline-flex; flex-direction: row; justify-content: center; align-items: center; transition: background-color var(--layout-timing-extra-fast), border-color var(--layout-timing-extra-fast), color var(--layout-timing-extra-fast); } button:focus, button:hover, .button:focus, .button:hover, input[type="button"]:focus, input[type="button"]:hover, input[type="reset"]:focus, input[type="reset"]:hover, input[type="submit"]:focus, input[type="submit"]:hover { background-color: rgb(var(--button-background-focus-hover)); color: rgb(var(--button-text-focus-hover)); outline: none; text-decoration: none; } button:active, .button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active { background-color: rgb(var(--button-background-active)); color: rgb(var(--button-text-active)); outline: none; text-decoration: none; transition: none; } button.disabled, button.disabled:hover, button.disabled:focus, button.disabled:active, .button.disabled, .button.disabled:hover, .button.disabled:focus, .button.disabled:active, button:disabled, button:disabled:hover, button:disabled:focus, button:disabled:active, .button:disabled, .button:disabled:hover, .button:disabled:focus, .button:disabled:active { background-color: rgb(var(--button-background-disabled)); color: rgb(var(--button-text-disabled)); cursor: default; text-decoration: none; } button:after, .button:after, input[type="button"]:after, input[type="reset"]:after, input[type="submit"]:after { content: ""; background: rgb(var(--button-border)); border-radius: var(--theme-radius); position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; clip-path: polygon(0 calc(100% - var(--layout-line-width)), 100% calc(100% - var(--layout-line-width)), 100% 100%, 0% 100%); transition: background-color var(--layout-timing-extra-fast); pointer-events: none; } button:focus:after, button:hover:after, .button:focus:after, .button:hover:after, input[type="button"]:focus:after, input[type="button"]:hover:after, input[type="reset"]:focus:after, input[type="reset"]:hover:after, input[type="submit"]:focus:after, input[type="submit"]:hover:after { background-color: rgb(var(--button-border-focus-hover)); } button:active:after, .button:active:after, input[type="button"]:active:after, input[type="reset"]:active:after, input[type="submit"]:active:after { background-color: rgb(var(--button-border-active)); transition: none; } button.disabled:after, .button.disabled:after, button.disabled:hover:after, .button.disabled:hover:after, button.disabled:focus:after, .button.disabled:focus:after, button.disabled:active:after, .button.disabled:active:after, button:disabled:after, .button:disabled:after, button:disabled:hover:after, .button:disabled:hover:after, button:disabled:focus:after, .button:disabled:focus:after, button:disabled:active:after, .button:disabled:active:after { background-color: rgb(var(--button-border-disabled)); } .button-text { pointer-events: none; } button [class^="icon-"], button [class*=" icon-"], .button [class^="icon-"], .button [class*=" icon-"] { font-size: 1.5em; line-height: 1; } .button.active { color: rgb(var(--button-text-focus-active)); } .button.active:after { background-color: rgb(var(--theme-accent)); } .button-small { font-size: 0.8em; } .button-large { font-size: 1.2em; } .button-block { display: flex; width: 100%; } button [class^="button-"], button [class*=" button-"], .button [class^="button-"], .button [class*=" button-"] { margin-left: 0.25em; margin-right: 0.25em; } button [class^="button-"]:first-child, button [class*=" button-"]:first-child, .button [class^="button-"]:first-child, .button [class*=" button-"]:first-child { margin-left: 0; } button [class^="button-"]:last-child, button [class*=" button-"]:last-child, .button [class^="button-"]:last-child, .button [class*=" button-"]:last-child { margin-right: 0; } .button-link { background-color: transparent; border: 0; color: rgb(var(--button-link-text)); } .button-link:after { content: none; } .button-link:hover, .button-link:focus { background-color: transparent; color: rgb(var(--button-link-text-focus-hover)); } .button-link:active { background-color: transparent; color: rgb(var(--button-link-text-active)); } .button-link.disabled, .button-link:disabled { background-color: transparent; color: transparent; pointer-events: none; } .button-link.disabled:hover, .button-link.disabled:focus, .button-link:hover:disabled, .button-link:focus:disabled { background-color: transparent; color: transparent; }