From dc0584f7d993ef7c75fbdd9d341ebb3337f3448d Mon Sep 17 00:00:00 2001 From: Azul Date: Wed, 17 Oct 2012 15:19:09 +0200 Subject: UI tweaks including newer version of bootstrap --- app/assets/stylesheets/application.scss | 1 + 1 file changed, 1 insertion(+) (limited to 'app/assets/stylesheets/application.scss') diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index cbd46a7..72c943a 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -1 +1,2 @@ @import "bootstrap"; +@import "bootstrap-responsive"; -- cgit v1.2.3 From 13f53593551549d8e95e382fd42a92efc170943d Mon Sep 17 00:00:00 2001 From: Azul Date: Tue, 20 Nov 2012 10:34:13 +0100 Subject: ui tweaks to the menu --- app/assets/stylesheets/application.scss | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/assets/stylesheets/application.scss') diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index 72c943a..3465431 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -1,2 +1,5 @@ @import "bootstrap"; +body { + padding: 40px; +} @import "bootstrap-responsive"; -- cgit v1.2.3 From 9afcef0648f34435f40644242e038cafb1dce117 Mon Sep 17 00:00:00 2001 From: Azul Date: Mon, 26 Nov 2012 16:39:44 +0100 Subject: hide buttons in table-hover unless hovered over tr --- app/assets/stylesheets/application.scss | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'app/assets/stylesheets/application.scss') diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index 3465431..8dec07d 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -3,3 +3,12 @@ body { padding: 40px; } @import "bootstrap-responsive"; + + +table.table-hover .btn { + opacity: 0; +} + +table.table-hover tr:hover .btn { + opacity: 1; +} -- cgit v1.2.3