You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
425 B
21 lines
425 B
/** |
|
* @file |
|
* Visual styles for icons. |
|
*/ |
|
|
|
.icon-help { |
|
padding: 1px 0 1px 20px; /* LTR */ |
|
background: url(../../images/icons/help.png) 0 50% no-repeat; /* LTR */ |
|
} |
|
[dir="rtl"] .icon-help { |
|
padding: 1px 20px 1px 0; |
|
background-position: 100% 50%; |
|
} |
|
.feed-icon { |
|
display: block; |
|
overflow: hidden; |
|
width: 16px; |
|
height: 16px; |
|
text-indent: -9999px; |
|
background: url(../../images/icons/feed.svg) no-repeat; |
|
}
|
|
|