2020-10-30 20:34:04 +00:00
|
|
|
// Copyright 2016-2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2016-04-10 04:09:16 +00:00
|
|
|
.debug-log {
|
|
|
|
&.modal {
|
|
|
|
padding: 50px;
|
|
|
|
|
|
|
|
.content {
|
|
|
|
margin: 0;
|
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
flex-grow: 1;
|
|
|
|
width: 100%;
|
|
|
|
resize: none;
|
2016-08-24 23:19:24 +00:00
|
|
|
min-height: 100px;
|
2018-03-05 23:01:33 +00:00
|
|
|
|
|
|
|
font-family: Monaco, Consolas, 'Courier New', Courier, monospace;
|
|
|
|
font-size: 12px;
|
2019-10-04 18:06:17 +00:00
|
|
|
|
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-gray-90;
|
|
|
|
border: 1px solid $color-gray-45;
|
|
|
|
color: $color-gray-02;
|
|
|
|
}
|
2016-04-10 04:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.result {
|
|
|
|
$open-height: 36px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
.input-group {
|
2020-09-21 17:22:30 +00:00
|
|
|
display: inline-flex;
|
2016-04-10 04:09:16 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 19:20:01 +00:00
|
|
|
.copy {
|
2016-04-10 04:09:16 +00:00
|
|
|
height: $open-height;
|
2020-09-21 17:22:30 +00:00
|
|
|
text-align: center;
|
|
|
|
line-height: $open-height;
|
|
|
|
padding: 0 30px;
|
2020-05-04 19:20:01 +00:00
|
|
|
color: unset;
|
|
|
|
text-decoration: none;
|
2016-04-10 04:09:16 +00:00
|
|
|
cursor: pointer;
|
2019-10-04 18:06:17 +00:00
|
|
|
|
|
|
|
border-radius: 0 5px 5px 0;
|
|
|
|
|
|
|
|
@include light-theme {
|
|
|
|
border: solid 1px $color-gray-25;
|
|
|
|
background: $color-gray-02;
|
2020-05-04 19:20:01 +00:00
|
|
|
&:active {
|
|
|
|
background: $color-gray-25;
|
|
|
|
}
|
2019-10-04 18:06:17 +00:00
|
|
|
}
|
|
|
|
@include dark-theme {
|
|
|
|
border: solid 1px $color-gray-45;
|
|
|
|
background-color: $color-gray-90;
|
|
|
|
color: $color-gray-02;
|
2020-05-04 19:20:01 +00:00
|
|
|
&:active {
|
|
|
|
background: $color-gray-25;
|
2019-10-04 18:06:17 +00:00
|
|
|
}
|
2016-04-10 04:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.link {
|
2019-10-04 18:06:17 +00:00
|
|
|
border-radius: 5px 0 0 5px;
|
2020-09-21 17:22:30 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
min-width: 400px;
|
2016-04-10 04:09:16 +00:00
|
|
|
height: $open-height;
|
|
|
|
padding: 0 10px;
|
|
|
|
outline-offset: -4px;
|
2019-10-04 18:06:17 +00:00
|
|
|
|
|
|
|
@include light-theme {
|
|
|
|
border: solid 1px $color-gray-25;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
@include dark-theme {
|
|
|
|
color: $color-gray-02;
|
|
|
|
border: solid 1px $color-gray-45;
|
|
|
|
border-right: none;
|
|
|
|
background-color: $color-gray-90;
|
|
|
|
}
|
2016-04-10 04:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|