1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/dashboard/client/components/items-list/items-list.scss
Jari Kolehmainen 1d0815abd2
Lens app source code (#119)
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2020-03-15 09:52:02 +02:00

46 lines
582 B
SCSS

.ItemsList {
&.selectable {
.Item:not(.disabled) {
cursor: pointer;
&:hover {
background-color: #f7f7f7;
border-radius: $radius;
}
}
}
&.inline {
.Item {
margin-right: $margin;
}
}
}
.Item {
padding: $padding / 2;
margin: 0 $margin / -2;
user-select: none;
.Icon {
&.tick-icon {
color: $colorOk;
}
&.action-icon {
border-radius: $radius;
background: white;
color: #36393e;
}
}
&.selected {
}
&.disabled {
opacity: .5;
pointer-events: none;
}
}