Carbon/src/sass/components/rooms.sass

44 lines
808 B
Sass
Raw Normal View History

2020-10-11 13:26:24 +00:00
@use "../colors" as c
$list-width: 240px
2020-10-15 03:43:37 +00:00
$icon-size: 32px
2020-10-11 13:26:24 +00:00
$icon-padding: 8px
.c-rooms
background-color: c.$darker
padding: $icon-padding
width: $list-width
font-size: 20px
font-weight: 500
2020-10-15 03:43:37 +00:00
overflow-y: auto
2020-10-11 13:26:24 +00:00
scrollbar-width: thin
scrollbar-color: c.$darkest c.$darker
flex-shrink: 0
2020-10-11 13:26:24 +00:00
.c-room
display: flex
align-items: center
2020-10-15 03:43:37 +00:00
padding: $icon-padding * 0.75 $icon-padding
margin: $icon-padding * 0.25 0
2020-10-11 13:26:24 +00:00
cursor: pointer
2020-10-15 03:43:37 +00:00
border-radius: 8px
2020-10-11 13:26:24 +00:00
2020-10-15 03:43:37 +00:00
&:not(&--active):hover
2020-10-11 13:26:24 +00:00
background-color: c.$mild
2020-10-15 03:43:37 +00:00
&--active
background-color: c.$milder
2020-10-11 13:26:24 +00:00
&__icon
width: $icon-size
height: $icon-size
background-color: #bbb
margin-right: $icon-padding
border-radius: 50%
flex-shrink: 0
&__name
white-space: nowrap
overflow: hidden
text-overflow: ellipsis