Adding basic padding to aligned content images
This commit is contained in:
parent
1412587672
commit
095b04e59e
|
@ -21,6 +21,7 @@ http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
- **Pre-Release 0.4.6 **
|
- **Pre-Release 0.4.6 **
|
||||||
|
- Adding basic padding to aligned content images
|
||||||
- Adding author.php template with author infos
|
- Adding author.php template with author infos
|
||||||
- Correct language file + german translation
|
- Correct language file + german translation
|
||||||
|
|
||||||
|
|
|
@ -4589,6 +4589,12 @@ a.bg-danger:focus, a.bg-danger:hover {
|
||||||
.alignleft {
|
.alignleft {
|
||||||
float: left; }
|
float: left; }
|
||||||
|
|
||||||
|
img.alignleft {
|
||||||
|
padding-right: 10px; }
|
||||||
|
|
||||||
|
img.alignright {
|
||||||
|
padding-left: 10px; }
|
||||||
|
|
||||||
.aligncenter {
|
.aligncenter {
|
||||||
margin: 0px auto; }
|
margin: 0px auto; }
|
||||||
|
|
||||||
|
@ -4694,7 +4700,7 @@ a.skip-link {
|
||||||
|
|
||||||
.fa {
|
.fa {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font: normal normal normal 14px / 1 FontAwesome;
|
font: normal normal normal 14px/1 FontAwesome;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
text-rendering: auto;
|
text-rendering: auto;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -44,6 +44,14 @@ font-size:inherit;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img.alignleft{
|
||||||
|
padding-right:10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.alignright{
|
||||||
|
padding-left:10px;
|
||||||
|
}
|
||||||
|
|
||||||
.aligncenter {
|
.aligncenter {
|
||||||
margin:0px auto;
|
margin:0px auto;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue