From e4533309f526fb8891ff3862c6069ae5150b3693 Mon Sep 17 00:00:00 2001 From: Erik Osterman Date: Fri, 11 May 2018 12:54:53 -0700 Subject: [PATCH] CSS tweaks (#34) * fix text-overflow on side menu * Rename to usage * scrollbar fix --- content/geodesic/module/usage/_index.md | 2 +- static/css/custom.css | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/content/geodesic/module/usage/_index.md b/content/geodesic/module/usage/_index.md index cb307446a..61879e4a9 100644 --- a/content/geodesic/module/usage/_index.md +++ b/content/geodesic/module/usage/_index.md @@ -1,5 +1,5 @@ --- -title: "Use" +title: "Usage" excerpt: "" --- # Prerequisites diff --git a/static/css/custom.css b/static/css/custom.css index 67d3e605b..eae9f7463 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -229,6 +229,13 @@ article > aside .menu .dd-item li { text-overflow: ellipsis; } +aside#left-sidebar .menu .dd-item > div a { + width: 100%; + display: inline-block; + overflow: hidden; + text-overflow: ellipsis; +} + aside#left-sidebar .menu .dd-item.active > div * { font-weight: bold; border-bottom: 0; @@ -649,9 +656,14 @@ div.calendly-badge-widget { float: left; width: 30%; height: 200px; - overflow: scroll; + overflow-y: hidden; margin-right: 35px; } + +.homepage > .category:hover, .homepage > .category:active, .homepage > .category:focus { + overflow-y: auto; +} + .homepage ul { display: block; list-style: none;