2019-01-25 01:10:35 +01:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2019-02-22 18:47:18 +01:00
|
|
|
.mx_HelpUserSettingsTab_debugButton {
|
2019-01-30 07:11:16 +01:00
|
|
|
margin-bottom: 5px;
|
|
|
|
margin-top: 5px;
|
2019-01-25 01:10:35 +01:00
|
|
|
}
|
|
|
|
|
2019-02-22 18:47:18 +01:00
|
|
|
.mx_HelpUserSettingsTab span.mx_AccessibleButton {
|
2019-01-30 07:11:16 +01:00
|
|
|
word-break: break-word;
|
2019-07-09 19:15:10 +02:00
|
|
|
}
|
2021-04-28 02:12:20 +02:00
|
|
|
|
|
|
|
.mx_HelpUserSettingsTab code {
|
|
|
|
word-break: break-all;
|
|
|
|
user-select: all;
|
|
|
|
}
|
|
|
|
|
2021-06-21 12:17:51 +02:00
|
|
|
.mx_HelpUserSettingsTab_copy {
|
2021-04-28 02:12:20 +02:00
|
|
|
display: flex;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: solid 1px $light-fg-color;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
padding: 10px;
|
2021-08-02 11:36:53 +02:00
|
|
|
width: max-content;
|
2021-08-15 14:40:31 +02:00
|
|
|
max-width: 100%;
|
2021-04-28 02:12:20 +02:00
|
|
|
|
2021-06-21 12:17:51 +02:00
|
|
|
.mx_HelpUserSettingsTab_copyButton {
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-left: 20px;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
|
|
|
|
mask-image: url($copy-button-url);
|
|
|
|
background-color: $message-action-bar-fg-color;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
display: block;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
}
|
2021-04-28 02:12:20 +02:00
|
|
|
}
|