aboutsummaryrefslogtreecommitdiff
path: root/src/web/static/css
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2016-01-31 16:59:04 +0100
committerFrançois Schmidts <francois.schmidts@gmail.com>2016-01-31 16:59:04 +0100
commiteb74eca67026a62dac5d0f8cf92111fad6c73648 (patch)
tree5a3e6026172ad85a0b4c0267c859fd65edfcbf9c /src/web/static/css
parentreset scrolling when setting right panel (diff)
downloadnewspipe-eb74eca67026a62dac5d0f8cf92111fad6c73648.tar.gz
newspipe-eb74eca67026a62dac5d0f8cf92111fad6c73648.tar.bz2
newspipe-eb74eca67026a62dac5d0f8cf92111fad6c73648.zip
fixing breadcrum height
Diffstat (limited to 'src/web/static/css')
-rw-r--r--src/web/static/css/one-page-app.css14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/web/static/css/one-page-app.css b/src/web/static/css/one-page-app.css
index d919a4f7..40f7cd45 100644
--- a/src/web/static/css/one-page-app.css
+++ b/src/web/static/css/one-page-app.css
@@ -121,8 +121,18 @@
top: 2px;
right: 4px;
}
-#right-panel>ol{
+#right-panel {
+ top: 50px;
+}
+#rp-breadcrum{
margin-top: 10px;
+ max-height: 34px;
+ overflow: hidden;
+ padding-top: 2px;
+}
+#rp-breadcrum>li{
+ display: inline;
+ line-height: 30px;
}
#right-panel .panel-body img {
max-width: 100%;
@@ -153,5 +163,3 @@
.filter-row>input.form-control {
width: auto;
}
-#filter-button-row>*{
-}
bgstack15