Carbon/src/sass/components/rooms.sass

66 lines
1.1 KiB
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: 18px
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
margin-right: $icon-padding
border-radius: 50%
flex-shrink: 0
&--no-icon
background-color: #bbb
2020-10-11 13:26:24 +00:00
&__name
white-space: nowrap
overflow: hidden
text-overflow: ellipsis
flex: 1
&__number
flex-shrink: 0
line-height: 1
padding: 4px 5px
border-radius: 5px
font-size: 14px
pointer-events: none
&--none
display: none
&--unreads
background-color: #ddd
color: #111
&--notifications
background-color: #ffac4b
color: #000