diff options
| author | luccioman <luccioman@users.noreply.github.com> | 2019-02-08 12:23:01 +0100 |
|---|---|---|
| committer | luccioman <luccioman@users.noreply.github.com> | 2019-02-08 12:23:20 +0100 |
| commit | c617ea58a0158fc5659774eedccb0b6f465f1f4b (patch) | |
| tree | ce5413c68687c50f9a6ae7ef5ca1ba5a30b1b28f /htroot/env | |
| parent | d167b14ab6f5d0cceee427580667e9867e7cc230 (diff) | |
Render additional embedded audios from links on extended audio search
Diffstat (limited to 'htroot/env')
| -rw-r--r-- | htroot/env/base.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/htroot/env/base.css b/htroot/env/base.css index 3cd0e750e..fd11056e1 100644 --- a/htroot/env/base.css +++ b/htroot/env/base.css @@ -1110,6 +1110,22 @@ div#tagcloud { color: #ff8c00; } +.embeddedAudios { + /* Remove bootstrap ul bottom margin so that there is no interval with the expandable list */ + margin-bottom: 0px; +} + +/* Button to expand/collapse audio results beyond the initial number of elements display limit */ +.expandAudiosBtn[aria-expanded="true"] .glyphicon:before { + /* Repeated same char as in the glyphicon-chevron-left class */ + content: "\e079\e079"; +} + +.expandAudiosBtn[aria-expanded="false"] .glyphicon:before { + /* Repeated same char as in the glyphicon-chevron-right class */ + content: "\e080\e080"; +} + /******* yacysearch.html end ***********/ /******* yacysearchtrailer.html ********** |
