Fossil SCM
Modify the accordion panel style to hide only vertical overflow and keep the box shadows of selected and current timeline entries visible in the context section of /info pages. Set the CSS property to `clip' instead of `hidden' to disallow any vertical scrolling (for example, by tabbing through hyperlinks), although this is probably not relevant for accordion panels.
Commit
b0188ce122c43b41447953d35ba1e122f1205145ee57c7e3d6e84b62b37d1464
Parent
9b263d87c15bd74…
1 file changed
+1
-1
+1
-1
| --- src/default.css | ||
| +++ src/default.css | ||
| @@ -1231,11 +1231,11 @@ | ||
| 1231 | 1231 | } |
| 1232 | 1232 | .accordion_closed > .accordion_btn_plus { |
| 1233 | 1233 | display: inline-block; |
| 1234 | 1234 | } |
| 1235 | 1235 | .accordion_panel { |
| 1236 | - overflow: hidden; | |
| 1236 | + overflow-y: clip; | |
| 1237 | 1237 | transition: max-height 0.25s ease-out; |
| 1238 | 1238 | } |
| 1239 | 1239 | .error { |
| 1240 | 1240 | color: darkred; |
| 1241 | 1241 | background: yellow; |
| 1242 | 1242 |
| --- src/default.css | |
| +++ src/default.css | |
| @@ -1231,11 +1231,11 @@ | |
| 1231 | } |
| 1232 | .accordion_closed > .accordion_btn_plus { |
| 1233 | display: inline-block; |
| 1234 | } |
| 1235 | .accordion_panel { |
| 1236 | overflow: hidden; |
| 1237 | transition: max-height 0.25s ease-out; |
| 1238 | } |
| 1239 | .error { |
| 1240 | color: darkred; |
| 1241 | background: yellow; |
| 1242 |
| --- src/default.css | |
| +++ src/default.css | |
| @@ -1231,11 +1231,11 @@ | |
| 1231 | } |
| 1232 | .accordion_closed > .accordion_btn_plus { |
| 1233 | display: inline-block; |
| 1234 | } |
| 1235 | .accordion_panel { |
| 1236 | overflow-y: clip; |
| 1237 | transition: max-height 0.25s ease-out; |
| 1238 | } |
| 1239 | .error { |
| 1240 | color: darkred; |
| 1241 | background: yellow; |
| 1242 |