mirror of https://github.com/vector-im/riot-web
55 lines
1.4 KiB
SCSS
55 lines
1.4 KiB
SCSS
|
/*
|
||
|
Copyright 2015, 2016 OpenMarket 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_RoomTooltip_chevron {
|
||
|
position: absolute;
|
||
|
left: -8px;
|
||
|
top: 4px;
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
border-top: 8px solid transparent;
|
||
|
border-right: 8px solid $menu-border-color;
|
||
|
border-bottom: 8px solid transparent;
|
||
|
}
|
||
|
|
||
|
.mx_RoomTooltip_chevron:after {
|
||
|
content:'';
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
border-top: 7px solid transparent;
|
||
|
border-right: 7px solid $primary-bg-color;
|
||
|
border-bottom: 7px solid transparent;
|
||
|
position:absolute;
|
||
|
top: -7px;
|
||
|
left: 1px;
|
||
|
}
|
||
|
|
||
|
.mx_RoomTooltip {
|
||
|
display: none;
|
||
|
position: fixed;
|
||
|
border: 1px solid $menu-border-color;
|
||
|
border-radius: 5px;
|
||
|
background-color: $primary-bg-color;
|
||
|
z-index: 2000;
|
||
|
padding: 5px;
|
||
|
pointer-events: none;
|
||
|
line-height: 14px;
|
||
|
font-size: 13px;
|
||
|
color: $primary-fg-color;
|
||
|
max-width: 600px;
|
||
|
margin-right: 50px;
|
||
|
}
|