2018-04-12 07:23:35 +08:00
|
|
|
/*
|
|
|
|
Copyright 2017 Travis Ralston
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_PinnedEventTile {
|
|
|
|
min-height: 40px;
|
|
|
|
width: 100%;
|
2021-05-26 20:51:17 +08:00
|
|
|
padding: 0 4px 12px;
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-05-26 20:51:17 +08:00
|
|
|
display: grid;
|
2021-05-26 21:00:53 +08:00
|
|
|
grid-template-areas:
|
|
|
|
"avatar name remove"
|
|
|
|
"content content content"
|
|
|
|
"footer footer footer";
|
2021-05-26 20:51:17 +08:00
|
|
|
grid-template-rows: max-content auto max-content;
|
|
|
|
grid-template-columns: 24px auto 24px;
|
|
|
|
grid-row-gap: 12px;
|
|
|
|
grid-column-gap: 8px;
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-05-26 20:51:17 +08:00
|
|
|
& + .mx_PinnedEventTile {
|
|
|
|
padding: 12px 4px;
|
|
|
|
border-top: 1px solid $menu-border-color;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-05-26 20:51:17 +08:00
|
|
|
.mx_PinnedEventTile_senderAvatar {
|
|
|
|
grid-area: avatar;
|
|
|
|
}
|
2018-05-27 09:42:09 +08:00
|
|
|
|
2021-05-26 20:51:17 +08:00
|
|
|
.mx_PinnedEventTile_sender {
|
|
|
|
grid-area: name;
|
|
|
|
font-weight: $font-semi-bold;
|
|
|
|
font-size: $font-15px;
|
|
|
|
line-height: $font-24px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-05-26 20:51:17 +08:00
|
|
|
.mx_PinnedEventTile_unpinButton {
|
|
|
|
visibility: hidden;
|
|
|
|
grid-area: remove;
|
|
|
|
position: relative;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
border-radius: 8px;
|
2019-07-10 23:55:03 +08:00
|
|
|
|
2021-05-26 20:51:17 +08:00
|
|
|
&:hover {
|
|
|
|
background-color: $roomheader-addroom-bg-color;
|
|
|
|
}
|
2018-05-27 09:42:09 +08:00
|
|
|
|
2021-05-26 20:51:17 +08:00
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
//top: 0;
|
|
|
|
//left: 0;
|
|
|
|
height: inherit;
|
|
|
|
width: inherit;
|
2021-08-12 17:30:35 +08:00
|
|
|
background: $secondary-content;
|
2021-05-26 20:51:17 +08:00
|
|
|
mask-position: center;
|
|
|
|
mask-size: 8px;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-image: url('$(res)/img/image-view/close.svg');
|
|
|
|
}
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-05-26 20:51:17 +08:00
|
|
|
.mx_PinnedEventTile_message {
|
|
|
|
grid-area: content;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-05-26 20:51:17 +08:00
|
|
|
.mx_PinnedEventTile_footer {
|
|
|
|
grid-area: footer;
|
|
|
|
font-size: 10px;
|
|
|
|
line-height: 12px;
|
|
|
|
|
|
|
|
.mx_PinnedEventTile_timestamp {
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
2021-08-12 17:30:35 +08:00
|
|
|
color: $secondary-content;
|
2021-05-26 20:51:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_link {
|
|
|
|
margin-left: 12px;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
}
|
2018-05-27 08:40:48 +08:00
|
|
|
|
2021-05-26 20:51:17 +08:00
|
|
|
&:hover {
|
|
|
|
.mx_PinnedEventTile_unpinButton {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
2019-07-10 01:15:10 +08:00
|
|
|
}
|