You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11022 lines
300 KiB

6 years ago
/*
* Nunito.
* Includes extended Latin and Vietnamese character sets
* Current URLs are taken from
* https://github.com/alexeiva/NunitoFont/releases/tag/v3.500
* ...in order to include cyrillic.
*
* Previously, they were
* https://fonts.googleapis.com/css?family=Nunito:400,400i,600,600i,700,700i&subset=latin-ext,vietnamese
*
* We explicitly do not include Nunito's italic variants, as they are not italic enough
* and it's better to rely on the browser's built-in obliquing behaviour.
*/
/* the 'src' links are relative to the bundle.css, which is in a subdirectory.
*/
6 years ago
@font-face {
6 years ago
font-family: 'Nunito';
font-style: normal;
font-weight: 400;
src: url(../../fonts/Nunito/Nunito-Regular.ffae5d0.ttf) format('truetype');
6 years ago
}
@font-face {
6 years ago
font-family: 'Nunito';
font-style: normal;
font-weight: 600;
src: url(../../fonts/Nunito/Nunito-SemiBold.da07a44.ttf) format('truetype');
6 years ago
}
6 years ago
@font-face {
font-family: 'Nunito';
font-style: normal;
font-weight: 700;
src: url(../../fonts/Nunito/Nunito-Bold.f7e8fbd.ttf) format('truetype');
6 years ago
}
6 years ago
/*
* Fira Mono
* Used for monospace copy, i.e. code
*/
@font-face {
font-family: 'Fira Mono';
src: url(../../fonts/Fira_Mono/FiraMono-Regular.0d953a5.ttf) format('truetype');
font-weight: 400;
font-style: normal;
6 years ago
}
6 years ago
@font-face {
font-family: 'Fira Mono';
src: url(../../fonts/Fira_Mono/FiraMono-Bold.bf12863.ttf) format('truetype');
font-weight: 700;
font-style: normal;
6 years ago
}
6 years ago
/* Nunito lacks combining diacritics, so these will fall through
to the next font. Helevetica's diacritics however do not combine
nicely with Open Sans (on OSX, at least) and result in a huge
horizontal mess. Arial empirically gets it right, hence prioritising
Arial here. */
6 years ago
/*** ImageView ***/
6 years ago
.mx_filterFlipColor {
filter: invert(1);
6 years ago
}
6 years ago
.gm-scrollbar .thumb {
filter: invert(1);
6 years ago
}
6 years ago
.mx_EventTile_content .markdown-body pre:hover {
border-color: #808080 !important;
6 years ago
}
6 years ago
.mx_EventTile_content .markdown-body pre, .mx_EventTile_content .markdown-body code {
filter: invert(1);
}
.mx_EventTile_content .markdown-body pre code {
filter: none;
}
.mx_EventTile_content .markdown-body table tr {
background-color: #000000;
}
.mx_EventTile_content .markdown-body table tr:nth-child(2n) {
background-color: #080808;
}
6 years ago
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
Copyright 2017 New Vector 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.
*/
html {
/* hack to stop overscroll bounce on OSX and iOS.
N.B. Breaks things when we have legitimate horizontal overscroll */
height: 100%;
overflow: hidden;
}
body {
6 years ago
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
6 years ago
font-size: 15px;
6 years ago
background-color: #181b21;
color: #edf3ff;
6 years ago
border: 0px;
margin: 0px;
}
.error, .warning {
6 years ago
color: #ff4b55;
6 years ago
}
h2 {
6 years ago
color: #edf3ff;
6 years ago
font-weight: 400;
font-size: 18px;
margin-top: 16px;
margin-bottom: 16px;
}
a:hover, a:link, a:visited {
6 years ago
color: #238CF5;
}
input[type=text], input[type=search], input[type=password] {
padding: 9px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
font-weight: 600;
min-width: 0;
}
input[type=text].mx_textinput_icon, input[type=search].mx_textinput_icon {
padding-left: 36px;
background-repeat: no-repeat;
background-position: 10px center;
}
input[type=text].mx_textinput_icon.mx_textinput_search, input[type=search].mx_textinput_icon.mx_textinput_search {
background-image: url(../../img/feather-customised/search-input.044bfa7.svg);
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
display: none;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
opacity: initial;
}
input::placeholder, textarea::placeholder {
opacity: initial;
6 years ago
}
input[type=text], input[type=password], textarea {
background-color: transparent;
6 years ago
color: #edf3ff;
6 years ago
}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
outline: none;
box-shadow: none;
}
/* Required by Firefox */
textarea {
6 years ago
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
color: #edf3ff;
6 years ago
}
6 years ago
.mx_Dialog :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=text], .mx_Dialog :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=search], .mx_Dialog .mx_textinput, .mx_MatrixChat :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=text], .mx_MatrixChat :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=search], .mx_MatrixChat .mx_textinput {
display: block;
box-sizing: border-box;
background-color: transparent;
color: #61708b;
border-radius: 4px;
border: 1px solid #c1c1c1;
margin: 9px;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
}
.mx_Dialog .mx_textinput, .mx_MatrixChat .mx_textinput {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
}
.mx_Dialog .mx_textinput > input[type=text], .mx_Dialog .mx_textinput > input[type=search], .mx_MatrixChat .mx_textinput > input[type=text], .mx_MatrixChat .mx_textinput > input[type=search] {
border: none;
-ms-flex: 1;
flex: 1;
color: #edf3ff;
}
.mx_Dialog :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=text]:-ms-input-placeholder, .mx_Dialog :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=search]:-ms-input-placeholder, .mx_Dialog .mx_textinput input:-ms-input-placeholder, .mx_MatrixChat :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=text]:-ms-input-placeholder, .mx_MatrixChat :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=search]:-ms-input-placeholder, .mx_MatrixChat .mx_textinput input:-ms-input-placeholder {
color: #61708b;
}
.mx_Dialog :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=text]::placeholder, .mx_Dialog :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=search]::placeholder, .mx_Dialog .mx_textinput input::placeholder, .mx_MatrixChat :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=text]::placeholder, .mx_MatrixChat :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=search]::placeholder, .mx_MatrixChat .mx_textinput input::placeholder {
color: #61708b;
}
/*** panels ***/
.dark-panel {
background-color: #22262e;
}
.dark-panel :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=text], .dark-panel :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=search], .dark-panel .mx_textinput {
color: #61708b;
background-color: #181b21;
border: none;
}
.light-panel :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=text], .light-panel :not(.mx_textinput):not(.mx_Field):not(.mx_no_textinput) > input[type=search], .light-panel .mx_textinput {
color: #61708b;
background-color: #f2f5f8;
border: none;
}
6 years ago
/* Prevent ugly dotted highlight around selected elements in Firefox */
::-moz-focus-inner {
border: 0;
}
/* applied to side-panels and messagepanel when in RoomSettings */
.mx_fadable {
opacity: 1;
transition: opacity 0.2s ease-in-out;
}
/* XXX: critical hack to GeminiScrollbar to allow them to work in FF 42 and Chrome 48.
Stop the scrollbar view from pushing out the container's overall sizing, which causes
flexbox to adapt to the new size and cause the view to keep growing.
*/
.gm-scrollbar-container .gm-scroll-view {
position: absolute;
}
/* Expand thumbs on hoverover */
.gm-scrollbar {
border-radius: 5px ! important;
}
.gm-scrollbar.-vertical {
width: 6px;
transition: width 120ms ease-out ! important;
}
.gm-scrollbar.-vertical:hover, .gm-scrollbar.-vertical:active {
width: 8px;
transition: width 120ms ease-out ! important;
}
.gm-scrollbar.-horizontal {
height: 6px;
transition: height 120ms ease-out ! important;
}
.gm-scrollbar.-horizontal:hover, .gm-scrollbar.-horizontal:active {
height: 8px;
transition: height 120ms ease-out ! important;
}
#mx_theme_accentColor {
6 years ago
color: #03b381;
6 years ago
}
#mx_theme_secondaryAccentColor {
6 years ago
color: #f2f5f8;
6 years ago
}
#mx_theme_tertiaryAccentColor {
6 years ago
color: #d3efe1;
6 years ago
}
6 years ago
/* Expected z-indexes for dialogs:
4000 - Default wrapper index
4009 - Static dialog background
4010 - Static dialog itself
4011 - Standard dialog background
4012 - Standard dialog itself
These are set up such that the static dialog always appears
underneath the standard dialogs.
*/
6 years ago
.mx_Dialog_wrapper {
position: fixed;
z-index: 4000;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
6 years ago
}
/* Spinner Dialog overide */
.mx_Dialog_wrapper.mx_Dialog_spinner .mx_Dialog {
width: auto;
border-radius: 8px;
padding: 0px;
box-shadow: none;
}
.mx_Dialog {
6 years ago
background-color: #181b21;
color: #c8c8cd;
z-index: 4012;
6 years ago
font-weight: 300;
font-size: 15px;
position: relative;
6 years ago
padding: 40px 58px 36px 58px;
6 years ago
width: 60%;
max-width: 704px;
6 years ago
box-shadow: 2px 15px 30px 0 rgba(0, 0, 0, 0.48);
6 years ago
max-height: 80%;
overflow-y: auto;
}
6 years ago
.mx_Dialog_staticWrapper .mx_Dialog {
z-index: 4010;
}
6 years ago
.mx_Dialog_background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
6 years ago
background-color: #000;
6 years ago
opacity: 0.8;
6 years ago
z-index: 4011;
}
.mx_Dialog_background.mx_Dialog_staticBackground {
z-index: 4009;
}
.mx_Dialog_wrapperWithStaticUnder .mx_Dialog_background {
opacity: 0.4;
6 years ago
}
.mx_Dialog_lightbox .mx_Dialog_background {
opacity: 0.85;
background-color: #000;
}
.mx_Dialog_lightbox .mx_Dialog {
border-radius: 0px;
background-color: transparent;
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
pointer-events: none;
}
6 years ago
.mx_Dialog_header {
position: relative;
}
.mx_Dialog_title {
font-weight: bold;
font-size: 22px;
line-height: 36px;
color: #edf3ff;
}
.mx_Dialog_header.mx_Dialog_headerWithButton > .mx_Dialog_title {
text-align: center;
}
.mx_Dialog_title.danger {
color: #ff4b55;
}
6 years ago
.mx_Dialog_cancelButton {
6 years ago
-webkit-mask: url(../../img/feather-customised/cancel.23c2689.svg);
mask: url(../../img/feather-customised/cancel.23c2689.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
width: 36px;
height: 36px;
background-color: #edf3ff;
6 years ago
cursor: pointer;
6 years ago
position: absolute;
top: 20px;
right: 20px;
6 years ago
}
.mx_Dialog_content {
margin: 24px 0 68px;
6 years ago
font-size: 14px;
6 years ago
color: #edf3ff;
6 years ago
word-wrap: break-word;
}
.mx_Dialog_buttons {
text-align: right;
}
.mx_Dialog button, .mx_Dialog input[type="submit"] {
/* align images in buttons (eg spinners) */
vertical-align: middle;
6 years ago
border: 0px;
border-radius: 4px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
color: white;
background-color: #03b381;
width: auto;
padding: 7px;
6 years ago
padding-left: 1.5em;
padding-right: 1.5em;
6 years ago
cursor: pointer;
6 years ago
display: inline-block;
6 years ago
outline: none;
6 years ago
margin-left: 0px;
margin-right: 8px;
font-weight: 600;
6 years ago
border: 1px solid #03b381 ! important;
color: #03b381;
background-color: transparent;
6 years ago
}
.mx_Dialog button:hover, .mx_Dialog input[type="submit"]:hover {
}
.mx_Dialog button:focus, .mx_Dialog input[type="submit"]:focus {
6 years ago
filter: brightness(105%);
6 years ago
}
.mx_Dialog button.mx_Dialog_primary, .mx_Dialog input[type="submit"].mx_Dialog_primary {
color: #ffffff;
6 years ago
background-color: #03b381;
6 years ago
}
.mx_Dialog button.danger, .mx_Dialog input[type="submit"].danger {
6 years ago
background-color: #ff4b55;
border: solid 1px #ff4b55;
6 years ago
color: #ffffff;
}
.mx_Dialog button:disabled, .mx_Dialog input[type="submit"]:disabled {
6 years ago
background-color: #c8c8cd;
border: solid 1px #c8c8cd;
6 years ago
opacity: 0.7;
}
6 years ago
.mx_GeneralButton {
/* align images in buttons (eg spinners) */
vertical-align: middle;
border: 0px;
border-radius: 4px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
color: white;
background-color: #03b381;
width: auto;
padding: 7px;
padding-left: 1.5em;
padding-right: 1.5em;
cursor: pointer;
6 years ago
display: inline-block;
outline: none;
display: inline;
margin: auto;
}
6 years ago
.mx_GeneralButton:hover {
6 years ago
}
6 years ago
.mx_linkButton {
cursor: pointer;
color: #03b381;
6 years ago
}
.mx_TextInputDialog_label {
text-align: left;
padding-bottom: 12px;
}
.mx_TextInputDialog_input {
font-size: 15px;
border-radius: 3px;
6 years ago
border: 1px solid #e7e7e7;
6 years ago
padding: 9px;
6 years ago
color: #edf3ff;
background-color: #181b21;
6 years ago
}
.mx_emojione {
height: 1em;
vertical-align: middle;
}
.mx_emojione_selected {
6 years ago
background-color: #03b381;
6 years ago
}
::-moz-selection {
6 years ago
background-color: #03b381;
color: #ffffff;
6 years ago
}
::selection {
6 years ago
background-color: #03b381;
color: #ffffff;
6 years ago
}
.mx_textButton {
/* align images in buttons (eg spinners) */
vertical-align: middle;
6 years ago
border: 0px;
border-radius: 4px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
color: white;
background-color: #03b381;
width: auto;
padding: 7px;
6 years ago
padding-left: 1.5em;
padding-right: 1.5em;
6 years ago
cursor: pointer;
6 years ago
display: inline-block;
6 years ago
outline: none;
font-size: 15px;
padding: 0px 1.5em 0px 1.5em;
6 years ago
}
.mx_textButton:hover {
}
.mx_button_row {
margin-top: 69px;
}
.mx_Beta {
color: red;
margin-right: 10px;
position: relative;
top: -3px;
background-color: white;
padding: 0 4px;
border-radius: 3px;
border: 1px solid darkred;
cursor: help;
transition-duration: 200ms;
font-size: smaller;
filter: opacity(0.5);
6 years ago
}
.mx_Beta:hover {
color: white;
border: 1px solid gray;
background-color: darkred;
}
.mx_TintableSvgButton {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-pack: center;
justify-content: center;
6 years ago
-ms-flex-line-pack: center;
align-content: center;
}
.mx_TintableSvgButton object {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
}
.mx_TintableSvgButton span {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 0;
cursor: pointer;
}
/*
6 years ago
Copyright 2018 New Vector 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.
*/
/*
1. for browsers that support native overlay auto-hiding scrollbars
*/
.mx_AutoHideScrollbar {
overflow-x: hidden;
overflow-y: auto;
-ms-overflow-style: -ms-autohiding-scrollbar;
6 years ago
}
6 years ago
/*
2. webkit also supports overflow:overlay where the scrollbars don't take any space
in the layout but they don't autohide, so do that only on hover
*/
body.mx_scrollbar_overlay_noautohide .mx_AutoHideScrollbar {
overflow-y: hidden;
6 years ago
}
6 years ago
body.mx_scrollbar_overlay_noautohide .mx_AutoHideScrollbar:hover {
overflow-y: overlay;
6 years ago
}
/*
6 years ago
3. as a last fallback, compensate for the scrollbar taking up space in the layout
by having giving the child element (.mx_AutoHideScrollbar_offset) a
negative right margin of the width of the scrollbar when the container
is overflowing. This is what Firefox ends up using. Overflow is detected
in javascript, and adds the mx_AutoHideScrollbar_overflow class to the container.
This only works in Firefox, which should be fine as this fallback is only needed there.
*/
body.mx_scrollbar_nooverlay .mx_AutoHideScrollbar {
overflow-y: hidden;
}
body.mx_scrollbar_nooverlay .mx_AutoHideScrollbar:hover {
overflow-y: auto;
}
/*
offset scrollbar width with negative margin-right
include before and after psuedo-elements here so they can
be used to do something interesting like scroll-indicating
gradients (see IndicatorScrollBar)
*/
body.mx_scrollbar_nooverlay .mx_AutoHideScrollbar:hover.mx_AutoHideScrollbar_overflow > .mx_AutoHideScrollbar_offset, body.mx_scrollbar_nooverlay .mx_AutoHideScrollbar:hover.mx_AutoHideScrollbar_overflow::before, body.mx_scrollbar_nooverlay .mx_AutoHideScrollbar:hover.mx_AutoHideScrollbar_overflow::after
{
margin-right: calc(-1 * var(--scrollbar-width));
}
.mx_AutoHideScrollbar {
scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
scrollbar-width: thin;
6 years ago
}
6 years ago
::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.2);
border-radius: 3px;
6 years ago
}
.mx_CompatibilityPage {
width: 100%;
height: 100%;
background-color: #e55;
}
.mx_CompatibilityPage_box {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 500px;
height: 300px;
border: 1px solid;
padding: 10px;
background-color: #fcc;
}
/*
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_ContextualMenu_wrapper {
position: fixed;
z-index: 5000;
}
.mx_ContextualMenu_background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 1.0;
z-index: 5000;
}
.mx_ContextualMenu {
border-radius: 4px;
6 years ago
box-shadow: 4px 4px 12px 0 #181b21;
background-color: #22262e;
color: #edf3ff;
6 years ago
position: absolute;
font-size: 14px;
z-index: 5001;
}
.mx_ContextualMenu.mx_ContextualMenu_right {
right: 8px;
}
.mx_ContextualMenu_chevron_right {
position: absolute;
right: -8px;
top: 0px;
width: 0;
height: 0;
border-top: 8px solid transparent;
6 years ago
border-left: 8px solid #22262e;
6 years ago
border-bottom: 8px solid transparent;
}
.mx_ContextualMenu_chevron_right:after {
content:'';
width: 0;
height: 0;
border-top: 7px solid transparent;
6 years ago
border-left: 7px solid #22262e;
6 years ago
border-bottom: 7px solid transparent;
position:absolute;
top: -7px;
right: 1px;
}
.mx_ContextualMenu.mx_ContextualMenu_left {
left: 8px;
}
.mx_ContextualMenu_chevron_left {
position: absolute;
left: -8px;
top: 0px;
width: 0;
height: 0;
border-top: 8px solid transparent;
6 years ago
border-right: 8px solid #22262e;
6 years ago
border-bottom: 8px solid transparent;
}
.mx_ContextualMenu_chevron_left:after{
content:'';
width: 0;
height: 0;
border-top: 7px solid transparent;
6 years ago
border-right: 7px solid #22262e;
6 years ago
border-bottom: 7px solid transparent;
position:absolute;
top: -7px;
left: 1px;
}
.mx_ContextualMenu.mx_ContextualMenu_top {
top: 8px;
}
.mx_ContextualMenu_chevron_top {
position: absolute;
left: 0px;
top: -8px;
width: 0;
height: 0;
border-left: 8px solid transparent;
6 years ago
border-bottom: 8px solid #22262e;
6 years ago
border-right: 8px solid transparent;
}
.mx_ContextualMenu_chevron_top:after{
content:'';
width: 0;
height: 0;
border-left: 7px solid transparent;
6 years ago
border-bottom: 7px solid #22262e;
6 years ago
border-right: 7px solid transparent;
position:absolute;
left: -7px;
top: 1px;
}
.mx_ContextualMenu.mx_ContextualMenu_bottom {
bottom: 8px;
}
.mx_ContextualMenu_chevron_bottom {
position: absolute;
left: 0px;
bottom: -8px;
width: 0;
height: 0;
border-left: 8px solid transparent;
6 years ago
border-top: 8px solid #22262e;
6 years ago
border-right: 8px solid transparent;
}
.mx_ContextualMenu_chevron_bottom:after{
content:'';
width: 0;
height: 0;
border-left: 7px solid transparent;
6 years ago
border-top: 7px solid #22262e;
6 years ago
border-right: 7px solid transparent;
position:absolute;
left: -7px;
bottom: 1px;
}
.mx_ContextualMenu_field {
padding: 3px 6px 3px 6px;
cursor: pointer;
white-space: nowrap;
}
.mx_ContextualMenu_spinner {
display: block;
margin: 0 auto;
}
/*
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_CreateRoom {
width: 960px;
margin-left: auto;
margin-right: auto;
6 years ago
color: #edf3ff;
6 years ago
}
.mx_CreateRoom input, .mx_CreateRoom textarea {
border-radius: 3px;
border: 1px solid #c7c7c7;
font-weight: 300;
font-size: 13px;
padding: 9px;
margin-top: 6px;
}
.mx_CreateRoom_description {
width: 330px;
}
/*
6 years ago
Copyright 2019 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_LeftPanel_tagPanelContainer {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
}
6 years ago
.mx_CustomRoomTagPanel {
background-color: #15171b;
max-height: 40vh;
6 years ago
}
6 years ago
.mx_CustomRoomTagPanel_scroller {
max-height: inherit;
6 years ago
}
6 years ago
.mx_CustomRoomTagPanel .mx_AccessibleButton {
margin: 9px auto;
width: 40px;
}
.mx_CustomRoomTagPanel .mx_BaseAvatar_image {
box-sizing: border-box;
width: 40px;
height: 40px;
}
.mx_CustomRoomTagPanel .mx_AccessibleButton.CustomRoomTagPanel_tileSelected .mx_BaseAvatar_image {
border: 3px solid #ff4b55;
border-radius: 40px;
}
/*
Copyright 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_FilePanel {
-ms-flex-order: 2;
order: 2;
-ms-flex: 1 1 0px;
flex: 1 1 0;
overflow-y: auto;
}
.mx_FilePanel .mx_RoomView_messageListWrapper {
margin-right: 20px;
}
.mx_FilePanel .mx_RoomView_MessageList h2 {
display: none;
}
/* FIXME: rather than having EventTile's default CSS be for MessagePanel,
6 years ago
we should make EventTile a base CSS class and customise it specifically
for usage in {Message,File,Notification}Panel. */
.mx_FilePanel .mx_EventTile_avatar {
display: none;
}
/* Overrides for the attachment body tiles */
.mx_FilePanel .mx_EventTile {
word-break: break-word;
}
.mx_FilePanel .mx_EventTile .mx_MImageBody {
margin-right: 0px;
}
.mx_FilePanel .mx_EventTile .mx_MFileBody_download {
display: -ms-flexbox;
display: flex;
font-size: 14px;
6 years ago
color: #a1b2d1;
6 years ago
}
.mx_FilePanel .mx_EventTile .mx_MFileBody_downloadLink {
-ms-flex: 1 1 auto;
flex: 1 1 auto;
6 years ago
color: #c8c8cd;
6 years ago
}
.mx_FilePanel .mx_EventTile .mx_MImageBody_size {
-ms-flex: 1 0 0px;
flex: 1 0 0;
6 years ago
font-size: 11px;
text-align: right;
white-space: nowrap;
}
/* Overides for the sender details line */
.mx_FilePanel .mx_EventTile_senderDetails {
display: -ms-flexbox;
display: flex;
margin-top: -2px;
}
.mx_FilePanel .mx_EventTile_senderDetailsLink {
text-decoration: none;
}
.mx_FilePanel .mx_EventTile .mx_SenderProfile {
-ms-flex: 1 1 auto;
flex: 1 1 auto;
6 years ago
line-height: initial;
padding: 0px;
font-size: 11px;
opacity: 1.0;
6 years ago
color: #a1b2d1;
6 years ago
}
.mx_FilePanel .mx_EventTile .mx_MessageTimestamp {
-ms-flex: 1 0 0px;
flex: 1 0 0;
6 years ago
text-align: right;
visibility: visible;
position: initial;
font-size: 11px;
opacity: 1.0;
6 years ago
color: #a1b2d1;
6 years ago
}
/* Overrides for the wrappers around the body tile */
.mx_FilePanel .mx_EventTile_line {
margin-right: 0px;
padding-left: 0px;
}
.mx_FilePanel .mx_EventTile:hover .mx_EventTile_line {
6 years ago
background-color: #181b21;
6 years ago
}
.mx_FilePanel .mx_EventTile_selected .mx_EventTile_line {
padding-left: 0px;
}
/*
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_GroupView {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
overflow: hidden;
}
.mx_GroupView_error {
margin: auto;
}
.mx_GroupView_header {
6 years ago
min-height: 52px;
-ms-flex-align: center;
align-items: center;
6 years ago
display: -ms-flexbox;
display: flex;
padding-bottom: 10px;
}
.mx_GroupView_header_view {
6 years ago
border-bottom: 1px solid #000000;
6 years ago
padding-bottom: 0px;
6 years ago
padding-left: 19px;
padding-right: 8px;
6 years ago
}
.mx_GroupView_header_avatar, .mx_GroupView_header_info {
display: table-cell;
vertical-align: middle;
}
.mx_GroupHeader_button {
6 years ago
margin-left: 5px;
margin-right: 5px;
6 years ago
cursor: pointer;
6 years ago
height: 20px;
width: 20px;
background-color: #a1b2d1;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: contain;
mask-size: contain;
6 years ago
}
6 years ago
.mx_GroupHeader_editButton {
-webkit-mask-image: url(../../img/icons-settings-room.942b673.svg);
mask-image: url(../../img/icons-settings-room.942b673.svg);
}
.mx_GroupHeader_shareButton {
-webkit-mask-image: url(../../img/icons-share.c75982d.svg);
mask-image: url(../../img/icons-share.c75982d.svg);
}
.mx_GroupView_hostingSignup img {
margin-left: 5px;
6 years ago
}
.mx_GroupView_editable {
border-bottom: 1px solid #c7c7c7 ! important;
min-width: 150px;
cursor: text;
}
.mx_GroupView_editable:focus {
6 years ago
border-bottom: 1px solid #03b381 ! important;
6 years ago
outline: none;
box-shadow: none;
}
.mx_GroupView_header_isUserMember .mx_GroupView_header_name:hover div:not(.mx_GroupView_editable) {
6 years ago
color: #03b381;
6 years ago
cursor: pointer;
}
.mx_GroupView_avatarPicker {
position: relative;
}
.mx_GroupView_avatarPicker_edit {
position: absolute;
top: 50px;
left: 15px;
}
.mx_GroupView_avatarPicker .mx_Spinner {
width: 48px;
height: 48px ! important;
}
.mx_GroupView_header_leftCol {
-ms-flex: 1;
flex: 1;
6 years ago
overflow: hidden;
}
.mx_GroupView_header_rightCol {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
6 years ago
}
.mx_GroupView_textButton {
display: inline-block;
}
.mx_GroupView_header_groupid {
font-weight: normal;
font-size: initial;
padding-left: 10px;
}
.mx_GroupView_header_name {
vertical-align: middle;
width: 100%;
height: 31px;
overflow: hidden;
6 years ago
color: #edf3ff;
6 years ago
font-weight: bold;
font-size: 22px;
padding-left: 19px;
padding-right: 16px;
/* why isn't text-overflow working? */
text-overflow: ellipsis;
border-bottom: 1px solid transparent;
}
.mx_GroupView_header_shortDesc {
vertical-align: bottom;
float: left;
max-height: 42px;
color: #a2a2a2;
font-weight: 300;
font-size: 13px;
padding-left: 19px;
margin-right: 16px;
overflow: hidden;
text-overflow: ellipsis;
border-bottom: 1px solid transparent;
}
.mx_GroupView_avatarPicker_label {
cursor: pointer;
}
.mx_GroupView_cancelButton {
padding-left: 8px;
}
.mx_GroupView_cancelButton img {
position: relative;
top: 5px;
}
.mx_GroupView input[type='radio'] {
margin: 10px 10px 0px 10px;
}
.mx_GroupView_label_text {
display: inline-block;
max-width: 80%;
vertical-align: 0.1em;
line-height: 2em;
}
6 years ago
.mx_GroupView > .mx_MainSplit {
-ms-flex: 1;
flex: 1;
}
6 years ago
.mx_GroupView_body {
-ms-flex-positive: 1;
flex-grow: 1;
6 years ago
}
.mx_GroupView_rooms {
-ms-flex-positive: 1;
flex-grow: 1;
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
min-height: 200px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.mx_GroupView h3 {
text-transform: uppercase;
6 years ago
color: #edf3ff;
6 years ago
font-weight: 600;
font-size: 13px;
margin-bottom: 10px;
}
.mx_GroupView_rooms_header .mx_AccessibleButton {
padding-left: 14px;
margin-bottom: 14px;
height: 24px;
}
.mx_GroupView_group {
6 years ago
border-top: 1px solid #000000;
6 years ago
}
.mx_GroupView_group_disabled {
opacity: 0.3;
pointer-events: none;
}
.mx_GroupView_rooms_header_addRow_button {
display: inline-block;
}
.mx_GroupView_rooms_header_addRow_button object {
pointer-events: none;
}
.mx_GroupView_rooms_header_addRow_label {
display: inline-block;
vertical-align: top;
line-height: 24px;
padding-left: 28px;
6 years ago
color: #03b381;
6 years ago
}
.mx_GroupView_rooms .mx_RoomDetailList {
-ms-flex-positive: 1;
flex-grow: 1;
6 years ago
border-top: 1px solid #000000;
6 years ago
padding-top: 10px;
word-break: break-word;
}
.mx_GroupView .mx_RoomView_messageListWrapper {
-ms-flex-pack: start;
justify-content: flex-start;
6 years ago
}
.mx_GroupView_membershipSection {
color: #888;
margin-top: 10px;
}
.mx_GroupView_membershipSubSection {
-ms-flex-pack: justify;
justify-content: space-between;
6 years ago
display: -ms-flexbox;
display: flex;
}
.mx_GroupView_membershipSubSection .mx_Spinner {
-ms-flex-pack: end;
justify-content: flex-end;
6 years ago
}
.mx_GroupView_membershipSection_description {
/* To match textButton */
line-height: 34px;
}
.mx_GroupView_membershipSection_description .mx_BaseAvatar {
margin-right: 10px;
}
.mx_GroupView_membershipSection .mx_GroupView_textButton {
margin-right: 0px;
margin-top: 0px;
margin-left: 8px;
}
.mx_GroupView_memberSettings_toggle label {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.mx_GroupView_memberSettings input {
margin-right: 6px;
}
.mx_GroupView_featuredThings {
margin-top: 20px;
}
.mx_GroupView_featuredThings_header {
font-weight: bold;
font-size: 120%;
margin-bottom: 20px;
}
.mx_GroupView_featuredThings_category {
font-weight: bold;
font-size: 110%;
margin-top: 10px;
}
.mx_GroupView_featuredThings_container {
display: -ms-flexbox;
display: flex;
}
.mx_GroupView_featuredThings_addButton, .mx_GroupView_featuredThing {
display: table-cell;
text-align: center;
width: 100px;
margin: 0px 20px;
}
.mx_GroupView_featuredThing {
position: relative;
}
.mx_GroupView_featuredThing .mx_GroupView_featuredThing_deleteButton {
position: absolute;
top: -7px;
right: 11px;
opacity: 0.4;
}
.mx_GroupView_featuredThing .mx_BaseAvatar {
/* To prevent misalignment with mx_TintableSvg (in addButton) */
vertical-align: initial;
}
.mx_GroupView_featuredThings_addButton object {
pointer-events: none;
}
.mx_GroupView_featuredThing_name {
word-wrap: break-word;
}
.mx_GroupView_uploadInput {
display: none;
}
.mx_GroupView_body .gm-scroll-view > *{
margin: 11px 50px 0px 68px;
}
.mx_GroupView_groupDesc textarea {
width: 100%;
max-width: 100%;
height: 150px;
}
.mx_GroupView_groupDesc_placeholder, .mx_GroupView_changeDelayWarning {
6 years ago
background-color: #22262e;
6 years ago
color: #888;
border-radius: 10px;
text-align: center;
margin: 20px 0px;
}
.mx_GroupView_groupDesc_placeholder {
padding: 100px 20px;
cursor: pointer;
}
.mx_GroupView_changeDelayWarning {
padding: 40px 20px;
}
6 years ago
.mx_GroupView .mx_MemberInfo .gm-scroll-view > :not(.mx_MemberInfo_avatar) {
padding-left: 16px;
padding-right: 16px;
}
/*
Copyright 2019 New Vector 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_HeaderButtons {
display: -ms-flexbox;
display: flex;
}
.mx_HeaderButtons::before {
content: "";
background-color: #a1b2d1;
opacity: 0.5;
margin: 0 15px;
border-radius: 1px;
width: 1px;
}
6 years ago
/*
Copyright 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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_HomePage {
max-width: 960px;
width: 100%;
height: 100%;
margin-left: auto;
margin-right: auto;
}
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2018 New Vector 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_LeftPanel_container {
display: -ms-flexbox;
display: flex;
6 years ago
/* LeftPanel 260px */
min-width: 260px;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
6 years ago
}
6 years ago
.mx_LeftPanel_container.collapsed {
min-width: unset;
/* Collapsed LeftPanel 70px */
-ms-flex: 0 0 70px;
flex: 0 0 70px;
6 years ago
}
6 years ago
.mx_LeftPanel_container.collapsed.mx_LeftPanel_container_hasTagPanel {
/* TagPanel 70px + Collapsed LeftPanel 70px */
-ms-flex: 0 0 140px;
flex: 0 0 140px;
6 years ago
}
6 years ago
.mx_LeftPanel_tagPanelContainer {
-ms-flex: 0 0 70px;
flex: 0 0 70px;
height: 100%;
6 years ago
}
.mx_LeftPanel_hideButton {
position: absolute;
top: 10px;
right: 0px;
padding: 8px;
cursor: pointer;
}
6 years ago
.mx_LeftPanel {
-ms-flex: 1;
flex: 1;
overflow-x: hidden;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
min-height: 0;
6 years ago
}
.mx_LeftPanel .mx_AppTile_mini {
height: 132px;
}
.mx_LeftPanel .mx_RoomList_scrollbar {
-ms-flex-order: 1;
order: 1;
6 years ago
-ms-flex: 1 1 0px;
6 years ago
flex: 1 1 0;
6 years ago
overflow-y: auto;
z-index: 6;
}
6 years ago
.mx_LeftPanel_container.collapsed .mx_BottomLeftMenu {
-ms-flex: 0 0 160px;
flex: 0 0 160px;
6 years ago
margin-bottom: 9px;
}
.mx_LeftPanel .mx_BottomLeftMenu {
-ms-flex-order: 3;
order: 3;
6 years ago
6 years ago
border-top: 1px solid #000000;
6 years ago
margin-left: 16px; /* gutter */
margin-right: 16px; /* gutter */
-ms-flex: 0 0 60px;
flex: 0 0 60px;
6 years ago
z-index: 1;
}
.mx_LeftPanel .mx_BottomLeftMenu_options {
margin-top: 18px;
}
.mx_BottomLeftMenu_options object {
pointer-events: none;
}
.mx_BottomLeftMenu_options > div {
display: inline-block;
}
.mx_BottomLeftMenu_options .mx_RoleButton {
margin-left: 0px;
margin-right: 10px;
height: 30px;
}
.mx_BottomLeftMenu_options .mx_BottomLeftMenu_settings {
float: right;
}
.mx_BottomLeftMenu_options .mx_BottomLeftMenu_settings .mx_RoleButton {
margin-right: 0px;
}
6 years ago
.mx_LeftPanel_container.collapsed .mx_BottomLeftMenu_settings {
6 years ago
float: none;
}
.mx_MatrixChat_useCompactLayout .mx_LeftPanel .mx_BottomLeftMenu {
-ms-flex: 0 0 50px;
flex: 0 0 50px;
6 years ago
}
6 years ago
.mx_MatrixChat_useCompactLayout .mx_LeftPanel_container.collapsed .mx_BottomLeftMenu {
-ms-flex: 0 0 160px;
flex: 0 0 160px;
6 years ago
}
.mx_MatrixChat_useCompactLayout .mx_LeftPanel .mx_BottomLeftMenu_options {
margin-top: 12px;
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_MainSplit {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
min-width: 0;
6 years ago
}
/*
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_MatrixChat_splash {
position: relative;
height: 100%;
}
.mx_MatrixChat_splashButtons {
text-align: center;
width: 100%;
position: absolute;
bottom: 30px;
}
.mx_MatrixChat_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
6 years ago
flex-direction: column;
6 years ago
width: 100%;
height: 100%;
}
.mx_MatrixToolbar {
-ms-flex-order: 1;
order: 1;
6 years ago
height: 40px;
}
.mx_MatrixChat_toolbarShowing {
height: auto;
}
.mx_MatrixChat {
width: 100%;
height: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-order: 2;
6 years ago
order: 2;
6 years ago
-ms-flex: 1;
6 years ago
flex: 1;
6 years ago
min-height: 0;
6 years ago
}
.mx_MatrixChat_syncError {
color: #ffffff;
background-color: #DF2A8B;
border-radius: 5px;
display: table;
padding: 30px;
position: absolute;
top: 100px;
left: 50%;
transform: translateX(-50%);
6 years ago
}
6 years ago
/* not the left panel, and not the resize handle, so the roomview/groupview/... */
.mx_MatrixChat > :not(.mx_LeftPanel_container):not(.mx_ResizeHandle) {
background-color: #181b21;
6 years ago
6 years ago
-ms-flex: 1 1 0px;
6 years ago
6 years ago
flex: 1 1 0;
min-width: 0;
6 years ago
/* Experimental fix for https://github.com/vector-im/vector-web/issues/947
and https://github.com/vector-im/vector-web/issues/946.
Empirically this stops the MessagePanel's width exploding outwards when
gemini is in 'prevented' mode
*/
overflow-x: auto;
/* To fix https://github.com/vector-im/riot-web/issues/3298 where Safari
needed height 100% all the way down to the HomePage. Height does not
have to be auto, empirically.
*/
height: 100%;
}
/*
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_MyGroups {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
}
.mx_MyGroups .mx_RoomHeader_simpleHeader {
margin-left: 0px;
}
.mx_MyGroups_header {
/* Keep mid-point of create button aligned with icon in page header */
margin-left: 2px;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
6 years ago
.mx_MyGroups > :not(.mx_RoomHeader) {
max-width: 960px;
margin: 40px;
}
6 years ago
.mx_MyGroups_headerCard {
-ms-flex: 1 0 50%;
flex: 1 0 50%;
6 years ago
margin-bottom: 30px;
min-width: 400px;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
6 years ago
}
.mx_MyGroups_headerCard .mx_MyGroups_headerCard_button {
6 years ago
-ms-flex: 0 0 auto;
flex: 0 0 auto;
6 years ago
margin-right: 13px;
6 years ago
height: 40px;
width: 40px;
border-radius: 20px;
background-color: #3c4556;
position: relative;
6 years ago
}
6 years ago
.mx_MyGroups_headerCard .mx_MyGroups_headerCard_button:before {
background-color: #edf3ff;
-webkit-mask: url(../../img/icons-create-room.817ede2.svg);
mask: url(../../img/icons-create-room.817ede2.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-size: 80%;
mask-size: 80%;
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
6 years ago
.mx_MyGroups_headerCard_header {
font-weight: bold;
margin-bottom: 10px;
}
.mx_MyGroups_headerCard_content {
padding-right: 15px;
}
/* Until the button is wired up */
.mx_MyGroups_joinBox {
visibility: hidden;
/* When joinBox wraps onto its own row, it should take up zero height so
that there isn't an awkward gap between MyGroups_createBox and
MyGroups_content.
*/
height: 0px;
margin: 0px;
}
.mx_MyGroups_content {
margin-left: 2px;
-ms-flex: 1 0 0px;
6 years ago
flex: 1 0 0;
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
}
.mx_MyGroups_placeholder {
6 years ago
background-color: #22262e;
6 years ago
color: #888;
line-height: 400px;
border-radius: 10px;
text-align: center;
}
.mx_MyGroups_joinedGroups {
6 years ago
border-top: 1px solid #000000;
6 years ago
overflow-x: hidden;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
6 years ago
-ms-flex-flow: wrap;
flex-flow: wrap;
-ms-flex-line-pack: start;
align-content: flex-start;
}
.mx_MyGroups_joinedGroups .mx_GroupTile {
min-width: 300px;
max-width: 33%;
-ms-flex: 1 0 300px;
flex: 1 0 300px;
6 years ago
height: 75px;
margin: 10px 0px;
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
6 years ago
cursor: pointer;
}
.mx_GroupTile_avatar {
cursor: grab, -webkit-grab;
}
.mx_GroupTile_profile {
margin-left: 10px;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: center;
justify-content: center;
6 years ago
}
.mx_GroupTile_profile .mx_GroupTile_name, .mx_GroupTile_profile .mx_GroupTile_groupId, .mx_GroupTile_profile .mx_GroupTile_desc {
padding-right: 10px;
}
.mx_GroupTile_profile .mx_GroupTile_name {
margin: 0px;
font-size: 15px;
}
.mx_GroupTile_profile .mx_GroupTile_groupId {
font-size: 13px;
}
.mx_GroupTile_profile .mx_GroupTile_desc {
display: -webkit-box;
-webkit-line-clamp: 2;
font-size: 13px;
max-height: 36px;
overflow: hidden;
}
.mx_GroupTile_profile .mx_GroupTile_groupId {
opacity: 0.7;
}
/*
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_NotificationPanel {
-ms-flex-order: 2;
order: 2;
-ms-flex: 1 1 0px;
flex: 1 1 0;
6 years ago
overflow-y: auto;
}
.mx_NotificationPanel .mx_RoomView_messageListWrapper {
margin-right: 20px;
}
.mx_NotificationPanel .mx_RoomView_MessageList h2 {
margin-left: 0px;
}
/* FIXME: rather than having EventTile's default CSS be for MessagePanel,
we should make EventTile a base CSS class and customise it specifically
for usage in {Message,File,Notification}Panel. */
.mx_NotificationPanel .mx_EventTile {
word-break: break-word;
}
.mx_NotificationPanel .mx_EventTile_roomName {
font-weight: bold;
font-size: 14px;
}
.mx_NotificationPanel .mx_EventTile_roomName a {
6 years ago
color: #edf3ff;
6 years ago
}
.mx_NotificationPanel .mx_EventTile_avatar {
top: 8px;
left: 0px;
}
.mx_NotificationPanel .mx_EventTile .mx_SenderProfile, .mx_NotificationPanel .mx_EventTile .mx_MessageTimestamp {
6 years ago
color: #edf3ff;
6 years ago
font-size: 12px;
display: inline;
padding-left: 0px;
}
.mx_NotificationPanel .mx_EventTile_senderDetails {
padding-left: 32px;
padding-top: 8px;
position: relative;
}
.mx_NotificationPanel .mx_EventTile_roomName a, .mx_NotificationPanel .mx_EventTile_senderDetails a {
text-decoration: none ! important;
}
.mx_NotificationPanel .mx_EventTile .mx_MessageTimestamp {
visibility: visible;
position: initial;
display: inline;
}
.mx_NotificationPanel .mx_EventTile_line {
margin-right: 0px;
padding-left: 32px;
padding-top: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
.mx_NotificationPanel .mx_EventTile:hover .mx_EventTile_line {
6 years ago
background-color: #181b21;
6 years ago
}
.mx_NotificationPanel .mx_EventTile_selected .mx_EventTile_line {
padding-left: 0px;
}
.mx_NotificationPanel .mx_EventTile_content {
margin-right: 0px;
}
/*
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_RightPanel {
6 years ago
overflow-x: hidden;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
6 years ago
position: relative;
6 years ago
min-width: 250px;
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
}
.mx_RightPanel_header {
-ms-flex-order: 1;
order: 1;
6 years ago
border-bottom: 1px solid #000000;
-ms-flex: 0 0 52px;
flex: 0 0 52px;
6 years ago
}
/** Fixme - factor this out with the main header **/
.mx_RightPanel_headerButtonGroup {
6 years ago
height: 100%;
6 years ago
display: -ms-flexbox;
display: flex;
6 years ago
background-color: #181b21;
padding: 0 9px;
-ms-flex-align: center;
align-items: center;
6 years ago
}
.mx_RightPanel_headerButton {
cursor: pointer;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
6 years ago
vertical-align: top;
6 years ago
margin-left: 5px;
margin-right: 5px;
6 years ago
text-align: center;
6 years ago
border-bottom: 2px solid transparent;
height: 20px;
width: 20px;
6 years ago
position: relative;
}
6 years ago
.mx_RightPanel_headerButton::before {
content: '';
position: absolute;
top: 0;
left: 0;
height: 20px;
width: 20px;
background-color: #a1b2d1;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: contain;
mask-size: contain;
}
.mx_RightPanel_membersButton::before {
-webkit-mask-image: url(../../img/feather-customised/user.7a4d23d.svg);
mask-image: url(../../img/feather-customised/user.7a4d23d.svg);
}
.mx_RightPanel_filesButton::before {
-webkit-mask-image: url(../../img/feather-customised/files.d6a33b8.svg);
mask-image: url(../../img/feather-customised/files.d6a33b8.svg);
}
.mx_RightPanel_notifsButton::before {
-webkit-mask-image: url(../../img/feather-customised/notifications.51febb7.svg);
mask-image: url(../../img/feather-customised/notifications.51febb7.svg);
}
.mx_RightPanel_groupMembersButton::before {
-webkit-mask-image: url(../../img/icons-people.af03c4c.svg);
mask-image: url(../../img/icons-people.af03c4c.svg);
}
.mx_RightPanel_roomsButton::before {
-webkit-mask-image: url(../../img/icons-room-nobg.a6a494e.svg);
mask-image: url(../../img/icons-room-nobg.a6a494e.svg);
}
.mx_RightPanel_headerButton_highlight::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
right: 0;
height: 2px;
background-color: #03b381;
6 years ago
}
.mx_RightPanel_headerButton_badge {
6 years ago
font-size: 8px;
border-radius: 8px;
color: #ffffff;
background-color: #03b381;
6 years ago
font-weight: bold;
6 years ago
position: absolute;
top: -4px;
left: 20px;
padding: 2px 4px;
6 years ago
}
.mx_RightPanel_collapsebutton {
-ms-flex: 1;
flex: 1;
6 years ago
text-align: right;
6 years ago
height: 16px;
border: none;
6 years ago
}
.mx_RightPanel .mx_MemberList, .mx_RightPanel .mx_MemberInfo, .mx_RightPanel .mx_GroupRoomList, .mx_RightPanel_blank {
-ms-flex-order: 2;
order: 2;
-ms-flex: 1 1 0px;
flex: 1 1 0;
6 years ago
}
.mx_RightPanel .mx_RoomView_messagePanelSpinner {
-ms-flex-order: 2;
order: 2;
6 years ago
margin: auto;
}
6 years ago
/*
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_RoomDirectory_dialogWrapper > .mx_Dialog {
6 years ago
max-width: 960px;
6 years ago
height: 100%;
padding: 20px;
}
.mx_RoomDirectory_dialog {
height: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
}
.mx_RoomDirectory {
6 years ago
margin-bottom: 12px;
6 years ago
color: #edf3ff;
6 years ago
word-break: break-word;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
-ms-flex: 1;
flex: 1;
6 years ago
}
6 years ago
.mx_RoomDirectory .gm-scroll-view {
scrollbar-width: thin;
}
.mx_RoomDirectory_createRoom {
background-color: #03b381;
border-radius: 4px;
padding: 8px;
color: white;
font-weight: 600;
position: absolute;
top: 0;
left: 0;
6 years ago
}
.mx_RoomDirectory_list {
-ms-flex: 1;
flex: 1;
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
}
.mx_RoomDirectory_list .mx_RoomView_messageListWrapper {
-ms-flex-pack: start;
justify-content: flex-start;
6 years ago
}
.mx_RoomDirectory_listheader {
6 years ago
display: -ms-flexbox;
display: flex;
6 years ago
margin-top: 12px;
margin-bottom: 12px;
}
.mx_RoomDirectory_searchbox {
6 years ago
-ms-flex: 1 !important;
flex: 1 !important;
6 years ago
}
.mx_RoomDirectory_listheader .mx_NetworkDropdown {
6 years ago
-ms-flex: 0 0 200px;
flex: 0 0 200px;
6 years ago
}
.mx_RoomDirectory_tableWrapper {
overflow-y: auto;
-ms-flex: 1 1 0px;
flex: 1 1 0;
6 years ago
}
.mx_RoomDirectory_table {
font-size: 14px;
6 years ago
color: #edf3ff;
6 years ago
width: 100%;
text-align: left;
table-layout: fixed;
}
.mx_RoomDirectory_roomAvatar {
width: 24px;
padding-left: 12px;
padding-right: 24px;
vertical-align: top;
}
.mx_RoomDirectory_roomDescription {
padding-bottom: 16px;
}
.mx_RoomDirectory_name {
display: inline-block;
font-weight: 600;
}
.mx_RoomDirectory_perms {
display: inline-block;
}
.mx_RoomDirectory_perm {
display: inline;
padding-left: 5px;
padding-right: 5px;
margin-right: 5px;
height: 15px;
border-radius: 11px;
6 years ago
background-color: #f2f5f8;
6 years ago
text-transform: uppercase;
font-weight: 600;
font-size: 11px;
6 years ago
color: #03b381;
6 years ago
}
.mx_RoomDirectory_topic {
cursor: initial;
}
.mx_RoomDirectory_alias {
font-size: 12px;
color: #a2a2a2;
}
.mx_RoomDirectory_roomMemberCount {
text-align: right;
width: 100px;
padding-right: 10px;
}
.mx_RoomDirectory_table tr {
padding-bottom: 10px;
cursor: pointer;
}
/*
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_RoomStatusBar {
margin-left: 65px;
min-height: 50px;
}
/* position the indicator in the same place horizontally as .mx_EventTile_avatar. */
.mx_RoomStatusBar_indicator {
padding-left: 17px;
padding-right: 12px;
margin-left: -73px;
margin-top: 15px;
float: left;
width: 24px;
text-align: center;
}
.mx_RoomStatusBar_callBar {
height: 50px;
line-height: 50px;
}
.mx_RoomStatusBar_placeholderIndicator span {
6 years ago
color: #edf3ff;
6 years ago
opacity: 0.5;
position: relative;
top: -4px;
/*
animation-duration: 1s;
animation-name: bounce;
animation-direction: alternate;
animation-iteration-count: infinite;
*/
}
.mx_RoomStatusBar_placeholderIndicator span:nth-child(1) {
animation-delay: 0.3s;
6 years ago
}
.mx_RoomStatusBar_placeholderIndicator span:nth-child(2) {
animation-delay: 0.6s;
6 years ago
}
.mx_RoomStatusBar_placeholderIndicator span:nth-child(3) {
animation-delay: 0.9s;
6 years ago
}
@keyframes bounce {
from {
opacity: 0.5;
top: 0;
}
to {
opacity: 0.2;
top: -3px;
}
}
.mx_RoomStatusBar_typingIndicatorAvatars {
width: 52px;
margin-top: -1px;
text-align: left;
}
.mx_RoomStatusBar_typingIndicatorAvatars .mx_BaseAvatar_image {
margin-right: -12px;
6 years ago
border: 1px solid #181b21;
6 years ago
}
.mx_RoomStatusBar_typingIndicatorAvatars .mx_BaseAvatar_initial {
padding-left: 1px;
padding-top: 1px;
}
.mx_RoomStatusBar_typingIndicatorRemaining {
display: inline-block;
color: #acacac;
background-color: #ddd;
6 years ago
border: 1px solid #181b21;
6 years ago
border-radius: 40px;
width: 24px;
height: 24px;
line-height: 24px;
font-size: 0.8em;
vertical-align: top;
text-align: center;
position: absolute;
}
.mx_RoomStatusBar_scrollDownIndicator {
cursor: pointer;
padding-left: 1px;
}
.mx_RoomStatusBar_unreadMessagesBar {
padding-top: 10px;
6 years ago
color: #ff4b55;
6 years ago
cursor: pointer;
}
.mx_RoomStatusBar_connectionLostBar {
display: -ms-flexbox;
display: flex;
margin-top: 19px;
min-height: 58px;
}
.mx_RoomStatusBar_connectionLostBar img {
padding-left: 10px;
6 years ago
padding-right: 10px;
6 years ago
vertical-align: middle;
float: left;
}
.mx_RoomStatusBar_connectionLostBar_title {
6 years ago
color: #ff4b55;
6 years ago
}
.mx_RoomStatusBar_connectionLostBar_desc {
6 years ago
color: #edf3ff;
6 years ago
font-size: 13px;
opacity: 0.5;
padding-bottom: 20px;
}
.mx_RoomStatusBar_resend_link {
6 years ago
color: #edf3ff ! important;
6 years ago
text-decoration: underline ! important;
cursor: pointer;
}
.mx_RoomStatusBar_typingBar {
height: 50px;
line-height: 50px;
6 years ago
color: #edf3ff;
6 years ago
opacity: 0.5;
overflow-y: hidden;
display: block;
}
.mx_RoomStatusBar_isAlone {
height: 50px;
line-height: 50px;
6 years ago
color: #edf3ff;
6 years ago
opacity: 0.5;
overflow-y: hidden;
display: block;
}
.mx_MatrixChat_useCompactLayout .mx_RoomStatusBar {
min-height: 40px;
}
.mx_MatrixChat_useCompactLayout .mx_RoomStatusBar_indicator {
margin-top: 10px;
}
.mx_MatrixChat_useCompactLayout .mx_RoomStatusBar_callBar {
height: 40px;
line-height: 40px;
}
.mx_MatrixChat_useCompactLayout .mx_RoomStatusBar_typingBar {
height: 40px;
line-height: 40px;
}
/*
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.
*/
6 years ago
/* a word of explanation about the flex-shrink values employed here:
there are 3 priotized categories of screen real-estate grabbing,
each with a flex-shrink difference of 4 order of magnitude,
so they ideally wouldn't affect each other.
lowest category: .mx_RoomSubList
flex-shrink: 10000000
distribute size of items within the same categery by their size
middle category: .mx_RoomSubList.resized-sized
flex-shrink: 1000
applied when using the resizer, will have a max-height set to it,
to limit the size
highest category: .mx_RoomSubList.resized-all
flex-shrink: 1
small flex-shrink value (1), is only added if you can drag the resizer so far
so in practice you can only assign this category if there is enough space.
*/
6 years ago
.mx_RoomSubList {
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
}
.mx_RoomSubList_nonEmpty .mx_AutoHideScrollbar_offset {
padding-bottom: 4px;
6 years ago
}
.mx_RoomSubList_labelContainer {
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-align: center;
align-items: center;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
margin: 0 16px;
height: 36px;
6 years ago
}
.mx_RoomSubList_label {
6 years ago
-ms-flex: 1;
flex: 1;
6 years ago
cursor: pointer;
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
padding: 0 6px;
6 years ago
}
6 years ago
.mx_RoomSubList_label > span {
-ms-flex: 1 1 auto;
flex: 1 1 auto;
text-transform: uppercase;
color: #61708b;
font-weight: 700;
6 years ago
font-size: 12px;
6 years ago
margin-left: 8px;
6 years ago
}
.mx_RoomSubList_badge {
6 years ago
-ms-flex: 0 0 auto;
flex: 0 0 auto;
6 years ago
border-radius: 8px;
color: #ffffff;
font-weight: 600;
6 years ago
font-size: 12px;
padding: 0 5px;
background-color: #a1b2d1;
cursor: pointer;
6 years ago
}
6 years ago
.mx_RoomSubList_addRoom, .mx_RoomSubList_badge {
margin-left: 7px;
6 years ago
}
6 years ago
.mx_RoomSubList_addRoom {
background-color: #3c4556;
border-radius: 10px;
height: 16px;
-ms-flex: 0 0 16px;
flex: 0 0 16px;
position: relative;
6 years ago
}
6 years ago
.mx_RoomSubList_addRoom:before {
background-color: #edf3ff;
-webkit-mask: url(../../img/icons-room-add.bd36e26.svg);
mask: url(../../img/icons-room-add.bd36e26.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
6 years ago
.mx_RoomSubList_badgeHighlight {
6 years ago
background-color: #ff4b55;
6 years ago
}
.mx_RoomSubList_chevron {
pointer-events: none;
6 years ago
-webkit-mask: url(../../img/feather-customised/dropdown-arrow.1a22ebc.svg);
mask: url(../../img/feather-customised/dropdown-arrow.1a22ebc.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
transition: transform 0.2s ease-in;
width: 10px;
height: 6px;
margin-left: 2px;
background-color: #61708b;
6 years ago
}
.mx_RoomSubList_chevronDown {
6 years ago
transform: rotateZ(0deg);
6 years ago
}
.mx_RoomSubList_chevronUp {
6 years ago
transform: rotateZ(180deg);
6 years ago
}
.mx_RoomSubList_chevronRight {
6 years ago
transform: rotateZ(-90deg);
6 years ago
}
6 years ago
.mx_RoomSubList_scroll {
/* let rooms list grab as much space as it needs (auto),
potentially overflowing and showing a scrollbar */
-ms-flex: 0 1 auto;
flex: 0 1 auto;
padding: 0 8px;
6 years ago
}
6 years ago
.mx_RoomSubList:not(.resized-all) > .mx_RoomSubList_scroll {
/*
// for now, we remove the bottomOverflow entirely as we don't want to
// lose the screen real-estate due to a bg-colored gradient, but we also
// don't want to use drop shadows and risk a confusing hierarchy of cards.
// so, instead, we hard-clip at the bottom but soft-clip at the top.
&.mx_IndicatorScrollbar_bottomOverflow::after {
bottom: 0;
transition: background-image 0.1s ease-in;
margin: 0px -8px;
background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.0));
}
*/
6 years ago
}
6 years ago
.mx_RoomSubList:not(.resized-all) > .mx_RoomSubList_scroll.mx_IndicatorScrollbar_topOverflow::before, .mx_RoomSubList:not(.resized-all) > .mx_RoomSubList_scroll.mx_IndicatorScrollbar_bottomOverflow::after {
position: -webkit-sticky;
position: sticky;
left: 0;
right: 0;
height: 8px;
content: "";
display: block;
z-index: 100;
pointer-events: none;
}
.mx_RoomSubList:not(.resized-all) > .mx_RoomSubList_scroll.mx_IndicatorScrollbar_topOverflow > .mx_AutoHideScrollbar_offset {
margin-top: -8px;
}
.mx_RoomSubList:not(.resized-all) > .mx_RoomSubList_scroll.mx_IndicatorScrollbar_bottomOverflow > .mx_AutoHideScrollbar_offset {
margin-bottom: -8px;
}
.mx_RoomSubList:not(.resized-all) > .mx_RoomSubList_scroll.mx_IndicatorScrollbar_topOverflow::before {
top: 0;
transition: background-image 0.1s ease-in;
background: linear-gradient(to top, rgba(34, 38, 46, 0), rgba(34, 38, 46, 1));
}
.collapsed .mx_RoomSubList_scroll {
padding: 0;
}
.collapsed .mx_RoomSubList_labelContainer {
margin-right: 14px;
margin-left: 2px;
}
.collapsed .mx_RoomSubList_addRoom {
margin-left: 3px;
margin-right: 10px;
}
.collapsed .mx_RoomSubList_label > span {
display: none;
}
6 years ago
/*
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_RoomView {
word-wrap: break-word;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
}
.mx_RoomView_fileDropTarget {
min-width: 0px;
width: 100%;
font-size: 18px;
text-align: center;
pointer-events: none;
padding-left: 12px;
padding-right: 12px;
margin-left: -12px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
background-color: rgba(255,255,255,0.5);
border: 2px #e1dddd solid;
border-bottom: none;
position: absolute;
6 years ago
top: 52px;
6 years ago
bottom: 0px;
z-index: 3000;
}
.mx_RoomView_fileDropTargetLabel {
top: 50%;
width: 100%;
margin-top: -50px;
position: absolute;
}
.mx_RoomView_auxPanel {
min-width: 0px;
width: 100%;
margin: 0px auto;
overflow: auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
6 years ago
}
6 years ago
.mx_RoomView_auxPanel_fullHeight {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 3000;
background-color: #181b21;
}
6 years ago
.mx_RoomView_auxPanel_apps {
max-width: 1920px ! important;
}
6 years ago
.mx_RoomView .mx_MainSplit {
-ms-flex: 1 1 0px;
flex: 1 1 0;
6 years ago
}
.mx_RoomView_body {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
-ms-flex: 1;
flex: 1;
}
.mx_RoomView_body .mx_RoomView_timeline {
/* offset parent for mx_RoomView_topUnreadMessagesBar */
position: relative;
-ms-flex: 1;
flex: 1;
6 years ago
display: -ms-flexbox;
display: flex;
6 years ago
-ms-flex-direction: column;
flex-direction: column;
6 years ago
}
6 years ago
.mx_RoomView_body .mx_RoomView_messagePanel, .mx_RoomView_body .mx_RoomView_messagePanelSpinner, .mx_RoomView_body .mx_RoomView_messagePanelSearchSpinner{
-ms-flex-order: 2;
order: 2;
}
6 years ago
.mx_RoomView_body .mx_RoomView_statusArea {
-ms-flex-order: 3;
order: 3;
6 years ago
}
.mx_RoomView_body .mx_MessageComposer {
-ms-flex-order: 4;
order: 4;
6 years ago
}
.mx_RoomView_messagePanel {
width: 100%;
overflow-y: auto;
}
6 years ago
.mx_RoomView_messagePanelSearchSpinner {
-ms-flex: 1;
flex: 1;
background-image: url(../../img/typing-indicator-2x.0eb9f0e.gif);
background-position: center 367px;
background-size: 25px;
background-repeat: no-repeat;
position: relative;
}
.mx_RoomView_messagePanelSearchSpinner:before {
background-color: #888;
-webkit-mask: url(../../img/feather-customised/search-input.044bfa7.svg);
mask: url(../../img/feather-customised/search-input.044bfa7.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-size: 50px;
mask-size: 50px;
content: '';
position: absolute;
top: 286px;
left: 0;
right: 0;
height: 50px;
}
6 years ago
.mx_RoomView_messageListWrapper {
min-height: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
6 years ago
flex-direction: column;
6 years ago
-ms-flex-pack: end;
6 years ago
justify-content: flex-end;
6 years ago
}
.mx_RoomView_searchResultsPanel .mx_RoomView_messageListWrapper {
6 years ago
-ms-flex-pack: start;
justify-content: flex-start;
}
.mx_RoomView_searchResultsPanel a {
text-decoration: none;
color: inherit;
}
6 years ago
.mx_RoomView_empty {
-ms-flex: 1 1 auto;
flex: 1 1 auto;
6 years ago
font-size: 13px;
padding-left: 3em;
padding-right: 3em;
margin-right: 20px;
margin-top: 33%;
text-align: center;
}
.mx_RoomView_MessageList {
list-style-type: none;
6 years ago
padding: 18px;
margin: 0;
/* needed as min-height is set to clientHeight in ScrollPanel
to prevent shrinking when WhoIsTypingTile is hidden */
box-sizing: border-box;
6 years ago
}
.mx_RoomView_MessageList li {
clear: both;
}
li.mx_RoomView_myReadMarker_container {
height: 0px;
margin: 0px;
padding: 0px;
border: 0px;
}
hr.mx_RoomView_myReadMarker {
6 years ago
border-top: solid 1px #03b381;
border-bottom: solid 1px #03b381;
6 years ago
margin-top: 0px;
position: relative;
top: -1px;
z-index: 1;
}
.mx_RoomView_statusArea {
width: 100%;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
6 years ago
max-height: 0px;
6 years ago
background-color: #181b21;
6 years ago
z-index: 1000;
overflow: hidden;
transition: all .2s ease-out;
}
.mx_RoomView_statusArea_expanded {
max-height: 100px;
}
.mx_RoomView_statusAreaBox {
margin: auto;
min-height: 50px;
}
.mx_RoomView_statusAreaBox_line {
margin-left: 65px;
6 years ago
border-top: 1px solid #000000;
6 years ago
height: 1px;
}
.mx_RoomView_callStatusBar .mx_UploadBar_uploadProgressInner {
6 years ago
background-color: #181b21;
6 years ago
}
.mx_RoomView_callStatusBar .mx_UploadBar_uploadFilename {
color: #ffffff;
opacity: 1.0;
}
.mx_RoomView_inCall .mx_RoomView_statusAreaBox_line {
margin-top: 2px;
border: none;
height: 0px;
}
.mx_RoomView_inCall .mx_MessageComposer_wrapper {
border-top: 2px hidden;
padding-top: 1px;
}
.mx_RoomView_inCall .mx_RoomView_statusAreaBox {
6 years ago
background-color: #03b381;
6 years ago
color: #ffffff;
position: relative;
}
.mx_RoomView_voipChevron {
position: absolute;
bottom: -11px;
right: 11px;
}
.mx_RoomView_voipButton {
float: right;
margin-right: 13px;
margin-top: 10px;
cursor: pointer;
}
.mx_RoomView_voipButton object {
pointer-events: none;
}
.mx_RoomView .mx_MessageComposer {
width: 100%;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
6 years ago
margin-right: 2px;
}
.mx_RoomView_ongoingConfCallNotification {
width: 100%;
text-align: center;
6 years ago
background-color: #ff4b55;
6 years ago
color: #ffffff;
font-weight: bold;
padding: 6px 0;
cursor: pointer;
}
.mx_RoomView_ongoingConfCallNotification a {
color: #ffffff ! important;
}
.mx_MatrixChat_useCompactLayout .mx_RoomView_MessageList {
margin-bottom: 4px;
}
.mx_MatrixChat_useCompactLayout .mx_RoomView_statusAreaBox {
min-height: 42px;
}
/*
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.
*/
6 years ago
.mx_SearchBox_closeButton {
cursor: pointer;
background-image: url(../../img/icons-close.11ff07c.svg);
background-repeat: no-repeat;
width: 16px;
height: 16px;
background-position: center;
padding: 9px;
}
/*
Copyright 2017 Travis Ralston
Copyright 2019 New Vector Ltd
6 years ago
6 years ago
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
6 years ago
6 years ago
http://www.apache.org/licenses/LICENSE-2.0
6 years ago
6 years ago
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_TabbedView {
margin: 0;
padding: 0 0 0 58px;
display: -ms-flexbox;
6 years ago
display: flex;
6 years ago
-ms-flex-direction: column;
flex-direction: column;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
6 years ago
}
6 years ago
.mx_TabbedView_tabLabels {
width: 170px;
max-width: 170px;
color: #edf3ff;
position: fixed;
6 years ago
}
6 years ago
.mx_TabbedView_tabLabel {
vertical-align: text-top;
6 years ago
cursor: pointer;
6 years ago
display: block;
border-radius: 3px;
font-size: 14px;
min-height: 24px;
margin-bottom: 6px;
position: relative;
6 years ago
}
6 years ago
.mx_TabbedView_tabLabel_active {
background-color: #03b381;
color: #edf3ff;
6 years ago
}
6 years ago
.mx_TabbedView_maskedIcon {;
margin-left: 6px;
margin-right: 9px;
margin-top: 1px;
width: 16px;
height: 16px;
display: inline-block;
6 years ago
}
6 years ago
.mx_TabbedView_maskedIcon:before {
display: inline-block;
background-color: #edf3ff;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 16px;
mask-size: 16px;
width: 16px;
height: 22px;
-webkit-mask-position: center;
mask-position: center;
content: '';
vertical-align: middle;
6 years ago
}
6 years ago
.mx_TabbedView_tabLabel_active .mx_TabbedView_maskedIcon:before {
background-color: #edf3ff;
6 years ago
}
6 years ago
.mx_TabbedView_tabLabel_text {
vertical-align: middle;
}
.mx_TabbedView_tabPanel {
margin-left: 240px;
-ms-flex-positive: 1;
flex-grow: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
min-height: 0;
}
.mx_TabbedView_tabPanelContent {
-ms-flex-positive: 1;
flex-grow: 1;
overflow: auto;
min-height: 0;
6 years ago
}
/*
Copyright 2017 New Vector 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_TagPanel {
6 years ago
-ms-flex: 1;
flex: 1;
background-color: #15171b;
cursor: pointer;
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;
6 years ago
}
.mx_TagPanel_items_selected {
cursor: pointer;
}
.mx_TagPanel .mx_TagPanel_clearButton_container {
/* Constant height within flex mx_TagPanel */
height: 70px;
width: 60px;
-ms-flex: none;
6 years ago
flex: none;
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: start;
align-items: flex-start;
6 years ago
display: none;
6 years ago
}
.mx_TagPanel .mx_TagPanel_clearButton object {
/* Same as .mx_SearchBox padding-top */
margin-top: 24px;
pointer-events: none;
}
.mx_TagPanel .mx_TagPanel_divider {
height: 0px;
width: 42px;
6 years ago
border-bottom: 1px solid #000000;
display: none;
6 years ago
}
.mx_TagPanel .mx_TagPanel_scroller {
-ms-flex-positive: 1;
flex-grow: 1;
6 years ago
}
.mx_TagPanel .mx_TagPanel_tagTileContainer {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: center;
align-items: center;
6 years ago
margin-top: 5px;
6 years ago
height: 100%;
}
6 years ago
.mx_TagPanel .mx_TagPanel_tagTileContainer > div {
height: 40px;
padding: 5px 0 4px 0;
}
6 years ago
.mx_TagPanel .mx_TagTile {
6 years ago
margin: 9px 0;
6 years ago
position: relative;
}
.mx_TagPanel .mx_TagTile:focus, .mx_TagPanel .mx_TagTile:hover, .mx_TagPanel .mx_TagTile.mx_TagTile_selected {
}
.mx_TagPanel .mx_TagTile.mx_TagTile_selected .mx_TagTile_avatar .mx_BaseAvatar {
6 years ago
background-color: #03b381;
border-radius: 40px;
6 years ago
/* In case this is a "initial" avatar */
display: block;
6 years ago
height: 40px;
width: 40px;
}
.mx_TagPanel .mx_TagTile_selected .mx_BaseAvatar_image {
border: 3px solid #03b381;
height: 40px;
width: 40px;
box-sizing: border-box;
6 years ago
}
.mx_TagPanel .mx_TagTile.mx_AccessibleButton:focus {
filter: none;
6 years ago
}
.mx_TagTile_tooltip {
position: relative;
top: -30px;
left: 5px;
}
.mx_TagTile_context_button {
min-width: 15px;
height: 15px;
position: absolute;
right: -5px;
6 years ago
top: -8px;
6 years ago
border-radius: 8px;
background-color: #dbdbdb;
color: #ffffff;
font-weight: 600;
font-size: 10px;
text-align: center;
padding-top: 1px;
padding-left: 4px;
padding-right: 4px;
}
6 years ago
.mx_TagTile_avatar {
position: relative;
6 years ago
}
6 years ago
.mx_TagTile_badge {
position: absolute;
right: -4px;
top: -2px;
border-radius: 8px;
color: #ffffff;
font-weight: 600;
font-size: 14px;
padding: 0 5px;
background-color: #a1b2d1;
}
.mx_TagTile_badgeHighlight {
background-color: #ff4b55;
}
/*
Copyright 2019 New Vector 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_TagPanelButtons {
background-color: #15171b;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 17px 0 3px 0;
}
.mx_TagPanelButtons > .mx_GroupsButton:before {
-webkit-mask: url(../../img/feather-customised/users.ac4f7be.svg);
mask: url(../../img/feather-customised/users.ac4f7be.svg);
-webkit-mask-position: center 11px;
mask-position: center 11px;
}
.mx_TagPanelButtons > .mx_TagPanelButtons_report:before {
-webkit-mask: url(../../img/feather-customised/life-buoy.8a302f4.svg);
mask: url(../../img/feather-customised/life-buoy.8a302f4.svg);
-webkit-mask-position: center 9px;
mask-position: center 9px;
}
.mx_TagPanelButtons > .mx_AccessibleButton {
margin-bottom: 12px;
height: 40px;
width: 40px;
border-radius: 20px;
background-color: #a1b2d1;
position: relative;
/* overwrite mx_RoleButton inline-block */
display: block !important;
}
.mx_TagPanelButtons > .mx_AccessibleButton:before {
background-color: #15171b;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
/*
Copyright 2018 New Vector 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_TopLeftMenuButton {
-ms-flex: 0 0 52px;
flex: 0 0 52px;
border-bottom: 1px solid #000000;
color: #edf3ff;
background-color: #181b21;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
min-width: 0;
padding: 0 7px;
overflow: hidden;
}
.mx_TopLeftMenuButton .mx_BaseAvatar {
margin: 0 7px;
}
.mx_TopLeftMenuButton_name {
margin: 0 7px;
font-size: 18px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
font-weight: 600;
}
.mx_TopLeftMenuButton_chevron {
margin: 0 7px;
-webkit-mask: url(../../img/feather-customised/dropdown-arrow.1a22ebc.svg);
mask: url(../../img/feather-customised/dropdown-arrow.1a22ebc.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
width: 10px;
height: 6px;
background-color: #61708b;
6 years ago
}
/*
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_UploadBar {
position: relative;
}
.mx_UploadBar_uploadProgressOuter {
height: 5px;
margin-left: 63px;
margin-top: -1px;
padding-bottom: 5px;
}
.mx_UploadBar_uploadProgressInner {
6 years ago
background-color: #03b381;
6 years ago
height: 5px;
}
.mx_UploadBar_uploadFilename {
margin-top: 5px;
margin-left: 65px;
opacity: 0.5;
6 years ago
color: #edf3ff;
6 years ago
}
.mx_UploadBar_uploadIcon {
float: left;
margin-top: 5px;
margin-left: 14px;
}
.mx_UploadBar_uploadCancel {
float: right;
margin-top: 5px;
margin-right: 10px;
position: relative;
opacity: 0.6;
cursor: pointer;
z-index: 1;
}
.mx_UploadBar_uploadBytes {
float: right;
margin-top: 5px;
margin-right: 30px;
6 years ago
color: #03b381;
6 years ago
}
/*
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.
*/
6 years ago
.mx_ViewSource_label_left {
float: left;
6 years ago
}
6 years ago
.mx_ViewSource_label_right {
6 years ago
float: right;
}
6 years ago
.mx_ViewSource_label_bottom {
clear: both;
border-bottom: 1px solid #e5e5e5;
6 years ago
}
.mx_ViewSource pre {
text-align: left;
font-size: 12px;
padding: 0.5em 1em 0.5em 1em;
word-wrap: break-word;
white-space: pre-wrap;
}
/*
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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_Login_submit {
/* align images in buttons (eg spinners) */
vertical-align: middle;
6 years ago
border: 0px;
border-radius: 4px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
color: white;
background-color: #03b381;
width: auto;
padding: 7px;
6 years ago
padding-left: 1.5em;
padding-right: 1.5em;
6 years ago
cursor: pointer;
6 years ago
display: inline-block;
6 years ago
outline: none;
6 years ago
width: 100%;
margin-top: 35px;
margin-bottom: 24px;
6 years ago
box-sizing: border-box;
text-align: center;
6 years ago
}
.mx_Login_submit:hover {
}
.mx_Login_submit:disabled {
opacity: 0.3;
}
6 years ago
.mx_AuthBody a.mx_Login_sso_link:link, .mx_AuthBody a.mx_Login_sso_link:hover, .mx_AuthBody a.mx_Login_sso_link:visited {
color: #ffffff;
}
6 years ago
.mx_Login_loader {
display: inline;
position: relative;
top: 2px;
left: 8px;
}
.mx_Login_loader .mx_Spinner {
display: inline;
}
.mx_Login_loader .mx_Spinner img {
width: 16px;
height: 16px;
}
.mx_Login_error {
6 years ago
color: #ff4b55;
6 years ago
font-weight: bold;
text-align: center;
margin-top: 12px;
margin-bottom: 12px;
}
.mx_Login_type_container {
display: -ms-flexbox;
display: flex;
6 years ago
-ms-flex-align: center;
align-items: center;
color: #232f32;
6 years ago
}
6 years ago
.mx_Login_type_container .mx_Field {
margin: 0;
}
6 years ago
.mx_Login_type_label {
-ms-flex-positive: 1;
flex-grow: 1;
6 years ago
}
.mx_Login_type_dropdown {
6 years ago
min-width: 200px;
6 years ago
}
6 years ago
/*
Copyright 2019 New Vector Ltd
6 years ago
6 years ago
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
6 years ago
6 years ago
http://www.apache.org/licenses/LICENSE-2.0
6 years ago
6 years ago
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_AuthBody {
width: 500px;
background-color: #ffffff;
border-radius: 0 4px 4px 0;
padding: 25px 60px;
box-sizing: border-box;
font-size: 12px;
color: #61708b;
6 years ago
}
6 years ago
.mx_AuthBody h2 {
font-size: 24px;
font-weight: 600;
margin-top: 8px;
color: #232f32;
}
.mx_AuthBody h3 {
font-size: 14px;
font-weight: 600;
color: #232f32;
}
.mx_AuthBody a:link, .mx_AuthBody a:hover, .mx_AuthBody a:visited {
color: #03b381;
text-decoration: none;
}
.mx_AuthBody input[type=text], .mx_AuthBody input[type=password] {
color: #232f32;
}
.mx_AuthBody .mx_Field input, .mx_AuthBody .mx_Field select {
color: #232f32;
background-color: #ffffff;
}
.mx_AuthBody .mx_Field label {
color: #232f32;
}
.mx_AuthBody .mx_Field input:focus + label, .mx_AuthBody .mx_Field input:not(:placeholder-shown) + label, .mx_AuthBody .mx_Field textarea:focus + label, .mx_AuthBody .mx_Field textarea:not(:placeholder-shown) + label, .mx_AuthBody .mx_Field select + label, .mx_AuthBody .mx_Field_labelAlwaysTopLeft label {
background-color: #ffffff;
}
.mx_AuthBody input.error {
color: #ff4b55;
}
.mx_AuthBody .mx_Field input {
width: 100%;
box-sizing: border-box;
}
.mx_AuthBody .mx_Field_select::before {
background-color: #232f32;
}
.mx_AuthBody .mx_Dropdown {
color: #232f32;
}
.mx_AuthBody .mx_Dropdown_arrow {
background: #232f32;
}
.mx_AuthBody .mx_Dropdown_menu {
background-color: #ffffff;
}
.mx_AuthBody .mx_Dropdown_menu .mx_Dropdown_option_highlight {
background-color: #dddddd;
}
.mx_AuthBody_editServerDetails {
padding-left: 1em;
font-size: 12px;
font-weight: normal;
6 years ago
}
6 years ago
.mx_AuthBody_fieldRow {
display: -ms-flexbox;
display: flex;
margin-bottom: 10px;
6 years ago
}
6 years ago
.mx_AuthBody_fieldRow > .mx_Field {
margin: 0 5px;
-ms-flex: 1;
flex: 1;
6 years ago
}
6 years ago
.mx_AuthBody_fieldRow > .mx_Field:first-child {
margin-left: 0;
6 years ago
}
6 years ago
.mx_AuthBody_fieldRow > .mx_Field:last-child {
margin-right: 0;
6 years ago
}
6 years ago
.mx_AuthBody_changeFlow {
display: block;
text-align: center;
width: 100%;
6 years ago
}
6 years ago
.mx_AuthBody_spinner {
margin: 1em 0;
6 years ago
}
/*
6 years ago
Copyright 2017 OpenMarket Ltd
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_AuthButtons {
min-height: 24px;
height: unset !important;
padding-top: 13px !important;
padding-bottom: 14px !important;
-ms-flex-order: 4;
order: 4;
6 years ago
}
6 years ago
.mx_AuthButtons_loginButton_wrapper {
6 years ago
text-align: center;
6 years ago
width: 100%;
6 years ago
}
6 years ago
.mx_AuthButtons_loginButton, .mx_AuthButtons_registerButton {
margin-top: 3px;
height: 40px;
border: 0px;
6 years ago
border-radius: 40px;
6 years ago
margin-left: 4px;
margin-right: 4px;
min-width: 80px;
background-color: #03b381;
color: #181b21;
cursor: pointer;
font-size: 15px;
padding: 0 11px;
word-break: break-word;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector 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.
*/
6 years ago
.mx_AuthFooter {
text-align: center;
width: 100%;
font-size: 14px;
opacity: 0.72;
padding: 20px 0;
background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.mx_AuthFooter a:link, .mx_AuthFooter a:hover, .mx_AuthFooter a:visited {
color: #ffffff;
margin: 0 22px;
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_AuthHeader {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
width: 206px;
padding: 25px 40px;
box-sizing: border-box;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_AuthHeaderLogo {
margin-top: 15px;
-ms-flex: 1;
flex: 1;
padding: 0 10px;
6 years ago
}
6 years ago
.mx_AuthHeaderLogo img {
width: 100%;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_AuthPage {
width: 100%;
min-height: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
background-color: #2e3649;
}
6 years ago
.mx_AuthPage_modal {
display: -ms-flexbox;
display: flex;
margin: 100px auto auto;
border-radius: 4px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.33);
background-color: rgba(255, 255, 255, 0.59);
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_CountryDropdown .mx_Dropdown_input .mx_Dropdown_option {
padding: 0 3px;
6 years ago
}
6 years ago
.mx_CountryDropdown .mx_Dropdown_arrow {
padding-right: 3px;
}
6 years ago
.mx_CountryDropdown_shortOption {
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-align: center;
align-items: center;
height: 100%;
6 years ago
}
6 years ago
.mx_CountryDropdown_option {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
6 years ago
}
/*
6 years ago
Copyright 2017 Vector Creations Ltd
6 years ago
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.
*/
6 years ago
.mx_InteractiveAuthEntryComponents_msisdnWrapper {
text-align: center;
6 years ago
}
6 years ago
.mx_InteractiveAuthEntryComponents_msisdnEntry {
font-size: 200%;
font-weight: bold;
border: 1px solid #c7c7c7;
6 years ago
border-radius: 3px;
6 years ago
width: 6em;
6 years ago
}
6 years ago
.mx_InteractiveAuthEntryComponents_msisdnEntry:focus {
border: 1px solid #03b381;
}
.mx_InteractiveAuthEntryComponents_msisdnSubmit {
margin-top: 4px;
margin-bottom: 5px;
}
.mx_InteractiveAuthEntryComponents_termsSubmit {
margin-top: 20px;
margin-bottom: 5px;
display: block;
width: 100%;
}
.mx_InteractiveAuthEntryComponents_msisdnSubmit:disabled {
background-color: #c8c8cd;
cursor: default;
}
.mx_InteractiveAuthEntryComponents_termsSubmit:disabled {
background-color: #92caad;
cursor: default;
}
.mx_InteractiveAuthEntryComponents_termsPolicy {
display: block;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_AuthBody_language {
width: 100%;
6 years ago
}
6 years ago
.mx_AuthBody_language .mx_Dropdown_input {
border: none;
font-size: 14px;
font-weight: 600;
color: #4e5054;
}
.mx_AuthBody_language .mx_Dropdown_arrow {
background: #4e5054;
6 years ago
}
/*
6 years ago
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_ServerConfig_fields {
display: -ms-flexbox;
display: flex;
margin: 1em 0;
6 years ago
}
6 years ago
.mx_ServerConfig_fields .mx_Field {
-ms-flex: 1;
flex: 1;
margin: 0 5px;
6 years ago
}
6 years ago
.mx_ServerConfig_fields .mx_Field:first-child {
margin-left: 0;
6 years ago
}
6 years ago
.mx_ServerConfig_fields .mx_Field:last-child {
margin-right: 0;
6 years ago
}
6 years ago
.mx_ServerConfig_help:link {
opacity: 0.8;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_ServerTypeSelector {
display: -ms-flexbox;
display: flex;
margin-bottom: 28px;
6 years ago
}
6 years ago
.mx_ServerTypeSelector_type {
margin: 0 5px;
6 years ago
}
6 years ago
.mx_ServerTypeSelector_type:first-child {
margin-left: 0;
6 years ago
}
6 years ago
.mx_ServerTypeSelector_type:last-child {
margin-right: 0;
6 years ago
}
6 years ago
.mx_ServerTypeSelector_label {
text-align: center;
font-weight: 600;
color: #232f32;
margin: 8px 0;
6 years ago
}
6 years ago
.mx_ServerTypeSelector_type .mx_AccessibleButton {
padding: 10px;
border: 1px solid #e7e7e7;
border-radius: 4px;
}
.mx_ServerTypeSelector_type.mx_ServerTypeSelector_type_selected .mx_AccessibleButton {
border-color: #03b381;
}
.mx_ServerTypeSelector_logo {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
height: 18px;
margin-bottom: 12px;
font-weight: 600;
color: #232f32;
}
.mx_ServerTypeSelector_logo > div {
display: -ms-flexbox;
display: flex;
width: 70%;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
}
.mx_ServerTypeSelector_description {
font-size: 10px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_Welcome {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: center;
align-items: center;
6 years ago
}
6 years ago
.mx_Welcome .mx_AuthBody_language {
width: 120px;
margin-bottom: 10px;
6 years ago
}
6 years ago
/*
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
6 years ago
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
6 years ago
6 years ago
http://www.apache.org/licenses/LICENSE-2.0
6 years ago
6 years ago
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_BaseAvatar {
position: relative;
}
.mx_BaseAvatar_initial {
position: absolute;
left: 0px;
color: #ffffff;
text-align: center;
speak: none;
pointer-events: none;
font-weight: normal;
}
.mx_BaseAvatar_image {
border-radius: 40px;
vertical-align: top;
background-color: #181b21;
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_MessageComposer_avatar .mx_BaseAvatar {
padding: 2px;
border: 1px solid transparent;
border-radius: 15px;
6 years ago
}
6 years ago
.mx_MessageComposer_avatar .mx_BaseAvatar_initial {
left: 2px;
6 years ago
}
6 years ago
.mx_MemberStatusMessageAvatar_hasStatus .mx_BaseAvatar {
border-color: #03b381;
6 years ago
}
/*
6 years ago
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_MessageContextMenu {
padding: 6px;
6 years ago
}
6 years ago
.mx_MessageContextMenu_field {
padding: 3px 6px 3px 6px;
cursor: pointer;
white-space: nowrap;
6 years ago
}
6 years ago
.mx_MessageContextMenu_field.mx_MessageContextMenu_fieldSet {
font-weight: bold;
6 years ago
}
/*
6 years ago
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_RoomTileContextMenu {
padding: 6px;
6 years ago
}
6 years ago
.mx_RoomTileContextMenu_tag_field, .mx_RoomTileContextMenu_leave {
padding-top: 8px;
padding-right: 20px;
padding-bottom: 8px;
cursor: pointer;
white-space: nowrap;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
line-height: 16px;
}
.mx_RoomTileContextMenu_tag_field.mx_RoomTileContextMenu_tag_fieldSet {
font-weight: bold;
}
.mx_RoomTileContextMenu_tag_field.mx_RoomTileContextMenu_tag_fieldSet .mx_RoomTileContextMenu_tag_icon {
display: none;
}
.mx_RoomTileContextMenu_tag_field.mx_RoomTileContextMenu_tag_fieldSet .mx_RoomTileContextMenu_tag_icon_set {
display: inline-block;
}
.mx_RoomTileContextMenu_tag_field.mx_RoomTileContextMenu_tag_fieldDisabled {
color: rgba(0, 0, 0, 0.2);
}
.mx_RoomTileContextMenu_tag_icon {
padding-right: 8px;
padding-left: 4px;
display: inline-block
}
.mx_RoomTileContextMenu_tag_icon_set {
padding-right: 8px;
padding-left: 4px;
display: none;
}
.mx_RoomTileContextMenu_separator {
margin-top: 0;
margin-bottom: 0;
border-bottom-style: none;
border-left-style: none;
border-right-style: none;
border-top-style: solid;
border-top-width: 1px;
border-color: #000000;
}
.mx_RoomTileContextMenu_leave {
color: #ff4b55;
}
.mx_RoomTileContextMenu_tag_fieldSet .mx_RoomTileContextMenu_tag_icon {
/* Something to indicate that the icon is the set tag */
}
.mx_RoomTileContextMenu_notif_picker {
position: absolute;
top: 16px;
left: 5px;
}
.mx_RoomTileContextMenu_notif_field {
padding-top: 4px;
padding-right: 6px;
padding-bottom: 10px;
padding-left: 8px; /* 20px */
cursor: pointer;
white-space: nowrap;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
}
.mx_RoomTileContextMenu_notif_field.mx_RoomTileContextMenu_notif_fieldSet {
font-weight: bold;
}
.mx_RoomTileContextMenu_notif_field.mx_RoomTileContextMenu_notif_fieldDisabled {
color: rgba(0, 0, 0, 0.2);
}
.mx_RoomTileContextMenu_notif_icon {
padding-right: 4px;
padding-left: 4px;
}
.mx_RoomTileContextMenu_notif_activeIcon {
display: inline-block;
opacity: 0;
position: relative;
left: -5px;
}
.mx_RoomTileContextMenu_notif_fieldSet .mx_RoomTileContextMenu_notif_activeIcon {
opacity: 1;
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_StatusMessageContextMenu {
padding: 10px;
6 years ago
}
6 years ago
.mx_StatusMessageContextMenu_form {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
6 years ago
}
6 years ago
input.mx_StatusMessageContextMenu_message {
border-radius: 4px;
border: 1px solid #e7e7e7;
padding: 6.5px 11px;
background-color: #181b21;
font-weight: normal;
margin: 0 0 10px;
6 years ago
}
6 years ago
.mx_StatusMessageContextMenu_message:-ms-input-placeholder {
color: #61708b;
6 years ago
}
6 years ago
.mx_StatusMessageContextMenu_message::placeholder {
color: #61708b;
6 years ago
}
6 years ago
.mx_StatusMessageContextMenu_actionContainer {
display: -ms-flexbox;
display: flex;
6 years ago
}
6 years ago
.mx_StatusMessageContextMenu_submit, .mx_StatusMessageContextMenu_clear {
/* align images in buttons (eg spinners) */
vertical-align: middle;
border: 0px;
border-radius: 4px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
color: white;
background-color: #03b381;
width: auto;
padding: 7px;
padding-left: 1.5em;
padding-right: 1.5em;
cursor: pointer;
display: inline-block;
outline: none;
-ms-flex-item-align: start;
-ms-grid-row-align: start;
align-self: start;
font-size: 12px;
padding: 6px 1em;
border: 1px solid transparent;
margin-right: 10px;
6 years ago
}
6 years ago
.mx_StatusMessageContextMenu_submit[disabled] {
opacity: 0.49;
6 years ago
}
6 years ago
.mx_StatusMessageContextMenu_clear {
color: #ff4b55;
background-color: transparent;
border: 1px solid #ff4b55;
6 years ago
}
6 years ago
.mx_StatusMessageContextMenu_actionContainer .mx_Spinner {
-ms-flex-pack: start;
justify-content: start;
6 years ago
}
6 years ago
/*
Copyright 2018 New Vector 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_TagTileContextMenu_item {
padding-top: 8px;
padding-right: 20px;
padding-bottom: 8px;
cursor: pointer;
white-space: nowrap;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
line-height: 16px;
6 years ago
}
6 years ago
.mx_TagTileContextMenu_item object {
pointer-events: none;
}
.mx_TagTileContextMenu_item_icon {
padding-right: 8px;
padding-left: 4px;
display: inline-block
}
.mx_TagTileContextMenu_separator {
margin-top: 0;
margin-bottom: 0;
border-bottom-style: none;
border-left-style: none;
border-right-style: none;
border-top-style: solid;
border-top-width: 1px;
border-color: #000000;
}
/*
Copyright 2018 New Vector 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_TopLeftMenu {
min-width: 210px;
border-radius: 4px;
}
.mx_TopLeftMenu .mx_TopLeftMenu_greyedText {
font-size: 12px;
opacity: 0.5;
}
.mx_TopLeftMenu .mx_TopLeftMenu_upgradeLink {
font-size: 12px;
}
.mx_TopLeftMenu .mx_TopLeftMenu_upgradeLink img {
margin-left: 5px;
6 years ago
}
6 years ago
.mx_TopLeftMenu .mx_TopLeftMenu_section:not(:last-child) {
border-bottom: 1px solid #000000;
6 years ago
}
6 years ago
.mx_TopLeftMenu .mx_TopLeftMenu_section_noIcon {
margin: 5px 0;
padding: 5px 20px 5px 15px;
6 years ago
}
6 years ago
.mx_TopLeftMenu .mx_TopLeftMenu_section_noIcon div:not(:first-child) {
margin-top: 5px;
6 years ago
}
6 years ago
.mx_TopLeftMenu .mx_TopLeftMenu_section_withIcon {
margin: 5px 0;
padding: 0;
list-style: none;
}
.mx_TopLeftMenu .mx_TopLeftMenu_section_withIcon li.mx_TopLeftMenu_icon_home::after {
-webkit-mask-image: url(../../img/feather-customised/home.55644be.svg);
mask-image: url(../../img/feather-customised/home.55644be.svg);
6 years ago
}
6 years ago
.mx_TopLeftMenu .mx_TopLeftMenu_section_withIcon li.mx_TopLeftMenu_icon_settings::after {
-webkit-mask-image: url(../../img/feather-customised/settings.cc405e6.svg);
mask-image: url(../../img/feather-customised/settings.cc405e6.svg);
6 years ago
}
6 years ago
.mx_TopLeftMenu .mx_TopLeftMenu_section_withIcon li.mx_TopLeftMenu_icon_signin::after {
-webkit-mask-image: url(../../img/feather-customised/sign-in.7022ff3.svg);
mask-image: url(../../img/feather-customised/sign-in.7022ff3.svg);
6 years ago
}
6 years ago
.mx_TopLeftMenu .mx_TopLeftMenu_section_withIcon li.mx_TopLeftMenu_icon_signout::after {
-webkit-mask-image: url(../../img/feather-customised/sign-out.fa2d962.svg);
mask-image: url(../../img/feather-customised/sign-out.fa2d962.svg);
6 years ago
}
6 years ago
.mx_TopLeftMenu .mx_TopLeftMenu_section_withIcon li::after {
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 0 center;
mask-position: 0 center;
-webkit-mask-size: 16px;
mask-size: 16px;
position: absolute;
width: 16px;
height: 16px;
content: "";
top: 5px;
left: 14px;
background-color: #edf3ff;
6 years ago
}
6 years ago
.mx_TopLeftMenu .mx_TopLeftMenu_section_withIcon li {
position: relative;
cursor: pointer;
white-space: nowrap;
padding: 5px 20px 5px 43px;
}
.mx_TopLeftMenu .mx_TopLeftMenu_section_withIcon li:hover {
background-color: #343a46;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_AnalyticsModal table {
margin: 10px 0px;
}
6 years ago
/*
6 years ago
Copyright 2017 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_BugReportDialog_field_container {
6 years ago
display: -ms-flexbox;
display: flex;
}
6 years ago
.mx_BugReportDialog_field_label {
-ms-flex-preferred-size: 150px;
flex-basis: 150px;
text-align: right;
padding-top: 9px;
padding-right: 4px;
line-height: 18px;
}
.mx_BugReportDialog_field_input {
-ms-flex-positive: 1;
flex-grow: 1;
/* taken from mx_ChatInviteDialog_inputContainer */
border-radius: 3px;
border: solid 1px #e7e7e7;
font-size: 14px;
padding-left: 4px;
padding-right: 4px;
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 4px;
}
.mx_BugReportDialog_field_input[type="text" i] {
padding-top: 9px;
padding-bottom: 9px;
6 years ago
}
/*
6 years ago
Copyright 2016 Aviral Dasgupta
6 years ago
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.
*/
6 years ago
.mx_ChangelogDialog_content {
max-height: 300px;
overflow: auto;
}
.mx_ChangelogDialog_li {
padding: 0.2em;
}
/*
6 years ago
Copyright 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_ChatCreateOrReuseDialog .mx_ChatCreateOrReuseDialog_tiles {
margin-top: 24px;
}
.mx_ChatCreateOrReuseDialog .mx_Dialog_content {
margin-bottom: 24px;
/*
To stop spinner that mx_ChatCreateOrReuseDialog_profile replaces from causing a
height change
*/
min-height: 100px;
}
.mx_ChatCreateOrReuseDialog .mx_RoomTile_badge {
display: none;
}
.mx_ChatCreateOrReuseDialog_profile {
display: -ms-flexbox;
display: flex;
}
.mx_ChatCreateOrReuseDialog_profile_name {
padding: 14px;
6 years ago
}
/*
6 years ago
Copyright 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
/* Using a textarea for this element, to circumvent autofill */
.mx_ChatInviteDialog_input, .mx_ChatInviteDialog_input:focus
{
height: 26px;
font-size: 14px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
padding-left: 12px;
padding-right: 12px;
margin: 0 !important;
border: 0 !important;
outline: 0 !important;
width: 1000%; /* Pretend that this is an "input type=text" */
resize: none;
overflow: hidden;
vertical-align: middle;
box-sizing: border-box;
word-wrap: nowrap;
}
.mx_ChatInviteDialog .mx_Dialog_content {
min-height: 50px
}
.mx_ChatInviteDialog_inputContainer {
6 years ago
border-radius: 3px;
6 years ago
border: solid 1px #e7e7e7;
line-height: 36px;
padding-left: 4px;
padding-right: 4px;
padding-top: 1px;
padding-bottom: 1px;
max-height: 150px;
overflow-x: hidden;
overflow-y: auto;
6 years ago
}
6 years ago
.mx_ChatInviteDialog_error {
margin-top: 10px;
color: #ff4b55;
6 years ago
}
6 years ago
.mx_ChatInviteDialog_cancel {
position: absolute;
right: 11px;
top: 13px;
cursor: pointer;
}
.mx_ChatInviteDialog_cancel object {
pointer-events: none;
6 years ago
}
/*
6 years ago
Copyright 2017 Vector Creations Ltd.
6 years ago
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.
*/
6 years ago
.mx_ConfirmUserActionDialog .mx_Dialog_content {
min-height: 48px;
margin-bottom: 24px;
6 years ago
}
6 years ago
.mx_ConfirmUserActionDialog_avatar {
float: left;
margin-right: 20px;
margin-top: -2px;
6 years ago
}
6 years ago
.mx_ConfirmUserActionDialog_name {
font-size: 18px;
6 years ago
}
6 years ago
.mx_ConfirmUserActionDialog_userId {
font-size: 13px;
6 years ago
}
6 years ago
.mx_ConfirmUserActionDialog_reasonField {
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
color: #edf3ff;
background-color: #181b21;
border-radius: 3px;
border: solid 1px #e7e7e7;
line-height: 36px;
padding-left: 16px;
padding-right: 16px;
padding-top: 1px;
padding-bottom: 1px;
margin-bottom: 24px;
width: 90%;
6 years ago
}
/*
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.
*/
6 years ago
.mx_CreateGroupDialog_inputRow {
margin-top: 10px;
margin-bottom: 10px;
}
.mx_CreateGroupDialog_label {
text-align: left;
padding-bottom: 12px;
}
.mx_CreateGroupDialog_input {
font-size: 15px;
6 years ago
border-radius: 3px;
6 years ago
border: 1px solid #e7e7e7;
6 years ago
padding: 9px;
6 years ago
color: #edf3ff;
background-color: #181b21;
6 years ago
}
6 years ago
.mx_CreateGroupDialog_input_hasPrefixAndSuffix {
border-radius: 0px;
6 years ago
}
6 years ago
.mx_CreateGroupDialog_input_group {
display: -ms-flexbox;
display: flex;
}
.mx_CreateGroupDialog_prefix, .mx_CreateGroupDialog_suffix {
padding: 0px 5px;
line-height: 37px;
background-color: #181b21;
border: 1px solid #e7e7e7;
text-align: center;
}
.mx_CreateGroupDialog_prefix {
border-right: 0px;
border-radius: 3px 0px 0px 3px;
}
.mx_CreateGroupDialog_suffix {
border-left: 0px;
border-radius: 0px 3px 3px 0px;
6 years ago
}
/*
6 years ago
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
6 years ago
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.
*/
6 years ago
.mx_CreateRoomDialog_details_summary {
outline: none;
6 years ago
}
6 years ago
.mx_CreateRoomDialog_label {
text-align: left;
padding-bottom: 12px;
6 years ago
}
6 years ago
.mx_CreateRoomDialog_input_container {
padding-right: 20px;
6 years ago
}
6 years ago
.mx_CreateRoomDialog_input {
font-size: 15px;
border-radius: 3px;
border: 1px solid #e7e7e7;
padding: 9px;
color: #edf3ff;
background-color: #181b21;
width: 100%;
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_DeactivateAccountDialog .mx_Dialog_content {
margin-bottom: 30px;
6 years ago
}
6 years ago
.mx_DeactivateAccountDialog .mx_DeactivateAccountDialog_input_section {
margin-top: 60px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_DeviceVerifyDialog_cryptoSection ul {
display: table;
}
6 years ago
.mx_DeviceVerifyDialog_cryptoSection li {
display: table-row;
}
6 years ago
.mx_DeviceVerifyDialog_cryptoSection label, .mx_DeviceVerifyDialog_cryptoSection span {
display: table-cell;
padding-right: 1em;
}
/*
6 years ago
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
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.
*/
6 years ago
.mx_DevTools_content {
margin: 10px 0;
}
6 years ago
.mx_DevTools_RoomStateExplorer_button, .mx_DevTools_RoomStateExplorer_query {
margin-bottom: 10px;
width: 100%;
}
6 years ago
.mx_DevTools_label_left {
float: left;
}
.mx_DevTools_label_right {
float: right;
}
.mx_DevTools_label_bottom {
clear: both;
border-bottom: 1px solid #e5e5e5;
}
.mx_DevTools_inputRow
{
display: table-row;
}
.mx_DevTools_inputLabelCell
{
display: table-cell;
font-weight: bold;
padding-right: 24px;
}
.mx_DevTools_inputCell {
display: table-cell;
width: 240px;
}
.mx_DevTools_inputCell input
{
display: inline-block;
border: 0;
border-bottom: 1px solid rgba(151, 151, 151, 0.5);
padding: 0;
width: 240px;
color: rgba(74, 74, 74, 0.9);
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 16px;
}
.mx_DevTools_textarea {
font-size: 12px;
max-width: 684px;
min-height: 250px;
padding: 10px;
width: 100%;
}
.mx_DevTools_content .mx_Field_input {
display: inline-block;
}
.mx_DevTools_content .mx_Field_input + .mx_Field_input {
margin-left: 42px;
}
.mx_DevTools_tgl {
display: none;
}
6 years ago
.mx_DevTools_tgl, .mx_DevTools_tgl:after, .mx_DevTools_tgl:before, .mx_DevTools_tgl *, .mx_DevTools_tgl *:after, .mx_DevTools_tgl *:before, .mx_DevTools_tgl + .mx_DevTools_tgl-btn {
box-sizing: border-box;
}
.mx_DevTools_tgl::-moz-selection, .mx_DevTools_tgl:after::-moz-selection, .mx_DevTools_tgl:before::-moz-selection, .mx_DevTools_tgl *::-moz-selection, .mx_DevTools_tgl *:after::-moz-selection, .mx_DevTools_tgl *:before::-moz-selection, .mx_DevTools_tgl + .mx_DevTools_tgl-btn::-moz-selection {
background: none;
}
.mx_DevTools_tgl::selection, .mx_DevTools_tgl:after::selection, .mx_DevTools_tgl:before::selection, .mx_DevTools_tgl *::selection, .mx_DevTools_tgl *:after::selection, .mx_DevTools_tgl *:before::selection, .mx_DevTools_tgl + .mx_DevTools_tgl-btn::selection {
background: none;
}
.mx_DevTools_tgl + .mx_DevTools_tgl-btn {
outline: 0;
display: block;
width: 7em;
height: 2em;
position: relative;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.mx_DevTools_tgl + .mx_DevTools_tgl-btn:after, .mx_DevTools_tgl + .mx_DevTools_tgl-btn:before {
position: relative;
display: block;
content: "";
width: 50%;
height: 100%;
}
.mx_DevTools_tgl + .mx_DevTools_tgl-btn:after {
left: 0;
}
.mx_DevTools_tgl + .mx_DevTools_tgl-btn:before {
display: none;
}
.mx_DevTools_tgl:checked + .mx_DevTools_tgl-btn:after {
left: 50%;
}
.mx_DevTools_tgl-flip + .mx_DevTools_tgl-btn {
padding: 2px;
transition: all .2s ease;
font-family: sans-serif;
perspective: 100px;
}
.mx_DevTools_tgl-flip + .mx_DevTools_tgl-btn:after, .mx_DevTools_tgl-flip + .mx_DevTools_tgl-btn:before {
display: inline-block;
transition: all .4s ease;
width: 100%;
text-align: center;
position: absolute;
line-height: 2em;
font-weight: bold;
color: #fff;
top: 0;
left: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
border-radius: 4px;
}
.mx_DevTools_tgl-flip + .mx_DevTools_tgl-btn:after {
content: attr(data-tg-on);
background: #02C66F;
transform: rotateY(-180deg);
}
.mx_DevTools_tgl-flip + .mx_DevTools_tgl-btn:before {
background: #FF3A19;
content: attr(data-tg-off);
}
.mx_DevTools_tgl-flip + .mx_DevTools_tgl-btn:active:before {
transform: rotateY(-20deg);
}
.mx_DevTools_tgl-flip:checked + .mx_DevTools_tgl-btn:before {
transform: rotateY(180deg);
}
.mx_DevTools_tgl-flip:checked + .mx_DevTools_tgl-btn:after {
transform: rotateY(0);
left: 0;
background: #7FC6A6;
}
.mx_DevTools_tgl-flip:checked + .mx_DevTools_tgl-btn:active:after {
transform: rotateY(20deg);
}
/*
6 years ago
Copyright 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.
*/
6 years ago
.mx_EncryptedEventDialog .mx_DeviceVerifyButtons {
float: right;
padding: 0px;
margin-right: 42px;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-pack: justify;
justify-content: space-between;
}
6 years ago
.mx_EncryptedEventDialog .mx_MemberDeviceInfo_textButton {
/* align images in buttons (eg spinners) */
vertical-align: middle;
border: 0px;
border-radius: 4px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
color: white;
background-color: #03b381;
width: auto;
padding: 7px;
padding-left: 1.5em;
padding-right: 1.5em;
cursor: pointer;
display: inline-block;
outline: none;
background-color: #181b21;
color: #03b381;
}
.mx_EncryptedEventDialog button {
margin-top: 0px;
}
/*
6 years ago
Copyright 2017 New Vector 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.
*/
6 years ago
.mx_GroupAddressPicker_checkboxContainer{
margin-top: 10px;
display: -ms-flexbox;
display: flex;
6 years ago
}
6 years ago
.mx_GroupAddressPicker_checkboxContainer input[type="checkbox"] {
/* Stop flex from shrinking the checkbox */
width: 20px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_IncomingSasDialog_opponentProfile_image {
position: relative;
6 years ago
}
6 years ago
.mx_IncomingSasDialog_opponentProfile h2 {
display: inline-block;
margin-left: 10px;
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_RestoreKeyBackupDialog_keyStatus {
height: 30px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_RoomSettingsDialog_settingsIcon:before {
-webkit-mask-image: url(../../img/feather-customised/settings.cc405e6.svg);
mask-image: url(../../img/feather-customised/settings.cc405e6.svg);
6 years ago
}
6 years ago
.mx_RoomSettingsDialog_securityIcon:before {
-webkit-mask-image: url(../../img/feather-customised/lock.9b2b399.svg);
mask-image: url(../../img/feather-customised/lock.9b2b399.svg);
6 years ago
}
6 years ago
.mx_RoomSettingsDialog_rolesIcon:before {
-webkit-mask-image: url(../../img/feather-customised/users-sm.e55dac3.svg);
mask-image: url(../../img/feather-customised/users-sm.e55dac3.svg);
6 years ago
}
6 years ago
.mx_RoomSettingsDialog_warningIcon:before {
-webkit-mask-image: url(../../img/feather-customised/warning-triangle.d050a38.svg);
mask-image: url(../../img/feather-customised/warning-triangle.d050a38.svg);
6 years ago
}
6 years ago
.mx_RoomSettingsDialog .mx_Dialog_title {
-ms-text-overflow: ellipsis;
6 years ago
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
6 years ago
margin: 0 auto;
padding-left: 40px;
padding-right: 80px;
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_RoomUpgradeDialog {
padding-right: 70px;
6 years ago
}
/*
6 years ago
Copyright 2017 Vector Creations Ltd
6 years ago
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.
*/
6 years ago
.mx_SetEmailDialog_email_input {
6 years ago
border-radius: 3px;
6 years ago
border: 1px solid #e7e7e7;
padding: 9px;
color: rgba(74, 74, 74, 0.9);
background-color: #181b21;
font-size: 15px;
width: 100%;
max-width: 280px;
margin-bottom: 10px;
6 years ago
}
6 years ago
.mx_SetEmailDialog_email_input:focus {
outline: none;
box-shadow: none;
border: 1px solid #03b381;
6 years ago
}
6 years ago
.mx_SetEmailDialog_email_input_placeholder {
6 years ago
}
/*
6 years ago
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
6 years ago
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.
*/
6 years ago
.mx_SetMxIdDialog .mx_Dialog_title {
padding-right: 40px;
6 years ago
}
6 years ago
.mx_SetMxIdDialog_input_group {
6 years ago
display: -ms-flexbox;
display: flex;
}
6 years ago
.mx_SetMxIdDialog_input {
border-radius: 3px;
border: 1px solid #e7e7e7;
padding: 9px;
color: #edf3ff;
background-color: #181b21;
font-size: 15px;
width: 100%;
max-width: 280px;
6 years ago
}
6 years ago
.mx_SetMxIdDialog_input.error, .mx_SetMxIdDialog_input.error:focus {
border: 1px solid #ff4b55;
6 years ago
}
6 years ago
.mx_SetMxIdDialog_input_group .mx_Spinner {
height: 37px;
padding-left: 10px;
-ms-flex-pack: start;
justify-content: flex-start;
6 years ago
}
6 years ago
.mx_SetMxIdDialog .success {
color: #03b381;
}
/*
Copyright 2017 Vector Creations Ltd
6 years ago
6 years ago
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_SetPasswordDialog_change_password input {
border-radius: 3px;
border: 1px solid #e7e7e7;
padding: 9px;
color: #edf3ff;
background-color: #181b21;
font-size: 15px;
width: 100%;
max-width: 280px;
margin-bottom: 10px;
6 years ago
}
6 years ago
.mx_SetPasswordDialog_change_password_button {
margin-top: 68px;
6 years ago
}
6 years ago
.mx_SetPasswordDialog .mx_Dialog_content {
margin-bottom: 0px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_SettingsDialog .mx_Dialog {
max-width: 1000px;
width: 90%;
height: 80%;
border-radius: 4px;
padding-top: 0;
padding-right: 0;
padding-left: 0;
}
.mx_SettingsDialog .mx_Dialog .mx_TabbedView {
top: 65px;
}
.mx_SettingsDialog .mx_Dialog .mx_TabbedView .mx_SettingsTab {
box-sizing: border-box;
min-width: 580px;
padding-right: 130px;
padding-bottom: 100px;
}
.mx_SettingsDialog .mx_Dialog .mx_Dialog_title {
text-align: center;
margin-top: 16px;
margin-bottom: 24px;
}
/*
Copyright 2018 New Vector 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_ShareDialog hr {
margin-top: 25px;
margin-bottom: 25px;
border-color: #c8c8cd;
6 years ago
}
6 years ago
.mx_ShareDialog_content {
margin: 10px 0;
6 years ago
}
6 years ago
.mx_ShareDialog_matrixto {
6 years ago
display: -ms-flexbox;
display: flex;
6 years ago
-ms-flex-pack: justify;
justify-content: space-between;
border-radius: 5px;
border: solid 1px #c8c8cd;
margin-bottom: 10px;
margin-top: 30px;
padding: 10px;
6 years ago
}
6 years ago
.mx_ShareDialog_matrixto a {
text-decoration: none;
6 years ago
}
6 years ago
.mx_ShareDialog_matrixto_link {
-ms-flex-negative: 1;
flex-shrink: 1;
overflow: hidden;
text-overflow: ellipsis;
6 years ago
}
6 years ago
.mx_ShareDialog_matrixto_copy {
-ms-flex-negative: 0;
flex-shrink: 0;
6 years ago
cursor: pointer;
6 years ago
margin-left: 20px;
display: inherit;
6 years ago
}
6 years ago
.mx_ShareDialog_matrixto_copy > div {
background-image: url(../../img/icon_copy_message.f2eab28.svg);
margin-left: 5px;
width: 20px;
height: 20px;
6 years ago
}
6 years ago
.mx_ShareDialog_split {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
6 years ago
}
6 years ago
.mx_ShareDialog_qrcode_container {
float: left;
background-color: #ffffff;
padding: 5px;
6 years ago
border-radius: 5px;
6 years ago
height: 256px;
width: 256px;
margin-right: 64px;
6 years ago
}
6 years ago
.mx_ShareDialog_social_container {
display: inline-block;
width: 299px;
6 years ago
}
6 years ago
.mx_ShareDialog_social_icon {
display: -ms-inline-grid;
display: inline-grid;
margin-right: 10px;
margin-bottom: 10px;
6 years ago
}
/*
6 years ago
Copyright 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_Dialog_unknownDevice .mx_Dialog {
height: 100%;
6 years ago
}
6 years ago
.mx_UnknownDeviceDialog {
height: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
}
.mx_UnknownDeviceDialog ul {
list-style: none;
padding: 0;
}
.mx_UnknownDeviceDialog p {
font-weight: bold;
font-size: 16px;
}
.mx_UnknownDeviceDialog .mx_DeviceVerifyButtons {
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.mx_UnknownDeviceDialog .mx_Dialog_content {
margin-bottom: 24px;
}
.mx_UnknownDeviceDialog_deviceList > li {
padding: 4px;
}
.mx_UnknownDeviceDialog_deviceList > li > * {
padding-bottom: 0;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_UserSettingsDialog_settingsIcon:before {
-webkit-mask-image: url(../../img/feather-customised/settings.cc405e6.svg);
mask-image: url(../../img/feather-customised/settings.cc405e6.svg);
6 years ago
}
6 years ago
.mx_UserSettingsDialog_voiceIcon:before {
-webkit-mask-image: url(../../img/feather-customised/phone.87241fa.svg);
mask-image: url(../../img/feather-customised/phone.87241fa.svg);
6 years ago
}
6 years ago
.mx_UserSettingsDialog_bellIcon:before {
-webkit-mask-image: url(../../img/feather-customised/notifications.51febb7.svg);
mask-image: url(../../img/feather-customised/notifications.51febb7.svg);
6 years ago
}
6 years ago
.mx_UserSettingsDialog_preferencesIcon:before {
-webkit-mask-image: url(../../img/feather-customised/sliders.c04972d.svg);
mask-image: url(../../img/feather-customised/sliders.c04972d.svg);
6 years ago
}
6 years ago
.mx_UserSettingsDialog_securityIcon:before {
-webkit-mask-image: url(../../img/feather-customised/lock.9b2b399.svg);
mask-image: url(../../img/feather-customised/lock.9b2b399.svg);
6 years ago
}
6 years ago
.mx_UserSettingsDialog_helpIcon:before {
-webkit-mask-image: url(../../img/feather-customised/help-circle.03fb6cf.svg);
mask-image: url(../../img/feather-customised/help-circle.03fb6cf.svg);
6 years ago
}
6 years ago
.mx_UserSettingsDialog_labsIcon:before {
-webkit-mask-image: url(../../img/feather-customised/flag.350c432.svg);
mask-image: url(../../img/feather-customised/flag.350c432.svg);
6 years ago
}
6 years ago
.mx_UserSettingsDialog_flairIcon:before {
-webkit-mask-image: url(../../img/feather-customised/flair.711761c.svg);
mask-image: url(../../img/feather-customised/flair.711761c.svg);
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_CreateKeyBackupDialog .mx_Dialog_title {
/* TODO: Consider setting this for all dialog titles. */
margin-bottom: 1em;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_primaryContainer {
/*FIXME: plinth colour in new theme(s). background-color: $accent-color;*/
padding: 20px
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_primaryContainer::after {
content: "";
clear: both;
display: block;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_passPhraseContainer {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: start;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_passPhraseHelp {
-ms-flex: 1;
flex: 1;
height: 85px;
margin-left: 20px;
font-size: 80%;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_passPhraseHelp progress {
width: 100%;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_passPhraseInput {
-ms-flex: none;
flex: none;
width: 250px;
border: 1px solid #03b381;
border-radius: 5px;
padding: 10px;
margin-bottom: 1em;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_passPhraseMatch {
margin-left: 20px;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_recoveryKeyHeader {
margin-bottom: 1em;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_recoveryKeyContainer {
display: -ms-flexbox;
display: flex;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_recoveryKey {
width: 262px;
padding: 20px;
color: #888;
background-color: #22262e;
margin-right: 12px;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_recoveryKeyButtons {
-ms-flex: 1;
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
6 years ago
}
6 years ago
.mx_CreateKeyBackupDialog_recoveryKeyButtons button {
-ms-flex: 1;
flex: 1;
white-space: nowrap;
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_KeyBackupFailedDialog .mx_Dialog_title {
margin-bottom: 32px;
6 years ago
}
6 years ago
.mx_KeyBackupFailedDialog_title {
6 years ago
position: relative;
6 years ago
padding-left: 45px;
padding-bottom: 10px;
6 years ago
}
6 years ago
.mx_KeyBackupFailedDialog_title:before {
-webkit-mask: url(../../img/e2e/lock-warning-filled.993fb6c.svg);
mask: url(../../img/e2e/lock-warning-filled.993fb6c.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
background-color: #edf3ff;
content: "";
position: absolute;
top: -6px;
right: 0;
bottom: 0;
left: 0;
}
.mx_KeyBackupFailedDialog .mx_Dialog_buttons {
margin-top: 36px;
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_RestoreKeyBackupDialog_primaryContainer {
/*FIXME: plinth colour in new theme(s). background-color: $accent-color;*/
padding: 20px
}
.mx_RestoreKeyBackupDialog_passPhraseInput, .mx_RestoreKeyBackupDialog_recoveryKeyInput {
width: 300px;
border: 1px solid #03b381;
border-radius: 5px;
padding: 10px;
6 years ago
}
/*
6 years ago
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_NetworkDropdown {
position: relative;
6 years ago
}
6 years ago
.mx_NetworkDropdown_input {
6 years ago
position: relative;
6 years ago
border-radius: 3px;
border: 1px solid #c7c7c7;
font-weight: 300;
font-size: 13px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
6 years ago
}
6 years ago
.mx_NetworkDropdown_arrow {
border-color: #edf3ff transparent transparent;
border-style: solid;
border-width: 5px 5px 0;
display: block;
height: 0;
position: absolute;
right: 10px;
top: 16px;
width: 0
}
.mx_NetworkDropdown_networkoption {
height: 37px;
line-height: 37px;
padding-left: 8px;
padding-right: 8px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.mx_NetworkDropdown_networkoption img {
margin: 5px;
width: 25px;
vertical-align: middle;
}
input.mx_NetworkDropdown_networkoption, input.mx_NetworkDropdown_networkoption:focus {
border: 0;
padding-top: 0;
padding-bottom: 0;
}
.mx_NetworkDropdown_menu {
position: absolute;
left: -1px;
right: -1px;
top: 100%;
z-index: 2;
margin: 0;
padding: 0px;
border-radius: 3px;
border: 1px solid #03b381;
background-color: #181b21;
}
.mx_NetworkDropdown_menu .mx_NetworkDropdown_networkoption:hover {
background-color: #343a46;
}
.mx_NetworkDropdown_menu_network {
font-weight: bold;
6 years ago
}
/*
6 years ago
Copyright 2017 Vector Creations Ltd
6 years ago
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.
*/
6 years ago
.mx_AccessibleButton:focus {
outline: 0;
6 years ago
}
6 years ago
.mx_AccessibleButton {
cursor: pointer;
6 years ago
}
6 years ago
.mx_AccessibleButton_disabled {
cursor: default;
6 years ago
}
6 years ago
.mx_AccessibleButton_hasKind {
padding: 7px 18px;
text-align: center;
border-radius: 4px;
display: inline-block;
font-size: 14px;
6 years ago
}
6 years ago
.mx_AccessibleButton_kind_primary {
color: #ffffff;
background-color: #03b381;
6 years ago
}
6 years ago
.mx_AccessibleButton_kind_primary.mx_AccessibleButton_disabled {
opacity: 0.4;
6 years ago
}
6 years ago
.mx_AccessibleButton_hasKind.mx_AccessibleButton_kind_primary_sm {
padding: 5px 12px;
color: #ffffff;
background-color: #03b381;
6 years ago
}
6 years ago
.mx_AccessibleButton_kind_primary_sm.mx_AccessibleButton_disabled {
opacity: 0.4;
6 years ago
}
6 years ago
.mx_AccessibleButton_kind_danger {
color: #ffffff;
background-color: #ff4b55;
6 years ago
}
6 years ago
.mx_AccessibleButton_kind_danger.mx_AccessibleButton_disabled {
color: #ffffff;
background-color: #f5b6bb;
6 years ago
}
6 years ago
.mx_AccessibleButton_hasKind.mx_AccessibleButton_kind_danger_sm {
padding: 5px 12px;
color: #ffffff;
background-color: #ff4b55;
}
.mx_AccessibleButton_kind_danger_sm.mx_AccessibleButton_disabled {
color: #ffffff;
background-color: #f5b6bb;
6 years ago
}
/*
6 years ago
Copyright 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_AddressSelector {
position: absolute;
background-color: #181b21;
width: 485px;
max-height: 116px;
overflow-y: auto;
border-radius: 3px;
background-color: #181b21;
border: solid 1px #03b381;
cursor: pointer;
6 years ago
}
6 years ago
.mx_AddressSelector.mx_AddressSelector_empty {
display: none;
6 years ago
}
6 years ago
.mx_AddressSelector_addressListElement .mx_AddressTile {
background-color: #181b21;
border: solid 1px #181b21;
6 years ago
}
6 years ago
.mx_AddressSelector_addressListElement.mx_AddressSelector_selected {
background-color: #343a46;
6 years ago
}
6 years ago
.mx_AddressSelector_addressListElement.mx_AddressSelector_selected .mx_AddressTile {
background-color: #343a46;
border: solid 1px #343a46;
6 years ago
}
/*
6 years ago
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_AddressTile {
display: inline-block;
6 years ago
border-radius: 3px;
6 years ago
background-color: rgba(74, 73, 74, 0.1);
border: solid 1px #e7e7e7;
line-height: 26px;
color: #edf3ff;
font-size: 14px;
font-weight: normal;
margin-right: 4px;
6 years ago
}
6 years ago
.mx_AddressTile.mx_AddressTile_error {
background-color: rgba(255, 0, 100, 0.1);
color: #ff4b55;
border-color: #ff4b55;
6 years ago
}
6 years ago
.mx_AddressTile_network {
display: inline-block;
position: relative;
padding-left: 2px;
padding-right: 4px;
vertical-align: middle;
6 years ago
}
6 years ago
.mx_AddressTile_avatar {
display: inline-block;
position: relative;
padding-left: 2px;
padding-right: 7px;
vertical-align: middle;
6 years ago
}
6 years ago
.mx_AddressTile_mx {
display: inline-block;
margin: 0;
border: 0;
padding: 0;
6 years ago
}
6 years ago
.mx_AddressTile_name {
display: inline-block;
padding-right: 4px;
font-weight: 600;
overflow: hidden;
height: 26px;
vertical-align: middle;
}
6 years ago
.mx_AddressTile_name.mx_AddressTile_justified {
width: 180px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
vertical-align: middle;
6 years ago
}
6 years ago
.mx_AddressTile_id {
display: inline-block;
padding-right: 11px;
}
6 years ago
.mx_AddressTile_id.mx_AddressTile_justified {
width: 200px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
vertical-align: middle;
}
6 years ago
.mx_AddressTile_unknownMx {
display: inline-block;
font-weight: 600;
padding-right: 11px;
6 years ago
}
6 years ago
.mx_AddressTile_unknownMxl.mx_AddressTile_justified {
width: 380px; /* name + id width */
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
vertical-align: middle;
6 years ago
}
6 years ago
.mx_AddressTile_email {
display: inline-block;
font-weight: 600;
padding-right: 11px;
6 years ago
}
6 years ago
.mx_AddressTile_email.mx_AddressTile_justified {
width: 200px; /* same as id width */
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
vertical-align: middle;
6 years ago
}
6 years ago
.mx_AddressTile_unknown {
display: inline-block;
padding-right: 11px;
6 years ago
}
6 years ago
.mx_AddressTile_unknown.mx_AddressTile_justified {
width: 380px; /* name + id width */
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
vertical-align: middle;
6 years ago
}
6 years ago
.mx_AddressTile_dismiss {
display: inline-block;
padding-right: 11px;
padding-left: 1px;
cursor: pointer;
6 years ago
}
6 years ago
.mx_AddressTile_dismiss object {
pointer-events: none;
6 years ago
}
/*
6 years ago
Copyright 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_DirectorySearchBox {
display: -ms-flexbox;
display: flex;
padding-left: 9px;
padding-right: 9px;
margin: 0 5px 0 0 !important;
}
.mx_DirectorySearchBox_joinButton {
display: table-cell;
padding: 3px;
padding-left: 10px;
padding-right: 10px;
background-color: #f2f5f8;
border-radius: 3px;
background-image: url(../../img/icon-return.cb24475.svg);
background-position: 8px 70%;
background-repeat: no-repeat;
text-indent: 18px;
font-weight: 600;
font-size: 12px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
}
.mx_DirectorySearchBox_clear {
background-color: #ff4b55;
-webkit-mask: url(../../img/cancel.4b9715b.svg);
mask: url(../../img/cancel.4b9715b.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-size: 10px;
mask-size: 10px;
width: 15px;
height: 15px;
cursor: pointer;
6 years ago
}
/*
6 years ago
Copyright 2017 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_Dropdown {
position: relative;
color: #edf3ff;
6 years ago
}
6 years ago
.mx_Dropdown_disabled {
opacity: 0.3;
}
.mx_Dropdown_input {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
position: relative;
border-radius: 3px;
border: 1px solid #c7c7c7;
font-size: 12px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.mx_Dropdown_input:focus {
border-color: #238cf5;
}
/* Disable dropdown highlight on focus */
.mx_Dropdown_input.mx_AccessibleButton:focus {
filter: none;
}
.mx_Dropdown_arrow {
width: 10px;
height: 6px;
padding-right: 9px;
-webkit-mask: url(../../img/feather-customised/dropdown-arrow.1a22ebc.svg);
mask: url(../../img/feather-customised/dropdown-arrow.1a22ebc.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
background: #edf3ff;
}
.mx_Dropdown_input > .mx_Dropdown_option {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
-ms-flex: 1;
flex: 1;
}
.mx_Dropdown_option {
height: 35px;
line-height: 35px;
padding-left: 8px;
padding-right: 8px;
}
.mx_Dropdown_option div {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.mx_Dropdown_option img {
margin: 5px;
width: 16px;
vertical-align: middle;
}
input.mx_Dropdown_option, input.mx_Dropdown_option:focus {
font-weight: normal;
border: 0;
padding-top: 0;
padding-bottom: 0;
width: 60%;
}
.mx_Dropdown_menu {
position: absolute;
left: -1px;
right: -1px;
top: 100%;
z-index: 2;
margin: 0;
padding: 0px;
border-radius: 3px;
border: 1px solid #238cf5;
background-color: #181b21;
max-height: 200px;
overflow-y: auto;
}
.mx_Dropdown_menu .mx_Dropdown_option {
height: auto;
min-height: 35px;
}
.mx_Dropdown_menu .mx_Dropdown_option_highlight {
background-color: #343a46;
}
.mx_Dropdown_searchPrompt {
font-weight: normal;
margin-left: 5px;
margin-bottom: 5px;
6 years ago
}
/*
6 years ago
Copyright 2017, 2019 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_EditableItemList {
margin-top: 12px;
margin-bottom: 10px;
6 years ago
}
6 years ago
.mx_EditableItem {
margin-bottom: 5px;
margin-left: 15px;
}
.mx_EditableItem_delete {
margin-right: 5px;
6 years ago
cursor: pointer;
6 years ago
vertical-align: middle;
6 years ago
}
6 years ago
.mx_EditableItem_email {
6 years ago
vertical-align: middle;
}
6 years ago
.mx_EditableItem_promptText {
margin-right: 10px;
}
.mx_EditableItem_confirmBtn {
margin-right: 5px;
}
.mx_EditableItemList_newItem .mx_Field input {
width: calc(100% - 20px);
}
.mx_EditableItemList_label {
margin-bottom: 5px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
/* TODO: Consider unifying with general input styles in _light.scss */
.mx_Field {
display: -ms-flexbox;
display: flex;
position: relative;
margin: 1em 0;
border-radius: 4px;
transition: border-color 0.25s;
border: 1px solid #e7e7e7;
6 years ago
}
6 years ago
.mx_Field_prefix {
border-right: 1px solid #e7e7e7;
6 years ago
}
6 years ago
.mx_Field input, .mx_Field select, .mx_Field textarea {
font-weight: normal;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
border: none;
border-radius: 4px;
padding: 8px 9px;
color: #edf3ff;
background-color: #181b21;
6 years ago
}
6 years ago
.mx_Field select {
-moz-appearance: none;
-webkit-appearance: none;
}
.mx_Field_select::before {
content: "";
6 years ago
position: absolute;
6 years ago
top: 15px;
right: 10px;
width: 10px;
height: 6px;
-webkit-mask: url(../../img/feather-customised/dropdown-arrow.1a22ebc.svg);
mask: url(../../img/feather-customised/dropdown-arrow.1a22ebc.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
background-color: #edf3ff;
z-index: 1;
pointer-events: none;
6 years ago
}
6 years ago
.mx_Field:focus-within {
border-color: #238cf5;
}
6 years ago
.mx_Field input:focus, .mx_Field select:focus, .mx_Field textarea:focus {
outline: 0;
}
.mx_Field input:-ms-input-placeholder, .mx_Field textarea:-ms-input-placeholder {
transition: color 0.25s ease-in 0s;
color: transparent;
}
.mx_Field input::placeholder, .mx_Field textarea::placeholder {
transition: color 0.25s ease-in 0s;
color: transparent;
}
.mx_Field input:placeholder-shown:focus:-ms-input-placeholder, .mx_Field textarea:placeholder-shown:focus:-ms-input-placeholder {
transition: color 0.25s ease-in 0.1s;
color: #888;
}
.mx_Field input:placeholder-shown:focus::placeholder, .mx_Field textarea:placeholder-shown:focus::placeholder {
transition: color 0.25s ease-in 0.1s;
color: #888;
}
.mx_Field label {
transition:
font-size 0.25s ease-out 0.1s,
color 0.25s ease-out 0.1s,
top 0.25s ease-out 0.1s,
background-color 0.25s ease-out 0.1s;
color: #edf3ff;
background-color: transparent;
font-size: 14px;
position: absolute;
6 years ago
left: 0px;
top: 0px;
6 years ago
margin: 7px 8px;
padding: 2px;
pointer-events: none;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width: calc(100% - 20px);
}
.mx_Field input:focus + label, .mx_Field input:not(:placeholder-shown) + label, .mx_Field textarea:focus + label, .mx_Field textarea:not(:placeholder-shown) + label, .mx_Field select + label, .mx_Field_labelAlwaysTopLeft label {
transition:
font-size 0.25s ease-out 0s,
color 0.25s ease-out 0s,
top 0.25s ease-out 0s,
background-color 0.25s ease-out 0s;
font-size: 10px;
top: -13px;
padding: 0 2px;
background-color: #181b21;
pointer-events: initial;
}
.mx_Field input:focus + label, .mx_Field select:focus + label, .mx_Field textarea:focus + label {
color: #238cf5;
}
.mx_Field select:disabled, .mx_Field select:disabled + label, .mx_Field input:disabled, .mx_Field input:disabled + label, .mx_Field textarea:disabled, .mx_Field textarea:disabled + label {
background-color: #181b21;
color: #888;
}
.mx_Field .mx_Dropdown_input {
border: initial;
border-radius: initial;
}
.mx_Field .mx_CountryDropdown {
width: 67px;
6 years ago
}
/*
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.
*/
6 years ago
/* This has got to be the most fragile piece of CSS ever written.
But empirically it works on Chrome/FF/Safari
*/
.mx_ImageView {
display: -ms-flexbox;
display: flex;
width: 100%;
height: 100%;
-ms-flex-align: center;
align-items: center;
}
.mx_ImageView_lhs {
-ms-flex-order: 1;
order: 1;
-ms-flex: 1 1 10%;
flex: 1 1 10%;
min-width: 60px;
}
.mx_ImageView_content {
-ms-flex-order: 2;
order: 2;
/* min-width hack needed for FF */
min-width: 0px;
height: 90%;
-ms-flex: 15 15 0px;
flex: 15 15 0;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
}
.mx_ImageView_content img {
max-width: 100%;
/* XXX: max-height interacts badly with flex on Chrome and doesn't relayout properly until you refresh */
max-height: 100%;
/* object-fit hack needed for Chrome due to Chrome not re-laying-out until you refresh */
-o-object-fit: contain;
object-fit: contain;
/* background-image: url('$(res)/img/trans.png'); */
pointer-events: all;
}
.mx_ImageView_labelWrapper {
position: absolute;
top: 0px;
right: 0px;
height: 100%;
overflow: auto;
pointer-events: all;
}
.mx_ImageView_label {
text-align: left;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 30px;
padding-right: 30px;
min-height: 100%;
max-width: 240px;
color: #ffffff;
}
.mx_ImageView_cancel {
position: absolute;
top: 40px;
right: 0px;
padding: 35px;
cursor: pointer;
}
.mx_ImageView_name {
font-size: 18px;
margin-bottom: 6px;
word-wrap: break-word;
}
.mx_ImageView_metadata {
font-size: 15px;
opacity: 0.5;
}
.mx_ImageView_download {
display: table;
margin-top: 24px;
margin-bottom: 6px;
border-radius: 5px;
background-color: #454545;
font-size: 14px;
padding: 9px;
border: 1px solid #ffffff;
}
.mx_ImageView_size {
font-size: 11px;
}
.mx_ImageView_link {
color: #ffffff ! important;
text-decoration: none ! important;
}
.mx_ImageView_button {
font-size: 15px;
opacity: 0.5;
margin-top: 18px;
cursor: pointer;
}
.mx_ImageView_shim {
height: 30px;
}
.mx_ImageView_rhs {
-ms-flex-order: 3;
order: 3;
-ms-flex: 1 1 10%;
flex: 1 1 10%;
min-width: 300px;
6 years ago
}
/*
6 years ago
Copyright 2017 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_InlineSpinner {
display: inline;
6 years ago
}
6 years ago
.mx_InlineSpinner img {
margin: 0px 6px;
vertical-align: -3px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_ManageIntegsButton_error {
position: relative;
cursor: not-allowed;
}
.mx_ManageIntegsButton_error img {
position: absolute;
right: -5px;
top: -5px;
}
.mx_ManageIntegsButton_error {
float: right;
}
.mx_ManageIntegsButton_error .mx_ManageIntegsButton_errorPopup {
display: none;
}
.mx_ManageIntegsButton_error:hover .mx_ManageIntegsButton_errorPopup {
display: inline;
}
.mx_ManageIntegsButton_errorPopup {
position: absolute;
top: 110%;
left: -275%;
width: 550%;
padding: 30%;
font-size: 10pt;
line-height: 1.5em;
border-radius: 5px;
background-color: #03b381;
color: #ffffff;
text-align: center;
z-index: 1000;
6 years ago
}
/*
6 years ago
Copyright 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_MemberEventListSummary {
position: relative;
}
.mx_TextualEvent.mx_MemberEventListSummary_summary {
font-size: 14px;
display: -ms-inline-flexbox;
display: inline-flex;
}
.mx_MemberEventListSummary_avatars {
display: inline-block;
margin-right: 8px;
padding-top: 8px;
line-height: 12px;
}
.mx_MemberEventListSummary_avatars .mx_BaseAvatar {
margin-right: -4px;
cursor: pointer;
}
.mx_MemberEventListSummary_toggle {
color: #03b381;
cursor: pointer;
float: right;
margin-right: 10px;
margin-top: 8px;
}
.mx_MemberEventListSummary_line {
border-bottom: 1px solid #000000;
margin-left: 63px;
line-height: 30px;
6 years ago
}
6 years ago
.mx_MatrixChat_useCompactLayout .mx_MemberEventListSummary {
font-size: 13px;
}
.mx_MatrixChat_useCompactLayout .mx_MemberEventListSummary .mx_EventTile_line {
line-height: 20px;
}
.mx_MatrixChat_useCompactLayout .mx_MemberEventListSummary_line {
line-height: 22px;
}
.mx_MatrixChat_useCompactLayout .mx_MemberEventListSummary_toggle {
margin-top: 3px;
}
.mx_MatrixChat_useCompactLayout .mx_TextualEvent.mx_MemberEventListSummary_summary {
font-size: 13px;
}
6 years ago
/*
6 years ago
Copyright 2019 New Vector Ltd.
6 years ago
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.
*/
6 years ago
.mx_PowerSelector {
width: 100%;
6 years ago
}
6 years ago
.mx_PowerSelector .mx_Field select, .mx_PowerSelector .mx_Field input {
width: 100%;
box-sizing: border-box;
6 years ago
}
/*
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.
*/
6 years ago
.mx_ProgressBar {
height: 5px;
border: 1px solid #000;
}
.mx_ProgressBar_fill {
height: 100%;
background-color: #000;
}
6 years ago
/*
6 years ago
Copyright 2018 Vector Creations Ltd
6 years ago
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.
*/
6 years ago
.mx_ReplyThread {
margin-top: 0;
}
.mx_ReplyThread .mx_DateSeparator {
font-size: 1em !important;
margin-top: 0;
margin-bottom: 0;
padding-bottom: 1px;
bottom: -5px;
}
.mx_ReplyThread_show {
cursor: pointer;
}
blockquote.mx_ReplyThread {
margin-left: 0;
padding-left: 10px;
border-left: 4px solid #ddd;
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd.
6 years ago
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
6 years ago
6 years ago
http://www.apache.org/licenses/LICENSE-2.0
6 years ago
6 years ago
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.
*/
6 years ago
.mx_ResizeHandle {
cursor: row-resize;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
z-index: 100;
}
.mx_ResizeHandle.mx_ResizeHandle_horizontal {
margin: 0 -5px;
padding: 0 5px;
cursor: col-resize;
}
.mx_ResizeHandle.mx_ResizeHandle_vertical {
margin: -5px 0;
padding: 5px 0;
cursor: row-resize;
}
.mx_MatrixChat > .mx_ResizeHandle.mx_ResizeHandle_horizontal {
margin: 0 -10px 0 0;
padding: 0 10px 0 0;
}
.mx_ResizeHandle > div {
background: #000000;
}
.mx_ResizeHandle.mx_ResizeHandle_horizontal > div {
width: 1px;
height: 100%;
}
.mx_ResizeHandle.mx_ResizeHandle_vertical > div {
height: 1px;
}
.mx_UserPill, .mx_RoomPill, .mx_GroupPill, .mx_AtRoomPill {
border-radius: 16px;
display: inline-block;
height: 20px;
line-height: 20px;
padding-left: 5px;
6 years ago
}
6 years ago
.mx_EventTile_body .mx_UserPill, .mx_EventTile_body .mx_RoomPill, .mx_EventTile_body .mx_GroupPill {
cursor: pointer;
}
/* More specific to override `.markdown-body a` text-decoration */
.mx_EventTile_content .markdown-body a.mx_Pill {
text-decoration: none;
}
/* More specific to override `.markdown-body a` color */
.mx_EventTile_content .markdown-body a.mx_UserPill, .mx_UserPill {
color: #edf3ff;
background-color: #343a46;
padding-right: 5px;
}
.mx_UserPill_selected {
background-color: #03b381 ! important;
}
/* More specific to override `.markdown-body a` color */
.mx_EventTile_highlight .mx_EventTile_content .markdown-body a.mx_UserPill_me, .mx_EventTile_content .markdown-body a.mx_AtRoomPill, .mx_EventTile_content .mx_AtRoomPill, .mx_MessageComposer_input .mx_AtRoomPill {
color: #ffffff;
background-color: #ff4b55;
padding-right: 5px;
}
/* More specific to override `.markdown-body a` color */
.mx_EventTile_content .markdown-body a.mx_RoomPill, .mx_EventTile_content .markdown-body a.mx_GroupPill, .mx_RoomPill, .mx_GroupPill {
color: #ffffff;
background-color: #343a46;
padding-right: 5px;
}
/* More specific to override `.markdown-body a` color */
.mx_EventTile_content .markdown-body a.mx_GroupPill, .mx_GroupPill {
color: #ffffff;
background-color: #343a46;
padding-right: 5px;
}
.mx_UserPill .mx_BaseAvatar, .mx_RoomPill .mx_BaseAvatar, .mx_GroupPill .mx_BaseAvatar, .mx_AtRoomPill .mx_BaseAvatar {
position: relative;
left: -3px;
top: 2px;
}
.mx_Markdown_BOLD {
font-weight: bold;
}
.mx_Markdown_ITALIC {
font-style: italic;
6 years ago
/*
6 years ago
// interestingly, *not* using the explicit italic font
// variant seems yield better results.
// compensate for Nunito italics being terrible
// https://github.com/google/fonts/issues/1726
transform: skewX(-14deg);
display: inline-block;
*/
}
.mx_Markdown_CODE {
padding: .2em 0;
margin: 0;
font-size: 85%;
background-color: rgba(0, 0, 0, 0.04);
border-radius: 3px;
}
.mx_Markdown_HR {
display: block;
background: #e9e9e9;
}
.mx_Markdown_STRIKETHROUGH {
text-decoration: line-through;
}
/*
Copyright 2017 Vector Creations Ltd
6 years ago
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.
*/
6 years ago
.mx_RoleButton {
margin-left: 4px;
margin-right: 4px;
cursor: pointer;
display: inline-block;
6 years ago
}
6 years ago
.mx_RoleButton object {
pointer-events: none;
6 years ago
}
6 years ago
.mx_RoleButton_tooltip {
display: inline-block;
position: relative;
top: -25px;
left: 6px;
}
/*
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_Spinner {
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
6 years ago
width: 100%;
height: 100%;
-ms-flex: 1;
flex: 1;
6 years ago
}
6 years ago
.mx_MatrixChat_middlePanel .mx_Spinner {
height: auto;
6 years ago
}
6 years ago
/*
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
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_SyntaxHighlight {
/* inhibit hljs styling */
background: none !important;
color: #c8c8cd !important;
6 years ago
}
6 years ago
/*
Copyright 2019 New Vector 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_ToggleSwitch {
transition: background-color 0.20s ease-out 0.1s;
width: 48px;
height: 24px;
border-radius: 14px;
background-color: #c1c9d6;
position: relative;
opacity: 0.5;
6 years ago
}
6 years ago
.mx_ToggleSwitch_enabled {
cursor: pointer;
opacity: 1;
6 years ago
}
6 years ago
.mx_ToggleSwitch.mx_ToggleSwitch_on {
background-color: #03b381;
6 years ago
}
6 years ago
.mx_ToggleSwitch_ball {
transition: left 0.15s ease-out 0.1s;
margin: 2px;
width: 20px;
height: 20px;
border-radius: 20px;
background-color: #fff;
position: absolute;
top: 0;
6 years ago
}
6 years ago
.mx_ToggleSwitch:not(.mx_ToggleSwitch_on) > .mx_ToggleSwitch_ball {
left: 2px;
6 years ago
}
6 years ago
.mx_ToggleSwitch_on > .mx_ToggleSwitch_ball {
left: 23px;
6 years ago
}
6 years ago
/*
Copyright 2017 New Vector 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_ToolTipButton {
display: inline-block;
width: 11px;
height: 11px;
margin-left: 5px;
border: 2px solid #dbdbdb;
border-radius: 20px;
color: #dbdbdb;
transition: opacity 0.2s ease-in;
opacity: 0.6;
line-height: 11px;
text-align: center;
6 years ago
cursor: pointer;
}
6 years ago
.mx_ToolTipButton:hover {
opacity: 1.0;
6 years ago
}
6 years ago
.mx_ToolTipButton_container {
position: relative;
top: -18px;
left: 4px;
}
.mx_ToolTipButton_helpText {
width: 400px;
text-align: start;
line-height: 17px !important;
}
/*
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_MatrixToolbar {
background-color: #03b381;
color: #ffffff;
6 years ago
display: -ms-flexbox;
6 years ago
6 years ago
display: flex;
-ms-flex-align: center;
align-items: center;
6 years ago
}
6 years ago
.mx_MatrixToolbar_warning {
margin-left: 16px;
margin-right: 8px;
margin-top: -2px;
6 years ago
}
6 years ago
.mx_MatrixToolbar_info {
padding-left: 16px;
padding-right: 8px;
background-color: #2A9EDF;
6 years ago
}
6 years ago
.mx_MatrixToolbar_error {
padding-left: 16px;
padding-right: 8px;
background-color: #DF2A8B;
6 years ago
}
6 years ago
.mx_MatrixToolbar_content {
-ms-flex: 1;
flex: 1;
6 years ago
}
6 years ago
.mx_MatrixToolbar_link
{
color: #ffffff ! important;
text-decoration: underline ! important;
cursor: pointer;
6 years ago
}
6 years ago
.mx_MatrixToolbar_clickable {
cursor: pointer;
6 years ago
}
6 years ago
.mx_MatrixToolbar_close {
cursor: pointer;
6 years ago
}
6 years ago
.mx_MatrixToolbar_close img {
display: block;
float: right;
margin-right: 10px;
6 years ago
}
6 years ago
.mx_MatrixToolbar_action {
margin-right: 16px;
6 years ago
}
6 years ago
.mx_MatrixToolbar_changelog {
white-space: pre;
6 years ago
}
6 years ago
/*
Copyright 2017 New Vector 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_GroupPublicity_toggle {
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
6 years ago
margin: 8px;
6 years ago
}
6 years ago
.mx_GroupPublicity_toggle .mx_GroupTile {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
cursor: pointer;
box-sizing: border-box;
width: 100%;
6 years ago
}
6 years ago
.mx_GroupPublicity_toggle .mx_ToggleSwitch {
float: right;
}
/*
Copyright 2017 New Vector 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_GroupRoomTile {
position: relative;
color: #edf3ff;
cursor: pointer;
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
6 years ago
}
6 years ago
.mx_GroupRoomList_wrapper {
padding: 10px;
6 years ago
}
6 years ago
/*
Copyright 2017 New Vector 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_GroupUserSettings_groupPublicity_scrollbox {
height: 200px;
border: 1px solid #000000;
border-radius: 3px;
overflow: hidden;
6 years ago
}
6 years ago
/*
Copyright 2018 New Vector 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_CreateEvent {
background-color: #22262e;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
6 years ago
}
6 years ago
.mx_CreateEvent_image {
float: left;
margin-right: 20px;
width: 72px;
6 years ago
height: 34px;
6 years ago
background-color: #edf3ff;
-webkit-mask: url(../../img/room-continuation.1f243ce.svg);
mask: url(../../img/room-continuation.1f243ce.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
6 years ago
}
6 years ago
.mx_CreateEvent_header {
font-weight: bold;
6 years ago
}
6 years ago
.mx_CreateEvent_link {
}
/*
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;
margin: 4px 0;
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
6 years ago
font-size: 14px;
color: #a1b2d1;
6 years ago
}
6 years ago
.mx_DateSeparator > hr {
-ms-flex: 1 1 0px;
flex: 1 1 0;
height: 0;
border: none;
border-bottom: 1px solid #000000;
6 years ago
}
6 years ago
.mx_DateSeparator > date {
margin: 0 25px;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
6 years ago
}
/*
6 years ago
Copyright 2017 Vector Creations Ltd.
6 years ago
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.
*/
6 years ago
.mx_MEmoteBody {
white-space: pre-wrap;
6 years ago
}
6 years ago
.mx_MEmoteBody_sender {
cursor: pointer;
}
6 years ago
/*
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.
*/
6 years ago
.mx_MFileBody_download {
color: #03b381;
}
.mx_MFileBody_download a {
color: #03b381;
text-decoration: none;
cursor: pointer;
}
.mx_MFileBody_download object {
margin-left: -16px;
padding-right: 4px;
margin-top: -4px;
vertical-align: middle;
pointer-events: none;
}
/* Remove the border and padding for iframes for download links. */
.mx_MFileBody_download iframe {
margin: 0px;
padding: 0px;
border: none;
width: 100%;
/* Set the height of the iframe to be 1 line of text.
* Iframes don't automatically size themselves to fit their content.
* So either we have to fix the height of the iframe using CSS or
* use javascript's cross-origin postMessage API to communicate how
* big the content of the iframe is. */
height: 1.5em;
}
/*
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_MImageBody {
display: block;
margin-right: 34px;
}
.mx_MImageBody_thumbnail {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
.mx_MImageBody_thumbnail_container {
overflow: hidden;
position: relative;
}
.mx_MImageBody_thumbnail_spinner {
position: absolute;
left: 50%;
top: 50%;
}
.mx_MImageBody_thumbnail_spinner > * {
transform: translate(-50%, -50%);
}
.mx_MImageBody_gifLabel {
position: absolute;
display: block;
top: 0px;
left: 14px;
padding: 5px;
border-radius: 5px;
background: rgba(0, 0, 0, 0.7);
border: 2px solid rgba(0, 0, 0, 0.2);
color: rgba(255, 255, 255, 1);
pointer-events: none;
}
/*
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_MNoticeBody {
white-space: pre-wrap;
opacity: 0.6;
}
/*
Copyright 2018 New Vector 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_MStickerBody_wrapper {
padding: 20px 0px;
}
.mx_MStickerBody_tooltip {
position: absolute;
top: 50%;
}
/*
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_MTextBody {
white-space: pre-wrap;
}
/*
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_MessageTimestamp {
}
/*
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_RoomAvatarEvent {
opacity: 0.5;
overflow-y: hidden;
}
.mx_RoomAvatarEvent_avatar {
display: inline;
position: relative;
top: 5px;
}
/*
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_SenderProfile_name {
font-weight: 600;
}
.mx_SenderProfile_color1 {
color: #368bd6;
}
.mx_SenderProfile_color2 {
color: #ac3ba8;
}
.mx_SenderProfile_color3 {
color: #03b381;
}
.mx_SenderProfile_color4 {
color: #e64f7a;
}
.mx_SenderProfile_color5 {
color: #ff812d;
}
.mx_SenderProfile_color6 {
color: #2dc2c5;
}
.mx_SenderProfile_color7 {
color: #5c56f5;
}
.mx_SenderProfile_color8 {
color: #74d12c;
}
/*
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_TextualEvent {
opacity: 0.5;
overflow-y: hidden;
}
/*
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_UnknownBody {
white-space: pre-wrap;
}
/*
Copyright 2019 New Vector 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_AliasSettings_editable {
border: 0px;
border-bottom: 1px solid #c7c7c7;
padding: 0px;
min-width: 240px;
}
.mx_AliasSettings_editable:focus {
border-bottom: 1px solid #03b381;
outline: none;
box-shadow: none;
}
/*
Copyright 2019 New Vector 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_ColorSettings_roomColor {
display: inline-block;
position: relative;
width: 37px;
height: 37px;
border: 1px solid #979797;
margin-right: 13px;
cursor: pointer;
}
.mx_ColorSettings_roomColor_selected {
position: absolute;
left: 10px;
top: 4px;
cursor: default ! important;
}
.mx_ColorSettings_roomColorPrimary {
height: 10px;
position: absolute;
bottom: 0px;
width: 100%;
}
/*
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.
*/
/*
the tile title bar is 5 (top border) + 12 (title, buttons) + 5 (bottom padding) px = 22px
the body is assumed to be 300px (assumed by at least the sticker pickerm, perhaps elsewhere),
so the body height would be 300px - 22px (room for title bar) = 278px
BUT! the sticker picker also assumes it's a little less high than that because the iframe
for the sticker picker doesn't have any padding or margin on it's bottom.
so subtracking another 5px, which brings us at 273px.
*/
.mx_AppsDrawer {
margin: 5px;
}
.mx_AppsDrawer_hidden {
display: none;
}
.mx_AppsContainer {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
}
.mx_AddWidget_button {
-ms-flex-order: 2;
order: 2;
cursor: pointer;
padding-right: 12px;
padding: 0;
margin: 5px auto 5px auto;
color: #03b381;
font-size: 12px;
}
.mx_AddWidget_button_full_width {
max-width: 960px;
}
.mx_SetAppURLDialog_input {
border-radius: 3px;
border: 1px solid #e7e7e7;
padding: 9px;
color: #000000;
background-color: #181b21;
font-size: 15px;
}
.mx_AppTile {
max-width: 960px;
width: 50%;
margin-right: 5px;
border: 5px solid #22262e;
border-radius: 4px;
}
.mx_AppTile:last-child {
margin-right: 1px;
}
.mx_AppTileFullWidth {
max-width: 960px;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border: 5px solid #22262e;
border-radius: 4px;
}
.mx_AppTile_mini {
max-width: 960px;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.mx_AppTile_persistedWrapper {
height: 273px;
}
.mx_AppTile_mini .mx_AppTile_persistedWrapper {
height: 114px;
}
.mx_AppTileMenuBar {
margin: 0;
font-size: 12px;
background-color: #22262e;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;
cursor: pointer;
}
.mx_AppTileMenuBar_expanded {
padding-bottom: 5px;
}
.mx_AppTileMenuBarTitle {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-align: center;
align-items: center;
pointer-events: none;
}
.mx_AppTileMenuBarTitle > :last-child {
margin-left: 9px;
}
.mx_AppTileMenuBarWidgets {
float: right;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-align: center;
align-items: center;
}
.mx_AppTileMenuBar_iconButton {
width: 12px;
height: 12px;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 0 center;
mask-position: 0 center;
-webkit-mask-size: auto 12px;
mask-size: auto 12px;
background-color: #edf3ff;
margin: 0 3px;
}
.mx_AppTileMenuBar_iconButton.mx_AppTileMenuBar_iconButton_minimise {
-webkit-mask-image: url(../../img/feather-customised/widget/minimise.aec9142.svg);
mask-image: url(../../img/feather-customised/widget/minimise.aec9142.svg);
background-color: #03b381;
}
.mx_AppTileMenuBar_iconButton.mx_AppTileMenuBar_iconButton_maximise {
-webkit-mask-image: url(../../img/feather-customised/widget/maximise.dc32127.svg);
mask-image: url(../../img/feather-customised/widget/maximise.dc32127.svg);
background-color: #03b381;
}
.mx_AppTileMenuBar_iconButton.mx_AppTileMenuBar_iconButton_reload {
-webkit-mask-image: url(../../img/feather-customised/widget/refresh.56a6717.svg);
mask-image: url(../../img/feather-customised/widget/refresh.56a6717.svg);
-webkit-mask-size: 100%;
mask-size: 100%;
}
.mx_AppTileMenuBar_iconButton.mx_AppTileMenuBar_iconButton_popout {
-webkit-mask-image: url(../../img/feather-customised/widget/external-link.7ab6751.svg);
mask-image: url(../../img/feather-customised/widget/external-link.7ab6751.svg);
}
.mx_AppTileMenuBar_iconButton.mx_AppTileMenuBar_iconButton_snapshot {
-webkit-mask-image: url(../../img/feather-customised/widget/camera.07c01e3.svg);
mask-image: url(../../img/feather-customised/widget/camera.07c01e3.svg);
}
.mx_AppTileMenuBar_iconButton.mx_AppTileMenuBar_iconButton_edit {
-webkit-mask-image: url(../../img/feather-customised/widget/edit.0826c3f.svg);
mask-image: url(../../img/feather-customised/widget/edit.0826c3f.svg);
}
.mx_AppTileMenuBar_iconButton.mx_AppTileMenuBar_iconButton_delete {
-webkit-mask-image: url(../../img/feather-customised/widget/bin.815f5dc.svg);
mask-image: url(../../img/feather-customised/widget/bin.815f5dc.svg);
background-color: #ff4b55;
}
.mx_AppTileMenuBar_iconButton.mx_AppTileMenuBar_iconButton_cancel {
-webkit-mask-image: url(../../img/feather-customised/widget/x-circle.e6ae55c.svg);
mask-image: url(../../img/feather-customised/widget/x-circle.e6ae55c.svg);
}
/* delete ? */
.mx_AppTileMenuBarWidget {
cursor: pointer;
width: 10px;
height: 10px;
padding: 1px;
transition-duration: 500ms;
border: 1px solid transparent;
}
.mx_AppTileMenuBarWidgetDelete {
filter: none;
}
.mx_AppTileMenuBarWidget:hover {
border: 1px solid #edf3ff;
border-radius: 2px;
}
.mx_AppTileBody{
height: 273px;
width: 100%;
overflow: hidden;
}
.mx_AppTileBody_mini {
height: 112px;
width: 100%;
overflow: hidden;
}
.mx_AppTileBody_mini iframe {
border: none;
width: 100%;
height: 100%;
}
.mx_AppTileBody iframe {
width: 100%;
height: 273px;
overflow: hidden;
border: none;
padding: 0;
margin: 0;
display: block;
}
.mx_AppTileMenuBarWidgetPadding {
margin-right: 5px;
}
.mx_AppIconTile {
background-color: #454545;
border: 1px solid rgba(0, 0, 0, 0);
width: 200px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
border-radius: 3px;
margin: 5px;
display: inline-block;
}
.mx_AppIconTile.mx_AppIconTile_active {
color: #03b381;
border-color: #03b381;
}
.mx_AppIconTile:hover {
border: 1px solid #03b381;
box-shadow: 0 0 10px 5px rgba(200,200,200,0.5);
}
.mx_AppIconTile_content {
padding: 2px 16px;
height: 60px;
overflow: hidden;
}
.mx_AppIconTile_content h4 {
margin-top: 5px;
margin-bottom: 2px;
}
.mx_AppIconTile_content p {
margin-top: 0;
margin-bottom: 5px;
font-size: smaller;
}
.mx_AppIconTile_image {
padding: 10px;
width: 75%;
max-width:100px;
max-height:100px;
width: auto;
height: auto;
}
.mx_AppIconTile_imageContainer {
text-align: center;
width: 100%;
background-color: white;
border-radius: 3px 3px 0 0;
height: 155px;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
}
form.mx_Custom_Widget_Form div {
margin-top: 10px;
margin-bottom: 10px;
}
.mx_AppPermissionWarning {
text-align: center;
background-color: #181b21;
display: -ms-flexbox;
display: flex;
height: 100%;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
}
.mx_AppPermissionWarningImage {
margin: 10px 0;
}
.mx_AppPermissionWarningImage img {
width: 100px;
}
.mx_AppPermissionWarningText {
max-width: 400px;
margin: 10px auto 10px auto;
color: #edf3ff;
}
.mx_AppPermissionWarningTextLabel {
font-weight: bold;
display: block;
}
.mx_AppPermissionWarningTextURL {
color: #03b381;
}
.mx_AppPermissionButton {
border: none;
padding: 5px 20px;
border-radius: 5px;
background-color: #03b381;
color: white;
cursor: pointer;
}
.mx_AppLoading {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
font-weight: bold;
position: relative;
height: 273px;
}
.mx_AppLoading .mx_Spinner {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.mx_AppLoading_spinner_fadeIn {
animation-fill-mode: backwards;
animation-duration: 200ms;
animation-delay: 500ms;
animation-name: mx_AppLoading_spinner_fadeIn_animation;
}
@keyframes mx_AppLoading_spinner_fadeIn_animation {
from { opacity: 0 }
to { opacity: 1 }
}
.mx_AppLoading iframe {
display: none;
}
.mx_Autocomplete {
position: absolute;
bottom: 0;
z-index: 1001;
width: 100%;
border: 1px solid #000000;
background: #181b21;
border-bottom: none;
border-radius: 4px 4px 0 0;
max-height: 50vh;
overflow: auto
}
.mx_Autocomplete_ProviderSection {
border-bottom: 1px solid #000000;
}
.mx_Autocomplete_Completion_container_pill {
margin: 12px;
display: -ms-flexbox;
display: flex;
}
/* a "block" completion takes up a whole line */
.mx_Autocomplete_Completion_block {
height: 34px;
display: -ms-flexbox;
display: flex;
padding: 0 12px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
-ms-flex-align: center;
align-items: center;
color: #edf3ff;
}
.mx_Autocomplete_Completion_block * {
margin: 0 3px;
}
.mx_Autocomplete_Completion_pill {
border-radius: 17px;
height: 34px;
padding: 0px 5px;
display: -ms-flexbox;
display: flex;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
-ms-flex-align: center;
align-items: center;
color: #edf3ff;
}
.mx_Autocomplete_Completion_pill > * {
margin: 0 3px;
}
.mx_Autocomplete_Completion_container_truncate .mx_Autocomplete_Completion_title, .mx_Autocomplete_Completion_container_truncate .mx_Autocomplete_Completion_subtitle, .mx_Autocomplete_Completion_container_truncate .mx_Autocomplete_Completion_description {
/* Ellipsis for long names/subtitles/descriptions*/
max-width: 150px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* container for pill-style completions */
.mx_Autocomplete_Completion_container_pill {
margin: 12px;
display: -ms-flexbox;
display: flex;
-ms-flex-flow: wrap;
flex-flow: wrap;
}
.mx_Autocomplete_Completion.selected, .mx_Autocomplete_Completion:hover {
background: #343a46;
outline: none;
}
.mx_Autocomplete_provider_name {
margin: 12px;
color: #edf3ff;
font-weight: 400;
opacity: 0.4;
}
/* styling for common completion elements */
.mx_Autocomplete_Completion_subtitle {
font-style: italic;
-ms-flex: 1;
flex: 1;
}
.mx_Autocomplete_Completion_description {
color: gray;
}
/*
Copyright 2018 New Vector 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.
*/
.m_RoomView_auxPanel_stateViews {
padding: 5px;
padding-left: 19px;
border-bottom: 1px solid #e5e5e5;
}
.m_RoomView_auxPanel_stateViews_span a {
text-decoration: none;
color: inherit;
}
.m_RoomView_auxPanel_stateViews_span[data-severity=warning] {
font-weight: bold;
color: orange;
}
.m_RoomView_auxPanel_stateViews_span[data-severity=alert] {
font-weight: bold;
color: red;
}
.m_RoomView_auxPanel_stateViews_span[data-severity=normal] {
font-weight: normal;
}
.m_RoomView_auxPanel_stateViews_span[data-severity=notice] {
font-weight: normal;
color: #a2a2a2;
}
.m_RoomView_auxPanel_stateViews_delim {
padding: 0 5px;
color: #a2a2a2;
}
/*
Copyright 2019 New Vector 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_E2EIcon {
width: 25px;
height: 25px;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center 0;
mask-position: center 0;
margin: 0 9px;
}
.mx_E2EIcon_verified {
-webkit-mask-image: url(../../img/e2e/lock-verified.36766fc.svg);
mask-image: url(../../img/e2e/lock-verified.36766fc.svg);
background-color: #03b381;
}
.mx_E2EIcon_warning {
-webkit-mask-image: url(../../img/e2e/lock-warning.46c0691.svg);
mask-image: url(../../img/e2e/lock-warning.46c0691.svg);
background-color: #ff4b55;
}
/*
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_EntityTile {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
color: #edf3ff;
cursor: pointer;
}
.mx_EntityTile:hover {
background-image: url(../../img/member_chevron.4163a20.png);
background-position: center right 10px;
background-repeat: no-repeat;
padding-right: 30px;
}
.mx_EntityTile .mx_PresenceLabel {
display: none;
}
.mx_EntityTile:not(.mx_EntityTile_noHover):hover .mx_PresenceLabel {
display: block;
}
.mx_EntityTile_invite {
display: table-cell;
vertical-align: middle;
margin-left: 10px;
width: 26px;
}
.mx_EntityTile_avatar, .mx_GroupRoomTile_avatar {
padding-left: 3px;
padding-right: 12px;
padding-top: 4px;
padding-bottom: 4px;
width: 36px;
height: 36px;
position: relative;
}
.mx_EntityTile_power {
position: absolute;
width: 16px;
height: 17px;
top: 0px;
right: 6px;
}
.mx_EntityTile_name, .mx_GroupRoomTile_name {
-ms-flex: 1 1 0px;
flex: 1 1 0;
overflow: hidden;
font-size: 14px;
text-overflow: ellipsis;
white-space: nowrap;
}
.mx_EntityTile_details {
overflow: hidden;
}
.mx_EntityTile:not(.mx_EntityTile_noHover):hover .mx_EntityTile_name {
font-size: 13px;
}
.mx_EntityTile_ellipsis .mx_EntityTile_name {
font-style: italic;
color: #edf3ff;
}
.mx_EntityTile_invitePlaceholder .mx_EntityTile_name {
font-style: italic;
color: #edf3ff;
}
.mx_EntityTile_unavailable .mx_EntityTile_avatar, .mx_EntityTile_unavailable .mx_EntityTile_name, .mx_EntityTile_offline_beenactive .mx_EntityTile_avatar, .mx_EntityTile_offline_beenactive .mx_EntityTile_name,
{
opacity: 0.5;
}
.mx_EntityTile_offline_neveractive .mx_EntityTile_avatar, .mx_EntityTile_offline_neveractive .mx_EntityTile_name,
{
opacity: 0.25;
}
.mx_EntityTile_unknown .mx_EntityTile_avatar, .mx_EntityTile_unknown .mx_EntityTile_name,
{
opacity: 0.25;
}
.mx_EntityTile_subtext {
font-size: 11px;
opacity: 0.5;
overflow: hidden;
white-space: nowrap;
text-overflow: clip;
}
/*
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_EventTile {
6 years ago
max-width: 100%;
clear: both;
padding-top: 18px;
font-size: 14px;
position: relative;
}
6 years ago
.mx_EventTile.mx_EventTile_info {
padding-top: 0px;
}
.mx_EventTile_avatar {
position: absolute;
top: 14px;
left: 8px;
cursor: pointer;
}
.mx_EventTile.mx_EventTile_info .mx_EventTile_avatar {
top: 8px;
left: 65px;
}
.mx_EventTile_continuation {
padding-top: 0px ! important;
}
.mx_EventTile .mx_SenderProfile {
color: #edf3ff;
font-size: 14px;
display: inline-block; /* anti-zalgo, with overflow hidden */
overflow-y: hidden;
cursor: pointer;
padding-left: 65px; /* left gutter */
padding-bottom: 0px;
padding-top: 0px;
margin: 0px;
line-height: 17px;
}
.mx_EventTile .mx_SenderProfile .mx_Flair {
opacity: 0.7;
margin-left: 5px;
display: inline-block;
vertical-align: top;
height: 16px;
overflow: hidden;
}
.mx_EventTile .mx_SenderProfile .mx_Flair img {
vertical-align: -2px;
margin-right: 2px;
border-radius: 8px;
}
.mx_EventTile .mx_MessageTimestamp {
display: block;
visibility: hidden;
white-space: nowrap;
color: #a1b2d1;
font-size: 10px;
left: 0px;
width: 46px; /* 8 + 30 (avatar) + 8 */
text-align: center;
position: absolute;
}
.mx_EventTile_line, .mx_EventTile_reply {
position: relative;
/* ideally should be 100px, but 95px gives us a max thumbnail size of 800x600, which is nice */
margin-right: 110px;
padding-left: 65px; /* left gutter */
padding-top: 4px;
padding-bottom: 2px;
border-radius: 4px;
min-height: 24px;
line-height: 22px;
}
.mx_EventTile_reply {
margin-right: 10px;
}
.mx_EventTile_info .mx_EventTile_line {
padding-left: 83px;
}
/* HACK to override line-height which is already marked important elsewhere */
.mx_EventTile_bigEmoji.mx_EventTile_bigEmoji {
font-size: 48px ! important;
line-height: 48px ! important;
}
/* this is used for the tile for the event which is selected via the URL.
* TODO: ultimately we probably want some transition on here.
*/
.mx_EventTile_selected > .mx_EventTile_line {
border-left: #03b381 5px solid;
padding-left: 60px;
background-color: #111316;
}
.mx_EventTile:hover .mx_EventTile_line, .mx_EventTile.menu .mx_EventTile_line
{
background-color: #111316;
}
.mx_EventTile_searchHighlight {
background-color: #03b381;
color: #ffffff;
border-radius: 5px;
padding-left: 2px;
padding-right: 2px;
cursor: pointer;
}
.mx_EventTile_searchHighlight a {
background-color: #03b381;
color: #ffffff;
}
.mx_EventTile_encrypting {
color: #abddbc ! important;
}
.mx_EventTile_sending {
color: #a1b2d1;
}
.mx_EventTile_sending .mx_UserPill, .mx_EventTile_sending .mx_RoomPill, .mx_EventTile_sending .mx_emojione {
opacity: 0.5;
}
.mx_EventTile_notSent {
color: #f44;
}
.mx_EventTile_redacted .mx_EventTile_line .mx_UnknownBody, .mx_EventTile_redacted .mx_EventTile_reply .mx_UnknownBody {
display: block;
width: 100%;
height: 22px;
width: 250px;
border-radius: 11px;
background: repeating-linear-gradient(
-45deg,
#606060,
#606060 3px,
transparent 3px,
transparent 6px
);
box-shadow: 0px 0px 3px #000000 inset;
}
.mx_EventTile_highlight, .mx_EventTile_highlight .markdown-body
{
color: #ff4b55;
}
.mx_EventTile_contextual {
opacity: 0.4;
}
.mx_EventTile_msgOption {
float: right;
text-align: right;
position: relative;
width: 90px;
/* Hack to stop the height of this pushing the messages apart.
Replaces margin-top: -6px. This interacts better with a read
marker being in between. Content overflows. */
height: 1px;
margin-right: 10px;
}
.mx_EventTile_msgOption a {
text-decoration: none;
}
.mx_EventTile_last > div > a > .mx_MessageTimestamp, .mx_EventTile:hover > div > a > .mx_MessageTimestamp, .mx_EventTile.menu > div > a > .mx_MessageTimestamp {
visibility: visible;
}
.mx_MessagePanel_alwaysShowTimestamps .mx_MessageTimestamp {
visibility: visible;
}
.mx_EventTile_selected > div > a > .mx_MessageTimestamp {
left: 3px;
width: auto;
}
.mx_EventTile_editButton {
position: absolute;
display: inline-block;
visibility: hidden;
cursor: pointer;
top: 6px;
right: 6px;
width: 19px;
height: 19px;
background-image: url(../../img/icon_context_message.b40b45c.svg);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.mx_EventTile:hover .mx_EventTile_editButton, .mx_EventTile.menu .mx_EventTile_editButton {
visibility: visible;
}
.mx_EventTile_readAvatars {
position: relative;
display: inline-block;
width: 14px;
height: 14px;
top: 29px;
}
.mx_EventTile_continuation .mx_EventTile_readAvatars, .mx_EventTile_info .mx_EventTile_readAvatars, .mx_EventTile_emote .mx_EventTile_readAvatars {
top: 7px;
6 years ago
}
6 years ago
.mx_EventTile_readAvatars .mx_BaseAvatar {
6 years ago
position: absolute;
6 years ago
display: inline-block;
6 years ago
}
6 years ago
.mx_EventTile_readAvatarRemainder {
color: #a1b2d1;
font-size: 11px;
position: absolute;
6 years ago
}
6 years ago
/* all the overflow-y: hidden; are to trap Zalgos -
but they introduce an implicit overflow-x: auto.
so make that explicitly hidden too to avoid random
horizontal scrollbars occasionally appearing, like in
https://github.com/vector-im/vector-web/issues/1154
*/
.mx_EventTile_content {
display: block;
overflow-y: hidden;
overflow-x: hidden;
margin-right: 34px;
6 years ago
}
6 years ago
/* De-zalgoing */
.mx_EventTile_body {
6 years ago
overflow-y: hidden;
6 years ago
}
/* End to end encryption stuff */
.mx_EventTile:hover .mx_EventTile_e2eIcon {
opacity: 1;
}
.mx_EventTile_e2eIcon {
display: block;
position: absolute;
top: 8px;
left: 46px;
width: 15px;
height: 15px;
6 years ago
cursor: pointer;
6 years ago
-webkit-mask-size: 14px;
mask-size: 14px;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 0;
mask-position: 0;
opacity: 0.2;
}
.mx_EventTile_e2eIcon_undecryptable, .mx_EventTile_e2eIcon_unverified {
-webkit-mask-image: url(../../img/e2e/warning.a0cb4f2.svg);
mask-image: url(../../img/e2e/warning.a0cb4f2.svg);
background-color: #ff4b55;
}
.mx_EventTile_e2eIcon_unencrypted {
-webkit-mask-image: url(../../img/e2e/warning.a0cb4f2.svg);
mask-image: url(../../img/e2e/warning.a0cb4f2.svg);
background-color: #c9ced6;
}
.mx_EventTile_e2eIcon_hidden {
display: none;
}
/* always override hidden attribute for blocked and warning */
.mx_EventTile_e2eIcon_hidden[src*="img/e2e-blocked.svg"], .mx_EventTile_e2eIcon_hidden[src*="img/e2e-warning.svg"] {
display: block;
}
.mx_EventTile_keyRequestInfo {
font-size: 12px;
6 years ago
}
6 years ago
.mx_EventTile_keyRequestInfo_text {
6 years ago
opacity: 0.5;
}
6 years ago
.mx_EventTile_keyRequestInfo_text a {
color: #edf3ff;
text-decoration: underline;
cursor: pointer;
6 years ago
}
6 years ago
.mx_EventTile_keyRequestInfo_tooltip_contents p {
text-align: auto;
margin-left: 3px;
margin-right: 3px;
6 years ago
}
6 years ago
.mx_EventTile_keyRequestInfo_tooltip_contents p:first-child {
margin-top: 0px;
}
.mx_EventTile_keyRequestInfo_tooltip_contents p:last-child {
margin-bottom: 0px;
}
.mx_EventTile_12hr .mx_EventTile_e2eIcon {
padding-left: 5px;
}
.mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line, .mx_EventTile:hover.mx_EventTile_unverified .mx_EventTile_line {
padding-left: 60px;
}
.mx_EventTile_selected.mx_EventTile_info .mx_EventTile_line, .mx_EventTile:hover.mx_EventTile_verified.mx_EventTile_info .mx_EventTile_line, .mx_EventTile:hover.mx_EventTile_unverified.mx_EventTile_info .mx_EventTile_line {
padding-left: 78px;
}
.mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line {
border-left: #76cfa5 5px solid;
}
.mx_EventTile:hover.mx_EventTile_unverified .mx_EventTile_line {
border-left: #e8bf37 5px solid;
}
.mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line > a > .mx_MessageTimestamp, .mx_EventTile:hover.mx_EventTile_unverified .mx_EventTile_line > a > .mx_MessageTimestamp {
left: 3px;
width: auto;
}
/*
.mx_EventTile_verified .mx_EventTile_e2eIcon {
display: none;
}
*/
.mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line > .mx_EventTile_e2eIcon, .mx_EventTile:hover.mx_EventTile_unverified .mx_EventTile_line > .mx_EventTile_e2eIcon {
6 years ago
display: block;
6 years ago
left: 41px;
}
/* Various markdown overrides */
.mx_EventTile_content .markdown-body {
font-family: inherit ! important;
white-space: normal ! important;
line-height: inherit ! important;
color: inherit;
font-size: 14px;
}
/* have to use overlay rather than auto otherwise Linux and Windows
Chrome gets very confused about vertical spacing:
https://github.com/vector-im/vector-web/issues/754
*/
.mx_EventTile_content .markdown-body pre {
overflow-x: overlay;
overflow-y: visible;
max-height: 30vh;
}
.mx_EventTile_content .markdown-body code {
background-color: #f8f8f8;
}
.mx_EventTile_content .markdown-body pre, .mx_EventTile_content .markdown-body code {
color: #333;
}
.mx_EventTile_pre_container {
position: relative;
}
.mx_EventTile_copyButton {
position: absolute;
display: inline-block;
6 years ago
visibility: hidden;
6 years ago
cursor: pointer;
top: 6px;
right: 6px;
width: 19px;
height: 19px;
background-image: url(../../img/icon_copy_message.f2eab28.svg);
}
.mx_EventTile_body pre {
border: 1px solid transparent;
}
.mx_EventTile:hover .mx_EventTile_body pre
{
border: 1px solid #e5e5e5;
}
.mx_EventTile_body .mx_EventTile_pre_container:hover .mx_EventTile_copyButton
{
visibility: visible;
}
.mx_EventTile_content .markdown-body h1, .mx_EventTile_content .markdown-body h2, .mx_EventTile_content .markdown-body h3, .mx_EventTile_content .markdown-body h4, .mx_EventTile_content .markdown-body h5, .mx_EventTile_content .markdown-body h6
{
font-family: inherit ! important;
color: inherit;
}
/* Make h1 and h2 the same size as h3. */
.mx_EventTile_content .markdown-body h1, .mx_EventTile_content .markdown-body h2
{
font-size: 1.5em;
border-bottom: none ! important;
}
.mx_EventTile_content .markdown-body a {
color: #238CF5;
text-decoration: underline;
}
.mx_EventTile_content .markdown-body .hljs {
display: inline ! important;
}
/*
// actually, removing the Italic TTF provides
// better results seemingly
// compensate for Nunito italics being terrible
// https://github.com/google/fonts/issues/1726
.mx_EventTile_content .markdown-body em {
transform: skewX(-14deg);
display: inline-block;
}
*/
/* end of overrides */
.mx_MatrixChat_useCompactLayout .mx_EventTile {
padding-top: 4px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_info {
padding-top: 0px;
font-size: 13px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_info .mx_EventTile_line, .mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_info .mx_EventTile_reply {
line-height: 20px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_info .mx_EventTile_avatar {
top: 4px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile .mx_SenderProfile {
font-size: 13px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_emote {
padding-top: 8px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_emote .mx_EventTile_avatar {
top: 2px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_emote .mx_EventTile_line, .mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_emote .mx_EventTile_reply {
padding-top: 0px;
padding-bottom: 1px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_emote.mx_EventTile_continuation {
padding-top: 0;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_emote.mx_EventTile_continuation .mx_EventTile_line, .mx_MatrixChat_useCompactLayout .mx_EventTile.mx_EventTile_emote.mx_EventTile_continuation .mx_EventTile_reply {
padding-top: 0px;
padding-bottom: 0px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile_line, .mx_MatrixChat_useCompactLayout .mx_EventTile_reply {
padding-top: 0px;
padding-bottom: 0px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile_avatar {
top: 2px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile_e2eIcon {
top: 3px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile_editButton {
top: 3px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile_readAvatars {
top: 27px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile_continuation .mx_EventTile_readAvatars, .mx_MatrixChat_useCompactLayout .mx_EventTile_emote .mx_EventTile_readAvatars {
top: 5px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile_info .mx_EventTile_readAvatars {
top: 4px;
}
.mx_MatrixChat_useCompactLayout .mx_RoomView_MessageList h2 {
margin-top: 6px;
}
.mx_MatrixChat_useCompactLayout .mx_EventTile_content .markdown-body p, .mx_MatrixChat_useCompactLayout .mx_EventTile_content .markdown-body ul, .mx_MatrixChat_useCompactLayout .mx_EventTile_content .markdown-body ol, .mx_MatrixChat_useCompactLayout .mx_EventTile_content .markdown-body dl, .mx_MatrixChat_useCompactLayout .mx_EventTile_content .markdown-body blockquote, .mx_MatrixChat_useCompactLayout .mx_EventTile_content .markdown-body pre, .mx_MatrixChat_useCompactLayout .mx_EventTile_content .markdown-body table {
margin-bottom: 4px;
}
/*
Copyright 2019 New Vector 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.
*/
@charset "utf-8";
.mx_JumpToBottomButton {
z-index: 1000;
6 years ago
position: absolute;
6 years ago
bottom: 12px;
right: 24px;
width: 38px;
height: 50px;
text-align: center;
6 years ago
}
6 years ago
.mx_JumpToBottomButton_badge {
6 years ago
position: relative;
6 years ago
top: -12px;
border-radius: 16px;
font-weight: bold;
font-size: 12px;
line-height: 14px;
text-align: center;
display: inline-block;
padding: 0 4px;
color: #f2f5f8;
background-color: #ff4b55;
6 years ago
}
6 years ago
.mx_JumpToBottomButton_scrollDown {
position: relative;
height: 38px;
border-radius: 19px;
box-sizing: border-box;
background: #181b21;
border: 1.3px solid #a1b2d1;
6 years ago
cursor: pointer;
}
6 years ago
.mx_JumpToBottomButton_scrollDown:before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-mask: url(../../img/icon-jump-to-bottom.ded64cf.svg);
mask: url(../../img/icon-jump-to-bottom.ded64cf.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 9px 14px;
mask-position: 9px 14px;
background: #a1b2d1;
6 years ago
}
6 years ago
/*
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
6 years ago
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
6 years ago
6 years ago
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_LinkPreviewWidget {
margin-top: 15px;
margin-right: 15px;
margin-bottom: 15px;
display: -ms-flexbox;
display: flex;
border-left: 4px solid #ddd;
color: #888;
6 years ago
}
6 years ago
.mx_LinkPreviewWidget_image {
-ms-flex: 0 0 100px;
flex: 0 0 100px;
margin-left: 15px;
text-align: center;
cursor: pointer;
6 years ago
}
6 years ago
.mx_LinkPreviewWidget_caption {
margin-left: 15px;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
6 years ago
}
6 years ago
.mx_LinkPreviewWidget_title {
display: inline;
font-weight: bold;
white-space: normal;
6 years ago
}
6 years ago
.mx_LinkPreviewWidget_siteName {
display: inline;
6 years ago
}
6 years ago
.mx_LinkPreviewWidget_description {
margin-top: 8px;
white-space: normal;
word-wrap: break-word;
}
.mx_LinkPreviewWidget_cancel {
6 years ago
visibility: hidden;
cursor: pointer;
6 years ago
-ms-flex: 0 0 40px;
flex: 0 0 40px;
6 years ago
}
6 years ago
.mx_LinkPreviewWidget:hover .mx_LinkPreviewWidget_cancel {
6 years ago
visibility: visible;
}
6 years ago
.mx_MatrixChat_useCompactLayout .mx_LinkPreviewWidget {
margin-top: 6px;
margin-bottom: 6px;
}
/*
Copyright 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_MemberDeviceInfo {
display: -ms-flexbox;
display: flex;
padding-bottom: 10px;
-ms-flex-align: start;
align-items: start;
6 years ago
}
6 years ago
.mx_MemberDeviceInfo_icon {
margin-top: 4px;
width: 12px;
height: 12px;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
}
.mx_MemberDeviceInfo_icon_blacklisted {
-webkit-mask-image: url(../../img/e2e/blacklisted.74ba193.svg);
mask-image: url(../../img/e2e/blacklisted.74ba193.svg);
background-color: #ff4b55;
}
.mx_MemberDeviceInfo_icon_verified {
-webkit-mask-image: url(../../img/e2e/verified.d53b45d.svg);
mask-image: url(../../img/e2e/verified.d53b45d.svg);
background-color: #03b381;
}
.mx_MemberDeviceInfo_icon_unverified {
-webkit-mask-image: url(../../img/e2e/warning.a0cb4f2.svg);
mask-image: url(../../img/e2e/warning.a0cb4f2.svg);
background-color: #ff4b55;
}
.mx_MemberDeviceInfo > .mx_DeviceVerifyButtons {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
-ms-flex-align: stretch;
align-items: stretch;
6 years ago
}
6 years ago
.mx_MemberDeviceInfo_textButton {
/* align images in buttons (eg spinners) */
vertical-align: middle;
border: 0px;
border-radius: 4px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
color: white;
background-color: #03b381;
width: auto;
padding: 7px;
padding-left: 1.5em;
padding-right: 1.5em;
cursor: pointer;
6 years ago
display: inline-block;
6 years ago
outline: none;
font-size: 15px;
padding: 0px 1.5em 0px 1.5em;
margin: 2px;
-ms-flex: 1;
flex: 1;
6 years ago
}
6 years ago
.mx_MemberDeviceInfo_textButton:hover {
6 years ago
}
6 years ago
.mx_MemberDeviceInfo_deviceId {
font-size: 13px;
6 years ago
}
6 years ago
.mx_MemberDeviceInfo_deviceInfo {
margin: 0 5px 5px 8px;
-ms-flex: 1;
flex: 1;
6 years ago
}
6 years ago
/* "Unblacklist" is too long for a regular button: make it wider and
reduce the padding. */
.mx_EncryptedEventDialog .mx_MemberDeviceInfo_blacklist, .mx_EncryptedEventDialog .mx_MemberDeviceInfo_unblacklist {
padding-left: 1em;
padding-right: 1em;
6 years ago
}
6 years ago
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_verified, .mx_MemberDeviceInfo div.mx_MemberDeviceInfo_unverified, .mx_MemberDeviceInfo div.mx_MemberDeviceInfo_blacklisted {
float: right;
padding-left: 1em;
6 years ago
}
6 years ago
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_verified {
color: #76cfa5;
6 years ago
}
6 years ago
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_unverified {
color: #e8bf37;
6 years ago
}
6 years ago
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_blacklisted {
color: #ba6363;
6 years ago
}
6 years ago
/*
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_MemberInfo {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex: 1;
flex: 1;
overflow-y: auto;
6 years ago
}
6 years ago
.mx_MemberInfo_name {
-ms-flex-align: center;
align-items: center;
display: -ms-flexbox;
display: flex;
6 years ago
}
6 years ago
.mx_MemberInfo_name > .mx_E2EIcon {
margin-right: 0;
6 years ago
}
6 years ago
.mx_MemberInfo_cancel {
height: 16px;
width: 16px;
padding: 10px 0 10px 10px;
cursor: pointer;
-webkit-mask-image: url(../../img/minimise.871d2de.svg);
mask-image: url(../../img/minimise.871d2de.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 16px center;
mask-position: 16px center;
background-color: #a1b2d1;
}
.mx_MemberInfo_name h2 {
-ms-flex: 1;
flex: 1;
6 years ago
}
6 years ago
.mx_MemberInfo h2 {
font-size: 18px;
font-weight: 600;
margin: 16px 0 16px 15px;
6 years ago
}
6 years ago
.mx_MemberInfo_container {
margin: 0 16px 16px 16px;
6 years ago
}
6 years ago
.mx_MemberInfo .mx_RoomTile_nameContainer {
width: 154px;
6 years ago
}
6 years ago
.mx_MemberInfo .mx_RoomTile_badge {
display: none;
6 years ago
}
6 years ago
.mx_MemberInfo .mx_RoomTile_name {
width: 160px;
6 years ago
}
6 years ago
.mx_MemberInfo_avatar {
background: #15171b;
margin-bottom: 16px;
6 years ago
}
6 years ago
.mx_MemberInfo_avatar > img {
height: auto;
width: 100%;
max-height: 30vh;
-o-object-fit: contain;
object-fit: contain;
6 years ago
display: block;
}
6 years ago
.mx_MemberInfo_avatar .mx_BaseAvatar {
6 years ago
}
6 years ago
.mx_MemberInfo_avatar .mx_BaseAvatar.mx_BaseAvatar_image {
cursor: zoom-in;
6 years ago
}
6 years ago
.mx_MemberInfo_profile {
margin-bottom: 16px;
6 years ago
}
6 years ago
.mx_MemberInfo h3 {
text-transform: uppercase;
color: #61708b;
font-weight: bold;
font-size: 12px;
margin: 4px 0;
}
.mx_MemberInfo_profileField {
font-size: 15px;
6 years ago
position: relative;
}
6 years ago
.mx_MemberInfo_buttons {
margin-bottom: 16px;
}
.mx_MemberInfo_field {
6 years ago
cursor: pointer;
6 years ago
font-size: 15px;
color: #edf3ff;
margin-left: 8px;
line-height: 23px;
6 years ago
}
6 years ago
.mx_MemberInfo_createRoom {
cursor: pointer;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
padding: 0 8px;
6 years ago
}
6 years ago
.mx_MemberInfo_createRoom_label {
width: initial ! important;
cursor: pointer;
6 years ago
}
6 years ago
.mx_MemberInfo label {
font-size: 13px;
6 years ago
}
6 years ago
.mx_MemberInfo label .mx_MemberInfo_label_text {
display: inline-block;
max-width: 180px;
vertical-align: text-top;
6 years ago
}
6 years ago
.mx_MemberInfo input[type="radio"] {
vertical-align: -2px;
margin-right: 5px;
margin-left: 8px;
6 years ago
}
6 years ago
.mx_MemberInfo_statusMessage {
font-size: 11px;
opacity: 0.5;
overflow: hidden;
white-space: nowrap;
text-overflow: clip;
6 years ago
}
6 years ago
.mx_MemberInfo .mx_MemberInfo_scrollContainer {
-ms-flex: 1;
flex: 1;
6 years ago
}
6 years ago
/*
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_MemberList, .mx_GroupMemberList, .mx_GroupRoomList {
-ms-flex: 1;
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
}
.mx_MemberList .mx_Spinner, .mx_GroupMemberList .mx_Spinner, .mx_GroupRoomList .mx_Spinner {
-ms-flex: 1 0 auto;
flex: 1 0 auto;
6 years ago
}
6 years ago
.mx_MemberList h2, .mx_GroupMemberList h2, .mx_GroupRoomList h2 {
text-transform: uppercase;
color: #edf3ff;
font-weight: 600;
font-size: 13px;
padding-left: 3px;
padding-right: 12px;
margin-top: 8px;
margin-bottom: 4px;
6 years ago
}
6 years ago
.mx_MemberList_chevron {
position: absolute;
right: 35px;
margin-top: -15px;
}
.mx_MemberList_border {
overflow-y: auto;
-ms-flex-order: 1;
order: 1;
-ms-flex: 1 1 0px;
flex: 1 1 0px;
}
.mx_MemberList_query, .mx_GroupMemberList_query, .mx_GroupRoomList_query {
-ms-flex: 1 1 0px;
flex: 1 1 0;
}
.mx_MemberList_wrapper {
padding: 10px;
}
.mx_MemberList_invite, .mx_RightPanel_invite {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
position: relative;
background-color: #03b381;
border-radius: 4px;
padding: 8px;
margin: 9px;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
color: white;
font-weight: 600;
}
.mx_MemberList_invite .mx_RightPanel_icon, .mx_RightPanel_invite .mx_RightPanel_icon {
padding-right: 5px;
padding-top: 2px;
6 years ago
}
6 years ago
.mx_MemberList_invite span {
background-image: url(../../img/feather-customised/user-add.f517c01.svg);
background-repeat: no-repeat;
background-position: center left;
padding-left: 25px;
}
6 years ago
/*
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
Copyright 2018 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_MessageComposer_wrapper {
vertical-align: middle;
margin: auto;
border-top: 1px solid #000000;
position: relative;
padding-left: 84px;
}
.mx_MessageComposer_wrapper.mx_MessageComposer_hasE2EIcon {
padding-left: 109px;
}
.mx_MessageComposer_replaced_wrapper {
margin-left: auto;
margin-right: auto;
}
.mx_MessageComposer_replaced_valign {
height: 60px;
display: table-cell;
vertical-align: middle;
}
.mx_MessageComposer_roomReplaced_icon {
float: left;
margin-right: 20px;
margin-top: 5px;
width: 31px;
height: 31px;
}
.mx_MessageComposer_roomReplaced_header {
font-weight: bold;
}
.mx_MessageComposer_autocomplete_wrapper {
position: relative;
height: 0;
}
.mx_MessageComposer_row {
6 years ago
display: -ms-flexbox;
display: flex;
6 years ago
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-align: center;
align-items: center;
width: 100%;
}
.mx_MessageComposer .mx_MessageComposer_avatar {
position: absolute;
left: 27px;
}
.mx_MessageComposer .mx_MessageComposer_avatar .mx_BaseAvatar {
display: block;
}
.mx_MessageComposer_composecontrols {
width: 100%;
}
.mx_MessageComposer_e2eIcon.mx_E2EIcon {
position: absolute;
left: 60px;
background-color: #c9ced6;
}
.mx_MessageComposer_noperm_error {
width: 100%;
height: 60px;
font-style: italic;
6 years ago
color: #888;
6 years ago
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
6 years ago
}
6 years ago
.mx_MessageComposer_input_wrapper {
-ms-flex: 1;
flex: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
cursor: text;
}
.mx_MessageComposer_input {
-ms-flex: 1;
flex: 1;
vertical-align: middle;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
min-height: 60px;
-ms-flex-pack: start;
justify-content: start;
-ms-flex-align: start;
align-items: flex-start;
font-size: 14px;
margin-right: 6px;
}
.mx_MessageComposer_editor {
width: 100%;
max-height: 120px;
min-height: 19px;
overflow-y: auto;
overflow-x: hidden;
word-break: break-word;
}
.mx_MessageComposer_editor > :first-child {
margin-top: 0 ! important;
}
.mx_MessageComposer_editor > :last-child {
margin-bottom: 0 ! important;
}
@keyframes visualbell
{
from { background-color: #faa }
to { background-color: #181b21 }
}
.mx_MessageComposer_input_error {
animation: 0.2s visualbell;
}
.mx_MessageComposer_input blockquote {
color: #777;
margin: 0 0 16px;
padding: 0 15px;
border-left: 4px solid #ddd;
}
.mx_MessageComposer_input pre {
background-color: rgba(0, 0, 0, 0.04);
border-radius: 3px;
padding: 10px;
}
.mx_MessageComposer_input textarea {
display: block;
width: 100%;
padding: 0px;
margin-top: 6px;
margin-bottom: 6px;
border: 0px;
resize: none;
outline: none;
box-shadow: none;
color: #edf3ff;
background-color: #181b21;
font-size: 14px;
max-height: 120px;
overflow: auto;
/* needed for FF */
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
}
/* hack for FF as vertical alignment of custom placeholder text is broken */
.mx_MessageComposer_input textarea::-moz-placeholder {
line-height: 100%;
color: #03b381;
opacity: 1.0;
}
.mx_MessageComposer_input textarea::-webkit-input-placeholder {
color: #03b381;
}
.mx_MessageComposer_button {
margin-right: 12px;
6 years ago
cursor: pointer;
6 years ago
padding-top: 4px;
height: 20px;
width: 20px;
background-color: #a1b2d1;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: contain;
mask-size: contain;
-webkit-mask-position: center;
mask-position: center;
}
.mx_MessageComposer_upload {
-webkit-mask-image: url(../../img/feather-customised/paperclip.a368eb9.svg);
mask-image: url(../../img/feather-customised/paperclip.a368eb9.svg);
}
.mx_MessageComposer_hangup {
-webkit-mask-image: url(../../img/hangup.a9def68.svg);
mask-image: url(../../img/hangup.a9def68.svg);
}
.mx_MessageComposer_voicecall {
-webkit-mask-image: url(../../img/feather-customised/phone.87241fa.svg);
mask-image: url(../../img/feather-customised/phone.87241fa.svg);
}
.mx_MessageComposer_videocall {
-webkit-mask-image: url(../../img/feather-customised/video.02dbf40.svg);
mask-image: url(../../img/feather-customised/video.02dbf40.svg);
}
.mx_MessageComposer_stickers {
-webkit-mask-image: url(../../img/feather-customised/face.34d1316.svg);
mask-image: url(../../img/feather-customised/face.34d1316.svg);
6 years ago
}
6 years ago
.mx_MessageComposer_formatting {
cursor: pointer;
margin: 0 11px;
width: 24px;
height: 18px;
6 years ago
}
6 years ago
.mx_MessageComposer_formatbar_wrapper {
width: 100%;
background-color: #22262e;
box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.08);
6 years ago
}
6 years ago
.mx_MessageComposer_formatbar {
margin: auto;
display: -ms-flexbox;
display: flex;
height: 30px;
box-sizing: border-box;
padding-left: 62px;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-align: center;
align-items: center;
font-size: 10px;
color: #888;
6 years ago
}
6 years ago
.mx_MessageComposer_formatbar * {
margin-right: 4px;
6 years ago
}
6 years ago
.mx_MessageComposer_format_button, .mx_MessageComposer_formatbar_cancel, .mx_MessageComposer_formatbar_markdown {
6 years ago
cursor: pointer;
}
6 years ago
.mx_MessageComposer_formatbar_cancel {
margin-right: 22px;
}
.mx_MessageComposer_formatbar_markdown {
height: 17px;
width: 30px;
margin-right: 64px;
6 years ago
}
6 years ago
.mx_MessageComposer_input_markdownIndicator {
height: 10px;
width: 12px;
padding: 4px 4px 4px 0;
}
.mx_MessageComposer_formatbar_markdown, .mx_MessageComposer_input_markdownIndicator {
cursor: pointer;
-webkit-mask-image: url(../../img/markdown.6905ba8.svg);
mask-image: url(../../img/markdown.6905ba8.svg);
-webkit-mask-size: contain;
mask-size: contain;
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
background-color: #a1b2d1;
}
.mx_MessageComposer_formatbar_markdown.mx_MessageComposer_markdownDisabled, .mx_MessageComposer_input_markdownIndicator.mx_MessageComposer_markdownDisabled {
opacity: 0.2;
}
.mx_MatrixChat_useCompactLayout .mx_MessageComposer_input {
min-height: 50px;
}
.mx_MatrixChat_useCompactLayout .mx_MessageComposer_noperm_error {
height: 50px;
6 years ago
}
/*
6 years ago
Copyright 2017 Travis Ralston
6 years ago
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.
*/
6 years ago
.mx_PinnedEventTile {
min-height: 40px;
margin-bottom: 5px;
width: 100%;
border-radius: 5px;
6 years ago
}
6 years ago
.mx_PinnedEventTile:hover {
background-color: #111316;
6 years ago
}
6 years ago
.mx_PinnedEventTile .mx_PinnedEventTile_sender, .mx_PinnedEventTile .mx_PinnedEventTile_timestamp {
color: #868686;
font-size: 0.8em;
vertical-align: top;
6 years ago
display: inline-block;
6 years ago
padding-bottom: 3px;
6 years ago
}
6 years ago
.mx_PinnedEventTile .mx_PinnedEventTile_timestamp {
padding-left: 15px;
display: none;
6 years ago
}
6 years ago
.mx_PinnedEventTile .mx_PinnedEventTile_senderAvatar .mx_BaseAvatar {
float: left;
margin-right: 10px;
6 years ago
}
6 years ago
.mx_PinnedEventTile:hover .mx_PinnedEventTile_timestamp {
display: inline-block;
6 years ago
}
6 years ago
.mx_PinnedEventTile:hover .mx_PinnedEventTile_actions {
display: block;
6 years ago
}
6 years ago
.mx_PinnedEventTile_actions {
6 years ago
float: right;
6 years ago
margin-right: 10px;
display: none;
6 years ago
}
6 years ago
.mx_PinnedEventTile_unpinButton {
display: inline-block;
cursor: pointer;
margin-left: 10px;
6 years ago
}
6 years ago
.mx_PinnedEventTile_gotoButton {
display: inline-block;
font-size: 0.7em;
6 years ago
}
6 years ago
.mx_PinnedEventTile_message {
margin-left: 50px;
position: relative;
top: 0;
left: 0;
6 years ago
}
/*
6 years ago
Copyright 2017 Travis Ralston
6 years ago
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.
*/
6 years ago
.mx_PinnedEventsPanel {
border-top: 1px solid #000000;
6 years ago
}
6 years ago
.mx_PinnedEventsPanel_body {
max-height: 300px;
overflow-y: auto;
padding-bottom: 15px;
6 years ago
}
6 years ago
.mx_PinnedEventsPanel_header {
margin: 0;
padding-top: 8px;
padding-bottom: 15px;
6 years ago
}
6 years ago
.mx_PinnedEventsPanel_cancel {
margin: 12px;
6 years ago
float: right;
6 years ago
display: inline-block;
6 years ago
}
6 years ago
/*
Copyright 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_PresenceLabel {
font-size: 11px;
opacity: 0.5;
6 years ago
}
6 years ago
/*
Copyright 2018 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_ReplyPreview {
position: absolute;
bottom: 0;
z-index: 1000;
width: 100%;
border: 1px solid #000000;
background: #181b21;
border-bottom: none;
border-radius: 4px 4px 0 0;
max-height: 50vh;
overflow: auto
6 years ago
}
6 years ago
.mx_ReplyPreview_section {
border-bottom: 1px solid #000000;
6 years ago
}
6 years ago
.mx_ReplyPreview_header {
margin: 12px;
color: #edf3ff;
font-weight: 400;
opacity: 0.4;
6 years ago
}
6 years ago
.mx_ReplyPreview_title {
float: left;
6 years ago
}
6 years ago
.mx_ReplyPreview_cancel {
float: right;
6 years ago
cursor: pointer;
}
6 years ago
.mx_ReplyPreview_clear {
clear: both;
6 years ago
}
6 years ago
/*
Copyright 2019 New Vector 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_RoomBreadcrumbs {
overflow-x: auto;
position: relative;
height: 32px;
margin: 8px;
margin-bottom: 0;
overflow-x: hidden;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
}
6 years ago
.mx_RoomBreadcrumbs > * {
margin-left: 4px;
}
.mx_RoomBreadcrumbs::after {
content: "";
position: absolute;
width: 15px;
top: 0;
right: 0;
height: 100%;
background: linear-gradient(to right, rgba(34, 38, 46, 0), rgba(34, 38, 46, 1));
}
.mx_RoomBreadcrumbs .mx_RoomBreadcrumbs_animate {
margin-left: 0;
transition: transform 0.3s, width 0.3s;
width: 32px;
transform: scale(1);
}
.mx_RoomBreadcrumbs .mx_RoomBreadcrumbs_preAnimate {
width: 0;
transform: scale(0);
}
6 years ago
/*
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.
*/
6 years ago
.mx_RoomDropTarget_container {
background-color: #f2f5f8;
padding-left: 18px;
padding-right: 18px;
padding-top: 8px;
padding-bottom: 7px;
6 years ago
}
6 years ago
.collapsed .mx_RoomDropTarget_container {
padding-right: 10px;
padding-left: 10px;
6 years ago
}
6 years ago
.mx_RoomDropTarget {
font-size: 13px;
padding-top: 5px;
padding-bottom: 5px;
border: 1px dashed #03b381;
color: #edf3ff;
background-color: rgba(255,255,255,0.5);
border-radius: 4px;
6 years ago
}
6 years ago
.mx_RoomDropTarget_label {
position: relative;
margin-top: 3px;
line-height: 21px;
z-index: 1;
text-align: center;
6 years ago
}
6 years ago
.collapsed .mx_RoomDropTarget_avatar {
float: none;
6 years ago
}
6 years ago
.collapsed .mx_RoomDropTarget_label {
display: none;
6 years ago
}
/*
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.
*/
6 years ago
.mx_RoomHeader {
-ms-flex: 0 0 52px;
flex: 0 0 52px;
border-bottom: 1px solid #000000;
}
.mx_RoomHeader_wrapper {
6 years ago
margin: auto;
6 years ago
height: 52px;
-ms-flex-align: center;
align-items: center;
display: -ms-flexbox;
display: flex;
align-items: center;
min-width: 0;
padding: 0 10px 0 19px;
6 years ago
}
6 years ago
.mx_RoomHeader_spinner {
-ms-flex: 1;
flex: 1;
height: 36px;
padding-left: 12px;
padding-right: 12px;
6 years ago
}
6 years ago
.mx_RoomHeader_textButton {
/* align images in buttons (eg spinners) */
6 years ago
vertical-align: middle;
6 years ago
border: 0px;
border-radius: 4px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
color: white;
background-color: #03b381;
width: auto;
padding: 7px;
padding-left: 1.5em;
padding-right: 1.5em;
cursor: pointer;
display: inline-block;
outline: none;
margin-right: 8px;
margin-top: -5px;
6 years ago
}
6 years ago
.mx_RoomHeader_textButton:hover {
6 years ago
}
6 years ago
.mx_RoomHeader_textButton_danger {
background-color: #ff4b55;
6 years ago
}
6 years ago
.mx_RoomHeader_cancelButton {
cursor: pointer;
padding-left: 12px;
padding-right: 12px;
6 years ago
}
6 years ago
.mx_RoomHeader_buttons {
6 years ago
display: -ms-flexbox;
display: flex;
6 years ago
background-color: #181b21;
padding-right: 5px;
}
.mx_RoomHeader_info {
display: -ms-flexbox;
display: flex;
-ms-flex: 1;
flex: 1;
-ms-flex-align: center;
align-items: center;
6 years ago
}
6 years ago
.mx_RoomHeader_simpleHeader {
line-height: 52px;
color: #edf3ff;
font-size: 18px;
font-weight: 600;
overflow: hidden;
margin-left: 63px;
text-overflow: ellipsis;
6 years ago
width: 100%;
}
6 years ago
.mx_RoomHeader_simpleHeader .mx_RoomHeader_cancelButton {
float: right;
6 years ago
}
6 years ago
.mx_RoomHeader_simpleHeader .mx_RoomHeader_icon {
margin-left: 14px;
margin-right: 24px;
vertical-align: -4px;
6 years ago
}
6 years ago
.mx_RoomHeader_name {
-ms-flex: 0 1 auto;
flex: 0 1 auto;
overflow: hidden;
color: #edf3ff;
font-weight: 600;
font-size: 18px;
margin: 0 7px;
border-bottom: 1px solid transparent;
6 years ago
display: -ms-flexbox;
display: flex;
}
6 years ago
.mx_RoomHeader_nametext {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
6 years ago
}
6 years ago
.mx_RoomHeader_settingsHint {
color: #a2a2a2 ! important;
6 years ago
}
6 years ago
.mx_RoomHeader_searchStatus {
font-weight: normal;
opacity: 0.6;
6 years ago
}
6 years ago
.mx_RoomHeader_name, .mx_RoomHeader_avatar, .mx_RoomHeader_avatarPicker, .mx_RoomHeader_avatarPicker_edit, .mx_RoomHeader_avatarPicker_remove {
cursor: pointer;
6 years ago
}
6 years ago
.mx_RoomHeader_avatarPicker_remove {
position: absolute;
top: -11px;
right: -9px;
6 years ago
}
6 years ago
.mx_RoomHeader_name:hover div:not(.mx_RoomHeader_editable) {
color: #03b381;
6 years ago
}
6 years ago
.mx_RoomHeader_placeholder {
color: #a2a2a2 ! important;
6 years ago
}
6 years ago
.mx_RoomHeader_editable {
border-bottom: 1px solid #c7c7c7 ! important;
min-width: 150px;
cursor: text;
6 years ago
}
6 years ago
.mx_RoomHeader_editable:focus {
border-bottom: 1px solid #03b381 ! important;
6 years ago
outline: none;
box-shadow: none;
}
6 years ago
.mx_RoomHeader_topic {
-ms-flex: 1;
flex: 1;
color: #a1b2d1;
font-weight: 400;
font-size: 13px;
margin: 0 7px;
margin-top: 4px;
overflow: hidden;
text-overflow: ellipsis;
border-bottom: 1px solid transparent;
line-height: 1.2em;
max-height: 2.4em;
6 years ago
}
6 years ago
.mx_RoomHeader_avatar {
-ms-flex: 0;
flex: 0;
width: 28px;
height: 28px;
margin: 0 7px;
6 years ago
}
6 years ago
.mx_RoomHeader_avatar .mx_BaseAvatar_image {
-o-object-fit: cover;
object-fit: cover;
}
.mx_RoomHeader_avatarPicker {
position: relative;
}
.mx_RoomHeader_avatarPicker_edit {
position: absolute;
left: 16px;
top: 18px;
}
.mx_RoomHeader_avatarPicker_edit > label {
6 years ago
cursor: pointer;
}
6 years ago
.mx_RoomHeader_avatarPicker_edit > input {
display: none;
6 years ago
}
6 years ago
.mx_RoomHeader_button {
margin-left: 10px;
6 years ago
cursor: pointer;
6 years ago
height: 20px;
width: 20px;
background-color: #a1b2d1;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: contain;
mask-size: contain;
}
.mx_RoomHeader_settingsButton {
-webkit-mask-image: url(../../img/feather-customised/settings.cc405e6.svg);
mask-image: url(../../img/feather-customised/settings.cc405e6.svg);
}
.mx_RoomHeader_forgetButton {
-webkit-mask-image: url(../../img/leave.96c4dc4.svg);
mask-image: url(../../img/leave.96c4dc4.svg);
width: 26px;
6 years ago
}
6 years ago
.mx_RoomHeader_searchButton {
-webkit-mask-image: url(../../img/feather-customised/search.28e7db7.svg);
mask-image: url(../../img/feather-customised/search.28e7db7.svg);
6 years ago
}
6 years ago
.mx_RoomHeader_shareButton {
-webkit-mask-image: url(../../img/feather-customised/share.9dc5acb.svg);
mask-image: url(../../img/feather-customised/share.9dc5acb.svg);
6 years ago
}
6 years ago
.mx_RoomHeader_manageIntegsButton {
-webkit-mask-image: url(../../img/feather-customised/grid.9e353ed.svg);
mask-image: url(../../img/feather-customised/grid.9e353ed.svg);
6 years ago
}
6 years ago
.mx_RoomHeader_showPanel {
height: 16px;
6 years ago
}
6 years ago
.mx_RoomHeader_voipButton {
display: table-cell;
6 years ago
}
6 years ago
.mx_RoomHeader_voipButtons {
margin-top: 18px;
6 years ago
}
6 years ago
.mx_RoomHeader_pinnedButton {
position: relative;
-webkit-mask-image: url(../../img/icons-pin.1d9bacf.svg);
mask-image: url(../../img/icons-pin.1d9bacf.svg);
}
.mx_RoomHeader_pinsIndicator {
position: absolute;
right: 0;
bottom: 4px;
width: 8px;
height: 8px;
border-radius: 8px;
background-color: #61708b;
}
.mx_RoomHeader_pinsIndicatorUnread {
background-color: #ff4b55;
6 years ago
}
/*
6 years ago
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
6 years ago
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.
*/
6 years ago
.mx_RoomList {
/* take up remaining space below TopLeftMenu */
-ms-flex: 1;
flex: 1;
min-height: 0;
overflow-y: hidden;
6 years ago
}
6 years ago
.mx_RoomList .mx_ResizeHandle {
position: relative;
6 years ago
}
6 years ago
.mx_SearchBox {
-ms-flex: none;
flex: none;
6 years ago
}
6 years ago
/* hide resize handles next to collapsed / empty sublists */
.mx_RoomList .mx_RoomSubList:not(.mx_RoomSubList_nonEmpty) + .mx_ResizeHandle {
6 years ago
display: none;
}
6 years ago
.mx_RoomList_expandButton {
margin-left: 8px;
cursor: pointer;
padding-left: 12px;
padding-right: 12px;
6 years ago
}
6 years ago
.mx_RoomList_emptySubListTip_container {
padding-left: 18px;
padding-right: 18px;
padding-top: 8px;
padding-bottom: 7px;
6 years ago
}
6 years ago
.mx_RoomList_emptySubListTip {
font-size: 13px;
padding: 5px;
border: 1px dashed #03b381;
color: #edf3ff;
background-color: rgba(255,255,255,0.5);
border-radius: 4px;
line-height: 16px;
6 years ago
}
6 years ago
.mx_RoomList_emptySubListTip .mx_RoleButton {
vertical-align: -2px;
6 years ago
}
6 years ago
.mx_RoomList_headerButtons {
position: absolute;
right: 60px;
6 years ago
}
/*
6 years ago
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_RoomPreviewBar {
text-align: center;
height: 176px;
background-color: #111316;
-ms-flex-align: center;
align-items: center;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: center;
justify-content: center;
display: -ms-flexbox;
display: flex;
background-color: #22262e;
-webkit-align-items: center;
6 years ago
}
6 years ago
.mx_RoomPreviewBar_wrapper {
6 years ago
}
6 years ago
.mx_RoomPreviewBar_invite_text {
color: #edf3ff;
6 years ago
}
6 years ago
.mx_RoomPreviewBar_join_text {
color: #ff4b55;
}
.mx_RoomPreviewBar_preview_text {
margin-top: 25px;
color: #a2a2a2;
}
.mx_RoomPreviewBar_join_text a {
text-decoration: underline;
cursor: pointer;
}
.mx_RoomPreviewBar_warning {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
padding: 8px;
}
.mx_RoomPreviewBar_warningIcon {
padding: 12px;
}
.mx_RoomPreviewBar_spinnerIntro {
margin-top: 50px;
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_RoomRecoveryReminder {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
background-color: #22262e;
padding: 20px;
border: 1px solid #000000;
border-bottom: unset;
}
.mx_RoomRecoveryReminder_header {
font-weight: bold;
margin-bottom: 1em;
}
.mx_RoomRecoveryReminder_body {
margin-bottom: 1em;
}
.mx_RoomRecoveryReminder_button {
/* align images in buttons (eg spinners) */
vertical-align: middle;
border: 0px;
border-radius: 4px;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-size: 14px;
color: white;
background-color: #03b381;
width: auto;
padding: 7px;
padding-left: 1.5em;
padding-right: 1.5em;
cursor: pointer;
display: inline-block;
outline: none;
margin: 0 10px;
}
.mx_RoomRecoveryReminder_secondary {
font-size: 90%;
6 years ago
}
/*
6 years ago
Copyright 2015, 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
.mx_RoomTile {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
height: 34px;
margin: 0;
padding: 0 8px 0 10px;
position: relative;
}
.mx_RoomTile_menuButton {
display: none;
-ms-flex: 0 0 16px;
flex: 0 0 16px;
height: 16px;
background-image: url(../../img/icon_context.f8baf8d.svg);
background-repeat: no-repeat;
background-position: center;
}
.mx_LeftPanel_container:not(.collapsed) .mx_RoomTile:hover .mx_RoomTile_menuButton, .mx_RoomTile_menuDisplayed .mx_RoomTile_menuButton {
display: block;
}
.mx_RoomTile_tooltip {
display: inline-block;
position: relative;
top: -54px;
left: -12px;
}
.mx_RoomTile_nameContainer {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex: 1;
flex: 1;
vertical-align: middle;
min-width: 0;
}
.mx_RoomTile_labelContainer {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex: 1;
flex: 1;
min-width: 0;
}
.mx_RoomTile_subtext {
display: inline-block;
font-size: 11px;
padding: 0 0 0 7px;
margin: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: clip;
position: relative;
bottom: 4px;
}
.mx_RoomTile_avatar_container {
position: relative;
}
.mx_RoomTile_avatar {
-ms-flex: 0;
flex: 0;
padding: 4px;
width: 24px;
vertical-align: middle;
}
.mx_RoomTile_hasSubtext .mx_RoomTile_avatar {
padding-top: 0;
vertical-align: super;
}
.mx_RoomTile_dm {
display: block;
6 years ago
position: absolute;
bottom: 0;
6 years ago
right: -5px;
z-index: 2;
6 years ago
}
6 years ago
.mx_RoomTile_name {
font-size: 14px;
padding: 0 6px;
color: #a1b2d1;
white-space: nowrap;
overflow-x: hidden;
text-overflow: ellipsis;
6 years ago
}
6 years ago
.collapsed .mx_RoomTile {
margin: 0 2px;
padding: 0 2px;
position: relative;
-ms-flex-pack: center;
justify-content: center;
}
.collapsed .mx_RoomTile_name {
display: none;
}
.collapsed .mx_RoomTile_badge {
position: absolute;
right: 6px;
top: 0px;
border-radius: 16px;
z-index: 3;
border: 0.18em solid #f2f5f8;
}
.collapsed .mx_RoomTile_menuButton {
display: none;
}
.mx_RoomTile_badge {
-ms-flex: 0 1 content;
flex: 0 1 content;
border-radius: 0.8em;
padding: 0 0.4em;
color: #ffffff;
font-weight: 600;
font-size: 12px;
6 years ago
}
6 years ago
.mx_RoomTile_unreadNotify .mx_RoomTile_badge {
background-color: #a1b2d1;
6 years ago
}
6 years ago
.mx_RoomTile_highlight .mx_RoomTile_badge {
background-color: #ff4b55;
6 years ago
}
6 years ago
.mx_RoomTile_unread .mx_RoomTile_name, .mx_RoomTile_highlight .mx_RoomTile_name {
font-weight: 600;
color: #edf3ff;
}
.mx_RoomTile_selected {
border-radius: 4px;
background-color: #343a46;
}
.mx_DNDRoomTile {
transform: none;
transition: transform 0.2s;
}
.mx_DNDRoomTile_dragging {
transform: scale(1.05, 1.05);
}
.mx_RoomTile:focus {
filter: none !important;
background-color: #343a46;
}
.mx_RoomTile_arrow {
position: absolute;
right: 0px;
}
.mx_RoomTile.mx_RoomTile_transparent {
background-color: transparent;
}
.mx_RoomTile.mx_RoomTile_transparent:focus {
background-color: rgba(0, 0, 0, 0.1);
}
.mx_GroupInviteTile .mx_RoomTile_name {
-ms-flex: 1;
flex: 1;
6 years ago
}
/*
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.
*/
6 years ago
.mx_RoomTooltip_chevron {
position: absolute;
left: -8px;
top: 4px;
width: 0;
height: 0;
border-top: 8px solid transparent;
border-right: 8px solid #22262e;
border-bottom: 8px solid transparent;
6 years ago
}
6 years ago
.mx_RoomTooltip_chevron:after {
content:'';
width: 0;
height: 0;
border-top: 7px solid transparent;
border-right: 7px solid #181b21;
border-bottom: 7px solid transparent;
position:absolute;
top: -7px;
left: 1px;
6 years ago
}
6 years ago
.mx_RoomTooltip {
display: none;
position: fixed;
border-radius: 5px;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.21);
background-color: #181b21;
z-index: 2000;
padding: 5px;
pointer-events: none;
line-height: 14px;
6 years ago
font-size: 13px;
6 years ago
color: #edf3ff;
max-width: 600px;
margin-right: 50px;
6 years ago
}
6 years ago
/*
Copyright 2018 New Vector 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_RoomUpgradeWarningBar {
6 years ago
text-align: center;
6 years ago
height: 176px;
background-color: #111316;
-ms-flex-align: center;
align-items: center;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: center;
justify-content: center;
display: -ms-flexbox;
display: flex;
background-color: #22262e;
-webkit-align-items: center;
padding-left: 20px;
padding-right: 20px;
6 years ago
}
6 years ago
.mx_RoomUpgradeWarningBar_header {
color: #ff4b55;
font-weight: bold;
6 years ago
}
6 years ago
.mx_RoomUpgradeWarningBar_body {
color: #ff4b55;
}
.mx_RoomUpgradeWarningBar_upgradelink {
color: #ff4b55;
text-decoration: underline;
}
.mx_RoomUpgradeWarningBar_small {
color: #888;
font-size: 70%;
6 years ago
}
/*
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.
*/
6 years ago
.mx_SearchBar {
height: 56px;
6 years ago
display: -ms-flexbox;
display: flex;
6 years ago
-ms-flex-align: center;
align-items: center;
border-bottom: 1px solid #000000;
6 years ago
}
6 years ago
.mx_SearchBar .mx_SearchBar_input {
-ms-flex: 1 1 0px;
flex: 1 1 0;
margin-left: 22px;
}
.mx_SearchBar .mx_SearchBar_searchButton {
cursor: pointer;
width: 37px;
height: 37px;
background-color: #03b381;
-webkit-mask: url(../../img/feather-customised/search-input.044bfa7.svg);
mask: url(../../img/feather-customised/search-input.044bfa7.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
}
.mx_SearchBar .mx_SearchBar_button {
border: 0;
margin: 0 0 0 22px;
padding: 5px;
font-size: 15px;
cursor: pointer;
color: #edf3ff;
border-bottom: 2px solid #03b381;
font-weight: 600;
}
.mx_SearchBar .mx_SearchBar_unselected {
color: #61708b;
border-color: transparent;
}
.mx_SearchBar .mx_SearchBar_cancel {
background-color: #ff4b55;
-webkit-mask: url(../../img/cancel.4b9715b.svg);
mask: url(../../img/cancel.4b9715b.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-size: 14px;
mask-size: 14px;
padding: 9px;
margin: 0 12px 0 3px;
cursor: pointer;
}
/*
Copyright 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_SearchableEntityList {
6 years ago
display: -ms-flexbox;
display: flex;
6 years ago
-ms-flex-direction: column;
flex-direction: column;
6 years ago
}
6 years ago
.mx_SearchableEntityList_query {
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
border-radius: 3px;
border: 1px solid #e7e7e7;
padding: 9px;
color: #edf3ff;
background-color: #181b21;
margin-left: 3px;
font-size: 15px;
margin-bottom: 8px;
width: 189px;
6 years ago
}
6 years ago
.mx_SearchableEntityList_query::-moz-placeholder {
color: #edf3ff;
opacity: 0.5;
font-size: 12px;
6 years ago
}
6 years ago
.mx_SearchableEntityList_query::-webkit-input-placeholder {
color: #edf3ff;
opacity: 0.5;
font-size: 12px;
6 years ago
}
6 years ago
.mx_SearchableEntityList_listWrapper {
-ms-flex: 1;
flex: 1;
overflow-y: auto;
6 years ago
}
6 years ago
.mx_SearchableEntityList_list {
display: table;
table-layout: fixed;
6 years ago
width: 100%;
}
6 years ago
.mx_SearchableEntityList_list .mx_EntityTile_chevron {
display: none;
6 years ago
}
6 years ago
.mx_SearchableEntityList_hrWrapper {
width: 100%;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
6 years ago
}
6 years ago
.mx_SearchableEntityList hr {
height: 1px;
border: 0px;
color: #edf3ff;
background-color: #edf3ff;
margin-right: 15px;
margin-top: 11px;
margin-bottom: 11px;
6 years ago
}
6 years ago
.mx_Stickers_content {
6 years ago
overflow: hidden;
}
6 years ago
.mx_Stickers_content_container {
overflow: hidden;
height: 300px;
6 years ago
}
6 years ago
#mx_persistedElement_stickerPicker .mx_AppTileFullWidth {
height: unset;
box-sizing: border-box;
border-left: none;
border-right: none;
border-bottom: none;
6 years ago
}
6 years ago
.mx_Stickers_contentPlaceholder {
display: -ms-flexbox;
display: flex;
-ms-flex-positive: 1;
flex-grow: 1;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
text-align: center;
6 years ago
}
6 years ago
.mx_Stickers_contentPlaceholder p {
max-width: 200px;
6 years ago
}
6 years ago
.mx_Stickers_addLink {
display: inline;
6 years ago
cursor: pointer;
6 years ago
text-decoration: underline;
6 years ago
}
6 years ago
.mx_Stickers_hideStickers {
z-index: 2001;
6 years ago
}
/*
6 years ago
Copyright 2016 OpenMarket Ltd
6 years ago
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.
*/
6 years ago
@charset "utf-8";
.mx_TopUnreadMessagesBar {
z-index: 1000;
position: absolute;
top: 24px;
right: 24px;
width: 38px;
6 years ago
}
6 years ago
.mx_TopUnreadMessagesBar:after {
content: "·";
position: absolute;
top: -8px;
left: 11px;
width: 16px;
height: 16px;
border-radius: 16px;
font-weight: 600;
font-size: 30px;
line-height: 14px;
text-align: center;
color: #f2f5f8;
background-color: #03b381;
6 years ago
}
6 years ago
.mx_TopUnreadMessagesBar_scrollUp {
height: 38px;
border-radius: 19px;
box-sizing: border-box;
background: #181b21;
border: 1.3px solid #a1b2d1;
cursor: pointer;
6 years ago
}
6 years ago
.mx_TopUnreadMessagesBar_scrollUp:before {
content: "";
6 years ago
position: absolute;
6 years ago
width: 38px;
height: 38px;
-webkit-mask: url(../../img/icon-jump-to-first-unread.2401872.svg);
mask: url(../../img/icon-jump-to-first-unread.2401872.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 9px 13px;
mask-position: 9px 13px;
background: #a1b2d1;
6 years ago
}
/*
6 years ago
Copyright 2018 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_WhoIsTypingTile {
margin-left: -18px;
padding-top: 18px;
6 years ago
display: -ms-flexbox;
display: flex;
6 years ago
-ms-flex-align: center;
align-items: center;
6 years ago
}
6 years ago
/* position the indicator in the same place horizontally as .mx_EventTile_avatar. */
.mx_WhoIsTypingTile_avatars {
-ms-flex: 0 0 83px;
flex: 0 0 83px;
text-align: center;
6 years ago
}
6 years ago
.mx_WhoIsTypingTile_avatars > :not(:first-child) {
margin-left: -12px;
6 years ago
}
6 years ago
.mx_WhoIsTypingTile_avatars .mx_BaseAvatar_image {
border: 1px solid #181b21;
6 years ago
}
6 years ago
.mx_WhoIsTypingTile_avatars .mx_BaseAvatar_initial {
padding-top: 1px;
6 years ago
}
6 years ago
.mx_WhoIsTypingTile_remainingAvatarPlaceholder {
position: relative;
display: inline-block;
color: #acacac;
background-color: #ddd;
border: 1px solid #181b21;
border-radius: 40px;
width: 24px;
height: 24px;
line-height: 24px;
font-size: 0.8em;
vertical-align: top;
text-align: center;
6 years ago
}
6 years ago
.mx_WhoIsTypingTile_label {
-ms-flex: 1;
flex: 1;
font-size: 14px;
font-weight: 600;
color: #a1b2d1;
6 years ago
}
6 years ago
.mx_WhoIsTypingTile_label > span {
background-image: url(../../img/typing-indicator-2x.0eb9f0e.gif);
background-size: 25px;
background-position: left bottom;
background-repeat: no-repeat;
padding-bottom: 15px;
display: block;
6 years ago
}
6 years ago
.mx_MatrixChat_useCompactLayout .mx_WhoIsTypingTile {
padding-top: 4px;
}
6 years ago
/*
6 years ago
Copyright 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.
*/
6 years ago
.mx_DevicesPanel {
display: table;
table-layout: fixed;
width: 880px;
border-spacing: 2px;
}
6 years ago
.mx_DevicesPanel_header {
display: table-header-group;
font-weight: bold;
}
6 years ago
.mx_DevicesPanel_header > div {
display: table-cell;
}
6 years ago
.mx_DevicesPanel_header .mx_DevicesPanel_deviceLastSeen {
width: 30%;
}
6 years ago
.mx_DevicesPanel_header .mx_DevicesPanel_deviceButtons {
width: 20%;
}
.mx_DevicesPanel_device {
display: table-row;
}
.mx_DevicesPanel_device > div {
display: table-cell;
}
.mx_DevicesPanel_myDevice {
font-weight: bold;
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_ExistingEmailAddress {
margin-bottom: 5px;
6 years ago
}
6 years ago
.mx_ExistingEmailAddress_delete {
margin-right: 5px;
6 years ago
cursor: pointer;
vertical-align: middle;
6 years ago
}
6 years ago
.mx_ExistingEmailAddress_email {
vertical-align: middle;
6 years ago
}
6 years ago
.mx_ExistingEmailAddress_promptText {
margin-right: 10px;
6 years ago
}
6 years ago
.mx_ExistingEmailAddress_confirmBtn {
margin-right: 5px;
6 years ago
}
6 years ago
.mx_EmailAddresses_new .mx_Field input {
width: calc(100% - 20px);
}
/*
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_IntegrationsManager .mx_Dialog {
width: 60%;
height: 70%;
overflow: hidden;
padding: 0px;
max-width: initial;
max-height: initial;
}
.mx_IntegrationsManager iframe {
background-color: #fff;
border: 0px;
6 years ago
width: 100%;
6 years ago
height: 100%;
6 years ago
}
6 years ago
/*
Copyright 2018 New Vector 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_KeyBackupPanel_sigValid, .mx_KeyBackupPanel_sigInvalid, .mx_KeyBackupPanel_deviceVerified, .mx_KeyBackupPanel_deviceNotVerified {
font-weight: bold;
6 years ago
}
6 years ago
.mx_KeyBackupPanel_sigValid, .mx_KeyBackupPanel_deviceVerified {
color: #76cfa5;
}
.mx_KeyBackupPanel_sigInvalid, .mx_KeyBackupPanel_deviceNotVerified {
color: #ba6363;
}
.mx_KeyBackupPanel_deviceName {
font-style: italic;
6 years ago
}
6 years ago
/*
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_UserNotifSettings_tableRow
{
6 years ago
display: table-row;
}
6 years ago
.mx_UserNotifSettings_inputCell {
display: table-cell;
padding-bottom: 8px;
padding-right: 8px;
width: 16px;
6 years ago
}
6 years ago
.mx_UserNotifSettings_labelCell
{
padding-bottom: 8px;
width: 400px;
6 years ago
display: table-cell;
}
6 years ago
.mx_UserNotifSettings_pushRulesTableWrapper {
padding-bottom: 8px;
6 years ago
}
6 years ago
.mx_UserNotifSettings_pushRulesTable {
width: 100%;
table-layout: fixed;
6 years ago
}
6 years ago
.mx_UserNotifSettings_pushRulesTable thead {
6 years ago
font-weight: bold;
}
6 years ago
.mx_UserNotifSettings_pushRulesTable tbody th {
font-weight: 400;
6 years ago
}
6 years ago
.mx_UserNotifSettings_pushRulesTable tbody th:first-child {
text-align: left;
6 years ago
}
6 years ago
.mx_UserNotifSettings_keywords {
cursor: pointer;
color: #03b381;
6 years ago
}
6 years ago
.mx_UserNotifSettings_devicesTable td {
padding-left: 20px;
padding-right: 20px;
6 years ago
}
6 years ago
.mx_UserNotifSettings_notifTable {
display: table;
6 years ago
}
6 years ago
.mx_UserNotifSettings_notifTable .mx_Spinner {
position: absolute;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_ExistingPhoneNumber {
margin-bottom: 5px;
6 years ago
}
6 years ago
.mx_ExistingPhoneNumber_delete {
margin-right: 5px;
cursor: pointer;
vertical-align: middle;
}
6 years ago
.mx_ExistingPhoneNumber_address {
6 years ago
vertical-align: middle;
}
6 years ago
.mx_ExistingPhoneNumber_promptText {
margin-right: 10px;
6 years ago
}
6 years ago
.mx_ExistingPhoneNumber_confirmBtn {
margin-right: 5px;
6 years ago
}
6 years ago
.mx_PhoneNumbers_new .mx_Field input {
width: calc(100% - 20px);
6 years ago
}
6 years ago
.mx_PhoneNumbers_input {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
6 years ago
}
6 years ago
.mx_PhoneNumbers_input > .mx_Field {
-ms-flex-positive: 1;
flex-grow: 1;
6 years ago
}
6 years ago
.mx_PhoneNumbers_country {
width: 80px;
6 years ago
}
6 years ago
/*
Copyright 2019 New Vector 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_ProfileSettings_profile {
display: -ms-flexbox;
display: flex;
6 years ago
}
6 years ago
.mx_ProfileSettings_controls {
-ms-flex-positive: 1;
flex-grow: 1;
6 years ago
}
6 years ago
.mx_ProfileSettings_controls .mx_Field #profileDisplayName, .mx_ProfileSettings_controls .mx_Field #profileTopic {
width: calc(100% - 20px);
6 years ago
}
6 years ago
.mx_ProfileSettings_controls .mx_Field #profileTopic {
height: 4em;
6 years ago
}
6 years ago
.mx_ProfileSettings_controls .mx_Field:first-child {
margin-top: 0;
6 years ago
}
6 years ago
.mx_ProfileSettings_hostingSignup {
margin-left: 20px;
6 years ago
}
6 years ago
.mx_ProfileSettings_hostingSignup img {
margin-left: 5px;
}
.mx_ProfileSettings_avatar {
width: 88px;
height: 88px;
margin-left: 13px;
position: relative;
cursor: pointer;
6 years ago
}
6 years ago
.mx_ProfileSettings_avatar > * {
display: block;
width: 88px;
height: 88px;
border-radius: 4px;
6 years ago
}
6 years ago
.mx_ProfileSettings_avatar .mx_ProfileSettings_avatarOverlay_disabled {
cursor: default;
6 years ago
}
6 years ago
.mx_ProfileSettings_avatar .mx_ProfileSettings_avatarPlaceholder {
background-color: #e7e7e7;
6 years ago
}
6 years ago
.mx_ProfileSettings_avatarOverlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: none;
text-align: center;
vertical-align: middle;
font-size: 10px;
6 years ago
}
6 years ago
.mx_ProfileSettings_avatar:hover .mx_ProfileSettings_avatarOverlay:not(.mx_ProfileSettings_avatarOverlay_disabled) {
display: inline-block;
opacity: 0.5 !important;
color: #fff !important;
background-color: #000 !important;
}
.mx_ProfileSettings_avatarOverlay_show {
display: inline-block;
opacity: 1;
color: #454545;
background-color: transparent;
6 years ago
}
6 years ago
.mx_ProfileSettings_avatarOverlayText {
display: block;
margin-top: 17px;
margin-bottom: 8px;
6 years ago
}
6 years ago
.mx_ProfileSettings_noAvatarText {
display: block;
margin: 34px auto auto;
}
.mx_ProfileSettings_avatarOverlayImgContainer {
position: relative;
width: 14px;
height: 14px;
margin: auto;
}
.mx_ProfileSettings_avatarOverlayImg:before {
background-color: #454545;
-webkit-mask: url(../../img/feather-customised/upload.a4ce82a.svg);
mask: url(../../img/feather-customised/upload.a4ce82a.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 14px;
mask-size: 14px;
-webkit-mask-position: center;
mask-position: center;
content: '';
6 years ago
position: absolute;
6 years ago
top: 0;
bottom: 0;
left: 0;
right: 0;
6 years ago
}
6 years ago
.mx_ProfileSettings_avatar:hover .mx_ProfileSettings_avatarOverlayImg:before {
background-color: #fff !important;
6 years ago
}
6 years ago
.mx_ProfileSettings_avatarUpload {
display: none;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_SettingsTab_heading {
font-size: 20px;
font-weight: 600;
color: #edf3ff;
6 years ago
}
6 years ago
.mx_SettingsTab_subheading {
font-size: 16px;
display: block;
font-family: 'Nunito', Arial, Helvetica, Sans-Serif;
font-weight: 600;
color: #edf3ff;
margin-bottom: 10px;
margin-top: 12px;
6 years ago
}
6 years ago
.mx_SettingsTab_subsectionText {
color: #a1b2d1;
font-size: 14px;
padding-bottom: 12px;
display: block;
margin: 0 100px 0 0;
}
.mx_SettingsTab_section .mx_SettingsFlag {
margin-right: 100px;
margin-bottom: 10px;
}
.mx_SettingsTab_section .mx_SettingsFlag .mx_SettingsFlag_label {
vertical-align: middle;
display: inline-block;
font-size: 14px;
color: #edf3ff;
max-width: calc(100% - 48px);
box-sizing: border-box;
padding-right: 10px;
}
.mx_SettingsTab_section .mx_SettingsFlag .mx_ToggleSwitch {
float: right;
}
.mx_SettingsTab_linkBtn {
cursor: pointer;
color: #03b381;
word-break: break-all;
}
.mx_SettingsTab .mx_SettingsTab_subheading:nth-child(n + 2) {
margin-top: 30px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_GeneralRoomSettingsTab_profileSection {
margin-top: 10px;
6 years ago
}
6 years ago
.mx_GeneralRoomSettingsTab .mx_AliasSettings .mx_Field select {
width: 100%;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_RolesRoomSettingsTab ul {
margin-bottom: 0;
6 years ago
}
6 years ago
.mx_RolesRoomSettingsTab_unbanBtn {
6 years ago
margin-right: 10px;
6 years ago
margin-bottom: 5px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_SecurityRoomSettingsTab label {
display: block;
6 years ago
}
6 years ago
.mx_SecurityRoomSettingsTab_warning {
display: block;
6 years ago
}
6 years ago
.mx_SecurityRoomSettingsTab_warning img {
vertical-align: middle;
margin-right: 5px;
margin-left: 3px;
margin-bottom: 5px;
}
.mx_SecurityRoomSettingsTab_encryptionSection {
margin-bottom: 25px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_GeneralUserSettingsTab_changePassword, .mx_GeneralUserSettingsTab_themeSection {
display: block;
6 years ago
}
6 years ago
.mx_GeneralUserSettingsTab_changePassword .mx_Field, .mx_GeneralUserSettingsTab_themeSection .mx_Field {
display: block;
margin-right: 100px;
6 years ago
}
6 years ago
.mx_GeneralUserSettingsTab_changePassword .mx_Field input {
display: block;
width: calc(100% - 20px);
6 years ago
}
6 years ago
.mx_GeneralUserSettingsTab_changePassword .mx_Field:first-child {
margin-top: 0;
6 years ago
}
6 years ago
.mx_GeneralUserSettingsTab_themeSection .mx_Field select {
display: block;
width: 100%;
}
.mx_GeneralUserSettingsTab_accountSection > .mx_EmailAddresses, .mx_GeneralUserSettingsTab_accountSection > .mx_PhoneNumbers, .mx_GeneralUserSettingsTab_languageInput {
margin-right: 100px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_HelpUserSettingsTab_debugButton {
margin-bottom: 5px;
margin-top: 5px;
6 years ago
}
6 years ago
.mx_HelpUserSettingsTab span.mx_AccessibleButton {
word-break: break-word;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_NotificationUserSettingsTab .mx_SettingsTab_heading {
margin-bottom: 10px;
6 years ago
}
/*
6 years ago
Copyright 2019 New Vector 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.
*/
6 years ago
.mx_PreferencesUserSettingsTab .mx_Field {
margin-right: 100px;
}
6 years ago
.mx_PreferencesUserSettingsTab .mx_Field input {
display: block;
width: calc(100% - 20px);
}
/*
6 years ago
Copyright 2019 New Vector Ltd
6 years ago
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.
*/
6 years ago
.mx_SecurityUserSettingsTab .mx_DevicesPanel {
width: auto;
max-width: 880px;
}
.mx_SecurityUserSettingsTab_deviceInfo {
display: table;
padding-left: 0;
}
.mx_SecurityUserSettingsTab_deviceInfo > li {
6 years ago
display: table-row;
}
6 years ago
.mx_SecurityUserSettingsTab_deviceInfo > li > label, .mx_SecurityUserSettingsTab_deviceInfo > li > span {
6 years ago
display: table-cell;
6 years ago
padding-right: 1em;
6 years ago
}
6 years ago
.mx_SecurityUserSettingsTab_importExportButtons .mx_AccessibleButton {
margin-right: 10px;
6 years ago
}
6 years ago
.mx_SecurityUserSettingsTab_bulkOptions .mx_AccessibleButton {
margin-right: 10px;
6 years ago
}
6 years ago
.mx_SecurityUserSettingsTab_importExportButtons {
margin-bottom: 15px;
}
.mx_SecurityUserSettingsTab_ignoredUser {
margin-bottom: 5px;
}
.mx_SecurityUserSettingsTab_ignoredUser .mx_AccessibleButton {
margin-right: 10px;
}
/*
Copyright 2019 New Vector 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_VoiceUserSettingsTab .mx_Field select {
6 years ago
width: 100%;
6 years ago
max-width: 100%;
6 years ago
}
6 years ago
.mx_VoiceUserSettingsTab .mx_Field {
margin-right: 100px;
}
.mx_VoiceUserSettingsTab_missingMediaPermissions {
margin-bottom: 15px;
}
/*
Copyright 2019 New Vector 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_VerificationShowSas_decimalSas {
text-align: center;
6 years ago
font-weight: bold;
6 years ago
padding-left: 3px;
padding-right: 3px;
6 years ago
}
6 years ago
.mx_VerificationShowSas_decimalSas span {
margin-left: 5px;
margin-right: 5px;
6 years ago
}
6 years ago
.mx_VerificationShowSas_emojiSas {
text-align: center;
6 years ago
}
6 years ago
.mx_VerificationShowSas_emojiSas_block {
display: inline-block;
margin-left: 15px;
margin-right: 15px;
text-align: center;
margin-bottom: 20px;
6 years ago
}
6 years ago
.mx_VerificationShowSas_emojiSas_emoji {
font-size: 48px;
6 years ago
}
6 years ago
.mx_VerificationShowSas_emojiSas_label {
text-align: center;
font-weight: bold;
6 years ago
}
/*
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_CallView_voice {
6 years ago
background-color: #03b381;
6 years ago
color: #ffffff;
cursor: pointer;
text-align: center;
padding: 6px;
font-weight: bold;
font-size: 13px;
}
/*
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_IncomingCallBox {
text-align: center;
border: 1px solid #a4a4a4;
border-radius: 8px;
6 years ago
background-color: #181b21;
6 years ago
position: fixed;
z-index: 1000;
padding: 6px;
margin-top: -3px;
margin-left: -20px;
width: 200px;
}
.mx_IncomingCallBox_chevron {
padding: 12px;
position: absolute;
left: -21px;
top: 0px;
}
.mx_IncomingCallBox_title {
padding: 6px;
font-weight: bold;
}
.mx_IncomingCallBox_buttons {
display: -ms-flexbox;
display: flex;
}
.mx_IncomingCallBox_buttons_cell {
vertical-align: middle;
padding: 6px;
-ms-flex: 1;
flex: 1;
6 years ago
}
.mx_IncomingCallBox_buttons_decline, .mx_IncomingCallBox_buttons_accept {
vertical-align: middle;
width: 80px;
height: 36px;
line-height: 36px;
border-radius: 36px;
color: #ffffff;
margin: auto;
}
.mx_IncomingCallBox_buttons_decline {
background-color: #f48080;
}
.mx_IncomingCallBox_buttons_accept {
background-color: #80f480;
}
/*
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_VideoView {
width: 100%;
position: relative;
z-index: 30;
}
.mx_VideoView video {
width: 100%;
}
.mx_VideoView_remoteVideoFeed {
width: 100%;
background-color: #000;
z-index: 50;
}
.mx_VideoView_localVideoFeed {
width: 25%;
height: 25%;
position: absolute;
left: 10px;
bottom: 10px;
z-index: 100;
}
.mx_VideoView_localVideoFeed video {
width: auto;
height: 100%;
}
.mx_VideoView_localVideoFeed.mx_VideoView_localVideoFeed_flipped video {
transform: scale(-1, 1);
6 years ago
}
6 years ago
/*# sourceMappingURL=theme-dark.css.map*/