Add chevron to button
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
8e55967db3
commit
21f47f21aa
3 changed files with 35 additions and 5 deletions
|
@ -16,15 +16,16 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.RoomDetailsView_row {
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
.RoomDetailsView_label, .RoomDetailsView_row, .RoomDetailsView, .EncryptionIconView {
|
.RoomDetailsView_label, .RoomDetailsView_row, .RoomDetailsView, .EncryptionIconView {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.RoomDetailsView_value {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
.EncryptionIconView {
|
.EncryptionIconView {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="7" height="11" viewBox="0 0 7 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.96967 10.7197C0.676777 10.4268 0.676007 9.95117 0.967952 9.65733L4.66823 5.93303L0.955922 2.22072C0.663029 1.92782 0.662259 1.45218 0.954204 1.15834C1.24615 0.864504 1.72025 0.863737 2.01315 1.15663L6.25579 5.39927C6.54868 5.69216 6.54945 6.1678 6.2575 6.46164L2.02861 10.718C1.73667 11.0118 1.26256 11.0126 0.96967 10.7197Z" fill="#737D8C"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 496 B |
|
@ -789,8 +789,11 @@ button.link {
|
||||||
|
|
||||||
/* Right Panel */
|
/* Right Panel */
|
||||||
|
|
||||||
.RoomDetailsView {
|
.RightPanelView {
|
||||||
background: rgba(245, 245, 245, 0.90);
|
background: rgba(245, 245, 245, 0.90);
|
||||||
|
}
|
||||||
|
|
||||||
|
.RoomDetailsView {
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -813,6 +816,24 @@ button.link {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
|
width: 100%;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.RoomDetailsView_row {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.RoomDetailsView_row::after {
|
||||||
|
content: url("./icons/chevron-small.svg");
|
||||||
|
margin-left: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.RoomDetailsView_row:not(button)::after{
|
||||||
|
content: " ";
|
||||||
|
width: 19px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.RoomDetailsView_label::before {
|
.RoomDetailsView_label::before {
|
||||||
|
@ -821,8 +842,13 @@ button.link {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.RoomDetailsView_label {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
.RoomDetailsView_value {
|
.RoomDetailsView_value {
|
||||||
color: #737D8C;
|
color: #737D8C;
|
||||||
|
width: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.MemberCount::before {
|
.MemberCount::before {
|
||||||
|
|
Reference in a new issue