lbry-desktop/src/ui/scss/component/_button.scss

99 lines
1.7 KiB
SCSS
Raw Normal View History

2019-02-13 17:27:20 +01:00
@import '~@lbry/components/sass/button/_index.scss';
.button {
2019-05-01 07:16:12 +02:00
display: inline-block;
2019-01-09 03:21:36 +01:00
svg {
stroke-width: 1.9;
2019-01-09 03:21:36 +01:00
position: relative;
2019-02-20 06:20:29 +01:00
color: $lbry-gray-5;
// Buttons that don't have a label
&:only-child {
2019-02-20 06:20:29 +01:00
color: inherit;
width: 1.4rem;
height: 1.4rem;
}
2019-01-09 03:21:36 +01:00
}
}
2017-04-09 17:06:23 +02:00
2019-02-20 06:20:29 +01:00
.button--primary {
svg {
color: white;
}
}
2019-05-01 07:16:12 +02:00
// Play/View button that is overlayed ontop of the video player
.button--icon {
height: 5rem;
width: 5rem;
border-radius: 2.5rem;
}
2017-04-09 17:06:23 +02:00
2019-05-01 07:16:12 +02:00
.button--primary,
.button--alt,
.button--inverse {
height: var(--button-height);
line-height: var(--button-height);
border-radius: var(--button-radius);
font-size: 1.1rem;
padding-top: 0;
padding-bottom: 0;
box-sizing: border-box;
}
2019-06-11 20:10:58 +02:00
.button--alt {
padding: 0;
}
2019-02-15 02:52:10 +01:00
.button--uri-indicator {
2019-02-20 06:20:29 +01:00
max-width: 100%;
2019-05-01 07:16:12 +02:00
height: 1.2em;
2019-05-06 06:49:16 +02:00
vertical-align: text-top;
2019-02-18 18:24:56 +01:00
text-align: left;
text-overflow: ellipsis;
2019-02-15 02:52:10 +01:00
transition: color 0.2s;
&:hover {
2019-06-11 20:10:58 +02:00
color: $lbry-teal-5;
}
}
.button--close {
position: absolute;
top: var(--spacing-miniscule);
right: var(--spacing-miniscule);
padding: 0.3rem;
transition: all var(--transition-duration) var(--transition-style);
&:hover {
background-color: $lbry-red-3;
color: $lbry-white;
border-radius: var(--card-radius);
2019-02-15 02:52:10 +01:00
}
}
2019-06-11 20:10:58 +02:00
.button--subscribe {
vertical-align: text-top;
align-items: flex-start;
}
.button__label {
// white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
// display: flex;
// align-items: center;
}
// Handle icons on the left or right side of the button label
svg + .button__label,
.button__label + svg {
margin-left: var(--spacing-miniscule);
}
.button__content {
display: flex;
align-items: center;
}