From 6ca30a74723ffc8ed88ad4583d5a3442074ff657 Mon Sep 17 00:00:00 2001 From: rugk Date: Sat, 18 Jun 2016 19:03:33 +0200 Subject: [PATCH 1/2] Force line breaks for long URL This fixes a display issue in mobile view where the long URL was outside of the window... --- css/bootstrap/zerobin.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/css/bootstrap/zerobin.css b/css/bootstrap/zerobin.css index 7135289..a13ab65 100644 --- a/css/bootstrap/zerobin.css +++ b/css/bootstrap/zerobin.css @@ -46,6 +46,10 @@ body.navbar-spacing { display: inline; } +#pastelink > a { + display: inline; +} + #message { font-family: monospace; } @@ -70,4 +74,4 @@ footer h4 { li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 { list-style-type: decimal !important; -} \ No newline at end of file +} From 82f4ace5e31ed3eaebe44b7c59a49e9ec3ebe4c4 Mon Sep 17 00:00:00 2001 From: rugk Date: Sat, 18 Jun 2016 19:06:05 +0200 Subject: [PATCH 2/2] Add break of URL for mobile mode (now really, ...) --- css/bootstrap/zerobin.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/bootstrap/zerobin.css b/css/bootstrap/zerobin.css index a13ab65..b3d0f2e 100644 --- a/css/bootstrap/zerobin.css +++ b/css/bootstrap/zerobin.css @@ -47,7 +47,7 @@ body.navbar-spacing { } #pastelink > a { - display: inline; + word-wrap: break-word; } #message {