Expand quotes in .nohide search mode; fix #6914

Also hide the hider and shower widgets, since they don't need to do
anything in this state.
This commit is contained in:
Robert Schroll 2013-05-07 16:11:30 -07:00 committed by Charles Lindsay
parent 326af9339b
commit 87f199c258

View file

@ -432,18 +432,18 @@ body.nohide .email .compressed_note > span {
cursor: pointer;
display: none;
}
.quote_container.controllable > .shower {
body:not(.nohide) .quote_container.controllable > .shower {
display: block;
}
.quote_container.controllable > .hider,
.quote_container.controllable > .quote {
body:not(.nohide) .quote_container.controllable > .quote {
display: none;
}
.quote_container.controllable.show > .shower {
body:not(.nohide) .quote_container.controllable.show > .shower {
display: none;
}
.quote_container.controllable.show > .hider,
.quote_container.controllable.show > .quote {
body:not(.nohide) .quote_container.controllable.show > .hider,
body:not(.nohide) .quote_container.controllable.show > .quote {
display: block;
}
.quote_container > .shower:hover,