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:
Brock Whittaker 2016-09-30 12:04:29 -07:00 committed by Tim Abbott
parent 6b3aded32d
commit 339249602f
2 changed files with 0 additions and 9 deletions

View File

@ -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;

View File

@ -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,