2018-04-12 07:23:35 +08:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
|
|
|
|
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_DateSeparator {
|
|
|
|
clear: both;
|
2018-10-23 16:25:04 +08:00
|
|
|
margin: 4px 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-06-29 18:30:25 +08:00
|
|
|
font: var(--cpd-font-body-md-regular);
|
2018-10-23 16:25:04 +08:00
|
|
|
color: $roomtopic-color;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2018-10-23 16:25:04 +08:00
|
|
|
.mx_DateSeparator > hr {
|
|
|
|
flex: 1 1 0;
|
|
|
|
height: 0;
|
|
|
|
border: none;
|
2022-05-09 21:23:51 +08:00
|
|
|
border-bottom: 1px solid $menu-selected-color;
|
2018-10-23 16:25:04 +08:00
|
|
|
}
|
|
|
|
|
2023-03-21 00:03:36 +08:00
|
|
|
.mx_DateSeparator_dateContent {
|
|
|
|
padding: 0 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DateSeparator_dateHeading {
|
2018-10-23 16:25:04 +08:00
|
|
|
flex: 0 0 auto;
|
2023-03-21 00:03:36 +08:00
|
|
|
margin: 0;
|
2022-08-01 15:31:14 +08:00
|
|
|
font-size: inherit;
|
|
|
|
font-weight: inherit;
|
|
|
|
color: inherit;
|
2018-10-23 16:25:04 +08:00
|
|
|
}
|
2022-01-28 06:32:12 +08:00
|
|
|
|
|
|
|
.mx_DateSeparator_jumpToDateMenu {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DateSeparator_chevron {
|
|
|
|
align-self: center;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-repeat: no-repeat;
|
2022-12-12 19:24:14 +08:00
|
|
|
mask-image: url("$(res)/img/feather-customised/chevron-down.svg");
|
2022-01-28 06:32:12 +08:00
|
|
|
background-color: $tertiary-content;
|
|
|
|
}
|