framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
65 lines (64 loc) • 985 B
text/less
.md {
.icon-back,
.icon-forward,
.icon-next,
.icon-prev {
width: 24px;
height: 24px;
&:after {
line-height: 1.2;
}
}
.item-media .icon {
color: #737373;
}
.item-media .material-icons {
font-size: 24px;
width: 24px;
height: 24px;
}
.ltr({
.icon-back {
&:after {
content: 'arrow_left_md';
}
}
.icon-forward {
&:after {
content: 'arrow_right_md';
}
}
.icon-next {
&:after {
content: 'chevron_right_md';
}
}
.icon-prev {
&:after {
content: 'chevron_left_md';
}
}
});
.rtl({
.icon-back {
&:after {
content: 'arrow_right_md';
}
}
.icon-forward {
&:after {
content: 'arrow_left_md';
}
}
.icon-next {
&:after {
content: 'chevron_left_md';
}
}
.icon-prev {
&:after {
content: 'chevron_right_md';
}
}
});
}