fix(item): inherit overflow and text-overflow from the parent item in a paragraph

This commit is contained in:
Brandy Carney
2016-06-27 14:40:09 -04:00
parent b1b7bb806a
commit 400957517d
3 changed files with 9 additions and 0 deletions

View File

@@ -62,10 +62,13 @@ $item-ios-sliding-content-background: $list-ios-background-color !default;
}
p {
overflow: inherit;
margin: 0 0 2px;
font-size: 1.2rem;
line-height: normal;
text-overflow: inherit;
color: $item-ios-paragraph-text-color;
}

View File

@@ -65,10 +65,13 @@ $item-md-sliding-content-background: $list-md-background-color !default;
}
p {
overflow: inherit;
margin: 0 0 2px;
font-size: 1.4rem;
line-height: normal;
text-overflow: inherit;
color: $item-md-paragraph-text-color;
}
}

View File

@@ -66,10 +66,13 @@ $item-wp-sliding-content-background: $list-wp-background-color !default;
}
p {
overflow: inherit;
margin: 0 0 2px;
font-size: 1.4rem;
line-height: normal;
text-overflow: inherit;
color: $item-wp-paragraph-text-color;
}
}