mirror of https://github.com/vector-im/riot-web
113 lines
2.6 KiB
SCSS
113 lines
2.6 KiB
SCSS
/*
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
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_RoomSettingsDialog_BridgeList {
|
|
padding: 0;
|
|
|
|
.mx_AccessibleButton {
|
|
display: inline;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.mx_RoomSettingsDialog_BridgeList li {
|
|
list-style-type: none;
|
|
padding: 5px;
|
|
margin-bottom: 8px;
|
|
border-width: 1px 1px;
|
|
border-color: $primary-hairline-color;
|
|
border-style: solid;
|
|
border-radius: 5px;
|
|
|
|
.column-icon {
|
|
float: left;
|
|
padding-right: 10px;
|
|
|
|
* {
|
|
border-radius: 5px;
|
|
border: 1px solid $input-darker-bg-color;
|
|
}
|
|
|
|
.noProtocolIcon {
|
|
width: 48px;
|
|
height: 48px;
|
|
background: $input-darker-bg-color;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.protocol-icon {
|
|
float: left;
|
|
margin-right: 5px;
|
|
img {
|
|
border-radius: 5px;
|
|
border-width: 1px 1px;
|
|
border-color: $primary-hairline-color;
|
|
}
|
|
span {
|
|
/* Correct letter placement */
|
|
left: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.column-data {
|
|
display: inline-block;
|
|
width: 85%;
|
|
|
|
> h3 {
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
font-size: 16pt;
|
|
color: $primary-fg-color;
|
|
}
|
|
|
|
> * {
|
|
margin-top: 4px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.workspace-channel-details {
|
|
color: $primary-fg-color;
|
|
font-weight: 600;
|
|
|
|
.channel {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
|
|
.mx_showMore {
|
|
display: block;
|
|
text-align: left;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.metadata {
|
|
color: $muted-fg-color;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.metadata.visible {
|
|
overflow-y: visible;
|
|
text-overflow: ellipsis;
|
|
white-space: normal;
|
|
}
|
|
}
|
|
}
|