mirror of https://github.com/zulip/zulip.git
Remove Blur on lightbox background.
This removes the blur feature as the background of the info settings container is now #FFF.
This commit is contained in:
parent
6b3aded32d
commit
339249602f
|
@ -291,8 +291,6 @@ exports.lightbox_photo = function (image, user) {
|
|||
|
||||
$("#overlay").addClass("show");
|
||||
|
||||
$(".right-sidebar, .column-middle-inner, .left-sidebar").addClass("visual-blur");
|
||||
|
||||
$(".title").text(title || "N/A");
|
||||
$(".user").text(user);
|
||||
|
||||
|
@ -301,7 +299,6 @@ exports.lightbox_photo = function (image, user) {
|
|||
|
||||
exports.exit_lightbox_photo = function (image) {
|
||||
$("#overlay").removeClass("show");
|
||||
$(".right-sidebar, .column-middle-inner, .left-sidebar").removeClass("visual-blur");
|
||||
};
|
||||
|
||||
var loading_more_messages_indicator_showing = false;
|
||||
|
|
|
@ -26,12 +26,6 @@ body,
|
|||
transition: background-color 200ms linear;
|
||||
}
|
||||
|
||||
.visual-blur {
|
||||
filter: blur(15px);
|
||||
-moz-filter: blur(15px);
|
||||
-webkit-filter: blur(15px);
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
|
|
Loading…
Reference in New Issue