mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
52 lines
1,017 B
SCSS
52 lines
1,017 B
SCSS
.itemPanel {
|
|
padding: var(--spacing-m);
|
|
margin-bottom: var(--spacing-m);
|
|
width: 100%;
|
|
background-color: var(--color-card-background);
|
|
border-radius: var(--card-radius);
|
|
overflow: hidden;
|
|
border: 1px solid var(--color-border);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
.button--close {
|
|
position: unset;
|
|
}
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.itemPanel__details {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
@media (max-width: $breakpoint-small) {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
.itemPanel__name {
|
|
min-width: 100px;
|
|
width: 100px;
|
|
}
|
|
.itemPanel__url {
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.itemPanel--active {
|
|
color: var(--color-button-toggle-text);
|
|
background-color: var(--color-button-toggle-bg);
|
|
}
|
|
|
|
.itemPanel--input {
|
|
min-height: var(--spacing-l);
|
|
padding: 0 0 var(--spacing-s) 0;
|
|
fieldset-section,
|
|
.fieldset-group {
|
|
margin-top: var(--spacing-m);
|
|
}
|
|
&.checkbox,
|
|
.checkbox:only-child {
|
|
height: var(--spacing-l);
|
|
float: left;
|
|
}
|
|
}
|