diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-03 08:57:52 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-03 08:57:52 +0100 |
commit | b9498613b1579bdc03103df88b2f95c8c834fcdb (patch) | |
tree | c453f8a6d016dc22a7bccf669a300a64117221df | |
parent | Updated about page. (diff) | |
download | newspipe-b9498613b1579bdc03103df88b2f95c8c834fcdb.tar.gz newspipe-b9498613b1579bdc03103df88b2f95c8c834fcdb.tar.bz2 newspipe-b9498613b1579bdc03103df88b2f95c8c834fcdb.zip |
minor improvements to the generic CSS>
-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;} |