mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
a0f67c22da
* textsecure/master: (26 commits) v1.21.0 v1.21.0-beta.4 Dark Theme: Preserve blue background on app loading screen Localization updates Fix width of audio player when window is very narrow A number of small fixes for Link Previews Get rid of the white flash when the app starts up (#3083) v1.21.0-beta.3 Lint fixes Introduce new language: NB Fail over to all numbers in retry if errors don't have numbers Use the proper method for pulling attachments off disk for retry Fix rendering bug with verified state in updateVerified() Update electron-builder and electron-updater Ensure that dialog pops up when permissions denied for voice note Lint fixes Large update to localization strings Link Previews Ensure that blocked messages are dropped even after sealed sender Don't linkify quoted message contents ... # Conflicts: # .github/PULL_REQUEST_TEMPLATE.md # _locales/cs/messages.json # background.html # config/default.json # index.html # js/models/conversations.js # js/modules/web_api.js # js/settings_start.js # js/views/conversation_view.js # js/views/settings_view.js # package.json # protos/SignalService.proto # stylesheets/_index.scss # stylesheets/_settings.scss
123 lines
2 KiB
SCSS
123 lines
2 KiB
SCSS
.settings {
|
|
user-select: none;
|
|
|
|
&.modal {
|
|
padding: 0;
|
|
background-color: transparent;
|
|
|
|
.content {
|
|
margin: 0;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
|
|
width: 100%;
|
|
max-width: 450px;
|
|
border-radius: 0;
|
|
box-shadow: 0px 0px 0px 0px;
|
|
}
|
|
}
|
|
hr {
|
|
margin: 10px 0;
|
|
}
|
|
.device-name-settings {
|
|
text-align: center;
|
|
margin-bottom: 1em;
|
|
}
|
|
.syncSettings {
|
|
button {
|
|
float: right;
|
|
line-height: 36px;
|
|
padding: 0 20px;
|
|
margin: 0 0 20px 20px;
|
|
}
|
|
.synced_at {
|
|
font-size: $font-size-small;
|
|
color: $grey;
|
|
}
|
|
.sync_failed {
|
|
display: none;
|
|
font-size: $font-size-small;
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
.blocked-user-settings {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.blocked-user-settings {
|
|
select {
|
|
flex: 1;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
button {
|
|
line-height: 28px;
|
|
padding: 0 20px;
|
|
margin: auto;
|
|
margin-left: 20px;
|
|
}
|
|
}
|
|
|
|
.blocked-user-settings ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.wordwrap {
|
|
white-space: pre-wrap; /* CSS3 */
|
|
white-space: -moz-pre-wrap; /* Firefox */
|
|
white-space: -pre-wrap; /* Opera <7 */
|
|
white-space: -o-pre-wrap; /* Opera 7 */
|
|
word-wrap: break-word; /* IE */
|
|
}
|
|
|
|
.restart-needed {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.clear-data-settings {
|
|
button {
|
|
float: right;
|
|
line-height: 36px;
|
|
padding: 0 20px;
|
|
margin: 0 0 20px 20px;
|
|
}
|
|
.destructive {
|
|
background-color: red;
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
.message-ttl-setting {
|
|
.inputs {
|
|
display: flex;
|
|
padding-top: 18px;
|
|
}
|
|
|
|
#warning {
|
|
padding-top: 12px;
|
|
font-weight: 300;
|
|
color: red;
|
|
}
|
|
|
|
input {
|
|
flex: 1;
|
|
}
|
|
label {
|
|
padding-left: 12px;
|
|
}
|
|
}
|
|
|
|
.send-link-previews-setting {
|
|
margin-top: 0.75em;
|
|
}
|
|
.description {
|
|
margin-top: 0.3em;
|
|
margin-left: 1.5em;
|
|
}
|
|
}
|