censors most media on Telegram and can be uncensored by hovering over. Its mostly just very low opacity so you can kinda see vs people passing by cant.
Also minimize side bar and will slide open on hover for increased privacy
Authorpandahacker
LicenseCC BY-NC-SA
Categoryuserstyles
Created
Updated
Size962 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
censors most media on Telegram and can be uncensored by hovering over. Its mostly just very low opacity so you can kinda see vs people passing by cant.
Also minimize side bar and will slide open on hover for increased privacy
/* ==UserStyle==
@name Telegram SFW Mode
@namespace web.telegram.com
@version 1.0.0
@description SFW Telegram
@author pandahacker
==/UserStyle== */
@-moz-document domain("web.telegram.org") {
img.full-media{
opacity: 0.020;
}
img.full-media:hover{
opacity: 1.0;
}
img.thumbnail{
opacity: 0.020;
}
video.full-media{
opacity: 0.020;
}
video.full-media:hover{
opacity: 1.0;
}
.AnimatedSticker canvas{
opacity: 0.020;
}
.AnimatedSticker canvas:hover{
opacity: 1.0;
}
#LeftColumn {
min-width: 0px !important;
width: 20px !important;
-webkit-transition: width 1s !important;
/* Safari */
transition: width 0.1s !important;
-webkit-transition-timing-function: cubic-bezier(.42, 0, .58, 1) !important;
transition-timing-function: cubic-bezier(.42, 0, .58, 1) !important;
}
#LeftColumn:hover {
width: 25vw !important;
}
}