1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-12 22:15:55 +00:00

Paragrapghs now indent after lists

This commit is contained in:
Scott Tolksdorf
2016-05-29 13:42:05 -04:00
parent 9950c747da
commit 802103ff27
3 changed files with 10 additions and 2 deletions

View File

@@ -5,6 +5,7 @@
- Override Ctrl+P (and cmd+P) to launch to the print page. Many people try to just print either the editing or share page to get a PDF. While this dones;t make much sense, I do get a ton of issues about it. So now if you try to do this, it'll just bring you imediately to the print page. Everybody wins!
- The onboarding flow has also been confusing a few users (Homepage -> new -> save -> edit page). If you edit the Homepage text now, a Call to Action to save your work will pop-up.
- Added a 'Recently Edited' and 'Recently Viewed' nav item to the edit and share page respectively. Each will remember the last 8 items you edited or viewed and when you viewed it. Makes use of the new title attribute of brews to easy navigatation.
- Paragraphs now indent properly after lists (thanks u/slitjen!)
### Friday, 27/05/2016 - v2.0.6
- Updated the issue template for (hopefully) better reporting

View File

@@ -59,7 +59,6 @@
line-height : 1.3em;
&+p{
margin-top : -0.8em;
text-indent : 1em;
}
}
ul{
@@ -76,6 +75,10 @@
list-style-position : outside;
list-style-type : decimal;
}
//Indents after p or lists
p+p, ul+p, ol+p{
text-indent : 1em;
}
img{
z-index : -1;
}

View File

@@ -208,7 +208,6 @@ table {
}
.phb p + p {
margin-top: -0.8em;
text-indent: 1em;
}
.phb ul {
margin-bottom: 0.8em;
@@ -224,6 +223,11 @@ table {
list-style-position: outside;
list-style-type: decimal;
}
.phb p + p,
.phb ul + p,
.phb ol + p {
text-indent: 1em;
}
.phb img {
z-index: -1;
}