diff options
| author | makitso <makitso@gmail.com> | 2017-07-11 15:08:25 -0500 |
|---|---|---|
| committer | makitso <makitso@gmail.com> | 2017-07-11 15:08:25 -0500 |
| commit | 6cf00dfbb0a137dc8c3a4080da7b41a71ca41bba (patch) | |
| tree | ca21552db38e888518e97e1bd9c21fbdceb55d10 | |
| parent | 36e3a54a943f49dfce3b3b80ae489e5219b4182b (diff) | |
| download | webtrees-6cf00dfbb0a137dc8c3a4080da7b41a71ca41bba.tar.gz webtrees-6cf00dfbb0a137dc8c3a4080da7b41a71ca41bba.tar.bz2 webtrees-6cf00dfbb0a137dc8c3a4080da7b41a71ca41bba.zip | |
Reduce space around button for front page edit icon
| -rw-r--r-- | themes/clouds/css-1.7.8/style.css | 9 | ||||
| -rw-r--r-- | themes/colors/css-1.7.8/style.css | 9 |
2 files changed, 14 insertions, 4 deletions
diff --git a/themes/clouds/css-1.7.8/style.css b/themes/clouds/css-1.7.8/style.css index b8f6c0726a..39e2377285 100644 --- a/themes/clouds/css-1.7.8/style.css +++ b/themes/clouds/css-1.7.8/style.css @@ -25,8 +25,13 @@ h2::first-letter { } .btn-link { - padding-left: 0.25rem; - padding-right: 0.25rem; + padding: 0 .25rem; +} + +.card-header .btn-link { + font-size: 0; + line-height: 0; + border: 0; } .container-fluid { diff --git a/themes/colors/css-1.7.8/style.css b/themes/colors/css-1.7.8/style.css index 6c99c8c1b5..3d1248057b 100644 --- a/themes/colors/css-1.7.8/style.css +++ b/themes/colors/css-1.7.8/style.css @@ -25,11 +25,16 @@ h2::first-letter { } .btn-link { - padding-left: 0.25rem; - padding-right: 0.25rem; + padding: 0 .25rem; color: #333; } +.card-header .btn-link { + font-size: 0; + line-height: 0; + border: 0; +} + .btn.focus, .btn:focus { box-shadow: none; } |
