-
+import ContextMenu from './components/menu/ContextMenu';
+
+import RouterLayout from './layouts/RouterLayout';
+export default {
+
+ components: {
+ ContextMenu, RouterLayout,
+ },
+
+};
+
+ ::-webkit-scrollbar
+ width 10px
+ ::-webkit-scrollbar-thumb
+ border-radius 10px
+ -webkit-box-shadow inset 0 0 8px rgba(0,0,0,0.2)
+ background #535353
+
+ ::-webkit-scrollbar-track
+ -webkit-box-shadow inset 0 0 8px rgba(0,0,0,0.3)
+ border-radius 10px
+ background-color rgba(85,85,93,.5)
+ #app
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
+ font-size: 14px;
+ line-height: 1.5em;
+ background-color rgba(62,63,65,1)
+ color #fff
+ width 100vw
+ height 100vh
+ padding 0
+ margin 0
+ overflow hidden
+
\ No newline at end of file
diff --git a/src/renderer/assets/eyedropper-touchbar.png b/src/renderer/assets/eyedropper-touchbar.png
new file mode 100644
index 0000000..dd37573
Binary files /dev/null and b/src/renderer/assets/eyedropper-touchbar.png differ
diff --git a/src/renderer/assets/font1/LICENSE.txt b/src/renderer/assets/font1/LICENSE.txt
new file mode 100755
index 0000000..c20204e
--- /dev/null
+++ b/src/renderer/assets/font1/LICENSE.txt
@@ -0,0 +1,75 @@
+Font license info
+
+
+## Font Awesome
+
+ Copyright (C) 2016 by Dave Gandy
+
+ Author: Dave Gandy
+ License: SIL ()
+ Homepage: http://fortawesome.github.com/Font-Awesome/
+
+
+## Typicons
+
+ (c) Stephen Hutchings 2012
+
+ Author: Stephen Hutchings
+ License: SIL (http://scripts.sil.org/OFL)
+ Homepage: http://typicons.com/
+
+
+## Entypo
+
+ Copyright (C) 2012 by Daniel Bruce
+
+ Author: Daniel Bruce
+ License: SIL (http://scripts.sil.org/OFL)
+ Homepage: http://www.entypo.com
+
+
+## Iconic
+
+ Copyright (C) 2012 by P.J. Onori
+
+ Author: P.J. Onori
+ License: SIL (http://scripts.sil.org/OFL)
+ Homepage: http://somerandomdude.com/work/iconic/
+
+
+## Web Symbols
+
+ Copyright (c) 2011 by Just Be Nice studio. All rights reserved.
+
+ Author: Just Be Nice studio
+ License: SIL (http://scripts.sil.org/OFL)
+ Homepage: http://www.justbenicestudio.com/
+
+
+## Elusive
+
+ Copyright (C) 2013 by Aristeides Stathopoulos
+
+ Author: Aristeides Stathopoulos
+ License: SIL (http://scripts.sil.org/OFL)
+ Homepage: http://aristeides.com/
+
+
+## Linecons
+
+ Copyright (C) 2013 by Designmodo
+
+ Author: Designmodo for Smashing Magazine
+ License: CC BY ()
+ Homepage: http://designmodo.com/linecons-free/
+
+
+## MFG Labs
+
+ Copyright (C) 2012 by Daniel Bruce
+
+ Author: MFG Labs
+ License: SIL (http://scripts.sil.org/OFL)
+ Homepage: http://www.mfglabs.com/
+
+
diff --git a/src/renderer/assets/font1/README.txt b/src/renderer/assets/font1/README.txt
new file mode 100755
index 0000000..beaab33
--- /dev/null
+++ b/src/renderer/assets/font1/README.txt
@@ -0,0 +1,75 @@
+This webfont is generated by http://fontello.com open source project.
+
+
+================================================================================
+Please, note, that you should obey original font licenses, used to make this
+webfont pack. Details available in LICENSE.txt file.
+
+- Usually, it's enough to publish content of LICENSE.txt file somewhere on your
+ site in "About" section.
+
+- If your project is open-source, usually, it will be ok to make LICENSE.txt
+ file publicly available in your repository.
+
+- Fonts, used in Fontello, don't require a clickable link on your site.
+ But any kind of additional authors crediting is welcome.
+================================================================================
+
+
+Comments on archive content
+---------------------------
+
+- /font/* - fonts in different formats
+
+- /css/* - different kinds of css, for all situations. Should be ok with
+ twitter bootstrap. Also, you can skip style and assign icon classes
+ directly to text elements, if you don't mind about IE7.
+
+- demo.html - demo file, to show your webfont content
+
+- LICENSE.txt - license info about source fonts, used to build your one.
+
+- config.json - keeps your settings. You can import it back into fontello
+ anytime, to continue your work
+
+
+Why so many CSS files ?
+-----------------------
+
+Because we like to fit all your needs :)
+
+- basic file, .css - is usually enough, it contains @font-face
+ and character code definitions
+
+- *-ie7.css - if you need IE7 support, but still don't wish to put char codes
+ directly into html
+
+- *-codes.css and *-ie7-codes.css - if you like to use your own @font-face
+ rules, but still wish to benefit from css generation. That can be very
+ convenient for automated asset build systems. When you need to update font -
+ no need to manually edit files, just override old version with archive
+ content. See fontello source code for examples.
+
+- *-embedded.css - basic css file, but with embedded WOFF font, to avoid
+ CORS issues in Firefox and IE9+, when fonts are hosted on the separate domain.
+ We strongly recommend to resolve this issue by `Access-Control-Allow-Origin`
+ server headers. But if you ok with dirty hack - this file is for you. Note,
+ that data url moved to separate @font-face to avoid problems with
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/renderer/components/tools/tooltip/index.vue b/src/renderer/components/tools/tooltip/index.vue
new file mode 100644
index 0000000..7c4e1ae
--- /dev/null
+++ b/src/renderer/components/tools/tooltip/index.vue
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/renderer/components/tools/tooltip/tooltip-item.vue b/src/renderer/components/tools/tooltip/tooltip-item.vue
new file mode 100644
index 0000000..c4988c7
--- /dev/null
+++ b/src/renderer/components/tools/tooltip/tooltip-item.vue
@@ -0,0 +1,16 @@
+
+