aboutsummaryrefslogtreecommitdiff
path: root/src/editor.html
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-03-12 15:04:56 +0100
committercodecalm <codecalm@gmail.com>2020-03-12 15:04:56 +0100
commit89a774589d6c712fc229f6c946f39b7e3be95a5b (patch)
treebeedbe7e3f49a4b09a67cf6c596490828d52266d /src/editor.html
parentgulp fixes (diff)
downloadtabler-icons-89a774589d6c712fc229f6c946f39b7e3be95a5b.tar.xz
new dir structure
Diffstat (limited to 'src/editor.html')
-rw-r--r--src/editor.html137
1 files changed, 137 insertions, 0 deletions
diff --git a/src/editor.html b/src/editor.html
new file mode 100644
index 0000000..6794a49
--- /dev/null
+++ b/src/editor.html
@@ -0,0 +1,137 @@
+---
+layout: default
+---
+<div class="container">
+ <div class="box">
+
+ {% assign icons = site.icons %}
+
+ {% assign first-icon = site.icons | reverse | first %}
+ {% assign slug = first-icon.slug %}
+ {% capture first-icon %}
+ {% include icon.html name=slug %}
+ {% endcapture %}
+
+ <div class="row mb js-icon-manager">
+ <div class="col">
+
+ <div class="icon-preview-wrap">
+ <div class="icon-preview">
+ {{ first-icon }}
+ {{ first-icon }}
+ </div>
+ </div>
+ </div>
+ <div class="col-aside">
+
+ <h1 class="icon-title js-icon-name">{{ slug }}</h1>
+
+ <div class="mb">
+ <button class="btn">
+ {{ first-icon }} Button
+ </button>
+ <button class="btn btn-icon">
+ {{ first-icon }}
+ </button>
+ <button class="btn btn-link">
+ {{ first-icon }} Button
+ </button>
+ </div>
+
+ <div class="input-icon mb">
+ <input type="text" class="input" value="Input value">
+ {{ first-icon }}
+ </div>
+
+ <div class="input-icon icon-left mb">
+ {{ first-icon }}
+ <input type="text" class="input" placeholder="Input placeholder">
+ </div>
+
+ <div class="mb">
+ <div class="avatar">{{ first-icon }}</div>
+ <div class="avatar avatar-sm">{{ first-icon }}</div>
+
+ <a href="#">{{ first-icon }} Link</a>
+ </div>
+
+ <div class="tabs mb">
+ <a class="tab active">{{ first-icon }} Tab 1</a>
+ <a class="tab">Tab 2</a>
+ <a class="tab">Tab 3</a>
+ </div>
+
+
+ <div class="mt-auto">
+ <input class="input-range js-input-range" type="range" min="1.25" max="2.75" step=".25" value="2">
+ </div>
+
+ </div>
+ </div>
+
+ <h2 class="icon-subtitle">{{ site.icons.size }} icons</h2>
+
+ <div class="mb">
+ <div class="icons-list">
+ {% for icon in icons %}
+ {% assign name = icon.slug %}
+ <a href="#" class="icons-list-icon js-icon" title="{{ icon.slug }}" data-icon="{{ name }}">
+ {% include icon.html name=name %}
+ </a>
+ {% endfor %}
+ </div>
+ </div>
+
+ <div class="mb">
+ <div class="icons-list icons-list-borders">
+ {% for icon in icons %}
+ {% assign name = icon.slug %}
+ <a href="#" class="icons-list-icon js-icon" title="{{ icon.slug }}" data-icon="{{ name }}">
+ {% include icon.html name=name %}
+ </a>
+ {% endfor %}
+ </div>
+ </div>
+
+ <div class="mb">
+ <div class="icons-list icons-list-squares">
+ {% for icon in icons %}
+ {% assign name = icon.slug %}
+ <a href="#" class="icons-list-icon js-icon" title="{{ icon.slug }}" data-icon="{{ name }}">
+ {% include icon.html name=name %}
+ </a>
+ {% endfor %}
+ </div>
+ </div>
+
+ </div>
+</div>
+
+<script>
+ $(document).ready(function () {
+ $('body')
+ .on('click', '.js-icon', function (e) {
+ var icon = $(this).attr('data-icon');
+
+ $('.js-icon-name').html(icon);
+ localStorage.setItem('icon', icon);
+
+ $('.js-icon-manager svg').replaceWith($(this).find('>svg:eq(0)').clone());
+
+ e.preventDefault();
+ return false;
+ })
+ .on('input', '.js-input-range', function(e){
+ $('.js-icon svg').css('stroke-width', $(this).val());
+
+ e.preventDefault();
+ return false;
+ });
+
+
+ var icon = localStorage.getItem('icon');
+ if (icon) {
+ $('.js-icon[data-icon="' + icon + '"]').eq(0).click();
+ }
+ });
+</script>