feat(icons): allow icons to have modifiers

used to display additional icons that augment the meaning, e.g. 'add' a filter or 'remove' a filter

closes #806
This commit is contained in:
Alex Gyoshev 2017-12-21 15:05:26 +02:00 коммит произвёл Иван Жеков
Родитель 1d56f99f26
Коммит 91f820418c
2 изменённых файлов: 30 добавлений и 0 удалений

Просмотреть файл

@ -36,6 +36,19 @@
}
}
.k-icon-with-modifier {
position: relative;
margin: .25em;
}
.k-icon-modifier {
position: absolute;
font-size: .5em;
bottom: 0;
right: 0;
margin: 0 -.5em -.5em 0;
}
.k-i-none::before {
content: "";
display: none;

17
tests/fixtures/icons.html поставляемый Normal file
Просмотреть файл

@ -0,0 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<title>Document</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../../dist/all.css" />
</head>
<body>
<div class="test-area">
<span id="icon" class="k-icon k-i-custom"></span>
<span id="modified-icon" class="k-icon k-i-filter"><span class="k-icon-modifier k-i-add"></span></span>
</div>
</body>
</html>