Allow disabling the loading screen, style normally hidden stuff

This commit is contained in:
HoLLy 2018-07-03 16:08:50 +02:00
Родитель 41dff85658
Коммит d243c1c97f
4 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -3,6 +3,7 @@ $move-in-messages: false; // Moves in both messages and channels
$style-own-messages: false; // Gives your name a rainbow effect in chat
$custom-emoji: false; // Replaces some of the default emoji
$weird-animated-border: false; // Adds an animated, gradient-colored border around the chat box (using SVG backgrounds)
$show-loading: false; // Makes the loading screen transparant, so you can see what's going on behind the scenes
// Settings
$style-own-messages-user-id: 113009395494830080;

Просмотреть файл

@ -30,6 +30,7 @@ $code-block-images: true;
$web-hide-download-button: true;
$alternative-user-popup: true;
$compact-mode-tweaks: true;
$show-loading: true;
$status-indicator-border-thickness: 15px;
$status-indicator-border-transparancy: 25%;

Просмотреть файл

@ -15,6 +15,7 @@ div[class*="channels-"] > div, // bg for ch. list
.theme-dark .channel-members, // Channel members
div[class*="activityFeed-"],
div[class*="activityFeed-"] div[class*="card-"],
div[class*="noChannel-"],
{
background: transparent!important;
}

Просмотреть файл

@ -366,3 +366,11 @@
margin: 10px 0;
}
}
// Show loading
@if (true) {
.app + div[style="opacity: 1;"] {
//opacity: 0.25!important;
display: none;
}
}