lbry-desktop/ui/scss/component/_item-list.scss

36 lines
615 B
SCSS
Raw Normal View History

2018-10-04 00:11:08 -04:00
.item-list {
2019-11-22 16:13:00 -05:00
background-color: black; //white;
2020-06-01 13:03:19 -04:00
margin-bottom: var(--spacing-l);
padding: var(--spacing-l);
2019-03-31 19:04:01 -04:00
.card__actions {
2020-06-01 13:03:19 -04:00
margin-top: var(--spacing-m);
margin-left: var(--spacing-s);
2019-03-31 19:04:01 -04:00
}
2018-10-04 00:11:08 -04:00
}
2019-03-31 19:04:01 -04:00
.item-list__row {
2018-10-04 00:11:08 -04:00
align-items: center;
2018-10-17 12:14:24 -05:00
display: flex;
2020-06-01 13:03:19 -04:00
padding: var(--spacing-s);
2018-10-04 00:11:08 -04:00
2019-02-13 12:27:20 -04:00
fieldset-section {
margin-bottom: 0;
}
2018-10-04 00:11:08 -04:00
}
2019-03-31 19:04:01 -04:00
.item-list__element {
2018-10-17 12:14:24 -05:00
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2019-03-31 19:04:01 -04:00
&:not(:first-of-type) {
2020-06-01 13:03:19 -04:00
padding-left: var(--spacing-s);
2019-03-31 19:04:01 -04:00
}
2018-10-17 12:14:24 -05:00
}
2019-03-31 19:04:01 -04:00
.item-list__row:hover,
.item-list__row--selected {
2019-11-22 16:13:00 -05:00
background-color: black; //black; //black, 0.1);
2018-10-04 00:11:08 -04:00
}