Adding basic padding to aligned content images

This commit is contained in:
Holger Könemann 2016-07-07 20:12:43 +02:00
parent 1412587672
commit 095b04e59e
4 changed files with 17 additions and 2 deletions

View File

@ -21,6 +21,7 @@ http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
## Changelog
- **Pre-Release 0.4.6 **
- Adding basic padding to aligned content images
- Adding author.php template with author infos
- Correct language file + german translation

View File

@ -4589,6 +4589,12 @@ a.bg-danger:focus, a.bg-danger:hover {
.alignleft {
float: left; }
img.alignleft {
padding-right: 10px; }
img.alignright {
padding-left: 10px; }
.aligncenter {
margin: 0px auto; }
@ -4694,7 +4700,7 @@ a.skip-link {
.fa {
display: inline-block;
font: normal normal normal 14px / 1 FontAwesome;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;

2
css/theme.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -44,6 +44,14 @@ font-size:inherit;
float: left;
}
img.alignleft{
padding-right:10px;
}
img.alignright{
padding-left:10px;
}
.aligncenter {
margin:0px auto;
}