mirror of https://github.com/vector-im/riot-web
75 lines
1.5 KiB
SCSS
75 lines
1.5 KiB
SCSS
/*
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_MatrixToolbar {
|
|
background-color: $accent-color;
|
|
color: $accent-fg-color;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.mx_MatrixToolbar_warning {
|
|
margin-left: 16px;
|
|
margin-right: 8px;
|
|
margin-top: -2px;
|
|
}
|
|
|
|
.mx_MatrixToolbar_info {
|
|
padding-left: 16px;
|
|
padding-right: 8px;
|
|
background-color: $info-bg-color;
|
|
}
|
|
|
|
.mx_MatrixToolbar_error {
|
|
padding-left: 16px;
|
|
padding-right: 8px;
|
|
background-color: $warning-bg-color;
|
|
}
|
|
|
|
.mx_MatrixToolbar_content {
|
|
flex: 1;
|
|
}
|
|
|
|
.mx_MatrixToolbar_link
|
|
{
|
|
color: $accent-fg-color ! important;
|
|
text-decoration: underline ! important;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_MatrixToolbar_clickable {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_MatrixToolbar_close {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_MatrixToolbar_close img {
|
|
display: block;
|
|
float: right;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.mx_MatrixToolbar_action {
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.mx_MatrixToolbar_changelog {
|
|
white-space: pre;
|
|
}
|