0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-03 14:52:38 +00:00

Fix property name break-inside

This commit is contained in:
Eric Scheid
2018-05-07 20:46:08 +10:00
committed by Trevor Buckner
parent fd5d142c16
commit d693301c37

View File

@@ -338,7 +338,7 @@ body {
p,blockquote,table{ p,blockquote,table{
z-index : 15; z-index : 15;
-webkit-column-break-inside : avoid; -webkit-column-break-inside : avoid;
column-break-inside : avoid; break-inside : avoid;
overflow: hidden; /* Firefox fix */ overflow: hidden; /* Firefox fix */
} }
//Better spacing for spell blocks //Better spacing for spell blocks
@@ -356,7 +356,7 @@ body {
} }
li{ li{
-webkit-column-break-inside : avoid; -webkit-column-break-inside : avoid;
column-break-inside : avoid; break-inside : avoid;
} }
} }
//***************************** //*****************************
@@ -381,7 +381,7 @@ body {
text-indent : -1em; text-indent : -1em;
list-style-type : none; list-style-type : none;
-webkit-column-break-inside : auto; -webkit-column-break-inside : auto;
column-break-inside : auto; break-inside : auto;
} }
} }
//***************************** //*****************************
@@ -450,7 +450,7 @@ body {
// *****************************/ // *****************************/
.phb .toc{ .phb .toc{
-webkit-column-break-inside : avoid; -webkit-column-break-inside : avoid;
column-break-inside : avoid; break-inside : avoid;
a{ a{
color : black; color : black;
text-decoration : none; text-decoration : none;