jitsi-roomsv2/frontend/src/components/sidebar/Sidebar.css

41 lines
580 B
CSS
Raw Normal View History

2023-01-07 19:06:04 +01:00
.sidebar {
resize: horizontal;
2023-01-07 19:06:04 +01:00
display: flex;
flex-direction: column;
2023-02-12 15:28:53 +01:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2023-04-09 10:36:52 +02:00
padding-left: 5px;
padding-right: 5px;
background-color: #121115;
2023-02-12 15:28:53 +01:00
}
.sidebar h3 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2023-01-07 19:06:04 +01:00
}
.sidebar-footer {
margin-top: auto;
}
2023-01-10 19:00:20 +01:00
.sidebar-small {
2023-01-07 19:06:04 +01:00
min-width: 60px;
max-width: 60px;
}
2023-02-12 15:28:53 +01:00
.sidebar-full {
2023-04-09 10:36:52 +02:00
width: 220px;
2023-02-12 15:28:53 +01:00
}
2023-04-08 15:58:11 +02:00
.sidebar-hidden {
width: 0;
2023-04-09 10:36:52 +02:00
padding: 0;
2023-04-08 15:58:11 +02:00
}
.sidebar-hidden > .sidebar-footer > .sidebar-toggle {
2023-01-07 19:06:04 +01:00
position: absolute;
bottom: 0;
}