lbry-desktop/src/ui/scss/component/_button.scss
2019-03-28 12:53:13 -04:00

119 lines
2 KiB
SCSS

@import '~@lbry/components/sass/button/_index.scss';
.button {
border-radius: 0;
font-size: 1em;
svg {
stroke-width: 1.9;
width: 1.2rem;
height: 1.2rem;
position: relative;
top: 1px;
color: $lbry-gray-5;
// Buttons that don't have a label
&:only-child {
color: inherit;
stroke-opacity: 1;
width: 1.4rem;
height: 1.4rem;
top: 0.1em;
}
}
svg + .button__label,
.button__label + svg {
margin-left: var(--spacing-vertical-small);
}
&.button--icon {
border-radius: 50%;
}
}
.button--primary,
.button--alt,
.button--no-style {
svg {
width: 1.2rem;
height: 1.2rem;
}
}
.button--primary {
height: var(--spacing-l);
svg {
color: white;
}
svg + .button__label {
position: relative;
top: -0.05em;
}
}
// This is a hack and the extra styles are just so this is more specific than the @lbry/components styling
// Will make a PR there, but just doing it now for the release - Sean
[type='button'].button--inverse {
font-size: 1rem;
transition: background-color 0.2s;
border-radius: 0;
html[data-mode='dark'] & {
&:not(:hover) {
border-color: rgba($lbry-white, 0.1);
background-color: rgba($lbry-black, 0.3);
}
&:hover {
border-color: rgba($lbry-white, 0.1);
background-color: rgba($lbry-white, 0.1);
color: $lbry-white;
}
}
html[data-mode='light'] & {
&:not(:hover) {
background-color: $lbry-white;
color: $lbry-black;
}
&:hover {
background-color: $lbry-gray-1;
color: $lbry-black;
}
}
.button__content {
svg {
color: $lbry-gray-4;
}
}
}
.button--selected {
font-weight: 800;
color: $lbry-teal-5;
&:disabled {
opacity: 1;
}
html[data-mode='dark'] & {
color: $lbry-teal-3;
}
}
.button--uri-indicator {
max-width: 100%;
overflow: hidden;
text-align: left;
text-overflow: ellipsis;
transition: color 0.2s;
&:hover {
color: $lbry-teal-3;
}
}