Files
cinny/src/app/organisms/room/RoomViewCmdBar.scss
T

57 lines
1.1 KiB
SCSS
Raw Normal View History

2021-12-19 10:28:41 +05:30
@use '../../partials/flex';
@use '../../partials/text';
@use '../../partials/dir';
2021-08-08 21:56:34 +05:30
.cmd-bar {
2021-08-04 15:22:59 +05:30
--cmd-bar-height: 28px;
min-height: var(--cmd-bar-height);
2021-08-08 21:56:34 +05:30
display: flex;
&__info {
display: flex;
width: 40px;
2022-03-24 18:47:53 +05:30
@include dir.side(margin, 14px, 10px);
2021-12-19 10:28:41 +05:30
2021-08-08 21:56:34 +05:30
& > * {
margin: auto;
}
}
&__content {
2021-12-19 10:28:41 +05:30
@extend .cp-fx__item-one;
2021-08-08 21:56:34 +05:30
display: flex;
&-suggestions {
2021-08-08 21:56:34 +05:30
height: 100%;
white-space: nowrap;
display: flex;
align-items: center;
2021-08-04 15:22:59 +05:30
& > .text {
2021-12-19 10:28:41 +05:30
@extend .cp-txt__ellipsis;
2021-08-04 15:22:59 +05:30
}
}
}
2021-08-08 21:56:34 +05:30
}
.cmd-item {
--cmd-item-bar: inset 0 -2px 0 0 var(--bg-caution);
2022-01-28 10:55:52 +05:30
height: 100%;
2021-12-19 10:28:41 +05:30
@include dir.side(margin, 0, var(--sp-extra-tight));
2021-08-08 21:56:34 +05:30
padding: 0 var(--sp-extra-tight);
border-radius: var(--bo-radius) var(--bo-radius) 0 0;
cursor: pointer;
2022-01-28 10:55:52 +05:30
display: inline-flex;
align-items: center;
2021-08-09 14:43:43 +05:30
2021-08-08 21:56:34 +05:30
&:hover {
background-color: var(--bg-caution-hover);
}
&:focus {
2021-08-09 14:43:43 +05:30
background-color: var(--bg-caution-active);
2021-08-08 21:56:34 +05:30
box-shadow: var(--cmd-item-bar);
border-bottom: 2px solid transparent;
outline: none;
}
2021-08-04 15:22:59 +05:30
}