From cde5d94eefe2e315d6ba93091dff0bba2f77ae4b Mon Sep 17 00:00:00 2001 From: "kun.peng" Date: Sun, 15 Dec 2019 10:08:01 +0800 Subject: [PATCH] fixed search box always show scrollbar. --- source/css/style.css | 2 +- source/css/style.styl | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/source/css/style.css b/source/css/style.css index d5c9e3a..fcedc77 100644 --- a/source/css/style.css +++ b/source/css/style.css @@ -660,5 +660,5 @@ p { color: #8e8787; } .searchbox .searchbox-result-wrapper { - overflow-y: hidden; + overflow-y: visible; } diff --git a/source/css/style.styl b/source/css/style.styl index ee25c65..8e507a7 100644 --- a/source/css/style.styl +++ b/source/css/style.styl @@ -10,7 +10,7 @@ screen-fullhd = 1472px * --------------------------------- */ html font-size: 14px - overflow: -moz-hidden-unscrollable; + //overflow: -moz-hidden-unscrollable; //body @@ -564,3 +564,7 @@ figure.highlight p img width: 100% + +.searchbox + .searchbox-result-wrapper + overflow-y visible \ No newline at end of file