mirror of https://github.com/vector-im/riot-web
94 lines
1.8 KiB
SCSS
94 lines
1.8 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.
|
|
*/
|
|
|
|
/* This has got to be the most fragile piece of CSS ever written.
|
|
But empirically it works on Chrome/FF/Safari
|
|
*/
|
|
|
|
.mx_ImageView {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.mx_ImageView_content {
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mainImage {
|
|
object-fit: contain;
|
|
pointer-events: all;
|
|
|
|
max-width: 100vw;
|
|
max-height: 70vh;
|
|
min-width: 100px;
|
|
min-height: 100px;
|
|
|
|
&:hover {
|
|
cursor: grab;
|
|
}
|
|
}
|
|
|
|
.mx_ImageView_panel {
|
|
width: 100%;
|
|
height: 68px;
|
|
position: absolute;
|
|
z-index: 1000;
|
|
align-self: flex-start;
|
|
pointer-events: all;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.mx_ImageView_toolbar {
|
|
right: 0;
|
|
padding-right: 18px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.mx_ImageView_toolbar_buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.mx_ImageView_label {
|
|
left: 0;
|
|
padding-left: 18px;
|
|
text-align: left;
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
max-width: 240px;
|
|
color: $lightbox-fg-color;
|
|
}
|
|
|
|
.mx_ImageView_button {
|
|
padding: 5px;
|
|
}
|
|
|
|
.mx_ImageView_metadata {
|
|
font-size: $font-15px;
|
|
opacity: 0.5;
|
|
}
|