Skip to content

Commit

Permalink
chore(fonticons): update details and demos related to font icons
Browse files Browse the repository at this point in the history
  • Loading branch information
PekoPPT committed Oct 4, 2023
1 parent 2539433 commit a0c3f16
Show file tree
Hide file tree
Showing 12 changed files with 2,317 additions and 1,186 deletions.
455 changes: 313 additions & 142 deletions docs/styling/examples/icons/actions/main.html

Large diffs are not rendered by default.

172 changes: 97 additions & 75 deletions docs/styling/examples/icons/alerts-n-notifications/main.html
Original file line number Diff line number Diff line change
@@ -1,92 +1,114 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://unpkg.com/@progress/kendo-theme-default@latest/dist/all.css"
/>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossOrigin="anonymous"/>
<link rel="stylesheet" href="https://unpkg.com/@progress/kendo-theme-default@latest/dist/all.css" />

<style>
.WebComponentsIcons {
list-style: none;
margin: 0;
padding: 0;
}
.WebComponentsIcons {
list-style: none;
margin: 0;
padding: 0;
}

.WebComponentsIcons::after {
content: "";
display: block;
clear: both;
height: 0;
line-height: 0;
}
.WebComponentsIcons::after {
content: "";
display: block;
clear: both;
height: 0;
line-height: 0;
}

.WebComponentsIcons li {
margin: 10px;
padding: 10px;
display: block;
float: left;
vertical-align: top;
text-align: center;
width: 160px;
height: 92px;
font-size: 12px;
line-height: 1em;
font-weight: 300;
color: #999;
}
.WebComponentsIcons li {
margin: 10px;
padding: 10px;
display: block;
float: left;
vertical-align: top;
text-align: center;
width: 160px;
height: 92px;
font-size: 12px;
line-height: 1em;
font-weight: 300;
color: #999;
}

.WebComponentsIcons li:before {
display: none;
}
.WebComponentsIcons li:before {
display: none;
}

.WebComponentsIcons .k-icon {
display: block;
clear: both;
margin: 0 auto 10px;
color: #656565;
font-size: 32px;
}
.WebComponentsIcons .k-icon.k-font-icon {
display: block;
clear: both;
margin: 0 auto 10px;
color: #656565;
font-size: 32px;
}

.obsolete-classes {
width: 100%;
max-width: 900px;
text-align: left;
border-collapse: collapse;
}
.obsolete-classes {
width: 100%;
max-width: 900px;
text-align: left;
border-collapse: collapse;
}

.obsolete-classes th,
.obsolete-classes td {
padding: 10px 0;
border-bottom: 1px solid #ececec;
}
.obsolete-classes th,
.obsolete-classes td {
padding: 10px 0;
border-bottom: 1px solid #ececec;
}

.obsolete-classes th {
padding: 0 0 5px;
}
.obsolete-classes th {
padding: 0 0 5px;
}

.old-class {
color: #f31700;
}
.old-class {
color: #f31700;
}

.new-class {
color: #5ec232;
}
.new-class {
color: #5ec232;
}

.ref-icon {
width: 60px;
}
.ref-icon {
width: 60px;
}
</style>
</head>
</head>

<body>
<body>
<ul class="WebComponentsIcons">
<li><span class="k-icon k-i-notification"></span> .k-i-notification<br /> .k-i-bell</li>
<li><span class="k-icon k-i-information"></span> .k-i-information<br /> .k-i-info</li>
<li><span class="k-icon k-i-question"></span> .k-i-question<br /> .k-i-help</li>
<li><span class="k-icon k-i-warning"></span> .k-i-warning<br /> .k-i-exception<br /> .k-i-error</li>
</ul>
</body>

</html>
<li>
<span class="k-icon k-font-icon k-i-notification"></span>
.k-i-notification<br />
.k-i-bell
</li>
<li>
<span class="k-icon k-font-icon k-i-information"></span>
.k-i-information<br />
.k-i-info
</li>
<li>
<span class="k-icon k-font-icon k-i-question"></span>
.k-i-question<br />
.k-i-help
</li>
<li>
<span class="k-icon k-font-icon k-i-warning"></span> .k-i-warning<br />
.k-i-exception<br />
.k-i-error
</li>
</ul>
</body>
</html>
Loading

0 comments on commit a0c3f16

Please sign in to comment.