From e88a4096f9193e4ca56b577e81f6b47ac9eea523 Mon Sep 17 00:00:00 2001 From: Máirín Duffy Date: Aug 04 2016 18:37:47 +0000 Subject: [PATCH 1/2] better spacing between icons in upper right of widgets/cards --- diff --git a/hubs/static/css/style.css b/hubs/static/css/style.css index 30e246b..3c9cb61 100644 --- a/hubs/static/css/style.css +++ b/hubs/static/css/style.css @@ -136,8 +136,11 @@ margin-bottom: 0px; } .widget-buttons { - padding: 5px; - /* TODO -- lots more nice styling here... */ + padding: .5rem; + } + + .widget .widget-buttons a { + margin-right: .4rem; } .panel { @@ -403,3 +406,5 @@ font-size: 32pt; header h5.m-b-1 { margin-top: 0.5rem!important; } + +/** From 3705fd09a964dc055342d71151c602b4ed6e2663 Mon Sep 17 00:00:00 2001 From: Máirín Duffy Date: Aug 04 2016 18:37:47 +0000 Subject: [PATCH 2/2] fix padding for buttons on the bottom of a widget (Eg request a meeting button in meeting widget) --- diff --git a/hubs/static/css/style.css b/hubs/static/css/style.css index 3c9cb61..fe40b05 100644 --- a/hubs/static/css/style.css +++ b/hubs/static/css/style.css @@ -407,4 +407,8 @@ header h5.m-b-1 { margin-top: 0.5rem!important; } -/** +/** not sure if this is coming from fedora bootstrap but it's card related **/ + +.card .panel-footer { + padding-bottom: 2rem; /* fixes request new meeting button padding on the upcoming meeting widget */ +}