mirror of
https://github.com/stolksdorf/homebrewery.git
synced 2025-12-15 23:05:57 +00:00
Paragrapghs now indent after lists
This commit is contained in:
@@ -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!
|
- 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.
|
- 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.
|
- 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
|
### Friday, 27/05/2016 - v2.0.6
|
||||||
- Updated the issue template for (hopefully) better reporting
|
- Updated the issue template for (hopefully) better reporting
|
||||||
|
|||||||
@@ -59,7 +59,6 @@
|
|||||||
line-height : 1.3em;
|
line-height : 1.3em;
|
||||||
&+p{
|
&+p{
|
||||||
margin-top : -0.8em;
|
margin-top : -0.8em;
|
||||||
text-indent : 1em;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ul{
|
ul{
|
||||||
@@ -76,6 +75,10 @@
|
|||||||
list-style-position : outside;
|
list-style-position : outside;
|
||||||
list-style-type : decimal;
|
list-style-type : decimal;
|
||||||
}
|
}
|
||||||
|
//Indents after p or lists
|
||||||
|
p+p, ul+p, ol+p{
|
||||||
|
text-indent : 1em;
|
||||||
|
}
|
||||||
img{
|
img{
|
||||||
z-index : -1;
|
z-index : -1;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -208,7 +208,6 @@ table {
|
|||||||
}
|
}
|
||||||
.phb p + p {
|
.phb p + p {
|
||||||
margin-top: -0.8em;
|
margin-top: -0.8em;
|
||||||
text-indent: 1em;
|
|
||||||
}
|
}
|
||||||
.phb ul {
|
.phb ul {
|
||||||
margin-bottom: 0.8em;
|
margin-bottom: 0.8em;
|
||||||
@@ -224,6 +223,11 @@ table {
|
|||||||
list-style-position: outside;
|
list-style-position: outside;
|
||||||
list-style-type: decimal;
|
list-style-type: decimal;
|
||||||
}
|
}
|
||||||
|
.phb p + p,
|
||||||
|
.phb ul + p,
|
||||||
|
.phb ol + p {
|
||||||
|
text-indent: 1em;
|
||||||
|
}
|
||||||
.phb img {
|
.phb img {
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user