umami/components/common/Button.module.css

98 lines
1.3 KiB
CSS
Raw Normal View History

.button {
display: flex;
justify-content: center;
align-items: center;
2020-08-06 08:03:07 +02:00
font-size: var(--font-size-normal);
2020-09-20 10:33:39 +02:00
color: var(--gray900);
2020-08-06 08:03:07 +02:00
background: var(--gray100);
2020-08-06 04:04:02 +02:00
padding: 8px 16px;
border-radius: 4px;
border: 0;
outline: none;
cursor: pointer;
2020-08-09 08:48:43 +02:00
white-space: nowrap;
2020-08-15 10:17:15 +02:00
position: relative;
}
.button:hover {
2020-09-13 10:26:54 +02:00
background: var(--gray200);
}
2020-08-07 09:24:01 +02:00
2020-09-02 07:52:20 +02:00
.button:active {
2020-09-22 06:34:55 +02:00
color: var(--gray900);
2020-09-02 07:52:20 +02:00
}
2020-08-09 12:04:48 +02:00
.large {
font-size: var(--font-size-large);
}
.medium {
font-size: var(--font-size-normal);
}
2020-08-07 09:24:01 +02:00
.small {
font-size: var(--font-size-small);
}
2020-08-09 12:04:48 +02:00
.xsmall {
font-size: var(--font-size-xsmall);
2020-08-07 09:24:01 +02:00
}
2020-09-26 07:31:18 +02:00
.action,
.action:active {
2020-09-13 10:26:54 +02:00
color: var(--gray50);
background: var(--gray900);
}
.action:hover {
2020-09-13 10:26:54 +02:00
background: var(--gray800);
}
.danger {
2020-09-13 10:26:54 +02:00
color: var(--gray50);
background: var(--red500);
}
.danger:hover {
2020-09-13 10:26:54 +02:00
background: var(--red400);
}
.light {
background: transparent;
}
.light:hover {
2020-09-20 12:28:05 +02:00
background: inherit;
}
2020-09-26 07:31:18 +02:00
.button .icon + div {
margin-left: 10px;
}
.button.iconRight .icon {
order: 1;
margin-left: 10px;
}
.button.iconRight .icon + div {
margin: 0;
}
2020-09-13 10:26:54 +02:00
.button:disabled {
cursor: default;
2020-09-13 10:26:54 +02:00
color: var(--gray500);
background: var(--gray75);
}
.button:disabled:active {
color: var(--gray500);
}
.button:disabled:hover {
background: var(--gray75);
}
.button.light:disabled {
background: var(--gray50);
}