Strip unused CSS

This commit is contained in:
djmaze 2021-08-17 14:06:56 +02:00
parent 26015aaf18
commit 8273111e65
5 changed files with 3 additions and 33 deletions

View file

@ -10,15 +10,6 @@
100% {background-position: 60px 0;}
}
.e-strip-animation {
background-size: 60px 60px;
background-image: linear-gradient(135deg, #000 25%, #fff 25%,
#fff 50%, #000 50%, #000 75%,
#fff 75%, #fff);
animation: animate-stripes 2s linear infinite;
opacity: 0.25;
}
@media screen and (min-width: 1000px) {
.button-delete-transitions {

View file

@ -111,15 +111,6 @@ html.rl-no-preview-pane {
}
}
.line-loading {
position: absolute;
left: 0;
right: 0;
z-index: 102;
height: 0;
top: 50px;
}
.b-content {
position: absolute;
top: 50px;
@ -405,10 +396,6 @@ html.rl-ctrl-key-pressed .messageListItem {
}
}
html .messageList .line-loading {
height: 5px !important;
}
#messagesDragImage {
color: #fff;
background-color: #000;

View file

@ -215,10 +215,6 @@
padding-top: 50px;
}
.line-loading {
height: 5px;
}
.showImages, .readReceipt, .pgpSigned, .pgpEncrypted {
cursor: pointer;
padding: 10px 15px;

View file

@ -250,11 +250,9 @@
<span class="buttonFull" data-bind="click: toggleFullScreen">
<i data-bind="css: { 'icon-arrows-out': !fullScreenMode(), 'icon-arrows-in': fullScreenMode }"></i>
</span>
<div class="line-loading e-strip-animation" data-bind="visible: messageLoadingThrottle()"></div>
<div class="loading g-ui-min-height-300" data-bind="visible: messageLoadingThrottle()">
<span class="text" data-i18n="GLOBAL/LOADING"></span><span class="textLoadingAnimationD1">.</span><span class="textLoadingAnimationD2">.</span><span class="textLoadingAnimationD3">.</span>
<i class="icon-spinner"></i>
<span data-i18n="GLOBAL/LOADING"></span>
</div>
</div>

View file

@ -58,10 +58,8 @@
<div class="listEmptyList" data-bind="visible: 0 === contacts().length && '' === search() && !contacts.loading()"
data-i18n="CONTACTS/EMPTY_LIST"></div>
<div class="listEmptyListLoading" data-bind="visible: 0 === contacts().length && '' === search() && contacts.loading()">
<i class="icon-spinner"></i>
<span data-i18n="GLOBAL/LOADING"></span>
<span class="textLoadingAnimationD1">.</span>
<span class="textLoadingAnimationD2">.</span>
<span class="textLoadingAnimationD3">.</span>
</div>
<div class="listEmptySearchList" data-bind="visible: 0 === contacts().length && '' !== search() && !contacts.loading()"
data-i18n="CONTACTS/EMPTY_SEARCH"></div>