diff options
-rw-r--r-- | newspipe/web/static/css/customized-bootstrap.css | 10 | ||||
-rw-r--r-- | newspipe/web/templates/home.html | 1 |
2 files changed, 10 insertions, 1 deletions
diff --git a/newspipe/web/static/css/customized-bootstrap.css b/newspipe/web/static/css/customized-bootstrap.css index f286cb2a..02f8a72e 100644 --- a/newspipe/web/static/css/customized-bootstrap.css +++ b/newspipe/web/static/css/customized-bootstrap.css @@ -1,6 +1,7 @@ html { position: relative; min-height: 100%; + font-size: 14px; } body { /* Margin bottom by footer height */ @@ -37,6 +38,15 @@ a { max-height: 700px; } +#sidebar .nav li { + list-style-type: none; + padding: 0; + line-height: 1.0; + flex-direction: row; + flex-wrap: nowrap; /* assumes you only want one row */ +} + + .input-group-inline { min-width: 0; width: 200px; diff --git a/newspipe/web/templates/home.html b/newspipe/web/templates/home.html index 915cc333..81b19abc 100644 --- a/newspipe/web/templates/home.html +++ b/newspipe/web/templates/home.html @@ -1,7 +1,6 @@ {% extends "layout.html" %} {% block content %} <style> - li.feed-commands {display: none; text-align: right;} li.feed-commands > span > a {margin-right: 10px;} li.feed-menu:hover + li.feed-commands, li.feed-commands:hover {display: block;} |