From 90b2d1e8ef5c9112f5da858d4830a387b196b8af Mon Sep 17 00:00:00 2001 From: The Gitter Badger Date: Wed, 16 Aug 2017 08:33:00 +0000 Subject: [PATCH 01/18] Add Gitter badge --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 756921a..a463247 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # eleven: A Drupal 8 administration theme +[![Join the chat at https://gitter.im/eleventheme/Lobby](https://badges.gitter.im/eleventheme/Lobby.svg)](https://gitter.im/eleventheme/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + > this one goes to 11 —mortendk ## Installation From c830f3664c834d62971fd29813714b51fa64fadf Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 18 Aug 2017 14:44:27 +0200 Subject: [PATCH 02/18] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a463247..fe7bea9 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Manual ###Drush ``` drush dl eleven +drush en eleven drush config-set system.theme admin eleven ``` From 801ccc907df8ccebe6b479fe4078a2d6ac2297ea Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 18 Aug 2017 14:44:34 +0200 Subject: [PATCH 03/18] Update README.md From 8ffaf3f711baf159d775c62b0420739c3afd918b Mon Sep 17 00:00:00 2001 From: mortendk Date: Sat, 19 Aug 2017 15:05:03 +0200 Subject: [PATCH 04/18] updating drush commands --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe7bea9..15b3df5 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ Manual ###Drush ``` drush dl eleven -drush en eleven -drush config-set system.theme admin eleven +drush en eleven -y +drush config-set system.theme admin eleven -y ``` ###Composer From 3f8e6b1e3e107492e30444deeaeb664903d1a61d Mon Sep 17 00:00:00 2001 From: mortendk Date: Sat, 19 Aug 2017 21:35:45 +0200 Subject: [PATCH 05/18] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 15b3df5..de139c5 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,11 @@ Go to the apparence page in your drupal site `/admin/appearance` Afterwards enable modules as usual. +### Uninstall +``` +drush pm-uninstall eleven elevenfeat -y +``` + ## Demo Visit [Eleven Theme](http://eleventheme.com/) for the demo and screenshots. From fc5ab1829467b918ecb14af67bb8d0fbfa000ab8 Mon Sep 17 00:00:00 2001 From: mortendk Date: Mon, 21 Aug 2017 14:20:02 +0200 Subject: [PATCH 06/18] #207 removing the card view of paragraphs admin fields --- eleven/eleven.theme | 16 +++++++++------- feattest/feattest.info.yml | 2 +- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/eleven/eleven.theme b/eleven/eleven.theme index 72963e7..de82a51 100644 --- a/eleven/eleven.theme +++ b/eleven/eleven.theme @@ -8,7 +8,6 @@ function eleven_preprocess(&$variables){ $variables['themepath'] = drupal_get_path('theme','eleven'); } - function eleven_preprocess_html(&$variables){ $variables['path'] = \Drupal::service('path.current')->getPath(); $variables['systempath'] = explode('/', \Drupal::service('path.current')->getPath()); @@ -124,13 +123,15 @@ function eleven_theme_suggestions_table_alter(array &$suggestions, array $variab } } + if(! isset( $path[7])) { - if(isset( $path[6])) { - if($path[4] == "manage" AND $path[6] =="fields") { - $suggestions[] ='table__layout__fields'; - } - if($path[4] == "manage" AND $path[6] =="translate") { - $suggestions[] ='table__layout__translate'; + if(isset( $path[6])) { + if($path[4] == "manage" AND $path[6] =="fields") { + $suggestions[] ='table__layout__fields'; + } + if($path[4] == "manage" AND $path[6] =="translate") { + $suggestions[] ='table__layout__translate'; + } } } @@ -141,6 +142,7 @@ function eleven_theme_suggestions_table_alter(array &$suggestions, array $variab } } + //protip dont have - in a twig filename its not gonna be picked up $suggestions = str_replace('-', '',$suggestions); diff --git a/feattest/feattest.info.yml b/feattest/feattest.info.yml index 8920425..240ad52 100644 --- a/feattest/feattest.info.yml +++ b/feattest/feattest.info.yml @@ -1,4 +1,4 @@ -name: feattest +name: Elven FEAT test type: theme description: 'theme made for testing FEAT eleven theme' base theme: elevenfeat # grap the eleven feat theme elements. From 79fb732af81ec45a7e2f4d1381581459da66b9a7 Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 25 Aug 2017 11:45:41 +0200 Subject: [PATCH 07/18] adding back in the id for form description for a11y love --- eleven/templates/component/form/form-element.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eleven/templates/component/form/form-element.html.twig b/eleven/templates/component/form/form-element.html.twig index ce8e35a..e74fff4 100644 --- a/eleven/templates/component/form/form-element.html.twig +++ b/eleven/templates/component/form/form-element.html.twig @@ -54,7 +54,7 @@ {# description before #} {% if description.content %} - + {{ description.content }} {% endif %} From 2f645d718fb852773d9565bcb062db031f4b9971 Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 25 Aug 2017 12:09:19 +0200 Subject: [PATCH 08/18] removed twig left over }}> from display modes --- .../layout-landing/displaymodes/table--displaymodes.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eleven/templates/layout-landing/displaymodes/table--displaymodes.html.twig b/eleven/templates/layout-landing/displaymodes/table--displaymodes.html.twig index b7a4c3a..8f41b99 100644 --- a/eleven/templates/layout-landing/displaymodes/table--displaymodes.html.twig +++ b/eleven/templates/layout-landing/displaymodes/table--displaymodes.html.twig @@ -24,7 +24,7 @@ media tables layout {# lets taste if we have a label #} {% if row.cells.label %} -
}}> +

From 92abe40c43718700f92e681ab33e502590173b35 Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 25 Aug 2017 12:25:04 +0200 Subject: [PATCH 09/18] minor cleanup on db log --- .../navigation/localtask/icons/trash.svg | 7 ++++ ...lock--system-menu-block--account.html.twig | 34 ------------------- .../component/navigation/usermenu/pacman.svg | 17 ---------- .../component/navigation/usermenu/user.svg | 4 --- .../navigation/usermenu/usermenu.css | 3 -- .../layout-landing/reports/dblog.css | 12 ++++--- 6 files changed, 15 insertions(+), 62 deletions(-) create mode 100644 eleven/templates/component/navigation/localtask/icons/trash.svg delete mode 100644 eleven/templates/component/navigation/usermenu/block--system-menu-block--account.html.twig delete mode 100644 eleven/templates/component/navigation/usermenu/pacman.svg delete mode 100644 eleven/templates/component/navigation/usermenu/user.svg delete mode 100644 eleven/templates/component/navigation/usermenu/usermenu.css diff --git a/eleven/templates/component/navigation/localtask/icons/trash.svg b/eleven/templates/component/navigation/localtask/icons/trash.svg new file mode 100644 index 0000000..637ec55 --- /dev/null +++ b/eleven/templates/component/navigation/localtask/icons/trash.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/eleven/templates/component/navigation/usermenu/block--system-menu-block--account.html.twig b/eleven/templates/component/navigation/usermenu/block--system-menu-block--account.html.twig deleted file mode 100644 index 306c29b..0000000 --- a/eleven/templates/component/navigation/usermenu/block--system-menu-block--account.html.twig +++ /dev/null @@ -1,34 +0,0 @@ -{% - set classes = [ - 'usermenu', - ] -%} - -{{ attach_library('eleven/usermenu') }} - -

- {{ title_suffix }} - - - - - {% include themepath ~ '/templates/component/navigation/usermenu/user.svg' %} - - {{ user.getDisplayName }} - - - -
- {{ content }} -
- - diff --git a/eleven/templates/component/navigation/usermenu/pacman.svg b/eleven/templates/component/navigation/usermenu/pacman.svg deleted file mode 100644 index 246d4fd..0000000 --- a/eleven/templates/component/navigation/usermenu/pacman.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - pacman - Created with Sketch. - - - - - - - - - - - - \ No newline at end of file diff --git a/eleven/templates/component/navigation/usermenu/user.svg b/eleven/templates/component/navigation/usermenu/user.svg deleted file mode 100644 index 3fd1dd7..0000000 --- a/eleven/templates/component/navigation/usermenu/user.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/eleven/templates/component/navigation/usermenu/usermenu.css b/eleven/templates/component/navigation/usermenu/usermenu.css deleted file mode 100644 index 80b41f8..0000000 --- a/eleven/templates/component/navigation/usermenu/usermenu.css +++ /dev/null @@ -1,3 +0,0 @@ -.usermenu{ - background: red -} diff --git a/eleven/templates/layout-landing/reports/dblog.css b/eleven/templates/layout-landing/reports/dblog.css index 141e701..9c0806e 100644 --- a/eleven/templates/layout-landing/reports/dblog.css +++ b/eleven/templates/layout-landing/reports/dblog.css @@ -5,6 +5,10 @@ height: 16rem; } +td.icon::before{ + display: none +} + /*---------------------------------------------------------------------------*/ /* idea: rethink the way the select boxes are shown @@ -80,7 +84,7 @@ would it make more sense to have em horizonal shown instead ? /* -- table log icons -------------------------------------------------------*/ .admin-dblog .icon { position: relative; - top: 0.5rem; + top: 1rem; left: 0.5rem; display: block; width: 1rem; @@ -189,9 +193,9 @@ tr.dblog-warning td, .dblog-warning, .dblog-warning a, .dblog-warning a:hover { - background-color: var(--pumpkin-light); + color: var(--pumpkin); border-color: var(--pumpkin); - color: var(--white); + /*color: var(--white);*/ } tr.dblog-warning:hover td, tr.dblog-warning:hover td a{ @@ -200,7 +204,7 @@ tr.dblog-warning:hover td a{ color: var(--yellowsnow); } .dblog-warning .icon { - background-color: var(--pumpkin); + background-color: var(--pumpkin-light); mask-image: url(icons/warning.svg); -webkit-mask-image: url(icons/warning.svg); From 334e97ec98fa2c2fedc13aa6df0d72dc1d50b966 Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 25 Aug 2017 12:40:12 +0200 Subject: [PATCH 10/18] adding in singout icon --- elevenfeat/sign-out.svg | 7 +++++++ elevenfeat/templates/feat/toolbar/toolbar.theme.css | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 elevenfeat/sign-out.svg diff --git a/elevenfeat/sign-out.svg b/elevenfeat/sign-out.svg new file mode 100644 index 0000000..b3d9027 --- /dev/null +++ b/elevenfeat/sign-out.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/toolbar.theme.css b/elevenfeat/templates/feat/toolbar/toolbar.theme.css index c42cbb6..4bcc660 100644 --- a/elevenfeat/templates/feat/toolbar/toolbar.theme.css +++ b/elevenfeat/templates/feat/toolbar/toolbar.theme.css @@ -421,8 +421,8 @@ level 1 : horizontal background-image: var(--button-strawberry-active); } #toolbar-bar .toolbar-menu .logout a:before { - -webkit-mask-image: var(--icon-logout); - mask-image: var(--icon-logout); + -webkit-mask-image: url(icons/sign-out.svg); + mask-image: url(icons/sign-out.svg); } /*------------------------------------------------------------------------------ From 5716f413de201f618dcce2405686178db60a7cb1 Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 25 Aug 2017 12:48:15 +0200 Subject: [PATCH 11/18] sago on elevenfeat --- .../feat/block_place/icons/pencil.svg | 8 +--- .../feat/contextual/icons/bullseye.svg | 8 +--- .../feat/contextual/icons/d8-logo.svg | 7 +--- .../templates/feat/contextual/icons/flash.svg | 8 +--- .../templates/feat/contextual/icons/gear.svg | 8 +--- .../templates/feat/contextual/icons/gears.svg | 8 +--- .../feat/contextual/icons/pencil.svg | 8 +--- .../templates/feat/contextual/icons/trash.svg | 8 +--- .../feat/node-preview/icons/pencil.svg | 8 +--- .../templates/feat/outside_in/icons/x.svg | 4 +- .../feat/quickedit/icons/times-circle-o.svg | 8 +--- .../feat/quickedit/icons/times-circle.svg | 8 +--- .../templates/feat/quickedit/icons/times.svg | 8 +--- .../feat/toolbar/icons/ambulance.svg | 8 +--- .../feat/toolbar/icons/angle-down.svg | 8 +--- .../feat/toolbar/icons/angle-left.svg | 8 +--- .../feat/toolbar/icons/angle-right.svg | 8 +--- .../templates/feat/toolbar/icons/angle-up.svg | 8 +--- .../feat/toolbar/icons/appearance.svg | 13 +------ .../templates/feat/toolbar/icons/archive.svg | 8 +--- .../templates/feat/toolbar/icons/back.svg | 15 +------- .../templates/feat/toolbar/icons/ban.svg | 8 +--- .../feat/toolbar/icons/bar-chart-o.svg | 8 +--- .../templates/feat/toolbar/icons/book.svg | 8 +--- .../feat/toolbar/icons/bookmark-o.svg | 8 +--- .../templates/feat/toolbar/icons/bookmark.svg | 17 +-------- .../feat/toolbar/icons/briefcase.svg | 8 +--- .../templates/feat/toolbar/icons/bullhorn.svg | 8 +--- .../templates/feat/toolbar/icons/bullseye.svg | 8 +--- .../feat/toolbar/icons/camera-retro.svg | 8 +--- .../feat/toolbar/icons/check-square.svg | 8 +--- .../templates/feat/toolbar/icons/check.svg | 8 +--- .../templates/feat/toolbar/icons/child.svg | 8 +--- .../templates/feat/toolbar/icons/clock-o.svg | 8 +--- .../feat/toolbar/icons/code-fork.svg | 8 +--- .../templates/feat/toolbar/icons/code.svg | 8 +--- .../feat/toolbar/icons/comments-o.svg | 8 +--- .../templates/feat/toolbar/icons/comments.svg | 8 +--- .../feat/toolbar/icons/configuration.svg | 13 +------ .../templates/feat/toolbar/icons/content.svg | 13 +------ .../templates/feat/toolbar/icons/cube.svg | 8 +--- .../templates/feat/toolbar/icons/cubes.svg | 8 +--- .../templates/feat/toolbar/icons/d8-logo.svg | 7 +--- .../templates/feat/toolbar/icons/database.svg | 8 +--- .../templates/feat/toolbar/icons/desktop.svg | 8 +--- .../templates/feat/toolbar/icons/drop.svg | 11 +----- .../templates/feat/toolbar/icons/drupal.svg | 8 +--- .../feat/toolbar/icons/edit-active.svg | 11 +----- .../templates/feat/toolbar/icons/edit.svg | 11 +----- .../templates/feat/toolbar/icons/envelope.svg | 8 +--- .../feat/toolbar/icons/exclamation-circle.svg | 8 +--- .../templates/feat/toolbar/icons/extend.svg | 13 +------ .../templates/feat/toolbar/icons/f277.svg | 8 +--- .../templates/feat/toolbar/icons/f278.svg | 8 +--- .../templates/feat/toolbar/icons/file-o.svg | 8 +--- .../feat/toolbar/icons/file-text-o.svg | 8 +--- .../feat/toolbar/icons/file-video-o.svg | 8 +--- .../templates/feat/toolbar/icons/filter.svg | 8 +--- .../templates/feat/toolbar/icons/flag.svg | 8 +--- .../templates/feat/toolbar/icons/flash.svg | 8 +--- .../feat/toolbar/icons/folder-open-o.svg | 8 +--- .../templates/feat/toolbar/icons/gears.svg | 8 +--- .../templates/feat/toolbar/icons/globe.svg | 8 +--- .../templates/feat/toolbar/icons/heart-o.svg | 8 +--- .../templates/feat/toolbar/icons/heart.svg | 8 +--- .../templates/feat/toolbar/icons/help.svg | 13 +------ .../templates/feat/toolbar/icons/history.svg | 8 +--- .../templates/feat/toolbar/icons/id-badge.svg | 15 +------- .../templates/feat/toolbar/icons/id-card.svg | 8 +--- .../feat/toolbar/icons/info-circle.svg | 8 +--- .../templates/feat/toolbar/icons/italic.svg | 8 +--- .../templates/feat/toolbar/icons/key.svg | 8 +--- .../templates/feat/toolbar/icons/list-alt.svg | 8 +--- .../templates/feat/toolbar/icons/lock.svg | 8 +--- .../templates/feat/toolbar/icons/love.svg | 15 +------- .../templates/feat/toolbar/icons/manage.svg | 15 +------- .../templates/feat/toolbar/icons/medkit.svg | 8 +--- .../feat/toolbar/icons/minus-circle.svg | 8 +--- .../templates/feat/toolbar/icons/nav-down.svg | 15 +------- .../templates/feat/toolbar/icons/nav-next.svg | 11 +----- .../feat/toolbar/icons/nav-right.svg | 15 +------- .../templates/feat/toolbar/icons/nav-up.svg | 15 +------- .../feat/toolbar/icons/paint-brush.svg | 8 +--- .../feat/toolbar/icons/paragraph.svg | 8 +--- .../templates/feat/toolbar/icons/pencil.svg | 8 +--- .../templates/feat/toolbar/icons/people.svg | 13 +------ .../feat/toolbar/icons/picture-o.svg | 8 +--- .../feat/toolbar/icons/pie-chart.svg | 8 +--- .../templates/feat/toolbar/icons/plug.svg | 8 +--- .../feat/toolbar/icons/plus-circle.svg | 8 +--- .../templates/feat/toolbar/icons/plus.svg | 8 +--- .../feat/toolbar/icons/power-off.svg | 8 +--- .../feat/toolbar/icons/puzzle-piece.svg | 8 +--- .../templates/feat/toolbar/icons/refresh.svg | 8 +--- .../templates/feat/toolbar/icons/reorder.svg | 8 +--- .../templates/feat/toolbar/icons/reports.svg | 13 +------ .../templates/feat/toolbar/icons/rss.svg | 8 +--- .../templates/feat/toolbar/icons/search.svg | 8 +--- .../templates/feat/toolbar/icons/send-o.svg | 8 +--- .../feat/toolbar/icons/share-alt.svg | 8 +--- .../templates/feat/toolbar/icons/sign-out.svg | 8 +--- .../templates/feat/toolbar/icons/sitemap.svg | 8 +--- .../templates/feat/toolbar/icons/sliders.svg | 8 +--- .../templates/feat/toolbar/icons/spinner.svg | 8 +--- .../feat/toolbar/icons/sticky-note.svg | 8 +--- .../feat/toolbar/icons/structure.svg | 13 +------ .../feat/toolbar/icons/tachometer.svg | 8 +--- .../templates/feat/toolbar/icons/tags.svg | 8 +--- .../templates/feat/toolbar/icons/tasks.svg | 8 +--- .../templates/feat/toolbar/icons/terminal.svg | 8 +--- .../templates/feat/toolbar/icons/test.svg | 5 +-- .../templates/feat/toolbar/icons/th-list.svg | 8 +--- .../templates/feat/toolbar/icons/th.svg | 8 +--- .../feat/toolbar/icons/times-circle.svg | 8 +--- .../feat/toolbar/icons/toolbar-left.svg | 15 +------- .../feat/toolbar/icons/toolbar-up.svg | 15 +------- .../templates/feat/toolbar/icons/trash.svg | 8 +--- .../templates/feat/toolbar/icons/truck.svg | 8 +--- .../templates/feat/toolbar/icons/wordmark.svg | 37 +------------------ .../templates/feat/toolbar/icons/wrench.svg | 8 +--- .../templates/form/ckeditor/icons/code.svg | 5 +-- .../form/ckeditor/icons/list-bullet.svg | 2 +- .../form/ckeditor/icons/subscript.svg | 13 +------ .../form/ckeditor/icons/superscript.svg | 13 +------ 124 files changed, 124 insertions(+), 1013 deletions(-) diff --git a/elevenfeat/templates/feat/block_place/icons/pencil.svg b/elevenfeat/templates/feat/block_place/icons/pencil.svg index 899a1ff..5e6c5a5 100644 --- a/elevenfeat/templates/feat/block_place/icons/pencil.svg +++ b/elevenfeat/templates/feat/block_place/icons/pencil.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/contextual/icons/bullseye.svg b/elevenfeat/templates/feat/contextual/icons/bullseye.svg index f419d6f..c721e04 100644 --- a/elevenfeat/templates/feat/contextual/icons/bullseye.svg +++ b/elevenfeat/templates/feat/contextual/icons/bullseye.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/contextual/icons/d8-logo.svg b/elevenfeat/templates/feat/contextual/icons/d8-logo.svg index 035119b..27af247 100644 --- a/elevenfeat/templates/feat/contextual/icons/d8-logo.svg +++ b/elevenfeat/templates/feat/contextual/icons/d8-logo.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/elevenfeat/templates/feat/contextual/icons/flash.svg b/elevenfeat/templates/feat/contextual/icons/flash.svg index e0129f1..1d21c66 100644 --- a/elevenfeat/templates/feat/contextual/icons/flash.svg +++ b/elevenfeat/templates/feat/contextual/icons/flash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/contextual/icons/gear.svg b/elevenfeat/templates/feat/contextual/icons/gear.svg index 860b4a1..b69b84d 100644 --- a/elevenfeat/templates/feat/contextual/icons/gear.svg +++ b/elevenfeat/templates/feat/contextual/icons/gear.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/contextual/icons/gears.svg b/elevenfeat/templates/feat/contextual/icons/gears.svg index 629309b..a62b95f 100644 --- a/elevenfeat/templates/feat/contextual/icons/gears.svg +++ b/elevenfeat/templates/feat/contextual/icons/gears.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/contextual/icons/pencil.svg b/elevenfeat/templates/feat/contextual/icons/pencil.svg index 899a1ff..5e6c5a5 100644 --- a/elevenfeat/templates/feat/contextual/icons/pencil.svg +++ b/elevenfeat/templates/feat/contextual/icons/pencil.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/contextual/icons/trash.svg b/elevenfeat/templates/feat/contextual/icons/trash.svg index 637ec55..f050921 100644 --- a/elevenfeat/templates/feat/contextual/icons/trash.svg +++ b/elevenfeat/templates/feat/contextual/icons/trash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/node-preview/icons/pencil.svg b/elevenfeat/templates/feat/node-preview/icons/pencil.svg index 899a1ff..5e6c5a5 100644 --- a/elevenfeat/templates/feat/node-preview/icons/pencil.svg +++ b/elevenfeat/templates/feat/node-preview/icons/pencil.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/outside_in/icons/x.svg b/elevenfeat/templates/feat/outside_in/icons/x.svg index fc7251c..da23522 100755 --- a/elevenfeat/templates/feat/outside_in/icons/x.svg +++ b/elevenfeat/templates/feat/outside_in/icons/x.svg @@ -1,3 +1 @@ - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/quickedit/icons/times-circle-o.svg b/elevenfeat/templates/feat/quickedit/icons/times-circle-o.svg index 4776e78..f34eff4 100644 --- a/elevenfeat/templates/feat/quickedit/icons/times-circle-o.svg +++ b/elevenfeat/templates/feat/quickedit/icons/times-circle-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/quickedit/icons/times-circle.svg b/elevenfeat/templates/feat/quickedit/icons/times-circle.svg index 69431e3..ee966de 100644 --- a/elevenfeat/templates/feat/quickedit/icons/times-circle.svg +++ b/elevenfeat/templates/feat/quickedit/icons/times-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/quickedit/icons/times.svg b/elevenfeat/templates/feat/quickedit/icons/times.svg index 2e5fe28..9cfdaca 100644 --- a/elevenfeat/templates/feat/quickedit/icons/times.svg +++ b/elevenfeat/templates/feat/quickedit/icons/times.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/ambulance.svg b/elevenfeat/templates/feat/toolbar/icons/ambulance.svg index 6dc69b6..07df042 100644 --- a/elevenfeat/templates/feat/toolbar/icons/ambulance.svg +++ b/elevenfeat/templates/feat/toolbar/icons/ambulance.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/angle-down.svg b/elevenfeat/templates/feat/toolbar/icons/angle-down.svg index f147a7a..afcc8d1 100644 --- a/elevenfeat/templates/feat/toolbar/icons/angle-down.svg +++ b/elevenfeat/templates/feat/toolbar/icons/angle-down.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/angle-left.svg b/elevenfeat/templates/feat/toolbar/icons/angle-left.svg index 8016959..413e42a 100644 --- a/elevenfeat/templates/feat/toolbar/icons/angle-left.svg +++ b/elevenfeat/templates/feat/toolbar/icons/angle-left.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/angle-right.svg b/elevenfeat/templates/feat/toolbar/icons/angle-right.svg index 5a26efc..0401317 100644 --- a/elevenfeat/templates/feat/toolbar/icons/angle-right.svg +++ b/elevenfeat/templates/feat/toolbar/icons/angle-right.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/angle-up.svg b/elevenfeat/templates/feat/toolbar/icons/angle-up.svg index 187b90c..0c52ca8 100644 --- a/elevenfeat/templates/feat/toolbar/icons/angle-up.svg +++ b/elevenfeat/templates/feat/toolbar/icons/angle-up.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/appearance.svg b/elevenfeat/templates/feat/toolbar/icons/appearance.svg index 037d282..7caf4b7 100644 --- a/elevenfeat/templates/feat/toolbar/icons/appearance.svg +++ b/elevenfeat/templates/feat/toolbar/icons/appearance.svg @@ -1,12 +1 @@ - - - - appearance - Created with Sketch. - - - - - - - \ No newline at end of file +appearance \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/archive.svg b/elevenfeat/templates/feat/toolbar/icons/archive.svg index 86d93b5..0fa97ca 100644 --- a/elevenfeat/templates/feat/toolbar/icons/archive.svg +++ b/elevenfeat/templates/feat/toolbar/icons/archive.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/back.svg b/elevenfeat/templates/feat/toolbar/icons/back.svg index 3185403..b58ffd1 100644 --- a/elevenfeat/templates/feat/toolbar/icons/back.svg +++ b/elevenfeat/templates/feat/toolbar/icons/back.svg @@ -1,14 +1 @@ - - - - back - Created with Sketch. - - - - - - - - - \ No newline at end of file +back \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/ban.svg b/elevenfeat/templates/feat/toolbar/icons/ban.svg index 8694f8a..d30e0f3 100644 --- a/elevenfeat/templates/feat/toolbar/icons/ban.svg +++ b/elevenfeat/templates/feat/toolbar/icons/ban.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/bar-chart-o.svg b/elevenfeat/templates/feat/toolbar/icons/bar-chart-o.svg index 21df317..4b91aa6 100644 --- a/elevenfeat/templates/feat/toolbar/icons/bar-chart-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/bar-chart-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/book.svg b/elevenfeat/templates/feat/toolbar/icons/book.svg index d7e7a33..cc03066 100644 --- a/elevenfeat/templates/feat/toolbar/icons/book.svg +++ b/elevenfeat/templates/feat/toolbar/icons/book.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/bookmark-o.svg b/elevenfeat/templates/feat/toolbar/icons/bookmark-o.svg index 962b3d1..6b1b8c5 100644 --- a/elevenfeat/templates/feat/toolbar/icons/bookmark-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/bookmark-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/bookmark.svg b/elevenfeat/templates/feat/toolbar/icons/bookmark.svg index a6c04c9..2e3ad37 100644 --- a/elevenfeat/templates/feat/toolbar/icons/bookmark.svg +++ b/elevenfeat/templates/feat/toolbar/icons/bookmark.svg @@ -1,16 +1 @@ - - - - bookmark - Created with Sketch. - - - - - - - - - - - \ No newline at end of file +bookmark \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/briefcase.svg b/elevenfeat/templates/feat/toolbar/icons/briefcase.svg index 6a11dbd..2d54dde 100644 --- a/elevenfeat/templates/feat/toolbar/icons/briefcase.svg +++ b/elevenfeat/templates/feat/toolbar/icons/briefcase.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/bullhorn.svg b/elevenfeat/templates/feat/toolbar/icons/bullhorn.svg index 32163ef..b082dc2 100644 --- a/elevenfeat/templates/feat/toolbar/icons/bullhorn.svg +++ b/elevenfeat/templates/feat/toolbar/icons/bullhorn.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/bullseye.svg b/elevenfeat/templates/feat/toolbar/icons/bullseye.svg index 58643d7..c721e04 100644 --- a/elevenfeat/templates/feat/toolbar/icons/bullseye.svg +++ b/elevenfeat/templates/feat/toolbar/icons/bullseye.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/camera-retro.svg b/elevenfeat/templates/feat/toolbar/icons/camera-retro.svg index aca715e..39a24dc 100644 --- a/elevenfeat/templates/feat/toolbar/icons/camera-retro.svg +++ b/elevenfeat/templates/feat/toolbar/icons/camera-retro.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/check-square.svg b/elevenfeat/templates/feat/toolbar/icons/check-square.svg index dc627b8..d13ee66 100644 --- a/elevenfeat/templates/feat/toolbar/icons/check-square.svg +++ b/elevenfeat/templates/feat/toolbar/icons/check-square.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/check.svg b/elevenfeat/templates/feat/toolbar/icons/check.svg index a01e522..c40affb 100644 --- a/elevenfeat/templates/feat/toolbar/icons/check.svg +++ b/elevenfeat/templates/feat/toolbar/icons/check.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/child.svg b/elevenfeat/templates/feat/toolbar/icons/child.svg index 3b7b10c..cf686fe 100644 --- a/elevenfeat/templates/feat/toolbar/icons/child.svg +++ b/elevenfeat/templates/feat/toolbar/icons/child.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/clock-o.svg b/elevenfeat/templates/feat/toolbar/icons/clock-o.svg index 9a950b8..ae47c0f 100644 --- a/elevenfeat/templates/feat/toolbar/icons/clock-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/clock-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/code-fork.svg b/elevenfeat/templates/feat/toolbar/icons/code-fork.svg index fa7e0d9..43f7f43 100644 --- a/elevenfeat/templates/feat/toolbar/icons/code-fork.svg +++ b/elevenfeat/templates/feat/toolbar/icons/code-fork.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/code.svg b/elevenfeat/templates/feat/toolbar/icons/code.svg index 3895526..238b35e 100644 --- a/elevenfeat/templates/feat/toolbar/icons/code.svg +++ b/elevenfeat/templates/feat/toolbar/icons/code.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/comments-o.svg b/elevenfeat/templates/feat/toolbar/icons/comments-o.svg index bea8379..05deff3 100644 --- a/elevenfeat/templates/feat/toolbar/icons/comments-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/comments-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/comments.svg b/elevenfeat/templates/feat/toolbar/icons/comments.svg index f1fcf20..f0141ee 100644 --- a/elevenfeat/templates/feat/toolbar/icons/comments.svg +++ b/elevenfeat/templates/feat/toolbar/icons/comments.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/configuration.svg b/elevenfeat/templates/feat/toolbar/icons/configuration.svg index be2d390..46211d8 100644 --- a/elevenfeat/templates/feat/toolbar/icons/configuration.svg +++ b/elevenfeat/templates/feat/toolbar/icons/configuration.svg @@ -1,12 +1 @@ - - - - configuration - Created with Sketch. - - - - - - - \ No newline at end of file +configuration \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/content.svg b/elevenfeat/templates/feat/toolbar/icons/content.svg index 827c10b..95a5411 100644 --- a/elevenfeat/templates/feat/toolbar/icons/content.svg +++ b/elevenfeat/templates/feat/toolbar/icons/content.svg @@ -1,12 +1 @@ - - - - content - Created with Sketch. - - - - - - - \ No newline at end of file +content \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/cube.svg b/elevenfeat/templates/feat/toolbar/icons/cube.svg index bde7abb..d6d30b0 100644 --- a/elevenfeat/templates/feat/toolbar/icons/cube.svg +++ b/elevenfeat/templates/feat/toolbar/icons/cube.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/cubes.svg b/elevenfeat/templates/feat/toolbar/icons/cubes.svg index 722202d..feff779 100644 --- a/elevenfeat/templates/feat/toolbar/icons/cubes.svg +++ b/elevenfeat/templates/feat/toolbar/icons/cubes.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/d8-logo.svg b/elevenfeat/templates/feat/toolbar/icons/d8-logo.svg index 035119b..27af247 100644 --- a/elevenfeat/templates/feat/toolbar/icons/d8-logo.svg +++ b/elevenfeat/templates/feat/toolbar/icons/d8-logo.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/database.svg b/elevenfeat/templates/feat/toolbar/icons/database.svg index 1e575ee..4f2808e 100644 --- a/elevenfeat/templates/feat/toolbar/icons/database.svg +++ b/elevenfeat/templates/feat/toolbar/icons/database.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/desktop.svg b/elevenfeat/templates/feat/toolbar/icons/desktop.svg index 57e29e3..c1abf91 100644 --- a/elevenfeat/templates/feat/toolbar/icons/desktop.svg +++ b/elevenfeat/templates/feat/toolbar/icons/desktop.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/drop.svg b/elevenfeat/templates/feat/toolbar/icons/drop.svg index 8fbf317..a7fb491 100644 --- a/elevenfeat/templates/feat/toolbar/icons/drop.svg +++ b/elevenfeat/templates/feat/toolbar/icons/drop.svg @@ -1,10 +1 @@ - - - - Shape - Created with Sketch. - - - - - \ No newline at end of file +Shape \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/drupal.svg b/elevenfeat/templates/feat/toolbar/icons/drupal.svg index 35c75bd..2985e88 100644 --- a/elevenfeat/templates/feat/toolbar/icons/drupal.svg +++ b/elevenfeat/templates/feat/toolbar/icons/drupal.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/edit-active.svg b/elevenfeat/templates/feat/toolbar/icons/edit-active.svg index bc28021..cf8d628 100644 --- a/elevenfeat/templates/feat/toolbar/icons/edit-active.svg +++ b/elevenfeat/templates/feat/toolbar/icons/edit-active.svg @@ -1,10 +1 @@ - - - - log - Created with Sketch. - - - - - \ No newline at end of file +log \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/edit.svg b/elevenfeat/templates/feat/toolbar/icons/edit.svg index 07fbd15..c9e0f1e 100644 --- a/elevenfeat/templates/feat/toolbar/icons/edit.svg +++ b/elevenfeat/templates/feat/toolbar/icons/edit.svg @@ -1,10 +1 @@ - - - - Shape - Created with Sketch. - - - - - \ No newline at end of file +Shape \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/envelope.svg b/elevenfeat/templates/feat/toolbar/icons/envelope.svg index 421f785..5dba886 100644 --- a/elevenfeat/templates/feat/toolbar/icons/envelope.svg +++ b/elevenfeat/templates/feat/toolbar/icons/envelope.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/exclamation-circle.svg b/elevenfeat/templates/feat/toolbar/icons/exclamation-circle.svg index 668f1f0..e718e17 100644 --- a/elevenfeat/templates/feat/toolbar/icons/exclamation-circle.svg +++ b/elevenfeat/templates/feat/toolbar/icons/exclamation-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/extend.svg b/elevenfeat/templates/feat/toolbar/icons/extend.svg index 6a29c08..efed6c8 100644 --- a/elevenfeat/templates/feat/toolbar/icons/extend.svg +++ b/elevenfeat/templates/feat/toolbar/icons/extend.svg @@ -1,12 +1 @@ - - - - extend - Created with Sketch. - - - - - - - \ No newline at end of file +extend \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/f277.svg b/elevenfeat/templates/feat/toolbar/icons/f277.svg index a3a3643..6790bb4 100644 --- a/elevenfeat/templates/feat/toolbar/icons/f277.svg +++ b/elevenfeat/templates/feat/toolbar/icons/f277.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/f278.svg b/elevenfeat/templates/feat/toolbar/icons/f278.svg index 6209c6e..32f5e6c 100644 --- a/elevenfeat/templates/feat/toolbar/icons/f278.svg +++ b/elevenfeat/templates/feat/toolbar/icons/f278.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/file-o.svg b/elevenfeat/templates/feat/toolbar/icons/file-o.svg index 00ae2c4..c2b6ffc 100644 --- a/elevenfeat/templates/feat/toolbar/icons/file-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/file-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/file-text-o.svg b/elevenfeat/templates/feat/toolbar/icons/file-text-o.svg index 3a28448..5ffa5e4 100644 --- a/elevenfeat/templates/feat/toolbar/icons/file-text-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/file-text-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/file-video-o.svg b/elevenfeat/templates/feat/toolbar/icons/file-video-o.svg index b09643c..230c102 100644 --- a/elevenfeat/templates/feat/toolbar/icons/file-video-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/file-video-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/filter.svg b/elevenfeat/templates/feat/toolbar/icons/filter.svg index ba118a1..02f91a7 100644 --- a/elevenfeat/templates/feat/toolbar/icons/filter.svg +++ b/elevenfeat/templates/feat/toolbar/icons/filter.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/flag.svg b/elevenfeat/templates/feat/toolbar/icons/flag.svg index efefef7..91cfeb0 100644 --- a/elevenfeat/templates/feat/toolbar/icons/flag.svg +++ b/elevenfeat/templates/feat/toolbar/icons/flag.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/flash.svg b/elevenfeat/templates/feat/toolbar/icons/flash.svg index 33890b1..1d21c66 100644 --- a/elevenfeat/templates/feat/toolbar/icons/flash.svg +++ b/elevenfeat/templates/feat/toolbar/icons/flash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/folder-open-o.svg b/elevenfeat/templates/feat/toolbar/icons/folder-open-o.svg index 6782c1f..13b6957 100644 --- a/elevenfeat/templates/feat/toolbar/icons/folder-open-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/folder-open-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/gears.svg b/elevenfeat/templates/feat/toolbar/icons/gears.svg index 5316c04..a62b95f 100644 --- a/elevenfeat/templates/feat/toolbar/icons/gears.svg +++ b/elevenfeat/templates/feat/toolbar/icons/gears.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/globe.svg b/elevenfeat/templates/feat/toolbar/icons/globe.svg index 8c8cca3..b1a46d3 100644 --- a/elevenfeat/templates/feat/toolbar/icons/globe.svg +++ b/elevenfeat/templates/feat/toolbar/icons/globe.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/heart-o.svg b/elevenfeat/templates/feat/toolbar/icons/heart-o.svg index a6d4275..de8477d 100644 --- a/elevenfeat/templates/feat/toolbar/icons/heart-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/heart-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/heart.svg b/elevenfeat/templates/feat/toolbar/icons/heart.svg index f499a40..3445c6d 100644 --- a/elevenfeat/templates/feat/toolbar/icons/heart.svg +++ b/elevenfeat/templates/feat/toolbar/icons/heart.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/help.svg b/elevenfeat/templates/feat/toolbar/icons/help.svg index 4c5bd05..996e98b 100644 --- a/elevenfeat/templates/feat/toolbar/icons/help.svg +++ b/elevenfeat/templates/feat/toolbar/icons/help.svg @@ -1,12 +1 @@ - - - - help - Created with Sketch. - - - - - - - \ No newline at end of file +help \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/history.svg b/elevenfeat/templates/feat/toolbar/icons/history.svg index b25cd48..d27d9b1 100644 --- a/elevenfeat/templates/feat/toolbar/icons/history.svg +++ b/elevenfeat/templates/feat/toolbar/icons/history.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/id-badge.svg b/elevenfeat/templates/feat/toolbar/icons/id-badge.svg index 4e3b58d..dd5a3f5 100644 --- a/elevenfeat/templates/feat/toolbar/icons/id-badge.svg +++ b/elevenfeat/templates/feat/toolbar/icons/id-badge.svg @@ -1,14 +1 @@ - - - - user - Created with Sketch. - - - - - - - - - \ No newline at end of file +user \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/id-card.svg b/elevenfeat/templates/feat/toolbar/icons/id-card.svg index 495537a..1b2c75c 100644 --- a/elevenfeat/templates/feat/toolbar/icons/id-card.svg +++ b/elevenfeat/templates/feat/toolbar/icons/id-card.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/info-circle.svg b/elevenfeat/templates/feat/toolbar/icons/info-circle.svg index 57001c9..d193f60 100644 --- a/elevenfeat/templates/feat/toolbar/icons/info-circle.svg +++ b/elevenfeat/templates/feat/toolbar/icons/info-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/italic.svg b/elevenfeat/templates/feat/toolbar/icons/italic.svg index e02b98a..4211068 100644 --- a/elevenfeat/templates/feat/toolbar/icons/italic.svg +++ b/elevenfeat/templates/feat/toolbar/icons/italic.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/key.svg b/elevenfeat/templates/feat/toolbar/icons/key.svg index b3e55be..37fb14b 100644 --- a/elevenfeat/templates/feat/toolbar/icons/key.svg +++ b/elevenfeat/templates/feat/toolbar/icons/key.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/list-alt.svg b/elevenfeat/templates/feat/toolbar/icons/list-alt.svg index 8b66901..55e3a90 100644 --- a/elevenfeat/templates/feat/toolbar/icons/list-alt.svg +++ b/elevenfeat/templates/feat/toolbar/icons/list-alt.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/lock.svg b/elevenfeat/templates/feat/toolbar/icons/lock.svg index d27bc9a..cb5c209 100644 --- a/elevenfeat/templates/feat/toolbar/icons/lock.svg +++ b/elevenfeat/templates/feat/toolbar/icons/lock.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/love.svg b/elevenfeat/templates/feat/toolbar/icons/love.svg index 821637d..7be0f9e 100644 --- a/elevenfeat/templates/feat/toolbar/icons/love.svg +++ b/elevenfeat/templates/feat/toolbar/icons/love.svg @@ -1,14 +1 @@ - - - - love - Created with Sketch. - - - - - - - - - \ No newline at end of file +love \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/manage.svg b/elevenfeat/templates/feat/toolbar/icons/manage.svg index 7d7fb50..1e4acfb 100644 --- a/elevenfeat/templates/feat/toolbar/icons/manage.svg +++ b/elevenfeat/templates/feat/toolbar/icons/manage.svg @@ -1,14 +1 @@ - - - - manage - Created with Sketch. - - - - - - - - - \ No newline at end of file +manage \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/medkit.svg b/elevenfeat/templates/feat/toolbar/icons/medkit.svg index 048d3e6..6b1db9c 100644 --- a/elevenfeat/templates/feat/toolbar/icons/medkit.svg +++ b/elevenfeat/templates/feat/toolbar/icons/medkit.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/minus-circle.svg b/elevenfeat/templates/feat/toolbar/icons/minus-circle.svg index 6d49028..38494ed 100644 --- a/elevenfeat/templates/feat/toolbar/icons/minus-circle.svg +++ b/elevenfeat/templates/feat/toolbar/icons/minus-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/nav-down.svg b/elevenfeat/templates/feat/toolbar/icons/nav-down.svg index a14a9dd..ce4ec3f 100644 --- a/elevenfeat/templates/feat/toolbar/icons/nav-down.svg +++ b/elevenfeat/templates/feat/toolbar/icons/nav-down.svg @@ -1,14 +1 @@ - - - - nav-down - Created with Sketch. - - - - - - - - - \ No newline at end of file +nav-down \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/nav-next.svg b/elevenfeat/templates/feat/toolbar/icons/nav-next.svg index 9220bcd..5e7960c 100644 --- a/elevenfeat/templates/feat/toolbar/icons/nav-next.svg +++ b/elevenfeat/templates/feat/toolbar/icons/nav-next.svg @@ -1,10 +1 @@ - - - - Shape - Created with Sketch. - - - - - \ No newline at end of file +Shape \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/nav-right.svg b/elevenfeat/templates/feat/toolbar/icons/nav-right.svg index 48876c2..1f07c9f 100644 --- a/elevenfeat/templates/feat/toolbar/icons/nav-right.svg +++ b/elevenfeat/templates/feat/toolbar/icons/nav-right.svg @@ -1,14 +1 @@ - - - - nav-right - Created with Sketch. - - - - - - - - - \ No newline at end of file +nav-right \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/nav-up.svg b/elevenfeat/templates/feat/toolbar/icons/nav-up.svg index 7fae018..df6ee2f 100644 --- a/elevenfeat/templates/feat/toolbar/icons/nav-up.svg +++ b/elevenfeat/templates/feat/toolbar/icons/nav-up.svg @@ -1,14 +1 @@ - - - - nav-up - Created with Sketch. - - - - - - - - - \ No newline at end of file +nav-up \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/paint-brush.svg b/elevenfeat/templates/feat/toolbar/icons/paint-brush.svg index 57d681c..5962a93 100644 --- a/elevenfeat/templates/feat/toolbar/icons/paint-brush.svg +++ b/elevenfeat/templates/feat/toolbar/icons/paint-brush.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/paragraph.svg b/elevenfeat/templates/feat/toolbar/icons/paragraph.svg index de2bd62..ee234ff 100644 --- a/elevenfeat/templates/feat/toolbar/icons/paragraph.svg +++ b/elevenfeat/templates/feat/toolbar/icons/paragraph.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/pencil.svg b/elevenfeat/templates/feat/toolbar/icons/pencil.svg index b11d5a8..5e6c5a5 100644 --- a/elevenfeat/templates/feat/toolbar/icons/pencil.svg +++ b/elevenfeat/templates/feat/toolbar/icons/pencil.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/people.svg b/elevenfeat/templates/feat/toolbar/icons/people.svg index d9d1704..c109234 100644 --- a/elevenfeat/templates/feat/toolbar/icons/people.svg +++ b/elevenfeat/templates/feat/toolbar/icons/people.svg @@ -1,12 +1 @@ - - - - Users - Created with Sketch. - - - - - - - \ No newline at end of file +Users \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/picture-o.svg b/elevenfeat/templates/feat/toolbar/icons/picture-o.svg index 516843a..ec56b28 100644 --- a/elevenfeat/templates/feat/toolbar/icons/picture-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/picture-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/pie-chart.svg b/elevenfeat/templates/feat/toolbar/icons/pie-chart.svg index f1cde51..d2f518a 100644 --- a/elevenfeat/templates/feat/toolbar/icons/pie-chart.svg +++ b/elevenfeat/templates/feat/toolbar/icons/pie-chart.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/plug.svg b/elevenfeat/templates/feat/toolbar/icons/plug.svg index 8f0fcaa..26e3bed 100644 --- a/elevenfeat/templates/feat/toolbar/icons/plug.svg +++ b/elevenfeat/templates/feat/toolbar/icons/plug.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/plus-circle.svg b/elevenfeat/templates/feat/toolbar/icons/plus-circle.svg index b87ffeb..41d3dd1 100644 --- a/elevenfeat/templates/feat/toolbar/icons/plus-circle.svg +++ b/elevenfeat/templates/feat/toolbar/icons/plus-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/plus.svg b/elevenfeat/templates/feat/toolbar/icons/plus.svg index 6c73c5b..e754b76 100644 --- a/elevenfeat/templates/feat/toolbar/icons/plus.svg +++ b/elevenfeat/templates/feat/toolbar/icons/plus.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/power-off.svg b/elevenfeat/templates/feat/toolbar/icons/power-off.svg index e08ced7..0a4a033 100644 --- a/elevenfeat/templates/feat/toolbar/icons/power-off.svg +++ b/elevenfeat/templates/feat/toolbar/icons/power-off.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/puzzle-piece.svg b/elevenfeat/templates/feat/toolbar/icons/puzzle-piece.svg index 8cea023..7c3cbb1 100644 --- a/elevenfeat/templates/feat/toolbar/icons/puzzle-piece.svg +++ b/elevenfeat/templates/feat/toolbar/icons/puzzle-piece.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/refresh.svg b/elevenfeat/templates/feat/toolbar/icons/refresh.svg index 5982cb1..4ebca88 100644 --- a/elevenfeat/templates/feat/toolbar/icons/refresh.svg +++ b/elevenfeat/templates/feat/toolbar/icons/refresh.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/reorder.svg b/elevenfeat/templates/feat/toolbar/icons/reorder.svg index a15d226..7d4337b 100644 --- a/elevenfeat/templates/feat/toolbar/icons/reorder.svg +++ b/elevenfeat/templates/feat/toolbar/icons/reorder.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/reports.svg b/elevenfeat/templates/feat/toolbar/icons/reports.svg index c5d773e..4da414d 100644 --- a/elevenfeat/templates/feat/toolbar/icons/reports.svg +++ b/elevenfeat/templates/feat/toolbar/icons/reports.svg @@ -1,12 +1 @@ - - - - pie - Created with Sketch. - - - - - - - \ No newline at end of file +pie \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/rss.svg b/elevenfeat/templates/feat/toolbar/icons/rss.svg index 063129c..7ffebc7 100644 --- a/elevenfeat/templates/feat/toolbar/icons/rss.svg +++ b/elevenfeat/templates/feat/toolbar/icons/rss.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/search.svg b/elevenfeat/templates/feat/toolbar/icons/search.svg index 902af29..bb15a55 100644 --- a/elevenfeat/templates/feat/toolbar/icons/search.svg +++ b/elevenfeat/templates/feat/toolbar/icons/search.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/send-o.svg b/elevenfeat/templates/feat/toolbar/icons/send-o.svg index 47ec455..7a25df9 100644 --- a/elevenfeat/templates/feat/toolbar/icons/send-o.svg +++ b/elevenfeat/templates/feat/toolbar/icons/send-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/share-alt.svg b/elevenfeat/templates/feat/toolbar/icons/share-alt.svg index 836d42a..4a4d8cf 100644 --- a/elevenfeat/templates/feat/toolbar/icons/share-alt.svg +++ b/elevenfeat/templates/feat/toolbar/icons/share-alt.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/sign-out.svg b/elevenfeat/templates/feat/toolbar/icons/sign-out.svg index b3d9027..58c6d49 100644 --- a/elevenfeat/templates/feat/toolbar/icons/sign-out.svg +++ b/elevenfeat/templates/feat/toolbar/icons/sign-out.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/sitemap.svg b/elevenfeat/templates/feat/toolbar/icons/sitemap.svg index d4fb4d9..15811f1 100644 --- a/elevenfeat/templates/feat/toolbar/icons/sitemap.svg +++ b/elevenfeat/templates/feat/toolbar/icons/sitemap.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/sliders.svg b/elevenfeat/templates/feat/toolbar/icons/sliders.svg index c5fac7b..f396bea 100644 --- a/elevenfeat/templates/feat/toolbar/icons/sliders.svg +++ b/elevenfeat/templates/feat/toolbar/icons/sliders.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/spinner.svg b/elevenfeat/templates/feat/toolbar/icons/spinner.svg index 64e1ef3..6cf092f 100644 --- a/elevenfeat/templates/feat/toolbar/icons/spinner.svg +++ b/elevenfeat/templates/feat/toolbar/icons/spinner.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/sticky-note.svg b/elevenfeat/templates/feat/toolbar/icons/sticky-note.svg index 0753e58..6568723 100644 --- a/elevenfeat/templates/feat/toolbar/icons/sticky-note.svg +++ b/elevenfeat/templates/feat/toolbar/icons/sticky-note.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/structure.svg b/elevenfeat/templates/feat/toolbar/icons/structure.svg index bac4c5f..6965de5 100644 --- a/elevenfeat/templates/feat/toolbar/icons/structure.svg +++ b/elevenfeat/templates/feat/toolbar/icons/structure.svg @@ -1,12 +1 @@ - - - - structure - Created with Sketch. - - - - - - - \ No newline at end of file +structure \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/tachometer.svg b/elevenfeat/templates/feat/toolbar/icons/tachometer.svg index deef03d..212b00f 100644 --- a/elevenfeat/templates/feat/toolbar/icons/tachometer.svg +++ b/elevenfeat/templates/feat/toolbar/icons/tachometer.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/tags.svg b/elevenfeat/templates/feat/toolbar/icons/tags.svg index 9e23e2e..1ffdae3 100644 --- a/elevenfeat/templates/feat/toolbar/icons/tags.svg +++ b/elevenfeat/templates/feat/toolbar/icons/tags.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/tasks.svg b/elevenfeat/templates/feat/toolbar/icons/tasks.svg index 5102703..18f2768 100644 --- a/elevenfeat/templates/feat/toolbar/icons/tasks.svg +++ b/elevenfeat/templates/feat/toolbar/icons/tasks.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/terminal.svg b/elevenfeat/templates/feat/toolbar/icons/terminal.svg index 9ed26e6..e60d479 100644 --- a/elevenfeat/templates/feat/toolbar/icons/terminal.svg +++ b/elevenfeat/templates/feat/toolbar/icons/terminal.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/test.svg b/elevenfeat/templates/feat/toolbar/icons/test.svg index cf8274b..aab28c4 100644 --- a/elevenfeat/templates/feat/toolbar/icons/test.svg +++ b/elevenfeat/templates/feat/toolbar/icons/test.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/th-list.svg b/elevenfeat/templates/feat/toolbar/icons/th-list.svg index fb3e5e0..e2a3562 100644 --- a/elevenfeat/templates/feat/toolbar/icons/th-list.svg +++ b/elevenfeat/templates/feat/toolbar/icons/th-list.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/th.svg b/elevenfeat/templates/feat/toolbar/icons/th.svg index dc35424..85d44f3 100644 --- a/elevenfeat/templates/feat/toolbar/icons/th.svg +++ b/elevenfeat/templates/feat/toolbar/icons/th.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/times-circle.svg b/elevenfeat/templates/feat/toolbar/icons/times-circle.svg index 69431e3..ee966de 100644 --- a/elevenfeat/templates/feat/toolbar/icons/times-circle.svg +++ b/elevenfeat/templates/feat/toolbar/icons/times-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/toolbar-left.svg b/elevenfeat/templates/feat/toolbar/icons/toolbar-left.svg index 793df67..1ff3cc3 100644 --- a/elevenfeat/templates/feat/toolbar/icons/toolbar-left.svg +++ b/elevenfeat/templates/feat/toolbar/icons/toolbar-left.svg @@ -1,14 +1 @@ - - - - nav-left - Created with Sketch. - - - - - - - - - \ No newline at end of file +nav-left \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/toolbar-up.svg b/elevenfeat/templates/feat/toolbar/icons/toolbar-up.svg index c4809a5..c794160 100644 --- a/elevenfeat/templates/feat/toolbar/icons/toolbar-up.svg +++ b/elevenfeat/templates/feat/toolbar/icons/toolbar-up.svg @@ -1,14 +1 @@ - - - - toolbar-up - Created with Sketch. - - - - - - - - - \ No newline at end of file +toolbar-up \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/trash.svg b/elevenfeat/templates/feat/toolbar/icons/trash.svg index 637ec55..f050921 100644 --- a/elevenfeat/templates/feat/toolbar/icons/trash.svg +++ b/elevenfeat/templates/feat/toolbar/icons/trash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/truck.svg b/elevenfeat/templates/feat/toolbar/icons/truck.svg index 24a48e9..a7d6843 100644 --- a/elevenfeat/templates/feat/toolbar/icons/truck.svg +++ b/elevenfeat/templates/feat/toolbar/icons/truck.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/wordmark.svg b/elevenfeat/templates/feat/toolbar/icons/wordmark.svg index 4a33306..138e0e6 100644 --- a/elevenfeat/templates/feat/toolbar/icons/wordmark.svg +++ b/elevenfeat/templates/feat/toolbar/icons/wordmark.svg @@ -1,36 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/elevenfeat/templates/feat/toolbar/icons/wrench.svg b/elevenfeat/templates/feat/toolbar/icons/wrench.svg index 01454ff..5473b83 100644 --- a/elevenfeat/templates/feat/toolbar/icons/wrench.svg +++ b/elevenfeat/templates/feat/toolbar/icons/wrench.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/form/ckeditor/icons/code.svg b/elevenfeat/templates/form/ckeditor/icons/code.svg index 2939126..357da4d 100644 --- a/elevenfeat/templates/form/ckeditor/icons/code.svg +++ b/elevenfeat/templates/form/ckeditor/icons/code.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/elevenfeat/templates/form/ckeditor/icons/list-bullet.svg b/elevenfeat/templates/form/ckeditor/icons/list-bullet.svg index f6809ca..a33d996 100644 --- a/elevenfeat/templates/form/ckeditor/icons/list-bullet.svg +++ b/elevenfeat/templates/form/ckeditor/icons/list-bullet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/elevenfeat/templates/form/ckeditor/icons/subscript.svg b/elevenfeat/templates/form/ckeditor/icons/subscript.svg index 3c2a3b5..792944c 100644 --- a/elevenfeat/templates/form/ckeditor/icons/subscript.svg +++ b/elevenfeat/templates/form/ckeditor/icons/subscript.svg @@ -1,12 +1 @@ - - - - subscript - Created with Sketch. - - - - - - - \ No newline at end of file +subscript \ No newline at end of file diff --git a/elevenfeat/templates/form/ckeditor/icons/superscript.svg b/elevenfeat/templates/form/ckeditor/icons/superscript.svg index 8c04b40..f512074 100644 --- a/elevenfeat/templates/form/ckeditor/icons/superscript.svg +++ b/elevenfeat/templates/form/ckeditor/icons/superscript.svg @@ -1,12 +1 @@ - - - - superscript - Created with Sketch. - - - - - - - \ No newline at end of file +superscript \ No newline at end of file From be87a99335f0049720137f77652b6a7fdf93e228 Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 25 Aug 2017 12:50:01 +0200 Subject: [PATCH 12/18] css folders --- eleven/css/base/icons/angle-down.svg | 8 +---- eleven/css/base/icons/angle-up.svg | 8 +---- eleven/css/component/icons/d8-logo.svg | 7 +---- eleven/css/component/icons/github.svg | 8 +---- eleven/css/component/icons/twitter.svg | 8 +---- eleven/css/component/icons/wordmark.svg | 37 +---------------------- eleven/css/theme/icons/thumbs-up.svg | 8 +---- eleven/css/theme/icons/times-circle-o.svg | 8 +---- eleven/css/theme/icons/times-circle.svg | 8 +---- eleven/css/theme/icons/times.svg | 8 +---- eleven/css/theme/icons/trash.svg | 8 +---- 11 files changed, 11 insertions(+), 105 deletions(-) diff --git a/eleven/css/base/icons/angle-down.svg b/eleven/css/base/icons/angle-down.svg index 2d9d6ba..afcc8d1 100644 --- a/eleven/css/base/icons/angle-down.svg +++ b/eleven/css/base/icons/angle-down.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/css/base/icons/angle-up.svg b/eleven/css/base/icons/angle-up.svg index 69b6bf3..0c52ca8 100644 --- a/eleven/css/base/icons/angle-up.svg +++ b/eleven/css/base/icons/angle-up.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/css/component/icons/d8-logo.svg b/eleven/css/component/icons/d8-logo.svg index 035119b..27af247 100644 --- a/eleven/css/component/icons/d8-logo.svg +++ b/eleven/css/component/icons/d8-logo.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/eleven/css/component/icons/github.svg b/eleven/css/component/icons/github.svg index eceba1f..63a3327 100644 --- a/eleven/css/component/icons/github.svg +++ b/eleven/css/component/icons/github.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/css/component/icons/twitter.svg b/eleven/css/component/icons/twitter.svg index b9b1bc8..bdb7e7f 100644 --- a/eleven/css/component/icons/twitter.svg +++ b/eleven/css/component/icons/twitter.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/css/component/icons/wordmark.svg b/eleven/css/component/icons/wordmark.svg index 4a33306..138e0e6 100644 --- a/eleven/css/component/icons/wordmark.svg +++ b/eleven/css/component/icons/wordmark.svg @@ -1,36 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/eleven/css/theme/icons/thumbs-up.svg b/eleven/css/theme/icons/thumbs-up.svg index 643a5af..f6a8046 100644 --- a/eleven/css/theme/icons/thumbs-up.svg +++ b/eleven/css/theme/icons/thumbs-up.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/css/theme/icons/times-circle-o.svg b/eleven/css/theme/icons/times-circle-o.svg index 4776e78..f34eff4 100644 --- a/eleven/css/theme/icons/times-circle-o.svg +++ b/eleven/css/theme/icons/times-circle-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/css/theme/icons/times-circle.svg b/eleven/css/theme/icons/times-circle.svg index 69431e3..ee966de 100644 --- a/eleven/css/theme/icons/times-circle.svg +++ b/eleven/css/theme/icons/times-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/css/theme/icons/times.svg b/eleven/css/theme/icons/times.svg index 2e5fe28..9cfdaca 100644 --- a/eleven/css/theme/icons/times.svg +++ b/eleven/css/theme/icons/times.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/css/theme/icons/trash.svg b/eleven/css/theme/icons/trash.svg index 52cff42..f050921 100644 --- a/eleven/css/theme/icons/trash.svg +++ b/eleven/css/theme/icons/trash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file From f06f310f4f91fd1a6133205acbae14ff95e7e377 Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 25 Aug 2017 12:55:29 +0200 Subject: [PATCH 13/18] all of the icons --- .../component/button/icons/desktop.svg | 8 +----- .../templates/component/button/icons/eye.svg | 8 +----- .../component/button/icons/pencil.svg | 8 +----- .../component/button/icons/plus-circle.svg | 8 +----- .../component/button/icons/power-off.svg | 8 +----- .../component/button/icons/refresh.svg | 8 +----- .../component/button/icons/thumbs-o-up.svg | 8 +----- .../component/button/icons/thumbs-up.svg | 8 +----- .../component/button/icons/times-circle.svg | 8 +----- .../component/button/icons/trash.svg | 8 +----- .../form/checkbox/icons/check-square-o.svg | 8 +----- .../form/checkbox/icons/check-square.svg | 8 +----- .../component/form/checkbox/icons/check.svg | 8 +----- .../component/form/checkbox/icons/times.svg | 8 +----- .../form/details/icons/angle-down.svg | 8 +----- .../form/details/icons/angle-left.svg | 8 +----- .../form/details/icons/angle-right.svg | 8 +----- .../component/form/details/icons/angle-up.svg | 8 +----- .../form/details/icons/arrow-circle-down.svg | 8 +----- .../form/details/icons/arrow-circle-right.svg | 8 +----- .../form/details/icons/arrow-circle-up.svg | 8 +----- .../form/details/icons/arrow-down.svg | 8 +----- .../component/form/details/icons/arrow-up.svg | 8 +----- .../component/form/details/icons/reorder.svg | 8 +----- .../form/input-file/icons/cloud-upload.svg | 8 +----- .../form/input-file/icons/file-code-o.svg | 8 +----- .../form/input-file/icons/file-excel-o.svg | 8 +----- .../form/input-file/icons/file-o.svg | 8 +----- .../form/input-file/icons/file-pdf-o.svg | 8 +----- .../form/input-file/icons/file-picture-o.svg | 8 +----- .../input-file/icons/file-powerpoint-o.svg | 8 +----- .../form/input-file/icons/file-sound-o.svg | 8 +----- .../form/input-file/icons/file-text-o.svg | 8 +----- .../form/input-file/icons/file-text.svg | 8 +----- .../form/input-file/icons/file-video-o.svg | 8 +----- .../form/input-file/icons/file-word-o.svg | 8 +----- .../form/input-file/icons/file-zip-o.svg | 8 +----- .../component/form/input-file/icons/file.svg | 8 +----- .../form/input-file/icons/files-o.svg | 8 +----- .../form/input-file/icons/picture-o.svg | 8 +----- .../component/form/input-file/icons/trash.svg | 8 +----- .../form/input-file/icons/upload.svg | 8 +----- .../component/form/input/icons/calendar-o.svg | 8 +----- .../component/form/input/icons/clock-o.svg | 8 +----- .../component/form/input/icons/envelope-o.svg | 8 +----- .../component/form/input/icons/f2bb.svg | 8 +----- .../component/form/input/icons/f2bc.svg | 8 +----- .../component/form/input/icons/f2bd.svg | 8 +----- .../component/form/input/icons/f2be.svg | 8 +----- .../component/form/input/icons/lock.svg | 8 +----- .../form/input/icons/search-minus.svg | 8 +----- .../form/input/icons/search-plus.svg | 8 +----- .../component/form/input/icons/search.svg | 8 +----- .../component/form/input/icons/unlock-alt.svg | 8 +----- .../component/form/input/icons/unlock.svg | 8 +----- .../component/form/radio/icons/check.svg | 8 +----- .../component/form/radio/icons/times.svg | 8 +----- .../form/select/icons/angle-down.svg | 8 +----- .../component/form/select/icons/check.svg | 8 +----- .../form/textarea/icons/question.svg | 8 +----- .../component/messages/icons/button-x.svg | 11 +------- .../navigation/cardlayout/icons/layout-3.svg | 15 +---------- .../navigation/cardlayout/icons/layout-4.svg | 16 +----------- .../navigation/cardlayout/icons/layout-5.svg | 17 +----------- .../navigation/cardlayout/icons/layout-6.svg | 18 +------------ .../navigation/cardlayout/icons/support.svg | 8 +----- .../navigation/dropbutton/icons/child.svg | 8 +----- .../navigation/dropbutton/icons/code-fork.svg | 8 +----- .../navigation/dropbutton/icons/columns.svg | 8 +----- .../navigation/dropbutton/icons/database.svg | 8 +----- .../navigation/dropbutton/icons/desktop.svg | 8 +----- .../dropbutton/icons/ellipsis-v.svg | 8 +----- .../navigation/dropbutton/icons/envelope.svg | 8 +----- .../navigation/dropbutton/icons/exchange.svg | 8 +----- .../navigation/dropbutton/icons/f24d.svg | 8 +----- .../navigation/dropbutton/icons/file.svg | 8 +----- .../navigation/dropbutton/icons/flag.svg | 8 +----- .../navigation/dropbutton/icons/gears.svg | 8 +----- .../navigation/dropbutton/icons/history.svg | 8 +----- .../navigation/dropbutton/icons/list-alt.svg | 8 +----- .../dropbutton/icons/pencil-square-o.svg | 8 +----- .../navigation/dropbutton/icons/pencil.svg | 8 +----- .../dropbutton/icons/plus-circle.svg | 8 +----- .../navigation/dropbutton/icons/power-off.svg | 8 +----- .../navigation/dropbutton/icons/refresh.svg | 8 +----- .../navigation/dropbutton/icons/reorder.svg | 8 +----- .../navigation/dropbutton/icons/terminal.svg | 8 +----- .../navigation/dropbutton/icons/th-list.svg | 8 +----- .../navigation/dropbutton/icons/trash.svg | 8 +----- .../navigation/localtask/icons/briefcase.svg | 8 +----- .../navigation/localtask/icons/bullhorn.svg | 8 +----- .../navigation/localtask/icons/child.svg | 8 +----- .../navigation/localtask/icons/clock-o.svg | 8 +----- .../localtask/icons/cloud-download.svg | 8 +----- .../localtask/icons/cloud-upload.svg | 8 +----- .../navigation/localtask/icons/code-fork.svg | 8 +----- .../navigation/localtask/icons/columns.svg | 8 +----- .../navigation/localtask/icons/comments.svg | 8 +----- .../navigation/localtask/icons/cubes.svg | 8 +----- .../navigation/localtask/icons/database.svg | 8 +----- .../navigation/localtask/icons/desktop.svg | 8 +----- .../navigation/localtask/icons/envelope.svg | 8 +----- .../localtask/icons/file-picture-o.svg | 8 +----- .../localtask/icons/file-text-o.svg | 8 +----- .../navigation/localtask/icons/file-text.svg | 8 +----- .../navigation/localtask/icons/flag.svg | 8 +----- .../navigation/localtask/icons/gear.svg | 8 +----- .../navigation/localtask/icons/gears.svg | 8 +----- .../navigation/localtask/icons/hdd-o.svg | 8 +----- .../navigation/localtask/icons/heart.svg | 8 +----- .../navigation/localtask/icons/history.svg | 8 +----- .../navigation/localtask/icons/inbox.svg | 8 +----- .../localtask/icons/info-circle.svg | 8 +----- .../navigation/localtask/icons/list-alt.svg | 8 +----- .../navigation/localtask/icons/list.svg | 8 +----- .../navigation/localtask/icons/lock.svg | 8 +----- .../localtask/icons/paint-brush.svg | 8 +----- .../navigation/localtask/icons/pencil.svg | 8 +----- .../navigation/localtask/icons/plug.svg | 8 +----- .../localtask/icons/plus-circle.svg | 8 +----- .../navigation/localtask/icons/power-off.svg | 8 +----- .../localtask/icons/puzzle-piece.svg | 8 +----- .../navigation/localtask/icons/refresh.svg | 8 +----- .../navigation/localtask/icons/reorder.svg | 8 +----- .../navigation/localtask/icons/rocket.svg | 8 +----- .../localtask/icons/rotate-right.svg | 8 +----- .../navigation/localtask/icons/rss.svg | 8 +----- .../navigation/localtask/icons/sitemap.svg | 8 +----- .../navigation/localtask/icons/tag.svg | 8 +----- .../navigation/localtask/icons/tasks.svg | 8 +----- .../navigation/localtask/icons/terminal.svg | 8 +----- .../navigation/localtask/icons/th-list.svg | 8 +----- .../navigation/localtask/icons/trash.svg | 8 +----- .../navigation/localtask/icons/userid.svg | 8 +----- .../navigation/pager/icons/chevron-down.svg | 8 +----- .../navigation/pager/icons/chevron-left.svg | 8 +----- .../navigation/pager/icons/chevron-right.svg | 8 +----- .../navigation/pager/icons/chevron-up.svg | 8 +----- .../navigation/pager/icons/ellipsis-h.svg | 8 +----- .../navigation/tabs/icons/columns.svg | 8 +----- .../navigation/tabs/icons/layout-2col.svg | 11 +------- .../navigation/tabs/icons/layout-2colwide.svg | 11 +------- .../navigation/tabs/icons/layout-full.svg | 11 +------- .../navigation/tabs/icons/layout-row.svg | 11 +------- .../component/shortcut/icons/bookmark-o.svg | 8 +----- .../component/shortcut/icons/bookmark.svg | 8 +----- .../component/shortcut/icons/heart-o.svg | 8 +----- .../component/shortcut/icons/heart.svg | 8 +----- .../component/table/icons/arrows.svg | 8 +----- .../component/table/icons/caret-down.svg | 8 +----- .../component/table/icons/caret-up.svg | 8 +----- .../component/table/icons/file-excel-o.svg | 8 +----- .../component/table/icons/file-o.svg | 8 +----- .../component/table/icons/file-pdf-o.svg | 8 +----- .../component/table/icons/file-picture-o.svg | 8 +----- .../table/icons/file-powerpoint-o.svg | 8 +----- .../component/table/icons/file-video-o.svg | 8 +----- .../component/table/icons/file-word-o.svg | 8 +----- .../component/table/icons/file-zip-o.svg | 8 +----- .../templates/component/table/icons/file.svg | 8 +----- .../views/exposed/icons/check-circle.svg | 8 +----- .../views/exposed/icons/check-square-o.svg | 8 +----- .../component/views/exposed/icons/filter.svg | 8 +----- .../component/views/exposed/icons/retweet.svg | 8 +----- .../views/exposed/icons/times-circle-o.svg | 8 +----- .../layout-landing/block/icons/cube.svg | 8 +----- .../layout-landing/block/icons/cubes.svg | 8 +----- .../templates/layout-landing/icons/acquia.svg | 26 +------------------ .../layout-landing/icons/ambulance.svg | 8 +----- .../layout-landing/icons/arrows-alt.svg | 8 +----- .../layout-landing/icons/arrows-h.svg | 8 +----- eleven/templates/layout-landing/icons/ban.svg | 8 +----- .../layout-landing/icons/bar-chart-o.svg | 8 +----- .../templates/layout-landing/icons/bomb.svg | 8 +----- .../templates/layout-landing/icons/book.svg | 8 +----- .../layout-landing/icons/bookmark-o.svg | 8 +----- .../layout-landing/icons/briefcase.svg | 8 +----- .../layout-landing/icons/bullhorn.svg | 8 +----- .../layout-landing/icons/bullseye.1.svg | 8 +----- .../layout-landing/icons/bullseye.svg | 8 +----- .../layout-landing/icons/camera-retro.svg | 8 +----- .../layout-landing/icons/check-circle-o.svg | 8 +----- .../layout-landing/icons/check-square-o.svg | 8 +----- .../layout-landing/icons/check-square.svg | 8 +----- .../templates/layout-landing/icons/check.svg | 8 +----- .../templates/layout-landing/icons/child.svg | 8 +----- .../layout-landing/icons/clock-o.svg | 8 +----- .../layout-landing/icons/code-fork.svg | 8 +----- .../templates/layout-landing/icons/code.svg | 8 +----- .../layout-landing/icons/comments-o.svg | 8 +----- .../layout-landing/icons/comments.svg | 8 +----- .../layout-landing/icons/compress.svg | 8 +----- .../templates/layout-landing/icons/cube.svg | 8 +----- .../templates/layout-landing/icons/cubes.svg | 8 +----- .../layout-landing/icons/d8-logo.svg | 7 +---- .../layout-landing/icons/database.svg | 8 +----- .../layout-landing/icons/desktop.svg | 8 +----- .../templates/layout-landing/icons/drupal.svg | 8 +----- .../layout-landing/icons/envelope.svg | 8 +----- .../icons/exclamation-circle.svg | 8 +----- .../templates/layout-landing/icons/f278.svg | 8 +----- .../layout-landing/icons/facebook-f.svg | 8 +----- .../layout-landing/icons/fast-forward.svg | 8 +----- .../templates/layout-landing/icons/file-o.svg | 8 +----- .../layout-landing/icons/file-text-o.svg | 8 +----- .../layout-landing/icons/file-video-o.svg | 8 +----- .../templates/layout-landing/icons/filter.svg | 8 +----- .../templates/layout-landing/icons/flag.svg | 8 +----- .../templates/layout-landing/icons/flash.svg | 8 +----- .../layout-landing/icons/folder-open-o.svg | 8 +----- .../templates/layout-landing/icons/gears.svg | 8 +----- .../templates/layout-landing/icons/globe.svg | 8 +----- .../templates/layout-landing/icons/google.svg | 8 +----- .../layout-landing/icons/heart-o.svg | 8 +----- .../templates/layout-landing/icons/heart.svg | 8 +----- .../layout-landing/icons/history.svg | 8 +----- .../templates/layout-landing/icons/hotel.svg | 8 +----- .../layout-landing/icons/id-card.svg | 8 +----- .../layout-landing/icons/info-circle.svg | 8 +----- .../layout-landing/icons/instagram.svg | 8 +----- .../templates/layout-landing/icons/italic.svg | 8 +----- eleven/templates/layout-landing/icons/key.svg | 8 +----- .../layout-landing/icons/language.svg | 8 +----- .../layout-landing/icons/lightning.svg | 16 +----------- .../templates/layout-landing/icons/link.svg | 8 +----- .../layout-landing/icons/list-alt.svg | 8 +----- .../templates/layout-landing/icons/lock.svg | 8 +----- .../templates/layout-landing/icons/magic.svg | 8 +----- .../layout-landing/icons/map-signs.svg | 8 +----- eleven/templates/layout-landing/icons/map.svg | 8 +----- .../templates/layout-landing/icons/medkit.svg | 8 +----- .../layout-landing/icons/minus-circle.svg | 8 +----- .../templates/layout-landing/icons/minus.svg | 8 +----- .../layout-landing/icons/newspaper-o.svg | 8 +----- .../layout-landing/icons/paint-brush.svg | 8 +----- .../layout-landing/icons/paragraph.svg | 8 +----- .../templates/layout-landing/icons/pencil.svg | 8 +----- .../templates/layout-landing/icons/phone.svg | 8 +----- .../layout-landing/icons/php-logo.svg | 8 +----- .../layout-landing/icons/picture-o.svg | 8 +----- .../layout-landing/icons/pie-chart.svg | 8 +----- .../templates/layout-landing/icons/plug.svg | 8 +----- .../layout-landing/icons/plus-circle.svg | 8 +----- .../templates/layout-landing/icons/plus.svg | 8 +----- .../layout-landing/icons/power-off.svg | 8 +----- .../layout-landing/icons/puzzle-piece.svg | 8 +----- .../layout-landing/icons/refresh.svg | 8 +----- .../layout-landing/icons/reorder.svg | 8 +----- .../layout-landing/icons/retweet.svg | 8 +----- eleven/templates/layout-landing/icons/rss.svg | 8 +----- .../layout-landing/icons/search-plus.svg | 8 +----- .../templates/layout-landing/icons/search.svg | 8 +----- .../templates/layout-landing/icons/send-o.svg | 8 +----- .../layout-landing/icons/share-alt.svg | 8 +----- .../layout-landing/icons/sitemap.svg | 8 +----- .../layout-landing/icons/sliders.svg | 8 +----- .../layout-landing/icons/sticky-note.svg | 8 +----- .../templates/layout-landing/icons/tags.svg | 8 +----- .../templates/layout-landing/icons/tasks.svg | 8 +----- .../layout-landing/icons/terminal.svg | 8 +----- .../layout-landing/icons/th-list.svg | 8 +----- eleven/templates/layout-landing/icons/th.svg | 8 +----- .../layout-landing/icons/thunder-infinite.svg | 26 +------------------ .../layout-landing/icons/thunder.svg | 26 +------------------ .../layout-landing/icons/times-circle.svg | 8 +----- .../templates/layout-landing/icons/truck.svg | 8 +----- .../layout-landing/icons/twitter.svg | 8 +----- .../layout-landing/icons/warning.svg | 8 +----- .../templates/layout-landing/icons/wrench.svg | 8 +----- .../layout-landing/modules/icons/check.svg | 8 +----- .../layout-landing/modules/icons/frown-o.svg | 8 +----- .../layout-landing/modules/icons/gear.svg | 8 +----- .../layout-landing/modules/icons/lock.svg | 8 +----- .../layout-landing/modules/icons/plug.svg | 8 +----- .../layout-landing/modules/icons/plus.svg | 8 +----- .../modules/icons/power-off.svg | 8 +----- .../modules/icons/puzzle-piece.svg | 8 +----- .../layout-landing/modules/icons/trash.svg | 8 +----- .../reports/icons/ambulance.svg | 8 +----- .../layout-landing/reports/icons/bell.svg | 8 +----- .../layout-landing/reports/icons/bomb.svg | 8 +----- .../layout-landing/reports/icons/bullhorn.svg | 8 +----- .../layout-landing/reports/icons/clock-o.svg | 8 +----- .../layout-landing/reports/icons/database.svg | 8 +----- .../layout-landing/reports/icons/filter.svg | 8 +----- .../reports/icons/info-circle.svg | 8 +----- .../reports/icons/times-circle.svg | 8 +----- .../layout-landing/reports/icons/times.svg | 8 +----- .../layout-landing/reports/icons/warning.svg | 8 +----- .../layout-landing/themes/icons/check.svg | 8 +----- .../layout-landing/themes/icons/gears.svg | 8 +----- .../layout-landing/themes/icons/heart-o.svg | 8 +----- .../layout-landing/themes/icons/heart.svg | 8 +----- .../layout-landing/themes/icons/plug.svg | 8 +----- .../layout-landing/themes/icons/plus.svg | 8 +----- .../layout-landing/themes/icons/power-off.svg | 8 +----- .../viewsui/icons/arrow-circle-right.svg | 8 +----- .../views/viewsui/icons/ban.svg | 8 +----- .../views/viewsui/icons/code.svg | 8 +----- .../views/viewsui/icons/database.svg | 8 +----- .../views/viewsui/icons/ellipsis-v.svg | 8 +----- .../views/viewsui/icons/exchange.svg | 8 +----- .../views/viewsui/icons/eye.svg | 8 +----- .../views/viewsui/icons/f245.svg | 8 +----- .../views/viewsui/icons/filter.svg | 8 +----- .../views/viewsui/icons/flag.svg | 8 +----- .../views/viewsui/icons/footer.svg | 13 +--------- .../views/viewsui/icons/gears.svg | 8 +----- .../views/viewsui/icons/info-circle.svg | 8 +----- .../views/viewsui/icons/list-alt.svg | 8 +----- .../views/viewsui/icons/page.svg | 8 +----- .../views/viewsui/icons/plus-circle.svg | 8 +----- .../views/viewsui/icons/sitemap.svg | 8 +----- .../views/viewsui/icons/sort-alpha-asc.svg | 8 +----- .../views/viewsui/icons/tasks.svg | 8 +----- .../modules/paragraphs/icons/pencil.svg | 8 +----- .../modules/paragraphs/icons/plus-circle.svg | 8 +----- .../modules/paragraphs/icons/refresh.svg | 8 +----- .../modules/paragraphs/icons/sort-down.svg | 8 +----- .../modules/paragraphs/icons/trash.svg | 8 +----- 320 files changed, 320 insertions(+), 2355 deletions(-) diff --git a/eleven/templates/component/button/icons/desktop.svg b/eleven/templates/component/button/icons/desktop.svg index fc59f24..c1abf91 100644 --- a/eleven/templates/component/button/icons/desktop.svg +++ b/eleven/templates/component/button/icons/desktop.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/button/icons/eye.svg b/eleven/templates/component/button/icons/eye.svg index 95aeef9..88619aa 100644 --- a/eleven/templates/component/button/icons/eye.svg +++ b/eleven/templates/component/button/icons/eye.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/button/icons/pencil.svg b/eleven/templates/component/button/icons/pencil.svg index b11d5a8..5e6c5a5 100644 --- a/eleven/templates/component/button/icons/pencil.svg +++ b/eleven/templates/component/button/icons/pencil.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/button/icons/plus-circle.svg b/eleven/templates/component/button/icons/plus-circle.svg index b87ffeb..41d3dd1 100644 --- a/eleven/templates/component/button/icons/plus-circle.svg +++ b/eleven/templates/component/button/icons/plus-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/button/icons/power-off.svg b/eleven/templates/component/button/icons/power-off.svg index 9aa7597..0a4a033 100644 --- a/eleven/templates/component/button/icons/power-off.svg +++ b/eleven/templates/component/button/icons/power-off.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/button/icons/refresh.svg b/eleven/templates/component/button/icons/refresh.svg index c317c01..4ebca88 100644 --- a/eleven/templates/component/button/icons/refresh.svg +++ b/eleven/templates/component/button/icons/refresh.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/button/icons/thumbs-o-up.svg b/eleven/templates/component/button/icons/thumbs-o-up.svg index 3fa3abc..cd3c8b6 100644 --- a/eleven/templates/component/button/icons/thumbs-o-up.svg +++ b/eleven/templates/component/button/icons/thumbs-o-up.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/button/icons/thumbs-up.svg b/eleven/templates/component/button/icons/thumbs-up.svg index 643a5af..f6a8046 100644 --- a/eleven/templates/component/button/icons/thumbs-up.svg +++ b/eleven/templates/component/button/icons/thumbs-up.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/button/icons/times-circle.svg b/eleven/templates/component/button/icons/times-circle.svg index 69431e3..ee966de 100644 --- a/eleven/templates/component/button/icons/times-circle.svg +++ b/eleven/templates/component/button/icons/times-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/button/icons/trash.svg b/eleven/templates/component/button/icons/trash.svg index 52cff42..f050921 100644 --- a/eleven/templates/component/button/icons/trash.svg +++ b/eleven/templates/component/button/icons/trash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/checkbox/icons/check-square-o.svg b/eleven/templates/component/form/checkbox/icons/check-square-o.svg index e2dd50e..7733c11 100644 --- a/eleven/templates/component/form/checkbox/icons/check-square-o.svg +++ b/eleven/templates/component/form/checkbox/icons/check-square-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/checkbox/icons/check-square.svg b/eleven/templates/component/form/checkbox/icons/check-square.svg index dc627b8..d13ee66 100644 --- a/eleven/templates/component/form/checkbox/icons/check-square.svg +++ b/eleven/templates/component/form/checkbox/icons/check-square.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/checkbox/icons/check.svg b/eleven/templates/component/form/checkbox/icons/check.svg index a01e522..c40affb 100644 --- a/eleven/templates/component/form/checkbox/icons/check.svg +++ b/eleven/templates/component/form/checkbox/icons/check.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/checkbox/icons/times.svg b/eleven/templates/component/form/checkbox/icons/times.svg index 99ac293..9cfdaca 100644 --- a/eleven/templates/component/form/checkbox/icons/times.svg +++ b/eleven/templates/component/form/checkbox/icons/times.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/details/icons/angle-down.svg b/eleven/templates/component/form/details/icons/angle-down.svg index 2d9d6ba..afcc8d1 100644 --- a/eleven/templates/component/form/details/icons/angle-down.svg +++ b/eleven/templates/component/form/details/icons/angle-down.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/details/icons/angle-left.svg b/eleven/templates/component/form/details/icons/angle-left.svg index 8016959..413e42a 100644 --- a/eleven/templates/component/form/details/icons/angle-left.svg +++ b/eleven/templates/component/form/details/icons/angle-left.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/details/icons/angle-right.svg b/eleven/templates/component/form/details/icons/angle-right.svg index 5a26efc..0401317 100644 --- a/eleven/templates/component/form/details/icons/angle-right.svg +++ b/eleven/templates/component/form/details/icons/angle-right.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/details/icons/angle-up.svg b/eleven/templates/component/form/details/icons/angle-up.svg index 69b6bf3..0c52ca8 100644 --- a/eleven/templates/component/form/details/icons/angle-up.svg +++ b/eleven/templates/component/form/details/icons/angle-up.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/details/icons/arrow-circle-down.svg b/eleven/templates/component/form/details/icons/arrow-circle-down.svg index cf5f720..9bc9432 100644 --- a/eleven/templates/component/form/details/icons/arrow-circle-down.svg +++ b/eleven/templates/component/form/details/icons/arrow-circle-down.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/details/icons/arrow-circle-right.svg b/eleven/templates/component/form/details/icons/arrow-circle-right.svg index 9ecb6ba..1ffb062 100644 --- a/eleven/templates/component/form/details/icons/arrow-circle-right.svg +++ b/eleven/templates/component/form/details/icons/arrow-circle-right.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/details/icons/arrow-circle-up.svg b/eleven/templates/component/form/details/icons/arrow-circle-up.svg index 8c7d2b4..56b2089 100644 --- a/eleven/templates/component/form/details/icons/arrow-circle-up.svg +++ b/eleven/templates/component/form/details/icons/arrow-circle-up.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/details/icons/arrow-down.svg b/eleven/templates/component/form/details/icons/arrow-down.svg index 4c437d0..077613b 100644 --- a/eleven/templates/component/form/details/icons/arrow-down.svg +++ b/eleven/templates/component/form/details/icons/arrow-down.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/details/icons/arrow-up.svg b/eleven/templates/component/form/details/icons/arrow-up.svg index c9b1426..85ddf43 100644 --- a/eleven/templates/component/form/details/icons/arrow-up.svg +++ b/eleven/templates/component/form/details/icons/arrow-up.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/details/icons/reorder.svg b/eleven/templates/component/form/details/icons/reorder.svg index a15d226..7d4337b 100644 --- a/eleven/templates/component/form/details/icons/reorder.svg +++ b/eleven/templates/component/form/details/icons/reorder.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/cloud-upload.svg b/eleven/templates/component/form/input-file/icons/cloud-upload.svg index 89b2c12..9de2608 100644 --- a/eleven/templates/component/form/input-file/icons/cloud-upload.svg +++ b/eleven/templates/component/form/input-file/icons/cloud-upload.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-code-o.svg b/eleven/templates/component/form/input-file/icons/file-code-o.svg index 93ac8df..90c43eb 100644 --- a/eleven/templates/component/form/input-file/icons/file-code-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-code-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-excel-o.svg b/eleven/templates/component/form/input-file/icons/file-excel-o.svg index f4b6b9c..fa35c4a 100644 --- a/eleven/templates/component/form/input-file/icons/file-excel-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-excel-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-o.svg b/eleven/templates/component/form/input-file/icons/file-o.svg index 07557bf..c2b6ffc 100644 --- a/eleven/templates/component/form/input-file/icons/file-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-pdf-o.svg b/eleven/templates/component/form/input-file/icons/file-pdf-o.svg index f3c59ca..13ab320 100644 --- a/eleven/templates/component/form/input-file/icons/file-pdf-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-pdf-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-picture-o.svg b/eleven/templates/component/form/input-file/icons/file-picture-o.svg index d7c1395..56cb18d 100644 --- a/eleven/templates/component/form/input-file/icons/file-picture-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-picture-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-powerpoint-o.svg b/eleven/templates/component/form/input-file/icons/file-powerpoint-o.svg index 20f7cd9..a9651c8 100644 --- a/eleven/templates/component/form/input-file/icons/file-powerpoint-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-powerpoint-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-sound-o.svg b/eleven/templates/component/form/input-file/icons/file-sound-o.svg index ff409a0..4470fb1 100644 --- a/eleven/templates/component/form/input-file/icons/file-sound-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-sound-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-text-o.svg b/eleven/templates/component/form/input-file/icons/file-text-o.svg index 0f5a9f2..5ffa5e4 100644 --- a/eleven/templates/component/form/input-file/icons/file-text-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-text-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-text.svg b/eleven/templates/component/form/input-file/icons/file-text.svg index a8ff2ad..eb7ba98 100644 --- a/eleven/templates/component/form/input-file/icons/file-text.svg +++ b/eleven/templates/component/form/input-file/icons/file-text.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-video-o.svg b/eleven/templates/component/form/input-file/icons/file-video-o.svg index b09643c..230c102 100644 --- a/eleven/templates/component/form/input-file/icons/file-video-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-video-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-word-o.svg b/eleven/templates/component/form/input-file/icons/file-word-o.svg index 33cfdfc..5c0c07a 100644 --- a/eleven/templates/component/form/input-file/icons/file-word-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-word-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file-zip-o.svg b/eleven/templates/component/form/input-file/icons/file-zip-o.svg index 6f639e6..d7cca23 100644 --- a/eleven/templates/component/form/input-file/icons/file-zip-o.svg +++ b/eleven/templates/component/form/input-file/icons/file-zip-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/file.svg b/eleven/templates/component/form/input-file/icons/file.svg index ad20df1..8d8f617 100644 --- a/eleven/templates/component/form/input-file/icons/file.svg +++ b/eleven/templates/component/form/input-file/icons/file.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/files-o.svg b/eleven/templates/component/form/input-file/icons/files-o.svg index 26eaea2..71a0e77 100644 --- a/eleven/templates/component/form/input-file/icons/files-o.svg +++ b/eleven/templates/component/form/input-file/icons/files-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/picture-o.svg b/eleven/templates/component/form/input-file/icons/picture-o.svg index 516843a..ec56b28 100644 --- a/eleven/templates/component/form/input-file/icons/picture-o.svg +++ b/eleven/templates/component/form/input-file/icons/picture-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/trash.svg b/eleven/templates/component/form/input-file/icons/trash.svg index 637ec55..f050921 100644 --- a/eleven/templates/component/form/input-file/icons/trash.svg +++ b/eleven/templates/component/form/input-file/icons/trash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input-file/icons/upload.svg b/eleven/templates/component/form/input-file/icons/upload.svg index 0152963..161a3d9 100644 --- a/eleven/templates/component/form/input-file/icons/upload.svg +++ b/eleven/templates/component/form/input-file/icons/upload.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/calendar-o.svg b/eleven/templates/component/form/input/icons/calendar-o.svg index 27efac9..f284fb0 100644 --- a/eleven/templates/component/form/input/icons/calendar-o.svg +++ b/eleven/templates/component/form/input/icons/calendar-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/clock-o.svg b/eleven/templates/component/form/input/icons/clock-o.svg index 9a950b8..ae47c0f 100644 --- a/eleven/templates/component/form/input/icons/clock-o.svg +++ b/eleven/templates/component/form/input/icons/clock-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/envelope-o.svg b/eleven/templates/component/form/input/icons/envelope-o.svg index 1bf19a5..573ffcb 100644 --- a/eleven/templates/component/form/input/icons/envelope-o.svg +++ b/eleven/templates/component/form/input/icons/envelope-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/f2bb.svg b/eleven/templates/component/form/input/icons/f2bb.svg index 495537a..1b2c75c 100644 --- a/eleven/templates/component/form/input/icons/f2bb.svg +++ b/eleven/templates/component/form/input/icons/f2bb.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/f2bc.svg b/eleven/templates/component/form/input/icons/f2bc.svg index 57a4cac..d8a9295 100644 --- a/eleven/templates/component/form/input/icons/f2bc.svg +++ b/eleven/templates/component/form/input/icons/f2bc.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/f2bd.svg b/eleven/templates/component/form/input/icons/f2bd.svg index 6192008..6538b94 100644 --- a/eleven/templates/component/form/input/icons/f2bd.svg +++ b/eleven/templates/component/form/input/icons/f2bd.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/f2be.svg b/eleven/templates/component/form/input/icons/f2be.svg index 0d39680..cea02f0 100644 --- a/eleven/templates/component/form/input/icons/f2be.svg +++ b/eleven/templates/component/form/input/icons/f2be.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/lock.svg b/eleven/templates/component/form/input/icons/lock.svg index d27bc9a..cb5c209 100644 --- a/eleven/templates/component/form/input/icons/lock.svg +++ b/eleven/templates/component/form/input/icons/lock.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/search-minus.svg b/eleven/templates/component/form/input/icons/search-minus.svg index cc58ceb..5c93f7d 100644 --- a/eleven/templates/component/form/input/icons/search-minus.svg +++ b/eleven/templates/component/form/input/icons/search-minus.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/search-plus.svg b/eleven/templates/component/form/input/icons/search-plus.svg index 96a0fd1..0c3b56b 100644 --- a/eleven/templates/component/form/input/icons/search-plus.svg +++ b/eleven/templates/component/form/input/icons/search-plus.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/search.svg b/eleven/templates/component/form/input/icons/search.svg index 902af29..bb15a55 100644 --- a/eleven/templates/component/form/input/icons/search.svg +++ b/eleven/templates/component/form/input/icons/search.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/unlock-alt.svg b/eleven/templates/component/form/input/icons/unlock-alt.svg index c833670..01a7797 100644 --- a/eleven/templates/component/form/input/icons/unlock-alt.svg +++ b/eleven/templates/component/form/input/icons/unlock-alt.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/input/icons/unlock.svg b/eleven/templates/component/form/input/icons/unlock.svg index 87eb26b..4e52a1a 100644 --- a/eleven/templates/component/form/input/icons/unlock.svg +++ b/eleven/templates/component/form/input/icons/unlock.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/radio/icons/check.svg b/eleven/templates/component/form/radio/icons/check.svg index a01e522..c40affb 100644 --- a/eleven/templates/component/form/radio/icons/check.svg +++ b/eleven/templates/component/form/radio/icons/check.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/radio/icons/times.svg b/eleven/templates/component/form/radio/icons/times.svg index 99ac293..9cfdaca 100644 --- a/eleven/templates/component/form/radio/icons/times.svg +++ b/eleven/templates/component/form/radio/icons/times.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/select/icons/angle-down.svg b/eleven/templates/component/form/select/icons/angle-down.svg index 510d737..1e25e47 100644 --- a/eleven/templates/component/form/select/icons/angle-down.svg +++ b/eleven/templates/component/form/select/icons/angle-down.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/select/icons/check.svg b/eleven/templates/component/form/select/icons/check.svg index a01e522..c40affb 100644 --- a/eleven/templates/component/form/select/icons/check.svg +++ b/eleven/templates/component/form/select/icons/check.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/form/textarea/icons/question.svg b/eleven/templates/component/form/textarea/icons/question.svg index e920c17..074fc6e 100644 --- a/eleven/templates/component/form/textarea/icons/question.svg +++ b/eleven/templates/component/form/textarea/icons/question.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/messages/icons/button-x.svg b/eleven/templates/component/messages/icons/button-x.svg index 056a750..bba1714 100644 --- a/eleven/templates/component/messages/icons/button-x.svg +++ b/eleven/templates/component/messages/icons/button-x.svg @@ -1,10 +1 @@ - - - - button-x - Created with Sketch. - - - - - \ No newline at end of file +button-x \ No newline at end of file diff --git a/eleven/templates/component/navigation/cardlayout/icons/layout-3.svg b/eleven/templates/component/navigation/cardlayout/icons/layout-3.svg index c06e779..8bb5fdd 100644 --- a/eleven/templates/component/navigation/cardlayout/icons/layout-3.svg +++ b/eleven/templates/component/navigation/cardlayout/icons/layout-3.svg @@ -1,14 +1 @@ - - - - layout-3 - Created with Sketch. - - - - - - - - - \ No newline at end of file +layout-3 \ No newline at end of file diff --git a/eleven/templates/component/navigation/cardlayout/icons/layout-4.svg b/eleven/templates/component/navigation/cardlayout/icons/layout-4.svg index de33868..175fa45 100644 --- a/eleven/templates/component/navigation/cardlayout/icons/layout-4.svg +++ b/eleven/templates/component/navigation/cardlayout/icons/layout-4.svg @@ -1,15 +1 @@ - - - - layout-4 - Created with Sketch. - - - - - - - - - - \ No newline at end of file +layout-4 \ No newline at end of file diff --git a/eleven/templates/component/navigation/cardlayout/icons/layout-5.svg b/eleven/templates/component/navigation/cardlayout/icons/layout-5.svg index e231930..4dbef77 100644 --- a/eleven/templates/component/navigation/cardlayout/icons/layout-5.svg +++ b/eleven/templates/component/navigation/cardlayout/icons/layout-5.svg @@ -1,16 +1 @@ - - - - layout-5 - Created with Sketch. - - - - - - - - - - - \ No newline at end of file +layout-5 \ No newline at end of file diff --git a/eleven/templates/component/navigation/cardlayout/icons/layout-6.svg b/eleven/templates/component/navigation/cardlayout/icons/layout-6.svg index 7b9f8e5..b39c9e9 100644 --- a/eleven/templates/component/navigation/cardlayout/icons/layout-6.svg +++ b/eleven/templates/component/navigation/cardlayout/icons/layout-6.svg @@ -1,17 +1 @@ - - - - layout-6 - Created with Sketch. - - - - - - - - - - - - \ No newline at end of file +layout-6 \ No newline at end of file diff --git a/eleven/templates/component/navigation/cardlayout/icons/support.svg b/eleven/templates/component/navigation/cardlayout/icons/support.svg index d89905c..ad9f11e 100644 --- a/eleven/templates/component/navigation/cardlayout/icons/support.svg +++ b/eleven/templates/component/navigation/cardlayout/icons/support.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/child.svg b/eleven/templates/component/navigation/dropbutton/icons/child.svg index 3b7b10c..cf686fe 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/child.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/child.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/code-fork.svg b/eleven/templates/component/navigation/dropbutton/icons/code-fork.svg index ea83bb1..0b6eb62 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/code-fork.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/code-fork.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/columns.svg b/eleven/templates/component/navigation/dropbutton/icons/columns.svg index 1104443..3f90618 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/columns.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/columns.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/database.svg b/eleven/templates/component/navigation/dropbutton/icons/database.svg index d2055b0..138241d 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/database.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/database.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/desktop.svg b/eleven/templates/component/navigation/dropbutton/icons/desktop.svg index 94d41e8..6893bdb 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/desktop.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/desktop.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/ellipsis-v.svg b/eleven/templates/component/navigation/dropbutton/icons/ellipsis-v.svg index 4bec0b0..bce3c1e 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/ellipsis-v.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/ellipsis-v.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/envelope.svg b/eleven/templates/component/navigation/dropbutton/icons/envelope.svg index e7d6792..5dba886 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/envelope.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/envelope.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/exchange.svg b/eleven/templates/component/navigation/dropbutton/icons/exchange.svg index d309a2e..ea46244 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/exchange.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/exchange.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/f24d.svg b/eleven/templates/component/navigation/dropbutton/icons/f24d.svg index 76cb869..9744589 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/f24d.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/f24d.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/file.svg b/eleven/templates/component/navigation/dropbutton/icons/file.svg index d399bd2..b9deacc 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/file.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/file.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/flag.svg b/eleven/templates/component/navigation/dropbutton/icons/flag.svg index f7e2353..15150a0 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/flag.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/flag.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/gears.svg b/eleven/templates/component/navigation/dropbutton/icons/gears.svg index fdf8c68..7430eec 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/gears.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/gears.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/history.svg b/eleven/templates/component/navigation/dropbutton/icons/history.svg index 1131422..d27d9b1 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/history.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/history.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/list-alt.svg b/eleven/templates/component/navigation/dropbutton/icons/list-alt.svg index 8b66901..55e3a90 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/list-alt.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/list-alt.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/pencil-square-o.svg b/eleven/templates/component/navigation/dropbutton/icons/pencil-square-o.svg index f939438..231d2e4 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/pencil-square-o.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/pencil-square-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/pencil.svg b/eleven/templates/component/navigation/dropbutton/icons/pencil.svg index 25d0877..05cdf83 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/pencil.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/pencil.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/plus-circle.svg b/eleven/templates/component/navigation/dropbutton/icons/plus-circle.svg index b87ffeb..41d3dd1 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/plus-circle.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/plus-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/power-off.svg b/eleven/templates/component/navigation/dropbutton/icons/power-off.svg index 9095e9e..4fc33ec 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/power-off.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/power-off.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/refresh.svg b/eleven/templates/component/navigation/dropbutton/icons/refresh.svg index 5982cb1..4ebca88 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/refresh.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/refresh.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/reorder.svg b/eleven/templates/component/navigation/dropbutton/icons/reorder.svg index a15d226..7d4337b 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/reorder.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/reorder.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/terminal.svg b/eleven/templates/component/navigation/dropbutton/icons/terminal.svg index 9ed26e6..e60d479 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/terminal.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/terminal.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/th-list.svg b/eleven/templates/component/navigation/dropbutton/icons/th-list.svg index fb3e5e0..e2a3562 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/th-list.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/th-list.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/dropbutton/icons/trash.svg b/eleven/templates/component/navigation/dropbutton/icons/trash.svg index 637ec55..f050921 100644 --- a/eleven/templates/component/navigation/dropbutton/icons/trash.svg +++ b/eleven/templates/component/navigation/dropbutton/icons/trash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/briefcase.svg b/eleven/templates/component/navigation/localtask/icons/briefcase.svg index 7662bfc..2d54dde 100644 --- a/eleven/templates/component/navigation/localtask/icons/briefcase.svg +++ b/eleven/templates/component/navigation/localtask/icons/briefcase.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/bullhorn.svg b/eleven/templates/component/navigation/localtask/icons/bullhorn.svg index 32163ef..b082dc2 100644 --- a/eleven/templates/component/navigation/localtask/icons/bullhorn.svg +++ b/eleven/templates/component/navigation/localtask/icons/bullhorn.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/child.svg b/eleven/templates/component/navigation/localtask/icons/child.svg index 3b7b10c..cf686fe 100644 --- a/eleven/templates/component/navigation/localtask/icons/child.svg +++ b/eleven/templates/component/navigation/localtask/icons/child.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/clock-o.svg b/eleven/templates/component/navigation/localtask/icons/clock-o.svg index 9a950b8..ae47c0f 100644 --- a/eleven/templates/component/navigation/localtask/icons/clock-o.svg +++ b/eleven/templates/component/navigation/localtask/icons/clock-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/cloud-download.svg b/eleven/templates/component/navigation/localtask/icons/cloud-download.svg index 8075def..60fcf95 100644 --- a/eleven/templates/component/navigation/localtask/icons/cloud-download.svg +++ b/eleven/templates/component/navigation/localtask/icons/cloud-download.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/cloud-upload.svg b/eleven/templates/component/navigation/localtask/icons/cloud-upload.svg index 269b07e..8c857f1 100644 --- a/eleven/templates/component/navigation/localtask/icons/cloud-upload.svg +++ b/eleven/templates/component/navigation/localtask/icons/cloud-upload.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/code-fork.svg b/eleven/templates/component/navigation/localtask/icons/code-fork.svg index ea83bb1..0b6eb62 100644 --- a/eleven/templates/component/navigation/localtask/icons/code-fork.svg +++ b/eleven/templates/component/navigation/localtask/icons/code-fork.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/columns.svg b/eleven/templates/component/navigation/localtask/icons/columns.svg index 1104443..3f90618 100644 --- a/eleven/templates/component/navigation/localtask/icons/columns.svg +++ b/eleven/templates/component/navigation/localtask/icons/columns.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/comments.svg b/eleven/templates/component/navigation/localtask/icons/comments.svg index 55ff2c5..648bdfc 100644 --- a/eleven/templates/component/navigation/localtask/icons/comments.svg +++ b/eleven/templates/component/navigation/localtask/icons/comments.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/cubes.svg b/eleven/templates/component/navigation/localtask/icons/cubes.svg index 63e461f..60f12a9 100644 --- a/eleven/templates/component/navigation/localtask/icons/cubes.svg +++ b/eleven/templates/component/navigation/localtask/icons/cubes.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/database.svg b/eleven/templates/component/navigation/localtask/icons/database.svg index d2055b0..138241d 100644 --- a/eleven/templates/component/navigation/localtask/icons/database.svg +++ b/eleven/templates/component/navigation/localtask/icons/database.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/desktop.svg b/eleven/templates/component/navigation/localtask/icons/desktop.svg index 94d41e8..6893bdb 100644 --- a/eleven/templates/component/navigation/localtask/icons/desktop.svg +++ b/eleven/templates/component/navigation/localtask/icons/desktop.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/envelope.svg b/eleven/templates/component/navigation/localtask/icons/envelope.svg index e7d6792..5dba886 100644 --- a/eleven/templates/component/navigation/localtask/icons/envelope.svg +++ b/eleven/templates/component/navigation/localtask/icons/envelope.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/file-picture-o.svg b/eleven/templates/component/navigation/localtask/icons/file-picture-o.svg index f95f98a..aba2b04 100644 --- a/eleven/templates/component/navigation/localtask/icons/file-picture-o.svg +++ b/eleven/templates/component/navigation/localtask/icons/file-picture-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/file-text-o.svg b/eleven/templates/component/navigation/localtask/icons/file-text-o.svg index 3a28448..5ffa5e4 100644 --- a/eleven/templates/component/navigation/localtask/icons/file-text-o.svg +++ b/eleven/templates/component/navigation/localtask/icons/file-text-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/file-text.svg b/eleven/templates/component/navigation/localtask/icons/file-text.svg index 08dd719..43ef9a2 100644 --- a/eleven/templates/component/navigation/localtask/icons/file-text.svg +++ b/eleven/templates/component/navigation/localtask/icons/file-text.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/flag.svg b/eleven/templates/component/navigation/localtask/icons/flag.svg index f7e2353..15150a0 100644 --- a/eleven/templates/component/navigation/localtask/icons/flag.svg +++ b/eleven/templates/component/navigation/localtask/icons/flag.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/gear.svg b/eleven/templates/component/navigation/localtask/icons/gear.svg index 8935368..784480c 100644 --- a/eleven/templates/component/navigation/localtask/icons/gear.svg +++ b/eleven/templates/component/navigation/localtask/icons/gear.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/gears.svg b/eleven/templates/component/navigation/localtask/icons/gears.svg index fdf8c68..7430eec 100644 --- a/eleven/templates/component/navigation/localtask/icons/gears.svg +++ b/eleven/templates/component/navigation/localtask/icons/gears.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/hdd-o.svg b/eleven/templates/component/navigation/localtask/icons/hdd-o.svg index f2b6dd3..f92c8b2 100644 --- a/eleven/templates/component/navigation/localtask/icons/hdd-o.svg +++ b/eleven/templates/component/navigation/localtask/icons/hdd-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/heart.svg b/eleven/templates/component/navigation/localtask/icons/heart.svg index f499a40..3445c6d 100644 --- a/eleven/templates/component/navigation/localtask/icons/heart.svg +++ b/eleven/templates/component/navigation/localtask/icons/heart.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/history.svg b/eleven/templates/component/navigation/localtask/icons/history.svg index 1131422..d27d9b1 100644 --- a/eleven/templates/component/navigation/localtask/icons/history.svg +++ b/eleven/templates/component/navigation/localtask/icons/history.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/inbox.svg b/eleven/templates/component/navigation/localtask/icons/inbox.svg index ac793ec..ddd56b0 100644 --- a/eleven/templates/component/navigation/localtask/icons/inbox.svg +++ b/eleven/templates/component/navigation/localtask/icons/inbox.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/info-circle.svg b/eleven/templates/component/navigation/localtask/icons/info-circle.svg index bc07657..dd74596 100644 --- a/eleven/templates/component/navigation/localtask/icons/info-circle.svg +++ b/eleven/templates/component/navigation/localtask/icons/info-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/list-alt.svg b/eleven/templates/component/navigation/localtask/icons/list-alt.svg index 8b66901..55e3a90 100644 --- a/eleven/templates/component/navigation/localtask/icons/list-alt.svg +++ b/eleven/templates/component/navigation/localtask/icons/list-alt.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/list.svg b/eleven/templates/component/navigation/localtask/icons/list.svg index 05419f3..a6bbd4f 100644 --- a/eleven/templates/component/navigation/localtask/icons/list.svg +++ b/eleven/templates/component/navigation/localtask/icons/list.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/lock.svg b/eleven/templates/component/navigation/localtask/icons/lock.svg index 7fe02af..aecc4d5 100644 --- a/eleven/templates/component/navigation/localtask/icons/lock.svg +++ b/eleven/templates/component/navigation/localtask/icons/lock.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/paint-brush.svg b/eleven/templates/component/navigation/localtask/icons/paint-brush.svg index aa188ce..fa10097 100644 --- a/eleven/templates/component/navigation/localtask/icons/paint-brush.svg +++ b/eleven/templates/component/navigation/localtask/icons/paint-brush.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/pencil.svg b/eleven/templates/component/navigation/localtask/icons/pencil.svg index 25d0877..05cdf83 100644 --- a/eleven/templates/component/navigation/localtask/icons/pencil.svg +++ b/eleven/templates/component/navigation/localtask/icons/pencil.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/plug.svg b/eleven/templates/component/navigation/localtask/icons/plug.svg index 4bb6394..d64f913 100644 --- a/eleven/templates/component/navigation/localtask/icons/plug.svg +++ b/eleven/templates/component/navigation/localtask/icons/plug.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/plus-circle.svg b/eleven/templates/component/navigation/localtask/icons/plus-circle.svg index b87ffeb..41d3dd1 100644 --- a/eleven/templates/component/navigation/localtask/icons/plus-circle.svg +++ b/eleven/templates/component/navigation/localtask/icons/plus-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/power-off.svg b/eleven/templates/component/navigation/localtask/icons/power-off.svg index 9095e9e..4fc33ec 100644 --- a/eleven/templates/component/navigation/localtask/icons/power-off.svg +++ b/eleven/templates/component/navigation/localtask/icons/power-off.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/puzzle-piece.svg b/eleven/templates/component/navigation/localtask/icons/puzzle-piece.svg index e09b2bb..1d74b8a 100644 --- a/eleven/templates/component/navigation/localtask/icons/puzzle-piece.svg +++ b/eleven/templates/component/navigation/localtask/icons/puzzle-piece.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/refresh.svg b/eleven/templates/component/navigation/localtask/icons/refresh.svg index 5982cb1..4ebca88 100644 --- a/eleven/templates/component/navigation/localtask/icons/refresh.svg +++ b/eleven/templates/component/navigation/localtask/icons/refresh.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/reorder.svg b/eleven/templates/component/navigation/localtask/icons/reorder.svg index a15d226..7d4337b 100644 --- a/eleven/templates/component/navigation/localtask/icons/reorder.svg +++ b/eleven/templates/component/navigation/localtask/icons/reorder.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/rocket.svg b/eleven/templates/component/navigation/localtask/icons/rocket.svg index 4140df8..64e87aa 100644 --- a/eleven/templates/component/navigation/localtask/icons/rocket.svg +++ b/eleven/templates/component/navigation/localtask/icons/rocket.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/rotate-right.svg b/eleven/templates/component/navigation/localtask/icons/rotate-right.svg index 431ea10..8a69629 100644 --- a/eleven/templates/component/navigation/localtask/icons/rotate-right.svg +++ b/eleven/templates/component/navigation/localtask/icons/rotate-right.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/rss.svg b/eleven/templates/component/navigation/localtask/icons/rss.svg index 63fc060..86b73ea 100644 --- a/eleven/templates/component/navigation/localtask/icons/rss.svg +++ b/eleven/templates/component/navigation/localtask/icons/rss.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/sitemap.svg b/eleven/templates/component/navigation/localtask/icons/sitemap.svg index d4fb4d9..15811f1 100644 --- a/eleven/templates/component/navigation/localtask/icons/sitemap.svg +++ b/eleven/templates/component/navigation/localtask/icons/sitemap.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/tag.svg b/eleven/templates/component/navigation/localtask/icons/tag.svg index cb853d6..83df936 100644 --- a/eleven/templates/component/navigation/localtask/icons/tag.svg +++ b/eleven/templates/component/navigation/localtask/icons/tag.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/tasks.svg b/eleven/templates/component/navigation/localtask/icons/tasks.svg index 5102703..18f2768 100644 --- a/eleven/templates/component/navigation/localtask/icons/tasks.svg +++ b/eleven/templates/component/navigation/localtask/icons/tasks.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/terminal.svg b/eleven/templates/component/navigation/localtask/icons/terminal.svg index 9ed26e6..e60d479 100644 --- a/eleven/templates/component/navigation/localtask/icons/terminal.svg +++ b/eleven/templates/component/navigation/localtask/icons/terminal.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/th-list.svg b/eleven/templates/component/navigation/localtask/icons/th-list.svg index fb3e5e0..e2a3562 100644 --- a/eleven/templates/component/navigation/localtask/icons/th-list.svg +++ b/eleven/templates/component/navigation/localtask/icons/th-list.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/trash.svg b/eleven/templates/component/navigation/localtask/icons/trash.svg index 637ec55..f050921 100644 --- a/eleven/templates/component/navigation/localtask/icons/trash.svg +++ b/eleven/templates/component/navigation/localtask/icons/trash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/localtask/icons/userid.svg b/eleven/templates/component/navigation/localtask/icons/userid.svg index 2c8e834..7321ad8 100644 --- a/eleven/templates/component/navigation/localtask/icons/userid.svg +++ b/eleven/templates/component/navigation/localtask/icons/userid.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/pager/icons/chevron-down.svg b/eleven/templates/component/navigation/pager/icons/chevron-down.svg index 09c70a8..5e575e8 100644 --- a/eleven/templates/component/navigation/pager/icons/chevron-down.svg +++ b/eleven/templates/component/navigation/pager/icons/chevron-down.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/pager/icons/chevron-left.svg b/eleven/templates/component/navigation/pager/icons/chevron-left.svg index 1614307..92a8af4 100644 --- a/eleven/templates/component/navigation/pager/icons/chevron-left.svg +++ b/eleven/templates/component/navigation/pager/icons/chevron-left.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/pager/icons/chevron-right.svg b/eleven/templates/component/navigation/pager/icons/chevron-right.svg index 20c3195..0a21f2b 100644 --- a/eleven/templates/component/navigation/pager/icons/chevron-right.svg +++ b/eleven/templates/component/navigation/pager/icons/chevron-right.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/pager/icons/chevron-up.svg b/eleven/templates/component/navigation/pager/icons/chevron-up.svg index ff24d30..bb2b253 100644 --- a/eleven/templates/component/navigation/pager/icons/chevron-up.svg +++ b/eleven/templates/component/navigation/pager/icons/chevron-up.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/pager/icons/ellipsis-h.svg b/eleven/templates/component/navigation/pager/icons/ellipsis-h.svg index fb78aa7..63ffaff 100644 --- a/eleven/templates/component/navigation/pager/icons/ellipsis-h.svg +++ b/eleven/templates/component/navigation/pager/icons/ellipsis-h.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/tabs/icons/columns.svg b/eleven/templates/component/navigation/tabs/icons/columns.svg index 7826657..7f7ae06 100644 --- a/eleven/templates/component/navigation/tabs/icons/columns.svg +++ b/eleven/templates/component/navigation/tabs/icons/columns.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/navigation/tabs/icons/layout-2col.svg b/eleven/templates/component/navigation/tabs/icons/layout-2col.svg index d21c420..152c4cf 100644 --- a/eleven/templates/component/navigation/tabs/icons/layout-2col.svg +++ b/eleven/templates/component/navigation/tabs/icons/layout-2col.svg @@ -1,10 +1 @@ - - - - layout-2col - Created with Sketch. - - - - - \ No newline at end of file +layout-2col \ No newline at end of file diff --git a/eleven/templates/component/navigation/tabs/icons/layout-2colwide.svg b/eleven/templates/component/navigation/tabs/icons/layout-2colwide.svg index 1c41159..f063668 100644 --- a/eleven/templates/component/navigation/tabs/icons/layout-2colwide.svg +++ b/eleven/templates/component/navigation/tabs/icons/layout-2colwide.svg @@ -1,10 +1 @@ - - - - layout-2colwide - Created with Sketch. - - - - - \ No newline at end of file +layout-2colwide \ No newline at end of file diff --git a/eleven/templates/component/navigation/tabs/icons/layout-full.svg b/eleven/templates/component/navigation/tabs/icons/layout-full.svg index ef00d44..9d52687 100644 --- a/eleven/templates/component/navigation/tabs/icons/layout-full.svg +++ b/eleven/templates/component/navigation/tabs/icons/layout-full.svg @@ -1,10 +1 @@ - - - - layout-full - Created with Sketch. - - - - - \ No newline at end of file +layout-full \ No newline at end of file diff --git a/eleven/templates/component/navigation/tabs/icons/layout-row.svg b/eleven/templates/component/navigation/tabs/icons/layout-row.svg index b79dc14..ee30d44 100644 --- a/eleven/templates/component/navigation/tabs/icons/layout-row.svg +++ b/eleven/templates/component/navigation/tabs/icons/layout-row.svg @@ -1,10 +1 @@ - - - - layout-row - Created with Sketch. - - - - - \ No newline at end of file +layout-row \ No newline at end of file diff --git a/eleven/templates/component/shortcut/icons/bookmark-o.svg b/eleven/templates/component/shortcut/icons/bookmark-o.svg index 962b3d1..6b1b8c5 100644 --- a/eleven/templates/component/shortcut/icons/bookmark-o.svg +++ b/eleven/templates/component/shortcut/icons/bookmark-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/shortcut/icons/bookmark.svg b/eleven/templates/component/shortcut/icons/bookmark.svg index a4553f5..9cbeff1 100644 --- a/eleven/templates/component/shortcut/icons/bookmark.svg +++ b/eleven/templates/component/shortcut/icons/bookmark.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/shortcut/icons/heart-o.svg b/eleven/templates/component/shortcut/icons/heart-o.svg index a6d4275..de8477d 100644 --- a/eleven/templates/component/shortcut/icons/heart-o.svg +++ b/eleven/templates/component/shortcut/icons/heart-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/shortcut/icons/heart.svg b/eleven/templates/component/shortcut/icons/heart.svg index f499a40..3445c6d 100644 --- a/eleven/templates/component/shortcut/icons/heart.svg +++ b/eleven/templates/component/shortcut/icons/heart.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/arrows.svg b/eleven/templates/component/table/icons/arrows.svg index f6e5fd2..785591f 100644 --- a/eleven/templates/component/table/icons/arrows.svg +++ b/eleven/templates/component/table/icons/arrows.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/caret-down.svg b/eleven/templates/component/table/icons/caret-down.svg index cf004be..038ad2a 100644 --- a/eleven/templates/component/table/icons/caret-down.svg +++ b/eleven/templates/component/table/icons/caret-down.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/caret-up.svg b/eleven/templates/component/table/icons/caret-up.svg index a53ad20..0c79334 100644 --- a/eleven/templates/component/table/icons/caret-up.svg +++ b/eleven/templates/component/table/icons/caret-up.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/file-excel-o.svg b/eleven/templates/component/table/icons/file-excel-o.svg index a0a6900..fa35c4a 100644 --- a/eleven/templates/component/table/icons/file-excel-o.svg +++ b/eleven/templates/component/table/icons/file-excel-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/file-o.svg b/eleven/templates/component/table/icons/file-o.svg index 00ae2c4..c2b6ffc 100644 --- a/eleven/templates/component/table/icons/file-o.svg +++ b/eleven/templates/component/table/icons/file-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/file-pdf-o.svg b/eleven/templates/component/table/icons/file-pdf-o.svg index 0853101..13ab320 100644 --- a/eleven/templates/component/table/icons/file-pdf-o.svg +++ b/eleven/templates/component/table/icons/file-pdf-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/file-picture-o.svg b/eleven/templates/component/table/icons/file-picture-o.svg index 3b3ba40..56cb18d 100644 --- a/eleven/templates/component/table/icons/file-picture-o.svg +++ b/eleven/templates/component/table/icons/file-picture-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/file-powerpoint-o.svg b/eleven/templates/component/table/icons/file-powerpoint-o.svg index 559de1d..a9651c8 100644 --- a/eleven/templates/component/table/icons/file-powerpoint-o.svg +++ b/eleven/templates/component/table/icons/file-powerpoint-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/file-video-o.svg b/eleven/templates/component/table/icons/file-video-o.svg index f4922b8..230c102 100644 --- a/eleven/templates/component/table/icons/file-video-o.svg +++ b/eleven/templates/component/table/icons/file-video-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/file-word-o.svg b/eleven/templates/component/table/icons/file-word-o.svg index 9c9ec5b..5c0c07a 100644 --- a/eleven/templates/component/table/icons/file-word-o.svg +++ b/eleven/templates/component/table/icons/file-word-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/file-zip-o.svg b/eleven/templates/component/table/icons/file-zip-o.svg index 5278a76..d7cca23 100644 --- a/eleven/templates/component/table/icons/file-zip-o.svg +++ b/eleven/templates/component/table/icons/file-zip-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/table/icons/file.svg b/eleven/templates/component/table/icons/file.svg index b4ae94d..8d8f617 100644 --- a/eleven/templates/component/table/icons/file.svg +++ b/eleven/templates/component/table/icons/file.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/views/exposed/icons/check-circle.svg b/eleven/templates/component/views/exposed/icons/check-circle.svg index a31343a..3add6f6 100644 --- a/eleven/templates/component/views/exposed/icons/check-circle.svg +++ b/eleven/templates/component/views/exposed/icons/check-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/views/exposed/icons/check-square-o.svg b/eleven/templates/component/views/exposed/icons/check-square-o.svg index b78906b..7733c11 100644 --- a/eleven/templates/component/views/exposed/icons/check-square-o.svg +++ b/eleven/templates/component/views/exposed/icons/check-square-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/views/exposed/icons/filter.svg b/eleven/templates/component/views/exposed/icons/filter.svg index 9534df4..02f91a7 100644 --- a/eleven/templates/component/views/exposed/icons/filter.svg +++ b/eleven/templates/component/views/exposed/icons/filter.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/views/exposed/icons/retweet.svg b/eleven/templates/component/views/exposed/icons/retweet.svg index a8977dd..14a6e5c 100644 --- a/eleven/templates/component/views/exposed/icons/retweet.svg +++ b/eleven/templates/component/views/exposed/icons/retweet.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/component/views/exposed/icons/times-circle-o.svg b/eleven/templates/component/views/exposed/icons/times-circle-o.svg index 4776e78..f34eff4 100644 --- a/eleven/templates/component/views/exposed/icons/times-circle-o.svg +++ b/eleven/templates/component/views/exposed/icons/times-circle-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/block/icons/cube.svg b/eleven/templates/layout-landing/block/icons/cube.svg index bde7abb..d6d30b0 100644 --- a/eleven/templates/layout-landing/block/icons/cube.svg +++ b/eleven/templates/layout-landing/block/icons/cube.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/block/icons/cubes.svg b/eleven/templates/layout-landing/block/icons/cubes.svg index 722202d..feff779 100644 --- a/eleven/templates/layout-landing/block/icons/cubes.svg +++ b/eleven/templates/layout-landing/block/icons/cubes.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/acquia.svg b/eleven/templates/layout-landing/icons/acquia.svg index 12492cc..886f24a 100644 --- a/eleven/templates/layout-landing/icons/acquia.svg +++ b/eleven/templates/layout-landing/icons/acquia.svg @@ -1,25 +1 @@ - - - - acquia - Created with Sketch. - - - - - - - - - - - - - - - - - - - - \ No newline at end of file +acquia \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/ambulance.svg b/eleven/templates/layout-landing/icons/ambulance.svg index 6dc69b6..07df042 100644 --- a/eleven/templates/layout-landing/icons/ambulance.svg +++ b/eleven/templates/layout-landing/icons/ambulance.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/arrows-alt.svg b/eleven/templates/layout-landing/icons/arrows-alt.svg index 8f54e66..11b50e0 100644 --- a/eleven/templates/layout-landing/icons/arrows-alt.svg +++ b/eleven/templates/layout-landing/icons/arrows-alt.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/arrows-h.svg b/eleven/templates/layout-landing/icons/arrows-h.svg index d125c1c..07f2c22 100644 --- a/eleven/templates/layout-landing/icons/arrows-h.svg +++ b/eleven/templates/layout-landing/icons/arrows-h.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/ban.svg b/eleven/templates/layout-landing/icons/ban.svg index 8694f8a..d30e0f3 100644 --- a/eleven/templates/layout-landing/icons/ban.svg +++ b/eleven/templates/layout-landing/icons/ban.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/bar-chart-o.svg b/eleven/templates/layout-landing/icons/bar-chart-o.svg index 21df317..4b91aa6 100644 --- a/eleven/templates/layout-landing/icons/bar-chart-o.svg +++ b/eleven/templates/layout-landing/icons/bar-chart-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/bomb.svg b/eleven/templates/layout-landing/icons/bomb.svg index 03fa6b0..800c42e 100644 --- a/eleven/templates/layout-landing/icons/bomb.svg +++ b/eleven/templates/layout-landing/icons/bomb.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/book.svg b/eleven/templates/layout-landing/icons/book.svg index d7e7a33..cc03066 100644 --- a/eleven/templates/layout-landing/icons/book.svg +++ b/eleven/templates/layout-landing/icons/book.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/bookmark-o.svg b/eleven/templates/layout-landing/icons/bookmark-o.svg index 962b3d1..6b1b8c5 100644 --- a/eleven/templates/layout-landing/icons/bookmark-o.svg +++ b/eleven/templates/layout-landing/icons/bookmark-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/briefcase.svg b/eleven/templates/layout-landing/icons/briefcase.svg index 6a11dbd..2d54dde 100644 --- a/eleven/templates/layout-landing/icons/briefcase.svg +++ b/eleven/templates/layout-landing/icons/briefcase.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/bullhorn.svg b/eleven/templates/layout-landing/icons/bullhorn.svg index 32163ef..b082dc2 100644 --- a/eleven/templates/layout-landing/icons/bullhorn.svg +++ b/eleven/templates/layout-landing/icons/bullhorn.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/bullseye.1.svg b/eleven/templates/layout-landing/icons/bullseye.1.svg index f419d6f..c721e04 100644 --- a/eleven/templates/layout-landing/icons/bullseye.1.svg +++ b/eleven/templates/layout-landing/icons/bullseye.1.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/bullseye.svg b/eleven/templates/layout-landing/icons/bullseye.svg index 58643d7..c721e04 100644 --- a/eleven/templates/layout-landing/icons/bullseye.svg +++ b/eleven/templates/layout-landing/icons/bullseye.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/camera-retro.svg b/eleven/templates/layout-landing/icons/camera-retro.svg index aca715e..39a24dc 100644 --- a/eleven/templates/layout-landing/icons/camera-retro.svg +++ b/eleven/templates/layout-landing/icons/camera-retro.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/check-circle-o.svg b/eleven/templates/layout-landing/icons/check-circle-o.svg index 0ddf230..5ec0ede 100644 --- a/eleven/templates/layout-landing/icons/check-circle-o.svg +++ b/eleven/templates/layout-landing/icons/check-circle-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/check-square-o.svg b/eleven/templates/layout-landing/icons/check-square-o.svg index b78906b..7733c11 100644 --- a/eleven/templates/layout-landing/icons/check-square-o.svg +++ b/eleven/templates/layout-landing/icons/check-square-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/check-square.svg b/eleven/templates/layout-landing/icons/check-square.svg index dc627b8..d13ee66 100644 --- a/eleven/templates/layout-landing/icons/check-square.svg +++ b/eleven/templates/layout-landing/icons/check-square.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/check.svg b/eleven/templates/layout-landing/icons/check.svg index a01e522..c40affb 100644 --- a/eleven/templates/layout-landing/icons/check.svg +++ b/eleven/templates/layout-landing/icons/check.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/child.svg b/eleven/templates/layout-landing/icons/child.svg index 0e9514f..65758c0 100644 --- a/eleven/templates/layout-landing/icons/child.svg +++ b/eleven/templates/layout-landing/icons/child.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/clock-o.svg b/eleven/templates/layout-landing/icons/clock-o.svg index 9a950b8..ae47c0f 100644 --- a/eleven/templates/layout-landing/icons/clock-o.svg +++ b/eleven/templates/layout-landing/icons/clock-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/code-fork.svg b/eleven/templates/layout-landing/icons/code-fork.svg index fa7e0d9..43f7f43 100644 --- a/eleven/templates/layout-landing/icons/code-fork.svg +++ b/eleven/templates/layout-landing/icons/code-fork.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/code.svg b/eleven/templates/layout-landing/icons/code.svg index 3895526..238b35e 100644 --- a/eleven/templates/layout-landing/icons/code.svg +++ b/eleven/templates/layout-landing/icons/code.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/comments-o.svg b/eleven/templates/layout-landing/icons/comments-o.svg index bea8379..05deff3 100644 --- a/eleven/templates/layout-landing/icons/comments-o.svg +++ b/eleven/templates/layout-landing/icons/comments-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/comments.svg b/eleven/templates/layout-landing/icons/comments.svg index f1fcf20..f0141ee 100644 --- a/eleven/templates/layout-landing/icons/comments.svg +++ b/eleven/templates/layout-landing/icons/comments.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/compress.svg b/eleven/templates/layout-landing/icons/compress.svg index a2e8b85..7b35e4f 100644 --- a/eleven/templates/layout-landing/icons/compress.svg +++ b/eleven/templates/layout-landing/icons/compress.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/cube.svg b/eleven/templates/layout-landing/icons/cube.svg index bde7abb..d6d30b0 100644 --- a/eleven/templates/layout-landing/icons/cube.svg +++ b/eleven/templates/layout-landing/icons/cube.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/cubes.svg b/eleven/templates/layout-landing/icons/cubes.svg index 722202d..feff779 100644 --- a/eleven/templates/layout-landing/icons/cubes.svg +++ b/eleven/templates/layout-landing/icons/cubes.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/d8-logo.svg b/eleven/templates/layout-landing/icons/d8-logo.svg index 035119b..27af247 100644 --- a/eleven/templates/layout-landing/icons/d8-logo.svg +++ b/eleven/templates/layout-landing/icons/d8-logo.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/database.svg b/eleven/templates/layout-landing/icons/database.svg index 1e575ee..4f2808e 100644 --- a/eleven/templates/layout-landing/icons/database.svg +++ b/eleven/templates/layout-landing/icons/database.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/desktop.svg b/eleven/templates/layout-landing/icons/desktop.svg index 57e29e3..c1abf91 100644 --- a/eleven/templates/layout-landing/icons/desktop.svg +++ b/eleven/templates/layout-landing/icons/desktop.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/drupal.svg b/eleven/templates/layout-landing/icons/drupal.svg index 35c75bd..2985e88 100644 --- a/eleven/templates/layout-landing/icons/drupal.svg +++ b/eleven/templates/layout-landing/icons/drupal.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/envelope.svg b/eleven/templates/layout-landing/icons/envelope.svg index 421f785..5dba886 100644 --- a/eleven/templates/layout-landing/icons/envelope.svg +++ b/eleven/templates/layout-landing/icons/envelope.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/exclamation-circle.svg b/eleven/templates/layout-landing/icons/exclamation-circle.svg index 668f1f0..e718e17 100644 --- a/eleven/templates/layout-landing/icons/exclamation-circle.svg +++ b/eleven/templates/layout-landing/icons/exclamation-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/f278.svg b/eleven/templates/layout-landing/icons/f278.svg index 6209c6e..32f5e6c 100644 --- a/eleven/templates/layout-landing/icons/f278.svg +++ b/eleven/templates/layout-landing/icons/f278.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/facebook-f.svg b/eleven/templates/layout-landing/icons/facebook-f.svg index bc29c9a..403ed3b 100644 --- a/eleven/templates/layout-landing/icons/facebook-f.svg +++ b/eleven/templates/layout-landing/icons/facebook-f.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/fast-forward.svg b/eleven/templates/layout-landing/icons/fast-forward.svg index 7e0ac64..c9e67e8 100644 --- a/eleven/templates/layout-landing/icons/fast-forward.svg +++ b/eleven/templates/layout-landing/icons/fast-forward.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/file-o.svg b/eleven/templates/layout-landing/icons/file-o.svg index 00ae2c4..c2b6ffc 100644 --- a/eleven/templates/layout-landing/icons/file-o.svg +++ b/eleven/templates/layout-landing/icons/file-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/file-text-o.svg b/eleven/templates/layout-landing/icons/file-text-o.svg index 3a28448..5ffa5e4 100644 --- a/eleven/templates/layout-landing/icons/file-text-o.svg +++ b/eleven/templates/layout-landing/icons/file-text-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/file-video-o.svg b/eleven/templates/layout-landing/icons/file-video-o.svg index b09643c..230c102 100644 --- a/eleven/templates/layout-landing/icons/file-video-o.svg +++ b/eleven/templates/layout-landing/icons/file-video-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/filter.svg b/eleven/templates/layout-landing/icons/filter.svg index ba118a1..02f91a7 100644 --- a/eleven/templates/layout-landing/icons/filter.svg +++ b/eleven/templates/layout-landing/icons/filter.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/flag.svg b/eleven/templates/layout-landing/icons/flag.svg index efefef7..91cfeb0 100644 --- a/eleven/templates/layout-landing/icons/flag.svg +++ b/eleven/templates/layout-landing/icons/flag.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/flash.svg b/eleven/templates/layout-landing/icons/flash.svg index 33890b1..1d21c66 100644 --- a/eleven/templates/layout-landing/icons/flash.svg +++ b/eleven/templates/layout-landing/icons/flash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/folder-open-o.svg b/eleven/templates/layout-landing/icons/folder-open-o.svg index 6782c1f..13b6957 100644 --- a/eleven/templates/layout-landing/icons/folder-open-o.svg +++ b/eleven/templates/layout-landing/icons/folder-open-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/gears.svg b/eleven/templates/layout-landing/icons/gears.svg index 5316c04..a62b95f 100644 --- a/eleven/templates/layout-landing/icons/gears.svg +++ b/eleven/templates/layout-landing/icons/gears.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/globe.svg b/eleven/templates/layout-landing/icons/globe.svg index 8c8cca3..b1a46d3 100644 --- a/eleven/templates/layout-landing/icons/globe.svg +++ b/eleven/templates/layout-landing/icons/globe.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/google.svg b/eleven/templates/layout-landing/icons/google.svg index c63c7ba..0f18e46 100644 --- a/eleven/templates/layout-landing/icons/google.svg +++ b/eleven/templates/layout-landing/icons/google.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/heart-o.svg b/eleven/templates/layout-landing/icons/heart-o.svg index a6d4275..de8477d 100644 --- a/eleven/templates/layout-landing/icons/heart-o.svg +++ b/eleven/templates/layout-landing/icons/heart-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/heart.svg b/eleven/templates/layout-landing/icons/heart.svg index f499a40..3445c6d 100644 --- a/eleven/templates/layout-landing/icons/heart.svg +++ b/eleven/templates/layout-landing/icons/heart.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/history.svg b/eleven/templates/layout-landing/icons/history.svg index b25cd48..d27d9b1 100644 --- a/eleven/templates/layout-landing/icons/history.svg +++ b/eleven/templates/layout-landing/icons/history.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/hotel.svg b/eleven/templates/layout-landing/icons/hotel.svg index cc73a37..e73d052 100644 --- a/eleven/templates/layout-landing/icons/hotel.svg +++ b/eleven/templates/layout-landing/icons/hotel.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/id-card.svg b/eleven/templates/layout-landing/icons/id-card.svg index 495537a..1b2c75c 100644 --- a/eleven/templates/layout-landing/icons/id-card.svg +++ b/eleven/templates/layout-landing/icons/id-card.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/info-circle.svg b/eleven/templates/layout-landing/icons/info-circle.svg index 57001c9..d193f60 100644 --- a/eleven/templates/layout-landing/icons/info-circle.svg +++ b/eleven/templates/layout-landing/icons/info-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/instagram.svg b/eleven/templates/layout-landing/icons/instagram.svg index 875fdb6..417206d 100644 --- a/eleven/templates/layout-landing/icons/instagram.svg +++ b/eleven/templates/layout-landing/icons/instagram.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/italic.svg b/eleven/templates/layout-landing/icons/italic.svg index e02b98a..4211068 100644 --- a/eleven/templates/layout-landing/icons/italic.svg +++ b/eleven/templates/layout-landing/icons/italic.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/key.svg b/eleven/templates/layout-landing/icons/key.svg index b3e55be..37fb14b 100644 --- a/eleven/templates/layout-landing/icons/key.svg +++ b/eleven/templates/layout-landing/icons/key.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/language.svg b/eleven/templates/layout-landing/icons/language.svg index 1e0bea1..6592d2f 100644 --- a/eleven/templates/layout-landing/icons/language.svg +++ b/eleven/templates/layout-landing/icons/language.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/lightning.svg b/eleven/templates/layout-landing/icons/lightning.svg index f387fa9..b641aaa 100644 --- a/eleven/templates/layout-landing/icons/lightning.svg +++ b/eleven/templates/layout-landing/icons/lightning.svg @@ -1,15 +1 @@ - - - - lightning - Created with Sketch. - - - - - - - - - - \ No newline at end of file +lightning \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/link.svg b/eleven/templates/layout-landing/icons/link.svg index c945f9e..dd329cd 100644 --- a/eleven/templates/layout-landing/icons/link.svg +++ b/eleven/templates/layout-landing/icons/link.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/list-alt.svg b/eleven/templates/layout-landing/icons/list-alt.svg index 8b66901..55e3a90 100644 --- a/eleven/templates/layout-landing/icons/list-alt.svg +++ b/eleven/templates/layout-landing/icons/list-alt.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/lock.svg b/eleven/templates/layout-landing/icons/lock.svg index d27bc9a..cb5c209 100644 --- a/eleven/templates/layout-landing/icons/lock.svg +++ b/eleven/templates/layout-landing/icons/lock.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/magic.svg b/eleven/templates/layout-landing/icons/magic.svg index 6370bbe..f284714 100644 --- a/eleven/templates/layout-landing/icons/magic.svg +++ b/eleven/templates/layout-landing/icons/magic.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/map-signs.svg b/eleven/templates/layout-landing/icons/map-signs.svg index a3a3643..6790bb4 100644 --- a/eleven/templates/layout-landing/icons/map-signs.svg +++ b/eleven/templates/layout-landing/icons/map-signs.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/map.svg b/eleven/templates/layout-landing/icons/map.svg index 5b13a04..32f5e6c 100644 --- a/eleven/templates/layout-landing/icons/map.svg +++ b/eleven/templates/layout-landing/icons/map.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/medkit.svg b/eleven/templates/layout-landing/icons/medkit.svg index 048d3e6..6b1db9c 100644 --- a/eleven/templates/layout-landing/icons/medkit.svg +++ b/eleven/templates/layout-landing/icons/medkit.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/minus-circle.svg b/eleven/templates/layout-landing/icons/minus-circle.svg index 6d49028..38494ed 100644 --- a/eleven/templates/layout-landing/icons/minus-circle.svg +++ b/eleven/templates/layout-landing/icons/minus-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/minus.svg b/eleven/templates/layout-landing/icons/minus.svg index e1389f9..c7696ec 100644 --- a/eleven/templates/layout-landing/icons/minus.svg +++ b/eleven/templates/layout-landing/icons/minus.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/newspaper-o.svg b/eleven/templates/layout-landing/icons/newspaper-o.svg index 1150693..17a13b0 100644 --- a/eleven/templates/layout-landing/icons/newspaper-o.svg +++ b/eleven/templates/layout-landing/icons/newspaper-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/paint-brush.svg b/eleven/templates/layout-landing/icons/paint-brush.svg index 57d681c..5962a93 100644 --- a/eleven/templates/layout-landing/icons/paint-brush.svg +++ b/eleven/templates/layout-landing/icons/paint-brush.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/paragraph.svg b/eleven/templates/layout-landing/icons/paragraph.svg index de2bd62..ee234ff 100644 --- a/eleven/templates/layout-landing/icons/paragraph.svg +++ b/eleven/templates/layout-landing/icons/paragraph.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/pencil.svg b/eleven/templates/layout-landing/icons/pencil.svg index b11d5a8..5e6c5a5 100644 --- a/eleven/templates/layout-landing/icons/pencil.svg +++ b/eleven/templates/layout-landing/icons/pencil.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/phone.svg b/eleven/templates/layout-landing/icons/phone.svg index e01ad8f..48d82ba 100644 --- a/eleven/templates/layout-landing/icons/phone.svg +++ b/eleven/templates/layout-landing/icons/phone.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/php-logo.svg b/eleven/templates/layout-landing/icons/php-logo.svg index b039d24..a3914e0 100644 --- a/eleven/templates/layout-landing/icons/php-logo.svg +++ b/eleven/templates/layout-landing/icons/php-logo.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/picture-o.svg b/eleven/templates/layout-landing/icons/picture-o.svg index 516843a..ec56b28 100644 --- a/eleven/templates/layout-landing/icons/picture-o.svg +++ b/eleven/templates/layout-landing/icons/picture-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/pie-chart.svg b/eleven/templates/layout-landing/icons/pie-chart.svg index f1cde51..d2f518a 100644 --- a/eleven/templates/layout-landing/icons/pie-chart.svg +++ b/eleven/templates/layout-landing/icons/pie-chart.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/plug.svg b/eleven/templates/layout-landing/icons/plug.svg index 8f0fcaa..26e3bed 100644 --- a/eleven/templates/layout-landing/icons/plug.svg +++ b/eleven/templates/layout-landing/icons/plug.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/plus-circle.svg b/eleven/templates/layout-landing/icons/plus-circle.svg index b87ffeb..41d3dd1 100644 --- a/eleven/templates/layout-landing/icons/plus-circle.svg +++ b/eleven/templates/layout-landing/icons/plus-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/plus.svg b/eleven/templates/layout-landing/icons/plus.svg index 6c73c5b..e754b76 100644 --- a/eleven/templates/layout-landing/icons/plus.svg +++ b/eleven/templates/layout-landing/icons/plus.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/power-off.svg b/eleven/templates/layout-landing/icons/power-off.svg index e08ced7..0a4a033 100644 --- a/eleven/templates/layout-landing/icons/power-off.svg +++ b/eleven/templates/layout-landing/icons/power-off.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/puzzle-piece.svg b/eleven/templates/layout-landing/icons/puzzle-piece.svg index 8cea023..7c3cbb1 100644 --- a/eleven/templates/layout-landing/icons/puzzle-piece.svg +++ b/eleven/templates/layout-landing/icons/puzzle-piece.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/refresh.svg b/eleven/templates/layout-landing/icons/refresh.svg index 5982cb1..4ebca88 100644 --- a/eleven/templates/layout-landing/icons/refresh.svg +++ b/eleven/templates/layout-landing/icons/refresh.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/reorder.svg b/eleven/templates/layout-landing/icons/reorder.svg index a15d226..7d4337b 100644 --- a/eleven/templates/layout-landing/icons/reorder.svg +++ b/eleven/templates/layout-landing/icons/reorder.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/retweet.svg b/eleven/templates/layout-landing/icons/retweet.svg index a8977dd..14a6e5c 100644 --- a/eleven/templates/layout-landing/icons/retweet.svg +++ b/eleven/templates/layout-landing/icons/retweet.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/rss.svg b/eleven/templates/layout-landing/icons/rss.svg index 063129c..7ffebc7 100644 --- a/eleven/templates/layout-landing/icons/rss.svg +++ b/eleven/templates/layout-landing/icons/rss.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/search-plus.svg b/eleven/templates/layout-landing/icons/search-plus.svg index 9584881..0c3b56b 100644 --- a/eleven/templates/layout-landing/icons/search-plus.svg +++ b/eleven/templates/layout-landing/icons/search-plus.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/search.svg b/eleven/templates/layout-landing/icons/search.svg index 902af29..bb15a55 100644 --- a/eleven/templates/layout-landing/icons/search.svg +++ b/eleven/templates/layout-landing/icons/search.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/send-o.svg b/eleven/templates/layout-landing/icons/send-o.svg index 47ec455..7a25df9 100644 --- a/eleven/templates/layout-landing/icons/send-o.svg +++ b/eleven/templates/layout-landing/icons/send-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/share-alt.svg b/eleven/templates/layout-landing/icons/share-alt.svg index 836d42a..4a4d8cf 100644 --- a/eleven/templates/layout-landing/icons/share-alt.svg +++ b/eleven/templates/layout-landing/icons/share-alt.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/sitemap.svg b/eleven/templates/layout-landing/icons/sitemap.svg index d4fb4d9..15811f1 100644 --- a/eleven/templates/layout-landing/icons/sitemap.svg +++ b/eleven/templates/layout-landing/icons/sitemap.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/sliders.svg b/eleven/templates/layout-landing/icons/sliders.svg index c5fac7b..f396bea 100644 --- a/eleven/templates/layout-landing/icons/sliders.svg +++ b/eleven/templates/layout-landing/icons/sliders.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/sticky-note.svg b/eleven/templates/layout-landing/icons/sticky-note.svg index 0753e58..6568723 100644 --- a/eleven/templates/layout-landing/icons/sticky-note.svg +++ b/eleven/templates/layout-landing/icons/sticky-note.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/tags.svg b/eleven/templates/layout-landing/icons/tags.svg index 9e23e2e..1ffdae3 100644 --- a/eleven/templates/layout-landing/icons/tags.svg +++ b/eleven/templates/layout-landing/icons/tags.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/tasks.svg b/eleven/templates/layout-landing/icons/tasks.svg index 5102703..18f2768 100644 --- a/eleven/templates/layout-landing/icons/tasks.svg +++ b/eleven/templates/layout-landing/icons/tasks.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/terminal.svg b/eleven/templates/layout-landing/icons/terminal.svg index 9ed26e6..e60d479 100644 --- a/eleven/templates/layout-landing/icons/terminal.svg +++ b/eleven/templates/layout-landing/icons/terminal.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/th-list.svg b/eleven/templates/layout-landing/icons/th-list.svg index fb3e5e0..e2a3562 100644 --- a/eleven/templates/layout-landing/icons/th-list.svg +++ b/eleven/templates/layout-landing/icons/th-list.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/th.svg b/eleven/templates/layout-landing/icons/th.svg index dc35424..85d44f3 100644 --- a/eleven/templates/layout-landing/icons/th.svg +++ b/eleven/templates/layout-landing/icons/th.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/thunder-infinite.svg b/eleven/templates/layout-landing/icons/thunder-infinite.svg index 7f41f7e..5650d00 100644 --- a/eleven/templates/layout-landing/icons/thunder-infinite.svg +++ b/eleven/templates/layout-landing/icons/thunder-infinite.svg @@ -1,25 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/thunder.svg b/eleven/templates/layout-landing/icons/thunder.svg index 3e7f3b9..14a3d53 100644 --- a/eleven/templates/layout-landing/icons/thunder.svg +++ b/eleven/templates/layout-landing/icons/thunder.svg @@ -1,25 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/times-circle.svg b/eleven/templates/layout-landing/icons/times-circle.svg index 69431e3..ee966de 100644 --- a/eleven/templates/layout-landing/icons/times-circle.svg +++ b/eleven/templates/layout-landing/icons/times-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/truck.svg b/eleven/templates/layout-landing/icons/truck.svg index 24a48e9..a7d6843 100644 --- a/eleven/templates/layout-landing/icons/truck.svg +++ b/eleven/templates/layout-landing/icons/truck.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/twitter.svg b/eleven/templates/layout-landing/icons/twitter.svg index b9b1bc8..bdb7e7f 100644 --- a/eleven/templates/layout-landing/icons/twitter.svg +++ b/eleven/templates/layout-landing/icons/twitter.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/warning.svg b/eleven/templates/layout-landing/icons/warning.svg index 84d28be..bb638f0 100644 --- a/eleven/templates/layout-landing/icons/warning.svg +++ b/eleven/templates/layout-landing/icons/warning.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/icons/wrench.svg b/eleven/templates/layout-landing/icons/wrench.svg index 01454ff..5473b83 100644 --- a/eleven/templates/layout-landing/icons/wrench.svg +++ b/eleven/templates/layout-landing/icons/wrench.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/modules/icons/check.svg b/eleven/templates/layout-landing/modules/icons/check.svg index a01e522..c40affb 100644 --- a/eleven/templates/layout-landing/modules/icons/check.svg +++ b/eleven/templates/layout-landing/modules/icons/check.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/modules/icons/frown-o.svg b/eleven/templates/layout-landing/modules/icons/frown-o.svg index 53f884d..a8cbb8d 100644 --- a/eleven/templates/layout-landing/modules/icons/frown-o.svg +++ b/eleven/templates/layout-landing/modules/icons/frown-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/modules/icons/gear.svg b/eleven/templates/layout-landing/modules/icons/gear.svg index d44244c..b69b84d 100644 --- a/eleven/templates/layout-landing/modules/icons/gear.svg +++ b/eleven/templates/layout-landing/modules/icons/gear.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/modules/icons/lock.svg b/eleven/templates/layout-landing/modules/icons/lock.svg index d27bc9a..cb5c209 100644 --- a/eleven/templates/layout-landing/modules/icons/lock.svg +++ b/eleven/templates/layout-landing/modules/icons/lock.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/modules/icons/plug.svg b/eleven/templates/layout-landing/modules/icons/plug.svg index 8f0fcaa..26e3bed 100644 --- a/eleven/templates/layout-landing/modules/icons/plug.svg +++ b/eleven/templates/layout-landing/modules/icons/plug.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/modules/icons/plus.svg b/eleven/templates/layout-landing/modules/icons/plus.svg index 6c73c5b..e754b76 100644 --- a/eleven/templates/layout-landing/modules/icons/plus.svg +++ b/eleven/templates/layout-landing/modules/icons/plus.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/modules/icons/power-off.svg b/eleven/templates/layout-landing/modules/icons/power-off.svg index e08ced7..0a4a033 100644 --- a/eleven/templates/layout-landing/modules/icons/power-off.svg +++ b/eleven/templates/layout-landing/modules/icons/power-off.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/modules/icons/puzzle-piece.svg b/eleven/templates/layout-landing/modules/icons/puzzle-piece.svg index 8cea023..7c3cbb1 100644 --- a/eleven/templates/layout-landing/modules/icons/puzzle-piece.svg +++ b/eleven/templates/layout-landing/modules/icons/puzzle-piece.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/modules/icons/trash.svg b/eleven/templates/layout-landing/modules/icons/trash.svg index 52cff42..f050921 100644 --- a/eleven/templates/layout-landing/modules/icons/trash.svg +++ b/eleven/templates/layout-landing/modules/icons/trash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/ambulance.svg b/eleven/templates/layout-landing/reports/icons/ambulance.svg index 4b8f600..07df042 100644 --- a/eleven/templates/layout-landing/reports/icons/ambulance.svg +++ b/eleven/templates/layout-landing/reports/icons/ambulance.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/bell.svg b/eleven/templates/layout-landing/reports/icons/bell.svg index 7bed87b..f2ddfba 100644 --- a/eleven/templates/layout-landing/reports/icons/bell.svg +++ b/eleven/templates/layout-landing/reports/icons/bell.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/bomb.svg b/eleven/templates/layout-landing/reports/icons/bomb.svg index 03fa6b0..800c42e 100644 --- a/eleven/templates/layout-landing/reports/icons/bomb.svg +++ b/eleven/templates/layout-landing/reports/icons/bomb.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/bullhorn.svg b/eleven/templates/layout-landing/reports/icons/bullhorn.svg index d8b246a..b082dc2 100644 --- a/eleven/templates/layout-landing/reports/icons/bullhorn.svg +++ b/eleven/templates/layout-landing/reports/icons/bullhorn.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/clock-o.svg b/eleven/templates/layout-landing/reports/icons/clock-o.svg index 9a950b8..ae47c0f 100644 --- a/eleven/templates/layout-landing/reports/icons/clock-o.svg +++ b/eleven/templates/layout-landing/reports/icons/clock-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/database.svg b/eleven/templates/layout-landing/reports/icons/database.svg index 318d310..4f2808e 100644 --- a/eleven/templates/layout-landing/reports/icons/database.svg +++ b/eleven/templates/layout-landing/reports/icons/database.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/filter.svg b/eleven/templates/layout-landing/reports/icons/filter.svg index ba118a1..02f91a7 100644 --- a/eleven/templates/layout-landing/reports/icons/filter.svg +++ b/eleven/templates/layout-landing/reports/icons/filter.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/info-circle.svg b/eleven/templates/layout-landing/reports/icons/info-circle.svg index 7a4eed2..d193f60 100644 --- a/eleven/templates/layout-landing/reports/icons/info-circle.svg +++ b/eleven/templates/layout-landing/reports/icons/info-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/times-circle.svg b/eleven/templates/layout-landing/reports/icons/times-circle.svg index 18940d9..ee966de 100644 --- a/eleven/templates/layout-landing/reports/icons/times-circle.svg +++ b/eleven/templates/layout-landing/reports/icons/times-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/times.svg b/eleven/templates/layout-landing/reports/icons/times.svg index 99ac293..9cfdaca 100644 --- a/eleven/templates/layout-landing/reports/icons/times.svg +++ b/eleven/templates/layout-landing/reports/icons/times.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/reports/icons/warning.svg b/eleven/templates/layout-landing/reports/icons/warning.svg index 41fd037..bb638f0 100644 --- a/eleven/templates/layout-landing/reports/icons/warning.svg +++ b/eleven/templates/layout-landing/reports/icons/warning.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/themes/icons/check.svg b/eleven/templates/layout-landing/themes/icons/check.svg index a01e522..c40affb 100644 --- a/eleven/templates/layout-landing/themes/icons/check.svg +++ b/eleven/templates/layout-landing/themes/icons/check.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/themes/icons/gears.svg b/eleven/templates/layout-landing/themes/icons/gears.svg index 5316c04..a62b95f 100644 --- a/eleven/templates/layout-landing/themes/icons/gears.svg +++ b/eleven/templates/layout-landing/themes/icons/gears.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/themes/icons/heart-o.svg b/eleven/templates/layout-landing/themes/icons/heart-o.svg index a6d4275..de8477d 100644 --- a/eleven/templates/layout-landing/themes/icons/heart-o.svg +++ b/eleven/templates/layout-landing/themes/icons/heart-o.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/themes/icons/heart.svg b/eleven/templates/layout-landing/themes/icons/heart.svg index f499a40..3445c6d 100644 --- a/eleven/templates/layout-landing/themes/icons/heart.svg +++ b/eleven/templates/layout-landing/themes/icons/heart.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/themes/icons/plug.svg b/eleven/templates/layout-landing/themes/icons/plug.svg index 8f0fcaa..26e3bed 100644 --- a/eleven/templates/layout-landing/themes/icons/plug.svg +++ b/eleven/templates/layout-landing/themes/icons/plug.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/themes/icons/plus.svg b/eleven/templates/layout-landing/themes/icons/plus.svg index 6c73c5b..e754b76 100644 --- a/eleven/templates/layout-landing/themes/icons/plus.svg +++ b/eleven/templates/layout-landing/themes/icons/plus.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/themes/icons/power-off.svg b/eleven/templates/layout-landing/themes/icons/power-off.svg index e08ced7..0a4a033 100644 --- a/eleven/templates/layout-landing/themes/icons/power-off.svg +++ b/eleven/templates/layout-landing/themes/icons/power-off.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/arrow-circle-right.svg b/eleven/templates/layout-landing/views/viewsui/icons/arrow-circle-right.svg index 2fb2145..1ffb062 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/arrow-circle-right.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/arrow-circle-right.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/ban.svg b/eleven/templates/layout-landing/views/viewsui/icons/ban.svg index 8694f8a..d30e0f3 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/ban.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/ban.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/code.svg b/eleven/templates/layout-landing/views/viewsui/icons/code.svg index 3895526..238b35e 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/code.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/code.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/database.svg b/eleven/templates/layout-landing/views/viewsui/icons/database.svg index 1e575ee..4f2808e 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/database.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/database.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/ellipsis-v.svg b/eleven/templates/layout-landing/views/viewsui/icons/ellipsis-v.svg index 4bec0b0..bce3c1e 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/ellipsis-v.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/ellipsis-v.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/exchange.svg b/eleven/templates/layout-landing/views/viewsui/icons/exchange.svg index 35416c1..4782725 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/exchange.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/exchange.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/eye.svg b/eleven/templates/layout-landing/views/viewsui/icons/eye.svg index aa701df..df4a5f1 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/eye.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/eye.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/f245.svg b/eleven/templates/layout-landing/views/viewsui/icons/f245.svg index 3df1c92..2c3d7be 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/f245.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/f245.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/filter.svg b/eleven/templates/layout-landing/views/viewsui/icons/filter.svg index ba118a1..02f91a7 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/filter.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/filter.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/flag.svg b/eleven/templates/layout-landing/views/viewsui/icons/flag.svg index efefef7..91cfeb0 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/flag.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/flag.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/footer.svg b/eleven/templates/layout-landing/views/viewsui/icons/footer.svg index f196457..0f8d232 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/footer.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/footer.svg @@ -1,12 +1 @@ - - - - Group - Created with Sketch. - - - - - - - \ No newline at end of file +Group \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/gears.svg b/eleven/templates/layout-landing/views/viewsui/icons/gears.svg index 5316c04..a62b95f 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/gears.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/gears.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/info-circle.svg b/eleven/templates/layout-landing/views/viewsui/icons/info-circle.svg index 7a4eed2..d193f60 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/info-circle.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/info-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/list-alt.svg b/eleven/templates/layout-landing/views/viewsui/icons/list-alt.svg index 8b66901..55e3a90 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/list-alt.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/list-alt.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/page.svg b/eleven/templates/layout-landing/views/viewsui/icons/page.svg index 340e620..88a5561 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/page.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/page.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/plus-circle.svg b/eleven/templates/layout-landing/views/viewsui/icons/plus-circle.svg index 7fd4fbf..2475d7b 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/plus-circle.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/plus-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/sitemap.svg b/eleven/templates/layout-landing/views/viewsui/icons/sitemap.svg index 502a085..15811f1 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/sitemap.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/sitemap.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/sort-alpha-asc.svg b/eleven/templates/layout-landing/views/viewsui/icons/sort-alpha-asc.svg index a466a88..dab7a60 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/sort-alpha-asc.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/sort-alpha-asc.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/layout-landing/views/viewsui/icons/tasks.svg b/eleven/templates/layout-landing/views/viewsui/icons/tasks.svg index 5102703..18f2768 100644 --- a/eleven/templates/layout-landing/views/viewsui/icons/tasks.svg +++ b/eleven/templates/layout-landing/views/viewsui/icons/tasks.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/modules/paragraphs/icons/pencil.svg b/eleven/templates/modules/paragraphs/icons/pencil.svg index 899a1ff..5e6c5a5 100644 --- a/eleven/templates/modules/paragraphs/icons/pencil.svg +++ b/eleven/templates/modules/paragraphs/icons/pencil.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/modules/paragraphs/icons/plus-circle.svg b/eleven/templates/modules/paragraphs/icons/plus-circle.svg index 48cec54..2475d7b 100644 --- a/eleven/templates/modules/paragraphs/icons/plus-circle.svg +++ b/eleven/templates/modules/paragraphs/icons/plus-circle.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/modules/paragraphs/icons/refresh.svg b/eleven/templates/modules/paragraphs/icons/refresh.svg index 5982cb1..4ebca88 100644 --- a/eleven/templates/modules/paragraphs/icons/refresh.svg +++ b/eleven/templates/modules/paragraphs/icons/refresh.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/modules/paragraphs/icons/sort-down.svg b/eleven/templates/modules/paragraphs/icons/sort-down.svg index 20a506f..4d390df 100644 --- a/eleven/templates/modules/paragraphs/icons/sort-down.svg +++ b/eleven/templates/modules/paragraphs/icons/sort-down.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/eleven/templates/modules/paragraphs/icons/trash.svg b/eleven/templates/modules/paragraphs/icons/trash.svg index 637ec55..f050921 100644 --- a/eleven/templates/modules/paragraphs/icons/trash.svg +++ b/eleven/templates/modules/paragraphs/icons/trash.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file From a8d1176e3c5ddeb9d8c3ab49d73a56dd226bae35 Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 25 Aug 2017 18:02:12 +0200 Subject: [PATCH 14/18] adding in bartik for better testing --- bartik11/bartik11.breakpoints.yml | 18 + bartik11/bartik11.info.yml | 53 +++ bartik11/bartik11.libraries.yml | 87 +++++ bartik11/bartik11.theme | 125 +++++++ bartik11/color/color.inc | 130 +++++++ bartik11/color/preview.css | 208 +++++++++++ bartik11/color/preview.html | 65 ++++ bartik11/color/preview.js | 49 +++ bartik11/config/schema/bartik11.schema.yml | 5 + bartik11/css/base/elements.css | 151 ++++++++ bartik11/css/colors.css | 70 ++++ bartik11/css/components/block.css | 9 + bartik11/css/components/book.css | 13 + bartik11/css/components/breadcrumb.css | 12 + bartik11/css/components/buttons.css | 40 +++ bartik11/css/components/captions.css | 31 ++ bartik11/css/components/comments.css | 157 +++++++++ bartik11/css/components/contextual.css | 9 + bartik11/css/components/demo-block.css | 18 + .../css/components/dropbutton.component.css | 65 ++++ bartik11/css/components/featured-bottom.css | 63 ++++ bartik11/css/components/featured-top.css | 25 ++ bartik11/css/components/feed-icon.css | 15 + bartik11/css/components/field.css | 98 ++++++ bartik11/css/components/form.css | 323 ++++++++++++++++++ bartik11/css/components/forum.css | 11 + bartik11/css/components/header.css | 200 +++++++++++ bartik11/css/components/help.css | 10 + bartik11/css/components/highlighted.css | 12 + bartik11/css/components/image-button.css | 13 + bartik11/css/components/item-list.css | 29 ++ bartik11/css/components/list-group.css | 13 + bartik11/css/components/list.css | 13 + bartik11/css/components/main-content.css | 51 +++ bartik11/css/components/menu.css | 15 + bartik11/css/components/messages.css | 13 + bartik11/css/components/node-preview.css | 61 ++++ bartik11/css/components/node.css | 69 ++++ bartik11/css/components/page-title.css | 9 + bartik11/css/components/pager.css | 42 +++ bartik11/css/components/panel.css | 21 ++ .../css/components/password-suggestions.css | 8 + bartik11/css/components/primary-menu.css | 212 ++++++++++++ bartik11/css/components/search-form.css | 40 +++ bartik11/css/components/search-results.css | 28 ++ bartik11/css/components/secondary-menu.css | 26 ++ bartik11/css/components/shortcut.css | 29 ++ bartik11/css/components/sidebar.css | 67 ++++ bartik11/css/components/site-branding.css | 45 +++ bartik11/css/components/site-footer.css | 229 +++++++++++++ bartik11/css/components/skip-link.css | 25 ++ bartik11/css/components/table.css | 76 +++++ .../css/components/tablesort-indicator.css | 17 + bartik11/css/components/tabs.css | 112 ++++++ bartik11/css/components/text-formatted.css | 15 + bartik11/css/components/toolbar.css | 8 + bartik11/css/components/ui-dialog.css | 34 ++ bartik11/css/components/ui.widget.css | 8 + .../components/vertical-tabs.component.css | 16 + bartik11/css/components/views.css | 35 ++ bartik11/css/layout.css | 30 ++ bartik11/css/maintenance-page.css | 69 ++++ bartik11/css/print.css | 48 +++ bartik11/images/add.png | Bin 0 -> 94 bytes bartik11/images/required.svg | 1 + bartik11/images/tabs-border.png | Bin 0 -> 83 bytes bartik11/logo.svg | 1 + bartik11/screenshot.png | Bin 0 -> 40378 bytes .../block--search-form-block.html.twig | 23 ++ .../block--system-branding-block.html.twig | 35 ++ .../block--system-menu-block.html.twig | 21 ++ bartik11/templates/block.html.twig | 50 +++ bartik11/templates/comment.html.twig | 108 ++++++ .../field--node--field-tags.html.twig | 47 +++ .../form--search-block-form.html.twig | 15 + bartik11/templates/maintenance-page.html.twig | 48 +++ bartik11/templates/node.html.twig | 103 ++++++ bartik11/templates/page-title.html.twig | 16 + bartik11/templates/page.html.twig | 128 +++++++ bartik11/templates/region--header.html.twig | 16 + bartik11/templates/status-messages.html.twig | 30 ++ 81 files changed, 4240 insertions(+) create mode 100644 bartik11/bartik11.breakpoints.yml create mode 100644 bartik11/bartik11.info.yml create mode 100644 bartik11/bartik11.libraries.yml create mode 100644 bartik11/bartik11.theme create mode 100644 bartik11/color/color.inc create mode 100644 bartik11/color/preview.css create mode 100644 bartik11/color/preview.html create mode 100644 bartik11/color/preview.js create mode 100644 bartik11/config/schema/bartik11.schema.yml create mode 100644 bartik11/css/base/elements.css create mode 100644 bartik11/css/colors.css create mode 100644 bartik11/css/components/block.css create mode 100644 bartik11/css/components/book.css create mode 100644 bartik11/css/components/breadcrumb.css create mode 100644 bartik11/css/components/buttons.css create mode 100644 bartik11/css/components/captions.css create mode 100644 bartik11/css/components/comments.css create mode 100644 bartik11/css/components/contextual.css create mode 100644 bartik11/css/components/demo-block.css create mode 100644 bartik11/css/components/dropbutton.component.css create mode 100644 bartik11/css/components/featured-bottom.css create mode 100644 bartik11/css/components/featured-top.css create mode 100644 bartik11/css/components/feed-icon.css create mode 100644 bartik11/css/components/field.css create mode 100644 bartik11/css/components/form.css create mode 100644 bartik11/css/components/forum.css create mode 100644 bartik11/css/components/header.css create mode 100644 bartik11/css/components/help.css create mode 100644 bartik11/css/components/highlighted.css create mode 100644 bartik11/css/components/image-button.css create mode 100644 bartik11/css/components/item-list.css create mode 100644 bartik11/css/components/list-group.css create mode 100644 bartik11/css/components/list.css create mode 100644 bartik11/css/components/main-content.css create mode 100644 bartik11/css/components/menu.css create mode 100644 bartik11/css/components/messages.css create mode 100644 bartik11/css/components/node-preview.css create mode 100644 bartik11/css/components/node.css create mode 100644 bartik11/css/components/page-title.css create mode 100644 bartik11/css/components/pager.css create mode 100644 bartik11/css/components/panel.css create mode 100644 bartik11/css/components/password-suggestions.css create mode 100644 bartik11/css/components/primary-menu.css create mode 100644 bartik11/css/components/search-form.css create mode 100644 bartik11/css/components/search-results.css create mode 100644 bartik11/css/components/secondary-menu.css create mode 100644 bartik11/css/components/shortcut.css create mode 100644 bartik11/css/components/sidebar.css create mode 100644 bartik11/css/components/site-branding.css create mode 100644 bartik11/css/components/site-footer.css create mode 100644 bartik11/css/components/skip-link.css create mode 100644 bartik11/css/components/table.css create mode 100644 bartik11/css/components/tablesort-indicator.css create mode 100644 bartik11/css/components/tabs.css create mode 100644 bartik11/css/components/text-formatted.css create mode 100644 bartik11/css/components/toolbar.css create mode 100644 bartik11/css/components/ui-dialog.css create mode 100644 bartik11/css/components/ui.widget.css create mode 100644 bartik11/css/components/vertical-tabs.component.css create mode 100644 bartik11/css/components/views.css create mode 100644 bartik11/css/layout.css create mode 100644 bartik11/css/maintenance-page.css create mode 100644 bartik11/css/print.css create mode 100644 bartik11/images/add.png create mode 100644 bartik11/images/required.svg create mode 100644 bartik11/images/tabs-border.png create mode 100644 bartik11/logo.svg create mode 100644 bartik11/screenshot.png create mode 100644 bartik11/templates/block--search-form-block.html.twig create mode 100644 bartik11/templates/block--system-branding-block.html.twig create mode 100644 bartik11/templates/block--system-menu-block.html.twig create mode 100644 bartik11/templates/block.html.twig create mode 100644 bartik11/templates/comment.html.twig create mode 100644 bartik11/templates/field--node--field-tags.html.twig create mode 100644 bartik11/templates/form--search-block-form.html.twig create mode 100644 bartik11/templates/maintenance-page.html.twig create mode 100644 bartik11/templates/node.html.twig create mode 100644 bartik11/templates/page-title.html.twig create mode 100644 bartik11/templates/page.html.twig create mode 100644 bartik11/templates/region--header.html.twig create mode 100644 bartik11/templates/status-messages.html.twig diff --git a/bartik11/bartik11.breakpoints.yml b/bartik11/bartik11.breakpoints.yml new file mode 100644 index 0000000..ea7a6aa --- /dev/null +++ b/bartik11/bartik11.breakpoints.yml @@ -0,0 +1,18 @@ +bartik11.mobile: + label: mobile + mediaQuery: '' + weight: 0 + multipliers: + - 1x +bartik11.narrow: + label: narrow + mediaQuery: 'all and (min-width: 560px) and (max-width: 850px)' + weight: 1 + multipliers: + - 1x +bartik11.wide: + label: wide + mediaQuery: 'all and (min-width: 851px)' + weight: 2 + multipliers: + - 1x diff --git a/bartik11/bartik11.info.yml b/bartik11/bartik11.info.yml new file mode 100644 index 0000000..a719f66 --- /dev/null +++ b/bartik11/bartik11.info.yml @@ -0,0 +1,53 @@ +# This theme is marked as @internal. It is intended to evolve and change over +# minor releases. +# Change record https://www.drupal.org/node/2673014. +# As the UI of Drupal improves between minor versions, the mark up and assets +# in the bartik11 theme will change. The bartik11 theme is not backwards +# compatible. If you wish to modify the output or assets of bartik11 you can: +# 1. Copy the whole of bartik11 and rename it as your own theme. You will need to +# manually manage your own updates if you want to stay up to date with bartik11's +# bug fixes and feature support. +# +# 2. Sub-theme bartik11. This is only recommended if you want to make minor +# tweaks and understand that bartik11 could break your modifications as it +# changes. +name: bartik 11 +type: theme +base theme: elevenfeat +description: 'A fork of bartik with Eleven theme admin elements' +package: Core +# version: VERSION +# core: 8.x +libraries: + - bartik11/global-styling +ckeditor_stylesheets: + - css/base/elements.css + - css/components/captions.css + - css/components/table.css + - css/components/text-formatted.css +regions: + header: Header + primary_menu: 'Primary menu' + secondary_menu: 'Secondary menu' + page_top: 'Page top' + page_bottom: 'Page bottom' + highlighted: Highlighted + featured_top: 'Featured top' + breadcrumb: Breadcrumb + content: Content + sidebar_first: 'Sidebar first' + sidebar_second: 'Sidebar second' + featured_bottom_first: 'Featured bottom first' + featured_bottom_second: 'Featured bottom second' + featured_bottom_third: 'Featured bottom third' + footer_first: 'Footer first' + footer_second: 'Footer second' + footer_third: 'Footer third' + footer_fourth: 'Footer fourth' + footer_fifth: 'Footer fifth' + +# Information added by Drupal.org packaging script on 2017-08-16 +version: '8.3.7' +core: '8.x' +project: 'drupal' +datestamp: 1502903957 diff --git a/bartik11/bartik11.libraries.yml b/bartik11/bartik11.libraries.yml new file mode 100644 index 0000000..daf3223 --- /dev/null +++ b/bartik11/bartik11.libraries.yml @@ -0,0 +1,87 @@ +global-styling: + version: VERSION + css: + base: + css/base/elements.css: {} + component: + css/components/block.css: {} + css/components/book.css: {} + css/components/breadcrumb.css: {} + css/components/captions.css: {} + css/components/comments.css: {} + css/components/contextual.css: {} + css/components/demo-block.css: {} + # @see https://www.drupal.org/node/2389735 + css/components/dropbutton.component.css: {} + css/components/featured-top.css: {} + css/components/feed-icon.css: {} + css/components/field.css: {} + css/components/form.css: {} + css/components/forum.css: {} + css/components/header.css: {} + css/components/help.css: {} + css/components/highlighted.css: {} + css/components/item-list.css: {} + css/components/list-group.css: {} + css/components/list.css: {} + css/components/main-content.css: {} + css/components/menu.css: {} + css/components/messages.css: {} + css/components/node.css: {} + css/components/node-preview.css: {} + css/components/page-title.css: {} + css/components/pager.css: {} + css/components/panel.css: {} + css/components/primary-menu.css: {} + css/components/search-form.css: {} + css/components/search-results.css: {} + css/components/secondary-menu.css: {} + css/components/shortcut.css: {} + css/components/skip-link.css: {} + css/components/sidebar.css: {} + css/components/site-branding.css: {} + css/components/site-footer.css: {} + css/components/table.css: {} + css/components/tablesort-indicator.css: {} + css/components/tabs.css: {} + css/components/text-formatted.css: {} + css/components/toolbar.css: {} + css/components/featured-bottom.css: {} + css/components/password-suggestions.css: {} + css/components/ui.widget.css: {} + # @see https://www.drupal.org/node/2389735 + css/components/vertical-tabs.component.css: {} + css/components/views.css: {} + css/components/buttons.css: {} + css/components/image-button.css: {} + css/components/ui-dialog.css: {} + layout: + css/layout.css: {} + theme: + css/colors.css: {} + css/print.css: { media: print } + +messages: + version: VERSION + css: + component: + css/components/messages.css: { preprocess: false } + +color.preview: + version: VERSION + css: + theme: + color/preview.css: {} + js: + color/preview.js: {} + dependencies: + - color/drupal.color + +maintenance_page: + version: VERSION + css: + theme: + css/maintenance-page.css: {} + dependencies: + - system/maintenance + - bartik11/global-styling diff --git a/bartik11/bartik11.theme b/bartik11/bartik11.theme new file mode 100644 index 0000000..2ed1196 --- /dev/null +++ b/bartik11/bartik11.theme @@ -0,0 +1,125 @@ + '
', + '#weight' => 100, + ]; + $variables['title_suffix']['shortcut_wrapper'] = [ + '#markup' => '
', + '#weight' => -99, + ]; + // Make sure the shortcut link is the first item in title_suffix. + $variables['title_suffix']['add_or_remove_shortcut']['#weight'] = -100; + } +} + +/** + * Implements hook_preprocess_HOOK() for maintenance-page.html.twig. + */ +function bartik11_preprocess_maintenance_page(&$variables) { + // By default, site_name is set to Drupal if no db connection is available + // or during site installation. Setting site_name to an empty string makes + // the site and update pages look cleaner. + // @see template_preprocess_maintenance_page + if (!$variables['db_is_active']) { + $variables['site_name'] = ''; + } + + // bartik11 has custom styling for the maintenance page. + $variables['#attached']['library'][] = 'bartik11/maintenance_page'; +} + +/** + * Implements hook_preprocess_HOOK() for node.html.twig. + */ +function bartik11_preprocess_node(&$variables) { + // Remove the "Add new comment" link on teasers or when the comment form is + // displayed on the page. + if ($variables['teaser'] || !empty($variables['content']['comments']['comment_form'])) { + unset($variables['content']['links']['comment']['#links']['comment-add']); + } +} + +/** + * Implements hook_preprocess_HOOK() for block.html.twig. + */ +function bartik11_preprocess_block(&$variables) { + // Add a clearfix class to system branding blocks. + if ($variables['plugin_id'] == 'system_branding_block') { + $variables['attributes']['class'][] = 'clearfix'; + } +} + +/** + * Implements hook_preprocess_HOOK() for menu.html.twig. + */ +function bartik11_preprocess_menu(&$variables) { + $variables['attributes']['class'][] = 'clearfix'; +} + +/** + * Implements hook_theme_suggestions_HOOK_alter() for form templates. + */ +function bartik11_theme_suggestions_form_alter(array &$suggestions, array $variables) { + if ($variables['element']['#form_id'] == 'search_block_form') { + $suggestions[] = 'form__search_block_form'; + } +} + +/** + * Implements hook_form_alter() to add classes to the search form. + */ +function bartik11_form_alter(&$form, FormStateInterface $form_state, $form_id) { + if (in_array($form_id, ['search_block_form', 'search_form'])) { + $key = ($form_id == 'search_block_form') ? 'actions' : 'basic'; + if (!isset($form[$key]['submit']['#attributes'])) { + $form[$key]['submit']['#attributes'] = new Attribute(); + } + $form[$key]['submit']['#attributes']->addClass('search-form__submit'); + } +} diff --git a/bartik11/color/color.inc b/bartik11/color/color.inc new file mode 100644 index 0000000..a743f47 --- /dev/null +++ b/bartik11/color/color.inc @@ -0,0 +1,130 @@ + [ + 'top' => t('Header background top'), + 'bottom' => t('Header background bottom'), + 'bg' => t('Main background'), + 'sidebar' => t('Sidebar background'), + 'sidebarborders' => t('Sidebar borders'), + 'footer' => t('Footer background'), + 'titleslogan' => t('Title and slogan'), + 'text' => t('Text color'), + 'link' => t('Link color'), + ], + // Pre-defined color schemes. + 'schemes' => [ + 'default' => [ + 'title' => t('Blue Lagoon (default)'), + 'colors' => [ + 'top' => '#055a8e', + 'bottom' => '#1d84c3', + 'bg' => '#ffffff', + 'sidebar' => '#f6f6f2', + 'sidebarborders' => '#f9f9f9', + 'footer' => '#292929', + 'titleslogan' => '#fffeff', + 'text' => '#3b3b3b', + 'link' => '#0071B3', + ], + ], + 'firehouse' => [ + 'title' => t('Firehouse'), + 'colors' => [ + 'top' => '#cd2d2d', + 'bottom' => '#d64e4e', + 'bg' => '#ffffff', + 'sidebar' => '#f1f4f0', + 'sidebarborders' => '#ededed', + 'footer' => '#1f1d1c', + 'titleslogan' => '#fffeff', + 'text' => '#888888', + 'link' => '#d6121f', + ], + ], + 'ice' => [ + 'title' => t('Ice'), + 'colors' => [ + 'top' => '#d0d0d0', + 'bottom' => '#c2c4c5', + 'bg' => '#ffffff', + 'sidebar' => '#ffffff', + 'sidebarborders' => '#cccccc', + 'footer' => '#016b83', + 'titleslogan' => '#000000', + 'text' => '#4a4a4a', + 'link' => '#019dbf', + ], + ], + 'plum' => [ + 'title' => t('Plum'), + 'colors' => [ + 'top' => '#4c1c58', + 'bottom' => '#593662', + 'bg' => '#fffdf7', + 'sidebar' => '#edede7', + 'sidebarborders' => '#e7e7e7', + 'footer' => '#2c2c28', + 'titleslogan' => '#ffffff', + 'text' => '#301313', + 'link' => '#9d408d', + ], + ], + 'slate' => [ + 'title' => t('Slate'), + 'colors' => [ + 'top' => '#4a4a4a', + 'bottom' => '#4e4e4e', + 'bg' => '#ffffff', + 'sidebar' => '#ffffff', + 'sidebarborders' => '#d0d0d0', + 'footer' => '#161617', + 'titleslogan' => '#ffffff', + 'text' => '#3b3b3b', + 'link' => '#0073b6', + ], + ], + ], + + // CSS files (excluding @import) to rewrite with new color scheme. + 'css' => [ + 'css/colors.css', + ], + + // Files to copy. + 'copy' => [ + 'logo.svg', + ], + + // Gradient definitions. + 'gradients' => [ + [ + // (x, y, width, height). + 'dimension' => [0, 0, 0, 0], + // Direction of gradient ('vertical' or 'horizontal'). + 'direction' => 'vertical', + // Keys of colors to use for the gradient. + 'colors' => ['top', 'bottom'], + ], + ], + + // Preview files. + 'preview_library' => 'bartik11/color.preview', + 'preview_html' => 'color/preview.html', + + // Attachments. + '#attached' => [ + 'drupalSettings' => [ + 'color' => [ + // Put the logo path into JavaScript for the live preview. + 'logo' => theme_get_setting('logo.url', 'bartik11'), + ], + ], + ], +]; diff --git a/bartik11/color/preview.css b/bartik11/color/preview.css new file mode 100644 index 0000000..ac561d3 --- /dev/null +++ b/bartik11/color/preview.css @@ -0,0 +1,208 @@ +/* ---------- Preview Styles ----------- */ +.js .color-preview { + clear: both; + float: none !important; +} +.color-preview { + background-color: #fff; + font-family: Georgia, "Times New Roman", Times, serif; + font-size: 14px; + line-height: 1.5; + overflow: hidden; + word-wrap: break-word; + margin-bottom: 10px; +} +.color-preview-header { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + position: relative; +} +.color-preview-logo { + float: left; + padding: 15px; +} +.color-preview-site-name { + color: #686868; + font-weight: normal; + font-size: 1.821em; + line-height: 1; + margin-bottom: 30px; + margin-left: 15px; /* LTR */ + padding-top: 34px; +} +[dir="rtl"] .color-preview-site-name { + margin-left: 0; + margin-right: 15px; +} +.color-preview-main-menu { + clear: both; + padding: 0 15px 3px; +} +.color-preview-main-menu-links a { + color: #d9d9d9; + padding: 0.6em 1em 0.4em; +} +.color-preview-main-menu-links { + font-size: 0.929em; + margin: 0; + padding: 0; +} +.color-preview-main-menu-links a { + color: #333; + background: #ccc; + background: rgba(255, 255, 255, 0.7); + text-shadow: 0 1px #eee; + border-top-left-radius: 8px; + border-top-right-radius: 8px; +} +.color-preview-main-menu-links a:hover, +.color-preview-main-menu-links a:focus { + background: #eee; + background: rgba(255, 255, 255, 0.95); + text-decoration: none; + cursor: pointer; +} +.color-preview-main-menu-links li a.is-active { + background: #fff; + border-bottom: none; +} +.color-preview-main-menu-links li { + display: inline; + list-style-type: none; + padding: 0.6em 0 0.4em; +} +.color-preview-sidebar, +.color-preview-content { + display: inline; + float: left; /* LTR */ + position: relative; +} +[dir="rtl"] .color-preview-sidebar, +[dir="rtl"] .color-preview-content { + float: right; +} +.color-preview-sidebar { + margin-left: 15px; /* LTR */ + width: 210px; +} +[dir="rtl"] .color-preview-sidebar { + margin-left: 0; + margin-right: 15px; +} +.color-preview-content { + margin-left: 30px; /* LTR */ + width: 26.5em; +} +[dir="rtl"] .color-preview-content { + margin-left: 0; + margin-right: 30px; +} +.color-preview-sidebar .preview-block { + border: 1px solid; + margin: 20px 0; + padding: 15px 20px; +} +.color-preview-sidebar h2 { + border-bottom: 1px solid #d6d6d6; + font-weight: normal; + margin-top: 0; + margin-right: 0; + margin-left: 0; + padding-bottom: 5px; + text-shadow: 0 1px 0 #fff; +} +.color-preview .preview-block .preview-content { + margin-top: 1em; +} +.color-preview .preview-block-menu .preview-content, +.color-preview .preview-block-menu .preview-content ul { + margin-top: 0; +} +.color-preview-main { + margin-bottom: 40px; + margin-top: 20px; +} +.color-preview-page-title { + font-size: 2em; + font-weight: normal; + line-height: 1; + margin: 1em 0 0.5em; +} +.color-preview-footer-wrapper { + color: #c0c0c0; + color: rgba(255, 255, 255, 0.65); + display: block !important; + font-size: 0.857em; + padding: 20px 20px 25px; +} +.color-preview-footer-wrapper a { + color: #fcfcfc; + color: rgba(255, 255, 255, 0.8); +} +.color-preview-footer-wrapper a:hover, +.color-preview-footer-wrapper a:focus { + color: #fefefe; + color: rgba(255, 255, 255, 0.95); + text-decoration: underline; +} +.color-preview-footer-wrapper .preview-footer-column { + display: inline; + float: left; /* LTR */ + padding: 0 10px; + position: relative; + width: 220px; +} +[dir="rtl"] .color-preview-footer-wrapper .preview-footer-column { + float: right; +} +.color-preview-footer-wrapper .preview-block { + border: 1px solid #444; + border-color: rgba(255, 255, 255, 0.1); + margin: 20px 0; + padding: 10px; +} +.color-preview-footer-columns .preview-block-menu { + border: none; + margin: 0; + padding: 0; +} +.color-preview-footer-columns h2 { + border-bottom: 1px solid #555; + border-color: rgba(255, 255, 255, 0.15); + padding-bottom: 3px; + text-transform: uppercase; +} +.color-preview-footer-columns .preview-content { + margin-top: 0; +} +.color-preview-footer-columns .preview-content ul { + margin-left: 0; /* LTR */ + padding-left: 0; /* LTR */ +} +[dir="rtl"] .color-preview-footer-columns .preview-content ul { + margin-right: 0; + padding-right: 0; +} +.color-preview-footer-columns .preview-content li { + list-style: none; + list-style-image: none; + margin: 0; + padding: 0; +} +.color-preview-footer-columns .preview-content li a { + border-bottom: 1px solid #555; + border-color: rgba(255, 255, 255, 0.15); + display: block; + line-height: 1.2; + padding: 0.8em 2px 0.8em 20px; /* LTR */ + text-indent: -15px; +} +[dir="rtl"] .color-preview-footer-columns .preview-content li a { + padding-left: 2px; + padding-right: 20px; +} +.color-preview-footer-columns .preview-content li a:hover, +.color-preview-footer-columns .preview-content li a:focus { + background-color: #1f1f21; + background-color: rgba(255, 255, 255, 0.05); + text-decoration: none; +} diff --git a/bartik11/color/preview.html b/bartik11/color/preview.html new file mode 100644 index 0000000..7eb5dad --- /dev/null +++ b/bartik11/color/preview.html @@ -0,0 +1,65 @@ +
+ +
+ +
bartik11
+ +
+ +
+
+
+

Etiam est risus

+
+ Maecenas id porttitor Ut enim ad minim veniam, quis nostrudfelis. + Laboris nisi ut aliquip ex ea. +
+
+
+
+

Lorem ipsum dolor

+
+
+ Sit amet, consectetur adipisicing elit, sed do eiusmod tempor + incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis + nostrud exercitation ullamco laboris nisi ut aliquip ex ea + commodo consequat. Maecenas id porttitor Ut enim ad minim veniam, quis nostr udfelis. +
+
+
+
+ + + +
diff --git a/bartik11/color/preview.js b/bartik11/color/preview.js new file mode 100644 index 0000000..435e7f5 --- /dev/null +++ b/bartik11/color/preview.js @@ -0,0 +1,49 @@ +/** + * @file + * Preview for the bartik11 theme. + */ +(function ($, Drupal, drupalSettings) { + + 'use strict'; + + Drupal.color = { + logoChanged: false, + callback: function (context, settings, $form) { + // Change the logo to be the real one. + if (!this.logoChanged) { + $('.color-preview .color-preview-logo img').attr('src', drupalSettings.color.logo); + this.logoChanged = true; + } + // Remove the logo if the setting is toggled off. + if (drupalSettings.color.logo === null) { + $('div').remove('.color-preview-logo'); + } + + var $colorPreview = $form.find('.color-preview'); + var $colorPalette = $form.find('.js-color-palette'); + + // Solid background. + $colorPreview.css('backgroundColor', $colorPalette.find('input[name="palette[bg]"]').val()); + + // Text preview. + $colorPreview.find('.color-preview-main h2, .color-preview .preview-content').css('color', $colorPalette.find('input[name="palette[text]"]').val()); + $colorPreview.find('.color-preview-content a').css('color', $colorPalette.find('input[name="palette[link]"]').val()); + + // Sidebar block. + var $colorPreviewBlock = $colorPreview.find('.color-preview-sidebar .color-preview-block'); + $colorPreviewBlock.css('background-color', $colorPalette.find('input[name="palette[sidebar]"]').val()); + $colorPreviewBlock.css('border-color', $colorPalette.find('input[name="palette[sidebarborders]"]').val()); + + // Footer wrapper background. + $colorPreview.find('.color-preview-footer-wrapper').css('background-color', $colorPalette.find('input[name="palette[footer]"]').val()); + + // CSS3 Gradients. + var gradient_start = $colorPalette.find('input[name="palette[top]"]').val(); + var gradient_end = $colorPalette.find('input[name="palette[bottom]"]').val(); + + $colorPreview.find('.color-preview-header').attr('style', 'background-color: ' + gradient_start + '; background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(' + gradient_start + '), to(' + gradient_end + ')); background-image: -moz-linear-gradient(-90deg, ' + gradient_start + ', ' + gradient_end + ');'); + + $colorPreview.find('.color-preview-site-name').css('color', $colorPalette.find('input[name="palette[titleslogan]"]').val()); + } + }; +})(jQuery, Drupal, drupalSettings); diff --git a/bartik11/config/schema/bartik11.schema.yml b/bartik11/config/schema/bartik11.schema.yml new file mode 100644 index 0000000..6d82482 --- /dev/null +++ b/bartik11/config/schema/bartik11.schema.yml @@ -0,0 +1,5 @@ +# Schema for the configuration files of the bartik11 theme. + +bartik11.settings: + type: theme_settings + label: 'bartik11 settings' diff --git a/bartik11/css/base/elements.css b/bartik11/css/base/elements.css new file mode 100644 index 0000000..1b3deaa --- /dev/null +++ b/bartik11/css/base/elements.css @@ -0,0 +1,151 @@ +/** + * @file + * Overall specifications for bartik11. + */ + +html { + height: 100%; +} +body { + min-height: 100%; + line-height: 1.5; + word-wrap: break-word; + font-family: Georgia, "Times New Roman", Times, serif; + font-size: 87.5%; +} +a, +a.link { + text-decoration: none; + border-bottom: 1px dotted; +} +a:hover, +a:active, +a:focus, +.link:hover, +.link:active, +.link:focus { + text-decoration: none; + border-bottom-style: solid; +} +.link { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +h1 a, +h2 a { + border-bottom: none; +} + +/** + * Reusable heading classes are included to help modules change the styling of + * headings on a page without affecting accessibility. + */ +h1, +.heading-a { + margin: 1.0em 0 0.5em; + font-weight: inherit; + font-size: 1.357em; + color: #000; +} +h2, +.heading-b { + margin: 1.0em 0 0.5em; + font-weight: inherit; + font-size: 1.143em; +} +h3, +.heading-c { + margin: 1.0em 0 0.5em; + font-weight: inherit; + font-size: 1.092em; +} +h4, +.heading-d { + margin: 1.0em 0 0.5em; + font-weight: inherit; + font-size: 1.05em; +} +h5, +.heading-e { + margin: 1.0em 0 0.5em; + font-weight: inherit; + font-size: 0.889em; + text-transform: uppercase; + letter-spacing: 0.1em; +} +h6, +.heading-f { + margin: 1.0em 0 0.5em; + font-weight: inherit; + font-size: 0.67em; + text-transform: uppercase; + letter-spacing: 0.1em; +} +p { + margin: 0 0 1.2em; +} +del { + text-decoration: line-through; +} + +blockquote { + background: #f7f7f7; + border-left: 1px solid #bbb; /* LTR */ + font-style: italic; + margin: 1.5em 10px; + padding: 0.5em 10px; +} +[dir="rtl"] blockquote { + border-left: none; + border-right: 1px solid #bbb; +} +blockquote:before { + color: #bbb; + content: "\201C"; + font-size: 3em; + line-height: 0.1em; + margin-right: 0.2em; /* LTR */ + vertical-align: -0.4em; +} +[dir="rtl"] blockquote:before { + content: "\201D"; + margin-left: 0.2em; + margin-right: 0; +} +blockquote:after { + color: #bbb; + content: "\201D"; + font-size: 3em; + line-height: 0.1em; + vertical-align: -0.45em; +} +[dir="rtl"] blockquote:after { + content: "\201C"; +} +blockquote > p:first-child { + display: inline; +} +.feed-icon { + display: block; + margin: 25px 0 0 0; +} +img { + max-width: 100%; + height: auto; +} +ul, ol { + margin: 0; + padding: 0 0 0.25em 1em; /* LTR */ +} +[dir="rtl"] ul, +[dir="rtl"] ol { + padding: 0 1em 0.25em 0; +} +ol ol, +ul ul { + margin: 0; + padding: 0 0 0.25em 1em; /* LTR */ +} +[dir="rtl"] ol ol, +[dir="rtl"] ul ul { + padding: 0 1em 0.25em 0; +} diff --git a/bartik11/css/colors.css b/bartik11/css/colors.css new file mode 100644 index 0000000..41dc054 --- /dev/null +++ b/bartik11/css/colors.css @@ -0,0 +1,70 @@ +/* ---------- Color Module Styles ----------- */ + +body { + color: #3b3b3b; + background: #292929; +} +#page, +#main-wrapper, +.region-primary-menu .menu-item a.is-active, +.region-primary-menu .menu-item--active-trail a { + background: #ffffff; +} +.tabs ul.primary li a.is-active { + background-color: #ffffff; +} +.tabs ul.primary li.is-active a { + background-color: #ffffff; + border-bottom-color: #ffffff; +} +#header { + background-color: #1d84c3; + background-image: -webkit-linear-gradient(top, #055a8e 0%, #1d84c3 100%); + background-image: linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%); +} +a, +.link { + color: #0071b3; +} +a:hover, +a:focus, +.link:hover, +.link:focus { + color: #018fe2; +} +a:active, +.link:active { + color: #23aeff; +} +.sidebar .block { + background-color: #f6f6f2; + border-color: #f9f9f9; +} +.site-footer { + background: #292929; +} +.region-header, +.region-header a, +.region-header li a.is-active, +.site-branding__text, +.site-branding, +.site-branding__text a, +.site-branding a, +.region-secondary-menu .menu-item a, +.region-secondary-menu .menu-item a.is-active { + color: #fffeff; +} + +/* ---------- Color Form ----------- */ + +[dir="rtl"] .color-form .color-palette { + margin-left: 0; + margin-right: 20px; +} +[dir="rtl"] .color-form .form-item label { + float: right; +} +[dir="rtl"] .color-form .color-palette .lock { + right: -20px; + left: 0; +} diff --git a/bartik11/css/components/block.css b/bartik11/css/components/block.css new file mode 100644 index 0000000..77fa400 --- /dev/null +++ b/bartik11/css/components/block.css @@ -0,0 +1,9 @@ +/** + * @file + * Visual styles for bartik11's blocks. + */ + +/* Block has its own content wrapper. */ +.block .content { + margin-top: 10px; +} diff --git a/bartik11/css/components/book.css b/bartik11/css/components/book.css new file mode 100644 index 0000000..dcd19d4 --- /dev/null +++ b/bartik11/css/components/book.css @@ -0,0 +1,13 @@ +/** + * @file + * bartik11 specific styling for the Book module. + */ + +.book-navigation .menu { + border-top: 1px solid #d6d6d6; +} +.book-navigation .book-pager { + border-bottom: 1px solid #d6d6d6; + border-top: 1px solid #d6d6d6; + margin: 0; +} diff --git a/bartik11/css/components/breadcrumb.css b/bartik11/css/components/breadcrumb.css new file mode 100644 index 0000000..66ff71d --- /dev/null +++ b/bartik11/css/components/breadcrumb.css @@ -0,0 +1,12 @@ +/** + * @file + * Styles for bartik11's breadcrumbs. + */ + +.breadcrumb { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 0.929em; +} +.region-breadcrumb { + padding: 0 15px 0.25em; +} diff --git a/bartik11/css/components/buttons.css b/bartik11/css/components/buttons.css new file mode 100644 index 0000000..de1972c --- /dev/null +++ b/bartik11/css/components/buttons.css @@ -0,0 +1,40 @@ +/** + * @file + * Styles for bartik11's buttons. + */ + +.button { + background-color: #fff; + background-image: -webkit-linear-gradient(top, #f3f3f3, #e8e8e8); + background-image: linear-gradient(to bottom, #f3f3f3, #e8e8e8); + border: 1px solid #e4e4e4; + border-bottom-color: #b4b4b4; + border-left-color: #d2d2d2; + border-right-color: #d2d2d2; + color: #3a3a3a; + cursor: pointer; + font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif; + font-size: 0.929em; + font-weight: normal; + text-align: center; + padding: 0.250em 1.063em; + border-radius: 1em; + display: inline-block; + line-height: normal; +} +.button:hover, +.button:active, +.button:focus { + background: #dedede; + color: #5a5a5a; + text-decoration: none; +} +.button.is-disabled:hover, +.button.is-disabled:active, +.button.is-disabled:focus, +.button.is-disabled { + background: #ededed; + border-color: #bbb; + color: #717171; + cursor: default; +} diff --git a/bartik11/css/components/captions.css b/bartik11/css/components/captions.css new file mode 100644 index 0000000..7990b3d --- /dev/null +++ b/bartik11/css/components/captions.css @@ -0,0 +1,31 @@ +/* -------------- Captions -------------- */ +.caption { + margin-bottom: 1.2em; +} +.caption > * { + background: #F3F3F3; + padding: 0.5ex; + border: 1px solid #CCC; +} +.caption > figcaption { + border: 1px solid #CCC; + border-top: none; + padding-top: 0.5ex; + font-size: small; + text-align: center; +} + +/* Override bartik11's default blockquote and pre styles when captioned. */ +.caption-pre > pre, +.caption-blockquote > blockquote { + margin: 0; +} +.caption-blockquote > figcaption::before { + content: "— "; +} +.caption-blockquote > figcaption { + text-align: left; /* LTR */ +} +[dir="rtl"] .caption-blockquote > figcaption { + text-align: right; +} diff --git a/bartik11/css/components/comments.css b/bartik11/css/components/comments.css new file mode 100644 index 0000000..c3cb42e --- /dev/null +++ b/bartik11/css/components/comments.css @@ -0,0 +1,157 @@ +/** + * @file + * Visual styles for comments in bartik11. + */ + +/* This is required to win over specificity of #content h2 */ +#content .comment-wrapper h2 { + margin-bottom: 1em; +} +#content .comment-wrapper h2.comment-form__title { + margin-bottom: 1em; +} +.field-node--comment { + font-size: 0.934em; +} +.comment { + margin-bottom: 19px; + vertical-align: top; + display: table; +} +[dir="rtl"] .comment { + direction: rtl; +} + +.comment__meta { + padding: 0 30px 0 0; /* LTR */ + font-size: 1.071em; +} +[dir="rtl"] .comment__meta { + padding: 0 0 0 30px; +} +.comment__attribution img { + border: 1px solid #d3d7d9; +} +/* This is required to win over specificity of .field--type-image img */ +.comment .field--name-user-picture img { + margin: 0; +} +.comment__author .username { + white-space: nowrap; +} +.comment__author { + margin: 4px 0; + line-height: 1.2; +} +.comment__time { + margin-bottom: 4px; + color: #68696b; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 0.733em; + line-height: 1.2; + +} +.comment__permalink { + font-size: 0.733em; + line-height: 1.2; +} +.comment__content { + position: relative; + display: table-cell; + padding: 10px 25px 10px 25px; + vertical-align: top; + width: 100%; + border: 1px solid #d3d7d9; + font-size: 0.929em; + line-height: 1.6; + word-break: break-all; +} + +.comment__content:before { + content: ''; + position: absolute; + right: 100%; /* LTR */ + top: 20px; + border-top: 20px solid transparent; + border-right: 20px solid #d3d7d9; /* LTR */ + border-bottom: 20px solid transparent; +} +[dir="rtl"] .comment__content:before { + right: auto; + left: 100%; + border-right: none; + border-left: 20px solid #d3d7d9; +} +.comment__content:after { + content: ''; + position: absolute; + right: 100%; /* LTR */ + top: 20px; + border-top: 20px solid transparent; + border-right: 20px solid #fff; /* LTR */ + border-bottom: 20px solid transparent; + margin-right: -1px; /* LTR */ +} +[dir="rtl"] .comment__content:after { + right: auto; + left: 100%; + border-right: none; + border-left: 20px solid #fff; + margin-right: 0; + margin-left: -1px; +} +.comment__content h3 { + margin-top: 0.94em; + margin-bottom: 0.45em; + font-size: 1.171em; +} +.indented { + margin-left: 40px; /* LTR */ +} +[dir="rtl"] .indented { + margin-right: 40px; + margin-left: 0; +} +.comment .links { + padding: 0 0 0.25em 0; +} +.comment .links li { + padding: 0 0.5em 0 0; /* LTR */ + font-size: 1.08em; +} +[dir="rtl"] .comment .links li { + padding: 0 0 0 0.5em; +} +.comment--unpublished { + margin-right: 5px; /* LTR */ + padding: 5px 2px 5px 5px; /* LTR */ + background: #fff4f4; +} +[dir="rtl"] .comment--unpublished { + margin-left: 5px; + margin-right: 0; + padding: 5px 5px 5px 2px; +} + +/** + * @todo: unpublished nodes have class .node--unpublished. + * change this to .comment--unpublished. + */ +.unpublished .comment-text .comment-arrow { + border-left: 1px solid #fff4f4; + border-right: 1px solid #fff4f4; +} +.unpublished { + padding: 20px 15px 0; +} +.comment-footer { + display: table-row; +} +.comment--unpublished .comment__text:after, +.node--unpublished .comment__text:after { + border-right-color: #fff4f4; /* LTR */ +} +[dir="rtl"] .comment--unpublished .comment__content:after, +[dir="rtl"] .node--unpublished .comment__content:after { + border-left-color: #fff4f4; +} diff --git a/bartik11/css/components/contextual.css b/bartik11/css/components/contextual.css new file mode 100644 index 0000000..475f2bb --- /dev/null +++ b/bartik11/css/components/contextual.css @@ -0,0 +1,9 @@ +/** + * @file + * Contextual links styles for bartik11. + */ + +.contextual-links a { + border-bottom: none; + text-shadow: 0 0 0; +} diff --git a/bartik11/css/components/demo-block.css b/bartik11/css/components/demo-block.css new file mode 100644 index 0000000..af6fecd --- /dev/null +++ b/bartik11/css/components/demo-block.css @@ -0,0 +1,18 @@ +/** + * @file + * Visual styles for bartik11's block demonstration. + */ + +.demo-block { + background: #ffff66; + border: 1px dotted #9f9e00; + color: #000; + font: 90% "Lucida Grande", "Lucida Sans Unicode", sans-serif; + margin: 5px; + padding: 5px; + text-align: center; + text-shadow: none; +} +.featured-top .demo-block { + font-size: 0.55em; +} diff --git a/bartik11/css/components/dropbutton.component.css b/bartik11/css/components/dropbutton.component.css new file mode 100644 index 0000000..c8857f0 --- /dev/null +++ b/bartik11/css/components/dropbutton.component.css @@ -0,0 +1,65 @@ +/** + * @file + * Visual styles for bartik11's dropbutton component. + */ + +.js .dropbutton-widget { + border: 1px solid; + border-color: #e4e4e4 #d2d2d2 #b4b4b4 #d2d2d2; + background-color: #fff; + background-image: -webkit-linear-gradient(top, #f3f3f3, #e8e8e8); + background-image: linear-gradient(to bottom, #f3f3f3, #e8e8e8); + color: #3a3a3a; + cursor: pointer; + text-align: center; + margin: 0.125em 0; + border-radius: 1em; + overflow: hidden; +} +.js .dropbutton-widget:hover { + border-color: #e4e4e4 #d2d2d2 #b4b4b4 #d2d2d2; +} +.js .dropbutton-widget .button { + border: none; + margin: 0; + padding: 0.32em 1em; + background: transparent none; +} +.js .dropbutton-multiple .dropbutton-widget, +.js[dir="rtl"] .dropbutton-multiple .dropbutton-widget { + padding: 0; +} +.js .dropbutton-multiple .dropbutton-widget .dropbutton { + padding-right: 2em; /* LTR */ + position: relative; +} +.js[dir="rtl"] .dropbutton-multiple .dropbutton-widget .dropbutton { + padding-right: 0; + padding-left: 2em; +} +.js .dropbutton-multiple .dropbutton-widget .dropbutton-action a { + margin-right: 0; /* LTR */ +} +[dir="rtl"].js .dropbutton-multiple .dropbutton-widget .dropbutton-action a { + margin-left: 0; +} +.js .dropbutton .secondary-action { + border-top-color: #ccc; +} +.js .dropbutton-toggle button { + background-color: #e8e8e8; + background-image: -webkit-linear-gradient(top, #e8e8e8, #d2d2d2); + background-image: linear-gradient(to bottom, #e8e8e8, #d2d2d2); +} +.js .dropbutton-toggle .dropbutton-arrow:hover { + background: #ccc; +} +.js .dropbutton a { + color: #3a3a3a; + border-bottom: 0 none; +} +.js .dropbutton .dropbutton-action:hover, +.js .dropbutton a:hover { + background: #dedede; + border-bottom: 0 none; +} diff --git a/bartik11/css/components/featured-bottom.css b/bartik11/css/components/featured-bottom.css new file mode 100644 index 0000000..f49e082 --- /dev/null +++ b/bartik11/css/components/featured-bottom.css @@ -0,0 +1,63 @@ +/** +* @file +* Visual styles for bartik11's featured bottom component. +*/ + +.featured-bottom { + background: rgba(30, 50, 10, 0.08); + border-top: 1px solid #e7e7e7; +} +.featured-bottom .region { + padding: 0 20px; +} +@media all and (min-width: 560px) { + .featured-bottom .region { + float: left; /* LTR */ + position: relative; + box-sizing: border-box; + padding: 20px 15px 30px; + width: 33%; + } + [dir="rtl"] .featured-bottom .region { + float: right; + } +} +@media all and (min-width: 851px) { + .featured-bottom .region { + padding: 0 20px; + } +} +.featured-bottom h2 { + color: #000; + font-size: 1.4em; + margin-bottom: 0.6em; + text-shadow: 0 1px 0 #fff; + text-align: center; + line-height: 1em; +} +.featured-bottom .block { + margin-bottom: 1em; + padding-bottom: 1em; + border-bottom: 1px solid #dfdfdf; + line-height: 1.3em; +} +.featured-bottom .block:last-child { + border-bottom: none; +} +.featured-bottom ul, +.featured-bottom ol { + padding-left: 0; +} +.featured-bottom ul li, +.featured-bottom ol li { + list-style: none; +} +.featured-bottom input:not(.form-submit) { + width: 185px; +} +.region-featured-bottom-third .feed-icon { + float: right; +} +.region-featured-bottom-second .block-system-powered-by-block { + text-align: center; +} diff --git a/bartik11/css/components/featured-top.css b/bartik11/css/components/featured-top.css new file mode 100644 index 0000000..964541d --- /dev/null +++ b/bartik11/css/components/featured-top.css @@ -0,0 +1,25 @@ +/** + * @file + * Visual styles for bartik11's featured top. + */ + +.featured-top { + text-align: center; + font-size: 1.2em; + font-weight: normal; + line-height: 1.4; + padding: 20px 10px 45px; + margin: 0; + background: #f0f0f0; + background: rgba(30, 50, 10, 0.08); + border-bottom: 1px solid #e7e7e7; + text-shadow: 1px 1px #fff; +} +.featured-top h2 { + font-size: 1.2em; + line-height: 1; +} +.featured-top p { + margin: 0; + padding: 0; +} diff --git a/bartik11/css/components/feed-icon.css b/bartik11/css/components/feed-icon.css new file mode 100644 index 0000000..acb48a6 --- /dev/null +++ b/bartik11/css/components/feed-icon.css @@ -0,0 +1,15 @@ +/** + * @file + * Feed icon styles for bartik11. + */ + +.feed-icon { + border-bottom: 1px solid transparent; + display: inline-block; + padding-bottom: 2px; +} + +.feed-icon:focus, +.feed-icon:hover { + border-color: #018fe2; +} diff --git a/bartik11/css/components/field.css b/bartik11/css/components/field.css new file mode 100644 index 0000000..7883700 --- /dev/null +++ b/bartik11/css/components/field.css @@ -0,0 +1,98 @@ +/** + * @file + * Visual styles for bartik11's field components. + */ + +.field--type-entity-reference { + margin: 0 0 1.2em; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +.field--type-entity-reference .field__label { + font-weight: normal; + margin: 0; + padding-right: 5px; /* LTR */ +} +[dir="rtl"] .field--type-entity-reference .field__label { + padding-left: 5px; + padding-right: 0; +} +.field--type-entity-reference .field__label, +.field--type-entity-reference ul.links { + font-size: 0.8em; +} +.node--view-mode-teaser .field--type-entity-reference .field__label, +.node--view-mode-teaser .field--type-entity-reference ul.links { + font-size: 0.821em; +} +.field--type-entity-reference ul.links { + padding: 0; + margin: 0; + list-style: none; +} +/* This is required to win over specificity of [dir="rtl"] .region-content ul */ +[dir="rtl"] .field--type-entity-reference ul.links { + padding: 0; +} +.field--type-entity-reference ul.links li { + float: left; /* LTR */ + padding: 0 1em 0 0; /* LTR */ + white-space: nowrap; +} +[dir="rtl"] .field--type-entity-reference ul.links li { + padding: 0 0 0 1em; + float: right; +} +@media all and (min-width: 560px) { + .node .field--type-image { + float: left; /* LTR */ + margin: 0 1em 0 0; /* LTR */ + } + [dir="rtl"] .node .field--type-image { + float: right; + margin: 0 0 0 1em; + } + .node .field--type-image + .field--type-image { + clear: both; + } +} +.field--type-image img, +.field--name-user-picture img { + margin: 0 0 1em; +} +.field--type-image a { + border-bottom: none; +} +.field--name-field-tags { + margin: 0 0 1.2em; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +.field--name-field-tags .field__label { + font-weight: normal; + margin: 0; + padding-right: 5px; /* LTR */ +} +[dir="rtl"] .field--name-field-tags .field__label { + padding-left: 5px; + padding-right: 0; +} +.field--name-field-tags .field__label, +.field--name-field-tags ul.links { + font-size: 0.8em; +} +.node--view-mode-teaser .field--name-field-tags .field__label, +.node--view-mode-teaser .field--name-field-tags ul.links { + font-size: 0.821em; +} +.field--name-field-tags ul.links { + padding: 0; + margin: 0; +} +.field--name-field-tags ul.links li { + float: left; /* LTR */ + padding: 0 1em 0 0; /* LTR */ + white-space: nowrap; +} +[dir="rtl"] .field--name-field-tags ul.links li { + padding: 0 0 0 1em; + float: right; +} diff --git a/bartik11/css/components/form.css b/bartik11/css/components/form.css new file mode 100644 index 0000000..b40c88f --- /dev/null +++ b/bartik11/css/components/form.css @@ -0,0 +1,323 @@ +/** + * @file + * Visual styles for bartik11's forms. + */ + +/* Password field. */ +.password-field { + margin: 0; +} + +/* Form elements. */ +form { + margin: 0; + padding: 0; +} +fieldset { + margin: 1em 0; + min-width: 0; +} +/** + * We've temporarily added this Firefox specific rule here to fix fieldset + * widths. + * @todo remove once this Mozilla bug is fixed. + * See https://bugzilla.mozilla.org/show_bug.cgi?id=504622 + */ +@-moz-document url-prefix() { + fieldset { + display: table-cell; + } +} +details, +fieldset, +.filter-wrapper { + border-radius: 4px; +} +.filter-wrapper { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.filter-help a { + font-size: 0.857em; +} +.filter-wrapper .form-item label { + margin-right: 10px; /* LTR */ +} +[dir="rtl"] .filter-wrapper .form-item label { + margin-left: 10px; + margin-right: 0; +} +summary { + background: #dbdbdb; + color: #3b3b3b; + text-shadow: 0 1px 0 #fff; +} +details summary a { + color: #3b3b3b; +} +details summary a:hover, +details summary a:active, +details summary a:focus { + color: #000; +} +details .details-description { + font-style: italic; +} +label { + display: table; + font-weight: bold; +} +label[for] { + cursor: pointer; +} +input, +textarea, +select { + font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif; +} +input { + margin: 2px 0; + padding: 4px; + /* Keep form elements from overflowing their containers. */ + max-width: 100%; + box-sizing: border-box; +} +input, +textarea { + font-size: 0.929em; +} + +/** + * Make the font slightly bigger in mobile + * @todo: check the correct font-size + */ +@media screen and (max-width: 60em) { /* 920px */ + input, + textarea { + font-size: 16px; + } +} +textarea { + line-height: 1.5; +} +textarea.form-textarea, +select.form-select { + padding: 4px; +} +input.form-text, +input.form-tel, +input.form-email, +input.form-url, +input.form-search, +input.form-file, +input.form-number, +input.form-color, +textarea.form-textarea, +select.form-select { + border: 1px solid #ccc; + color: #3b3b3b; +} +input.form-submit:hover, +input.form-submit:focus { + background: #dedede; +} +.password-suggestions ul li { + margin-left: 1.2em; /* LTR */ +} +[dir="rtl"] .password-suggestions ul li { + margin-right: 1.2em; + margin-left: 0; +} +.form-item label, +.form-wrapper .label { + font-size: 0.929em; +} +.form-wrapper .field-multiple-table .label { + font-size: inherit; +} +.form-type-radio label, +.form-type-checkbox label { + margin-left: 4px; /* LTR */ +} +[dir="rtl"] .form-type-radio label, +[dir="rtl"] .form-type-checkbox label { + margin-right: 4px; + margin-left: 0; +} +.form-type-radio .description, +.form-type-checkbox .description { + margin-left: 2px; /* LTR */ +} +[dir="rtl"] .form-type-radio .description, +[dir="rtl"] .form-type-checkbox .description { + margin-right: 2px; + margin-left: 0; +} +.form-actions { + padding-top: 10px; +} + +/* Node Form */ +#edit-body { + margin-bottom: 2em; +} +.node-form label, +.node-form .description, +.node-form .form-wrapper .label { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +.node-form .form-wrapper .field-multiple-table .label { + font-family: inherit; +} +.node-form .form-wrapper { + margin-bottom: 2em; +} + +/* Contact Form */ +.contact-form #edit-name { + width: 75%; + border-radius: 4px; +} +.contact-form #edit-mail { + width: 75%; + border-radius: 4px; +} +.contact-form #edit-subject { + width: 75%; + border-radius: 4px; +} +.contact-form #edit-message { + width: 76.3%; + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +/* Disabled form elements */ +.form-disabled input, +.form-disabled select, +.form-disabled textarea { + background: #ededed; + border-color: #bbb; + color: #717171; +} +.form-disabled label { + color: #717171; +} + +/* Comment form */ +.comment-form label { + float: left; /* LTR */ + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 0.929em; + width: 120px; +} +[dir="rtl"] .comment-form label { + float: right; +} +.comment-form input, +.comment-form .form-select { + margin: 0; + border-radius: 4px; +} +.comment-form .form-type-textarea label { + float: none; +} +.comment-form .form-item, +.comment-form .form-radios, +.comment-form .form-type-checkbox, +.comment-form .form-select { + margin-bottom: 10px; + overflow: hidden; +} +.comment-form .form-type-checkbox, +.comment-form .form-radios { + margin-left: 120px; /* LTR */ +} +[dir="rtl"] .comment-form .form-type-checkbox, +[dir="rtl"] .comment-form .form-radios, +[dir="rtl"] .comment-form .form-item .description { + margin-left: 0; + margin-right: 120px; +} +.comment-form .form-type-checkbox label, +.comment-form .form-radios label { + float: none; + margin-top: 0; +} +.comment-form input.form-file { + width: auto; +} +.layout-no-sidebars .comment-form .form-text { + width: 800px; +} +.layout-one-sidebar .comment-form .form-text { + width: 500px; +} +.layout-two-sidebars .comment-form .form-text { + width: 320px; +} +.comment-form .form-item .description { + font-size: 0.786em; + line-height: 1.2; + margin-left: 120px; /* LTR */ +} +.comment-form .form-textarea { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} +.comment-form details.filter-wrapper .details-wrapper, +.comment-form .text-format-wrapper .form-item { + margin-top: 0; + margin-bottom: 0; +} +.filter-wrapper label { + width: auto; + float: none; +} +.filter-wrapper .form-select { + min-width: 120px; +} +.comment-form details.filter-wrapper .tips { + font-size: 0.786em; +} +#comment-body-add-more-wrapper .form-type-textarea label { + margin-bottom: 0.4em; +} +#edit-actions input { + margin-right: 0.6em; /* LTR */ +} +[dir="rtl"] #edit-actions input { + margin-left: 0.6em; + margin-right: 0; +} + +/* Form error styles. */ +.form-item textarea.error + .cke { + border: 2px solid red; +} + +/* Form error message styles. */ +.form-item--error-message { + color: #e32700; +} + +/** + * Improve form element usability on narrow devices. + */ +@media all and (max-width: 600px) { + .form-actions .button { + float: none; + margin: 10px 0 0; + padding-bottom: 6px; + width: 100%; + display: block; + box-sizing: border-box; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + } + + .js .dropbutton .dropbutton-action > input, .js .dropbutton .dropbutton-action > a, .js .dropbutton .dropbutton-action > button { + text-align: center; + padding-left: 3em; + } +} diff --git a/bartik11/css/components/forum.css b/bartik11/css/components/forum.css new file mode 100644 index 0000000..5a7f97d --- /dev/null +++ b/bartik11/css/components/forum.css @@ -0,0 +1,11 @@ +/** + * @file + * Visual styles for forums in bartik11. + */ + +.forum__name { + font-size: 1.083em; +} +.forum__description { + font-size: 1em; +} diff --git a/bartik11/css/components/header.css b/bartik11/css/components/header.css new file mode 100644 index 0000000..40ea0f0 --- /dev/null +++ b/bartik11/css/components/header.css @@ -0,0 +1,200 @@ +/* ------------------ Header ------------------ */ +#header { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +.header .section { + position: relative; +} +.region-header { + padding: 0.357em 15px 0; +} +.region-header .site-branding { + margin-top: 0.429em; +} +@media all and (min-width: 461px) { + .region-header .block { + float: right; /* LTR */ + margin-top: 0.357em; + } + [dir="rtl"] .region-header .block { + float: left; + } + .region-header .site-branding { + float: left; /* LTR */ + /* margin-bottom: 1.857em;*/ + } + [dir="rtl"] .region-header .site-branding { + float: right; + } +} +@media screen and (max-width: 460px) { + .region-header { + padding-bottom: 0.357em; + } +} +/* Region header blocks. */ +.region-header .block:not(.site-branding) { + font-size: 0.857em; + margin: 0 0 1em; + clear: right; +} +@media all and (min-width: 901px) { + .region-header .block:not(.site-branding) { + margin: 1.167em 0 1em; + } +} +.region-header .block > h2 { + /* @extend .visually-hidden */ + position: absolute !important; + clip: rect(1px, 1px, 1px, 1px); + overflow: hidden; + height: 1px; +} +.header .block .content { + margin: 0; + padding: 0; +} +.region-header .block ul { + padding: 0; +} +.region-header .block li { + list-style: none; + list-style-image: none; + padding: 0; +} +.region-header .branding { + font-size: 1em; +} +.region-header .form-text { + background: #fefefe; + background: rgba(255, 255, 255, 0.7); + border-color: #ccc; + border-color: rgba(255, 255, 255, 0.3); + margin-right: 2px; /* LTR */ + width: 120px; +} +[dir="rtl"] .region-header .form-text { + margin-left: 2px; + margin-right: 0; +} +.region-header .form-text:hover, +.region-header .form-text:focus, +.region-header .form-text:active { + background: #fff; + background: rgba(255, 255, 255, 0.8); +} +.region-header .form-required:after { + background-image: url(../../images/required.svg); +} +/* Region header block menus. */ +.region-header .block-menu { + border: 1px solid; + border-color: #eee; + border-color: rgba(255, 255, 255, 0.2); + padding: 0; + width: 208px; +} +.region-header .block-menu li a { + display: block; + border-bottom: 1px solid; + border-bottom-color: #eee; + border-bottom-color: rgba(255, 255, 255, 0.2); + padding: 3px 7px; +} +.region-header .block-menu li a:hover, +.region-header .block-menu li a:focus, +.region-header .block-menu li a:active { + text-decoration: none; + background: rgba(255, 255, 255, 0.15); +} +.region-header .block-menu li:last-child a { + border-bottom: 0; +} +/* User Login block in the header region. */ +.region-header #block-user-login { + width: auto; +} +.region-header #block-user-login .content { + margin-top: 2px; +} +.region-header #block-user-login .form-item { + float: left; /* LTR */ + margin: 0; + padding: 0; +} +.region-header #block-user-login div.item-list, +.region-header #block-user-login div.description { + font-size: 0.916em; + margin: 0; +} +.region-header #block-user-login div.item-list { + clear: both; +} +.region-header #block-user-login div.description { + display: inline; +} +.region-header #block-user-login .item-list ul { + padding: 0; + line-height: 1; +} +.region-header #block-user-login .item-list li { + list-style: none; + float: left; /* LTR */ + padding: 3px 0 1px; +} +.region-header #block-user-login .item-list li:last-child { + padding-left: 0.5em; /* LTR */ +} +[dir="rtl"] .region-header #block-user-login .item-list li:last-child { + padding-left: 0; + padding-right: 0.5em; +} +.region-header #block-user-login .form-actions { + margin: 4px 0 0; + padding: 0; + clear: both; +} +.region-header #block-user-login input.form-submit { + border: 1px solid; + border-color: #ccc; + border-color: rgba(255, 255, 255, 0.5); + background: #eee; + background: rgba(255, 255, 255, 0.7); + margin: 4px 0; + padding: 3px 8px; +} +.region-header #block-user-login input.form-submit:hover, +.region-header #block-user-login input.form-submit:focus { + background: #fff; + background: rgba(255, 255, 255, 0.9); +} +/* Search block in header region. */ +.region-header #block-search-form { + width: 208px; +} +.region-header #block-search-form .form-text { + width: 154px; +} +.region-header .search-block-form { + float: right; /* LTR */ +} +[dir="rtl"] .region-header .search-block-form { + float: left; +} + +/* Language switcher block in header region. */ +.region-header .block-locale ul li { + display: inline; + padding: 0 0.5em; +} +[role*=banner] a { + border-bottom: none; +} + +[dir="rtl"] .branding, +[dir="rtl"] .site-logo, +[dir="rtl"] .site-branding-text, +[dir="rtl"] .region-header #block-user-login .form-item, +[dir="rtl"] .region-header #block-user-login .item-list li { + float: right; +} diff --git a/bartik11/css/components/help.css b/bartik11/css/components/help.css new file mode 100644 index 0000000..c606992 --- /dev/null +++ b/bartik11/css/components/help.css @@ -0,0 +1,10 @@ +/** + * @file + * Styles for the help block. + */ + +.block-help { + border: 1px solid #d3d7d9; + padding: 0 1.5em; + margin-bottom: 30px; +} diff --git a/bartik11/css/components/highlighted.css b/bartik11/css/components/highlighted.css new file mode 100644 index 0000000..a1a2fa6 --- /dev/null +++ b/bartik11/css/components/highlighted.css @@ -0,0 +1,12 @@ +/** + * @file + * Styles for bartik11's highlighted component. + */ + +.has-featured-top .region-highlighted { + background: #f0f0f0; + background: rgba(30, 50, 10, 0.08); +} +.region-highlighted { + margin: 0 15px; +} diff --git a/bartik11/css/components/image-button.css b/bartik11/css/components/image-button.css new file mode 100644 index 0000000..0b00436 --- /dev/null +++ b/bartik11/css/components/image-button.css @@ -0,0 +1,13 @@ +/** + * @file + * Styles for bartik11's image buttons. + */ + +.image-button.is-disabled:hover, +.image-button.is-disabled:active, +.image-button.is-disabled:focus, +.image-button.is-disabled { + background: transparent; + opacity: 0.5; + cursor: default; +} diff --git a/bartik11/css/components/item-list.css b/bartik11/css/components/item-list.css new file mode 100644 index 0000000..0d4663b --- /dev/null +++ b/bartik11/css/components/item-list.css @@ -0,0 +1,29 @@ +/** + * @file + * Visual styles for bartik11's item list. + */ + +.item-list ul { + list-style: none; + margin: 0 0 0.25em 0; + padding: 0; /* LTR */ +} +[dir="rtl"] .item-list ul { + padding: 0; +} +.item-list ul li { + /* This is needed to reset styles in item-list.theme.css */ + margin: 0; + padding: 0.2em 0.5em 0 0; /* LTR */ +} +[dir="rtl"] .item-list ul li { + /* This is needed to reset [dir="rtl"] styles in item-list.theme.css */ + margin: 0; + padding: 0.2em 0 0 0.5em; +} +.item-list .item-list__comma-list, +.item-list .item-list__comma-list li, +[dir="rtl"] .item-list .item-list__comma-list, +[dir="rtl"] .item-list .item-list__comma-list li { + padding: 0; +} diff --git a/bartik11/css/components/list-group.css b/bartik11/css/components/list-group.css new file mode 100644 index 0000000..607da31 --- /dev/null +++ b/bartik11/css/components/list-group.css @@ -0,0 +1,13 @@ +/** + * @file + * List group. + * A list of links, grouped together. + */ + +.list-group__link { + border-top: 1px solid #ccc; + padding: 7px 0 0; +} +.list-group__description { + margin: 0 0 10px; +} diff --git a/bartik11/css/components/list.css b/bartik11/css/components/list.css new file mode 100644 index 0000000..46d1cfd --- /dev/null +++ b/bartik11/css/components/list.css @@ -0,0 +1,13 @@ +/** + * @file + * Visual styles for bartik11's lists. + */ + +ul.links { + color: #68696b; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 0.821em; + padding: 0; + margin: 0; + list-style: none; +} diff --git a/bartik11/css/components/main-content.css b/bartik11/css/components/main-content.css new file mode 100644 index 0000000..cbd50db --- /dev/null +++ b/bartik11/css/components/main-content.css @@ -0,0 +1,51 @@ +/** + * @file + * Visual styles for bartik11's main-content component. + */ + +.main-content .section { + padding: 0 15px; +} +.main-content h2 { + margin-bottom: 2px; + font-size: 1.429em; + line-height: 1.4; +} + +@media all and (min-width: 851px) { + .main-content { + float: left; /* LTR */ + position: relative; + } + [dir="rtl"] .main-content { + float: right; + } + .layout-two-sidebars .main-content { + margin-left: 25%; + margin-right: 25%; + width: 50%; + } + .layout-one-sidebar .main-content { + width: 75%; + } + .layout-no-sidebars .main-content { + width: 100%; + } + .layout-sidebar-first .main-content { + margin-left: 25%; /* LTR */ + margin-right: 0; /* LTR */ + } + [dir="rtl"] .layout-sidebar-first .main-content { + margin-left: 0; + margin-right: 25%; + } + .layout-sidebar-second .main-content { + margin-right: 25%; /* LTR */ + margin-left: 0; /* LTR */ + } + [dir="rtl"] .layout-sidebar-second .main-content { + margin-right: 0; + margin-left: 25%; + } +} + diff --git a/bartik11/css/components/menu.css b/bartik11/css/components/menu.css new file mode 100644 index 0000000..858e633 --- /dev/null +++ b/bartik11/css/components/menu.css @@ -0,0 +1,15 @@ +/** + * @file + * Styles for menus in bartik11. + */ + +/* This is needed to override ul.menu styles in menu.theme.css */ +ul.menu { + margin: 0; + padding: 0 0 0.25em 1em; +} + +/* This is needed to override [dir="rtl"] ul.menu styles in menu.theme.css */ +[dir="rtl"] ul.menu { + margin: 0; +} diff --git a/bartik11/css/components/messages.css b/bartik11/css/components/messages.css new file mode 100644 index 0000000..fc317e7 --- /dev/null +++ b/bartik11/css/components/messages.css @@ -0,0 +1,13 @@ +/** + * @file + * Styles for bartik11's messages. + */ + +.messages__wrapper { + padding: 20px 0 5px 8px; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + margin: 8px 0; +} +[dir="rtl"] .messages__wrapper { + padding: 20px 8px 5px 0; +} diff --git a/bartik11/css/components/node-preview.css b/bartik11/css/components/node-preview.css new file mode 100644 index 0000000..520141a --- /dev/null +++ b/bartik11/css/components/node-preview.css @@ -0,0 +1,61 @@ +.node-preview-container { + background: #d1e8f5; + background-image: -webkit-linear-gradient(top, #d1e8f5, #d3e8f4); + background-image: linear-gradient(to bottom, #d1e8f5, #d3e8f4); + font-family: Arial, sans-serif; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3333); + position: fixed; + z-index: 499; + width: 100%; + padding: 10px; +} +.node-preview-backlink { + background-color: #419ff1; + background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, -webkit-linear-gradient(top, #419ff1, #1076d5); + background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, linear-gradient(to bottom, #419ff1, #1076d5); /* LTR */ + border: 1px solid #0048c8; + border-radius: .4em; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4); + color: #fff; + font-size: 0.9em; + line-height: normal; + margin: 0; + padding: 4px 1em 4px 0.6em; /* LTR */ + text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5); +} +[dir="rtl"] .node-preview-backlink { + background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, -webkit-linear-gradient(top, #419ff1, #1076d5); + background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, linear-gradient(to bottom, #419ff1, #1076d5); + padding: 4px 0.6em 4px 1em; + float: right; +} +.node-preview-backlink:focus, +.node-preview-backlink:hover { + background-color: #419cf1; + background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, -webkit-linear-gradient(top, #59abf3, #2a90ef); + background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, linear-gradient(to bottom, #59abf3, #2a90ef); /* LTR */ + border: 1px solid #0048c8; + text-decoration: none; + color: #fff; +} +[dir="rtl"] .node-preview-backlink:focus, +[dir="rtl"] .node-preview-backlink:hover { + background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, -webkit-linear-gradient(top, #59abf3, #2a90ef); + background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, linear-gradient(to bottom, #59abf3, #2a90ef); +} +.node-preview-backlink:active { + background-color: #0e69be; + background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, -webkit-linear-gradient(top, #0e69be, #2a93ef); + background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, linear-gradient(to bottom, #0e69be, #2a93ef); /* LTR */ + border: 1px solid #0048c8; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .25); +} +[dir="rtl"] .node-preview-backlink:active { + background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, -webkit-linear-gradient(top, #0e69be, #2a93ef); + background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, linear-gradient(to bottom, #0e69be, #2a93ef); +} +.node-preview-backlink::before { + content: ''; + width: 10px; + display: inline-block; +} diff --git a/bartik11/css/components/node.css b/bartik11/css/components/node.css new file mode 100644 index 0000000..fa3e2c9 --- /dev/null +++ b/bartik11/css/components/node.css @@ -0,0 +1,69 @@ +/** + * @file + * Visual styles for bartik11's node component. + */ + +.node__content { + font-size: 1.071em; + margin-top: 10px; +} + +/* View mode teaser styles. */ +.node--view-mode-teaser { + border-bottom: 1px solid #d3d7d9; + margin-bottom: 30px; + padding-bottom: 15px; +} +.node--view-mode-teaser h2 { + margin-top: 0; + padding-top: 0.5em; +} +.node--view-mode-teaser h2 a { + color: #181818; +} +.node--view-mode-teaser.node--sticky { + background: #f9f9f9; + background: rgba(0, 0, 0, 0.024); + border: 1px solid #d3d7d9; + padding: 0 15px 15px; +} +.node--view-mode-teaser .node__content { + clear: none; + font-size: 1em; + line-height: 1.6; +} + +/* Node metadata styles. */ +.node__meta { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 0.857em; + color: #68696b; + margin-bottom: -5px; +} +.node__meta .field--name-user-picture img { + float: left; /* LTR */ + margin: 1px 20px 0 0; /* LTR */ +} +[dir="rtl"] .node__meta .field--name-user-picture img { + float: right; + margin-left: 20px; + margin-right: 0; +} + +/* Node links styles. */ +.node__links { + text-align: right; /* LTR */ + font-size: 0.93em; +} +[dir="rtl"] .node__links { + text-align: left; +} + +/* Unpublished node styles. */ +.node--unpublished { + padding: 20px 15px 0; +} +.node--unpublished .comment-text .comment-arrow { + border-left: 1px solid #fff4f4; + border-right: 1px solid #fff4f4; +} diff --git a/bartik11/css/components/page-title.css b/bartik11/css/components/page-title.css new file mode 100644 index 0000000..75e6ea6 --- /dev/null +++ b/bartik11/css/components/page-title.css @@ -0,0 +1,9 @@ +/** + * @file + * Visual styles for bartik11's page-title component. + */ + +.page-title { + font-size: 2em; + line-height: 1em; +} diff --git a/bartik11/css/components/pager.css b/bartik11/css/components/pager.css new file mode 100644 index 0000000..f4387d4 --- /dev/null +++ b/bartik11/css/components/pager.css @@ -0,0 +1,42 @@ +/** + * @file + * Styles for bartik11's pagination. + */ + +/* Using .pager selector on the first one to override .region-content ul. */ +.pager .pager__items { + padding: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +.pager__item { + font-size: 0.929em; + padding: 10px 15px; +} +.pager__item a { + display: inline-block; +} +.pager__item.is-active a { + color: #3b3b3b; + border-bottom: 0; +} +.pager__item--first, +.pager__item--previous { + padding: 10px 10px 10px 0; /* LTR */ +} +[dir="rtl"] .pager__item--first, +[dir="rtl"] .pager__item--previous { + padding-left: 10px; + padding-right: 0; +} +.pager__item--ellipsis { + padding: 10px 0; +} +.pager__item--last, +.pager__item--next { + padding: 10px 0 10px 10px; /* LTR */ +} +[dir="rtl"] .pager__item--last, +[dir="rtl"] .pager__item--next { + padding-left: 0; + padding-right: 10px; +} diff --git a/bartik11/css/components/panel.css b/bartik11/css/components/panel.css new file mode 100644 index 0000000..51ea941 --- /dev/null +++ b/bartik11/css/components/panel.css @@ -0,0 +1,21 @@ +/** + * @file + * Panel styling. Panels are used to visually group items together. + */ + +.panel { + background: #fbfbfb; + border: 1px solid #ccc; + margin: 10px 0; + padding: 0 5px 5px; +} +.panel__title { + margin: 16px 7px; +} +.panel__content { + padding: 0 4px 2px 8px; /* LTR */ +} +[dir="rtl"] .panel__content { + padding-right: 8px; + padding-left: 4px; +} diff --git a/bartik11/css/components/password-suggestions.css b/bartik11/css/components/password-suggestions.css new file mode 100644 index 0000000..4382bb9 --- /dev/null +++ b/bartik11/css/components/password-suggestions.css @@ -0,0 +1,8 @@ +/** + * @file + * Styles for password suggestions in bartik11. + */ + +.password-suggestions { + border: 0; +} diff --git a/bartik11/css/components/primary-menu.css b/bartik11/css/components/primary-menu.css new file mode 100644 index 0000000..1132ae2 --- /dev/null +++ b/bartik11/css/components/primary-menu.css @@ -0,0 +1,212 @@ +/* --------------- Primary Menu ------------ */ + +.region-primary-menu { + clear: both; +} +.region-primary-menu .menu { + font-size: 0.929em; + margin: 0 5px; + padding: 0; + text-align: left; /* LTR */ +} +[dir="rtl"] .region-primary-menu .menu { + text-align: right; + margin-left: 5px; /* This is required to win over specificity of [dir="rtl"] ul.menu */ + margin-right: 5px; /* This is required to win over specificity of [dir="rtl"] ul.menu */ +} +.region-primary-menu .menu-item { + float: none; + list-style: none; + margin: 0; + padding: 0; + height: auto; + width: 100%; +} +.region-primary-menu .menu a { + color: #333; + background: #ccc; + background: rgba(255, 255, 255, 0.7); + float: none; + display: block; + text-decoration: none; + text-shadow: 0 1px #eee; + border-radius: 8px; + margin: 4px 0; + padding: 0.9em 0 0.9em 10px; /* LTR */ +} +[dir="rtl"] .region-primary-menu .menu a { + padding: 0.9em 10px 0.9em 0; +} +.region-primary-menu .menu a:hover, +.region-primary-menu .menu a:focus { + background: #f6f6f2; + background: rgba(255, 255, 255, 0.95); +} +.region-primary-menu .menu a:active { + background: #b3b3b3; + background: rgba(255, 255, 255, 1); +} +.region-primary-menu .menu-item a.is-active { + border-bottom: none; +} + +/* ---------- Primary Menu Toggle ----------- */ +/* Hide the toggle by default. */ +.menu-toggle, +.menu-toggle-target { + display: none; +} +/* Unhide it for the primary menu. */ +.region-primary-menu .menu-toggle-target { + display: inherit; + position: fixed; + top: 0; +} +.region-primary-menu .menu-toggle { + display: none; +} +body:not(:target) .region-primary-menu .menu-toggle { + color: #333; + background: #ccc; + background: rgba(255, 255, 255, 0.7); + float: none; + font-size: 0.929em; + display: block; + text-decoration: none; + text-shadow: 0 1px #eee; + padding: 0.9em 10px 0.9em 10px; + z-index: 1000; +} +body:not(:target) .region-primary-menu .menu-toggle:after { + content:""; + background: url(../../../../misc/icons/ffffff/hamburger.svg) no-repeat; + background-size: contain; + width: 22px; + height: 22px; + display: inline-block; + position: absolute; + right: 10px; /* LTR */ +} +[dir="rtl"] body:not(:target) .region-primary-menu .menu-toggle:after { + right: initial; + left: 10px; +} +body:not(:target) .region-primary-menu .menu-toggle-target-show:target ~ .menu-toggle, +body:not(:target) .region-primary-menu .menu-toggle--hide { + display: none; +} +body:not(:target) .region-primary-menu .menu-toggle-target-show:target ~ .menu-toggle--hide { + display: block; +} + +body:not(:target) .region-primary-menu .menu-item { + height: 0; + overflow: hidden; +} +body:not(:target) .region-primary-menu .menu-toggle-target-show:target ~ .menu .menu-item { + height: auto; + overflow: visible; +} + +/** + * Media queries for primary menu. + */ +@media all and (min-width: 461px) and (max-width: 900px) { + .region-primary-menu .menu { + margin: 0 5px; + padding: 0; + text-align: center; + } + /* This is required to win over specificity of the global [dir="rtl"] .region-primary-menu .menu */ + [dir="rtl"] .region-primary-menu .menu { + text-align: center; + } + .region-primary-menu .menu-item, + body:not(:target) .region-primary-menu .menu-item { + float: left; /* LTR */ + margin-right: 5px; /* LTR */ + padding: 0; + display: inline-block; + width: 32.75%; + height: auto; + overflow: visible; + } + [dir="rtl"] .region-primary-menu .menu-item, + [dir="rtl"] body:not(:target) .region-primary-menu .menu-item { + float: right; + margin-left: 5px; + margin-right: 0; + } + .region-primary-menu .menu-item:nth-child(3n) { + margin-right: -5px; /* LTR */ + } + [dir="rtl"] .region-primary-menu .menu-item:nth-child(3n) { + margin-left: -5px; + margin-right: 0; + } + .region-primary-menu .menu a { + float: none; + display: block; + border-radius: 8px; + margin-bottom: 5px; + padding: 0.9em 5px; + } + /* This is required to win over specificity of the global [dir="rtl"] .region-primary-menu .menu a */ + [dir="rtl"] .region-primary-menu .menu a { + padding: 0.9em 5px; + } + body:not(:target) .region-primary-menu .menu-toggle { + display: none; + } +} + +@media all and (min-width: 901px) { + .region-primary-menu .block-menu .menu { + font-size: 0.929em; + margin: 0; + padding: 0 15px; + } + .region-primary-menu .menu-item, + body:not(:target) .region-primary-menu .menu-item { + float: left; /* LTR */ + list-style: none; + padding: 0 1px; + margin: 0 1px; + width: auto; + height: auto; + overflow: visible; + } + [dir="rtl"] .region-primary-menu .menu-item, + [dir="rtl"] body:not(:target) .region-primary-menu .menu-item { + float: right; + } + .region-primary-menu .menu a { + float: left; /* LTR */ + padding: 0.7em 0.8em; + margin-bottom: 0; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + } + [dir="rtl"] .region-primary-menu .menu a { + float: right; + padding: 0.7em 0.8em; + } + .featured .region-primary-menu .menu-item a:active, + .featured .region-primary-menu .menu-item a.is-active { + background: #f0f0f0; + background: rgba(240, 240, 240, 1.0); + } + body:not(:target) .region-primary-menu .menu-toggle { + display: none; + } +} + +/** + * Ensures that the open mobile menu hides when the screen dimensions become + * 461px or wider. + */ +@media all and (min-width: 461px) { + body:not(:target) .region-primary-menu .menu-toggle-target-show:target ~ .menu-toggle--hide { + display: none; + } +} diff --git a/bartik11/css/components/search-form.css b/bartik11/css/components/search-form.css new file mode 100644 index 0000000..f03e20b --- /dev/null +++ b/bartik11/css/components/search-form.css @@ -0,0 +1,40 @@ +/** + * @file + * The visual styles for bartik11's search form(s). + */ + +.search-form { + font-size: 0.875rem; +} +.search-form .form-search { + float: left; /* LTR */ + margin-right: 5px; /* LTR */ + padding: 4px; +} +[dir="rtl"] .search-form .form-search { + float: right; + margin-left: 5px; + margin-right: 0; +} +.button.search-form__submit, +.search-form__submit { + background: #f0f0f0 url(../../../../misc/icons/505050/loupe.svg) no-repeat center; + cursor: pointer; + height: 26px; + margin-left: 0; + margin-right: 0; + overflow: hidden; + padding: 0; + text-indent: -9999px; + direction: ltr; + width: 34px; +} +.button.search-form__submit:hover, +.search-form__submit:hover, +.button.search-form__submit:focus, +.search-form__submit:focus { + background: #dedede url(../../../../misc/icons/424242/loupe.svg) no-repeat center; +} +.search-form .form-item-keys label { + display: block; +} diff --git a/bartik11/css/components/search-results.css b/bartik11/css/components/search-results.css new file mode 100644 index 0000000..6516a27 --- /dev/null +++ b/bartik11/css/components/search-results.css @@ -0,0 +1,28 @@ +/** + * @file + * Visual styles for bartik11's search results. + */ + +.search-results { + padding: 0; + list-style-position: inside; +} +.search-results li { + border-bottom: 1px solid #d3d7d9; + padding-bottom: 0.4285em; + margin-bottom: 0.5em; +} +.search-results li:last-child { + border-bottom: none; + padding-bottom: 0; + margin-bottom: 1em; +} +.search-result__title { + font-weight: bold; +} +.search-result__snippet-info { + padding-left: 0; /* LTR */ +} +[dir="rtl"] .search-result__snippet-info { + padding-right: 0; +} diff --git a/bartik11/css/components/secondary-menu.css b/bartik11/css/components/secondary-menu.css new file mode 100644 index 0000000..c3164db --- /dev/null +++ b/bartik11/css/components/secondary-menu.css @@ -0,0 +1,26 @@ +/* --------------- Secondary Menu ------------ */ + +.region-secondary-menu .menu { + text-align: right; /* LTR */ + font-size: 0.929em; + margin: 0 10px; + padding: 0; +} +[dir="rtl"] .region-secondary-menu .menu { + text-align: left; + margin-right: 10px; /* required to win over specificity of [dir="rtl"] ul.menu */ + margin-left: 10px; +} +.region-secondary-menu .menu-item { + margin: 0; + padding: 0; + display: inline; +} +.region-secondary-menu .menu a { + display: inline-block; + padding: 0.8em; +} +.region-secondary-menu .menu a:hover, +.region-secondary-menu .menu a:focus { + text-decoration: underline; +} diff --git a/bartik11/css/components/shortcut.css b/bartik11/css/components/shortcut.css new file mode 100644 index 0000000..7c8a103 --- /dev/null +++ b/bartik11/css/components/shortcut.css @@ -0,0 +1,29 @@ +/** + * @file + * Visual styles for the Shortcut action link in bartik11. + */ + +.shortcut-wrapper { + margin: 2.2em 0 1.1em 0; /* Same as usual .page-title margin. */ +} +.shortcut-wrapper .page-title { + float: left; /* LTR */ + margin: 0; +} +[dir="rtl"] .shortcut-wrapper .page-title { + float: right; +} +.shortcut-action { + border-bottom: none; + margin-left: 0.5em; /* LTR */ + padding-top: 0.35em; +} +[dir="rtl"] .shortcut-action { + margin-left: 0; + margin-right: 0.5em; +} +.shortcut-action:hover, +.shortcut-action:active, +.shortcut-action:focus { + border-bottom: none; +} diff --git a/bartik11/css/components/sidebar.css b/bartik11/css/components/sidebar.css new file mode 100644 index 0000000..8b56352 --- /dev/null +++ b/bartik11/css/components/sidebar.css @@ -0,0 +1,67 @@ +/* ------------------ Sidebar ----------------- */ + +@media all and (min-width: 560px) { + .sidebar { + float: left; /* LTR */ + position: relative; + width: 50%; + } + [dir="rtl"] .sidebar { + float: right; + } + .layout-one-sidebar .sidebar { + width: 100%; + } +} +@media all and (min-width: 851px) { + .layout-one-sidebar .sidebar { + width: 25%; + } + #sidebar-first { + width: 25%; + margin-left: -100%; /* LTR */ + } + [dir="rtl"] #sidebar-first { + margin-right: -100%; + margin-left: 0; + } + #sidebar-second { + width: 25%; + margin-left: -25%; /* LTR */ + clear: none; + } + [dir="rtl"] #sidebar-second { + margin-right: -25%; + margin-left: 0; + } +} + +.sidebar .section { + padding: 10px 15px 0; +} +.sidebar .block { + border-style: solid; + border-width: 1px; + padding: 15px 20px; + margin: 0 0 20px; +} +.sidebar h2 { + margin: 0 0 0.5em; + border-bottom: 1px solid #d6d6d6; + padding-bottom: 5px; + text-shadow: 0 1px 0 #fff; + font-size: 1.071em; + line-height: 1.2; +} +.sidebar .block .content { + font-size: 0.914em; + line-height: 1.4; +} +.sidebar tbody { + border: none; +} +.sidebar tr.even, +.sidebar tr.odd { + background: none; + border-bottom: 1px solid #d6d6d6; +} diff --git a/bartik11/css/components/site-branding.css b/bartik11/css/components/site-branding.css new file mode 100644 index 0000000..e0bac36 --- /dev/null +++ b/bartik11/css/components/site-branding.css @@ -0,0 +1,45 @@ +/** + * @file + * Visual styles for the site branding block in bartik11. + */ + +.site-branding__logo { + display: inline-block; + margin-right: 1em; /* LTR */ + margin-bottom: 0.286em; +} +[dir="rtl"] .site-branding__logo { + margin-right: 0; + margin-left: 1em; +} +.site-branding__text { + display: inline-block; + vertical-align: top; +} +@media all and (min-width: 461px) { + .site-branding__text { + margin-bottom: 1.857em; + } +} +@media all and (min-width: 901px) { + .site-branding__text { + padding: 1.286em 0 0; + } +} +.site-branding__name { + font-size: 1.6em; + color: #686868; + line-height: 1; +} +@media all and (min-width: 901px) { + .site-branding__name { + font-size: 1.821em; + } +} +.site-branding__slogan { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 0.929em; + margin-top: 7px; + word-spacing: 0.1em; + font-style: italic; +} diff --git a/bartik11/css/components/site-footer.css b/bartik11/css/components/site-footer.css new file mode 100644 index 0000000..d99459f --- /dev/null +++ b/bartik11/css/components/site-footer.css @@ -0,0 +1,229 @@ +/** + * @file + * Footer Styling. + */ + +.site-footer { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + padding: 35px 0 30px; +} +.site-footer .layout-container { + padding: 0 15px; +} +@media all and (min-width: 560px) { + .site-footer__top .region { + float: left; /* LTR */ + position: relative; + width: 50%; + } + [dir="rtl"] .site-footer__top .region { + float: right; + } +} +@media all and (min-width: 560px) and (max-width: 850px) { + .site-footer .region { + box-sizing: border-box; + } + .site-footer__top .region:nth-child(2n+1) { + padding-right: 10px; /* LTR */ + } + [dir="rtl"] .site-footer__top .region:nth-child(2n+1) { + padding-left: 10px; + padding-right: 0; + } + .site-footer__top .region:nth-child(2n) { + padding-left: 10px; /* LTR */ + } + [dir="rtl"] .site-footer__top .region:nth-child(2n) { + padding-left: 0; + padding-right: 10px; + } + .region-footer-third { + clear: both; + } +} +@media all and (min-width: 851px) { + .site-footer__top .region { + width: 24%; + padding: 0 0.65%; + } + .site-footer__top .region:first-child { + padding-left: 0; /* LTR */ + } + [dir="rtl"] .site-footer__top .region:first-child { + padding-left: 10px; + padding-right: 0; + } + .site-footer__top .region:last-child { + padding-right: 0; /* LTR */ + } + [dir="rtl"] .site-footer__top .region:last-child { + padding-left: 0; + padding-right: 10px; + } +} +.site-footer h2 { + color: #c0c0c0; + color: rgba(255, 255, 255, 0.65); +} +.site-footer blockquote { + color: #555; +} +.site-footer .content { + color: #c0c0c0; + color: rgba(255, 255, 255, 0.65); + font-size: 0.857em; +} +.site-footer .menu-item { + padding: 0; +} +.site-footer .content ol:not(.menu), +.site-footer .content ul:not(.menu) { + padding-left: 1.4em; /* LTR */ +} +[dir="rtl"] .site-footer .content ol:not(.menu), +[dir="rtl"] .site-footer .content ul:not(.menu) { + padding-right: 1.4em; + padding-left: 0; +} +.site-footer .content a, +.site-footer .content a.is-active { + color: #fcfcfc; + color: rgba(255, 255, 255, 0.8); +} +.site-footer .content a:hover, +.site-footer .content a:focus { + color: #fefefe; + color: rgba(255, 255, 255, 0.95); +} +.site-footer .block { + margin: 20px 0; + border: 1px solid #444; + border-color: rgba(255, 255, 255, 0.1); + padding: 10px; +} +.site-footer table { + font-size: 1em; +} +.site-footer tr td, +.site-footer tr th { + border-color: #555; + border-color: rgba(255, 255, 255, 0.18); +} +.site-footer tr.odd { + background-color: transparent; +} +.site-footer tr.even { + background-color: #2c2c2c; + background-color: rgba(0, 0, 0, 0.15); +} + +/* Footer Top Styling. */ +.site-footer__top h2 { + border-bottom: 1px solid #555; + border-color: rgba(255, 255, 255, 0.15); + font-size: 1em; + margin-bottom: 0; + padding-bottom: 3px; + text-transform: uppercase; +} +.site-footer__top .content { + margin-top: 0; +} +.site-footer__top p { + margin-top: 1em; +} +.site-footer__top .content .menu { + padding-left: 0; /* LTR */ +} +[dir="rtl"] .site-footer__top .content .menu { + padding-right: 0; +} +.site-footer__top .content li a { + display: block; + border-bottom: 1px solid #555; + border-color: rgba(255, 255, 255, 0.15); + line-height: 1.2; + padding: 0.8em 2px 0.8em 20px; /* LTR */ + text-indent: -15px; +} +[dir="rtl"] .site-footer__top .content li a { + padding: 0.8em 20px 0.8em 2px; +} +.site-footer__top .content li a:hover, +.site-footer__top .content li a:focus { + background-color: #1f1f21; + background-color: rgba(255, 255, 255, 0.05); + text-decoration: none; +} +.site-footer__top .block-menu, +.site-footer__bottom .block { + margin: 0; + padding: 0; + border: none; +} + +/* Footer Bottom Styling. */ +.site-footer__bottom .block { + margin: 0.5em 0; +} +.site-footer__bottom .content { + padding: 0.5em 0; + margin-top: 0; +} +.site-footer__bottom .block h2 { + margin: 0; +} +.site-footer__bottom { + letter-spacing: 0.2px; + margin-top: 30px; + border-top: 1px solid #555; + border-color: rgba(255, 255, 255, 0.15); +} +.site-footer__bottom .region { + margin-top: 20px; +} +.site-footer__bottom .block { + clear: both; +} + +/* We need to be specific to overwrite [dir="rtl"] .block ul in block.css. */ +.site-footer__bottom .block .menu { + padding: 0; +} +.site-footer__bottom .menu-item a { + float: left; /* LTR */ + padding: 0 12px; + display: block; + border-right: 1px solid #555; /* LTR */ + border-color: rgba(255, 255, 255, 0.15); +} +[dir="rtl"] .site-footer__bottom .menu-item a { + float: right; + border-left: 1px solid #555; + border-right: none; +} +.site-footer__bottom .menu-item:first-child a { + padding-left: 0; /* LTR */ +} +[dir="rtl"] .site-footer__bottom .menu-item:first-child a { + padding-right: 0; + padding-left: 12px; +} +.site-footer__bottom .menu-item:last-child a { + padding-right: 0; /* LTR */ + border-right: none; /* LTR */ +} +[dir="rtl"] .site-footer__bottom .menu-item:last-child a { + padding-left: 0; + padding-right: 12px; + border-left: none; +} + +/** + * When the item is both first and last, :last-child overrides the right padding + * when using [dir="rtl"]. We need this rule to remove the right padding. + */ +[dir="rtl"] .site-footer__bottom .menu-item:first-child:last-child a { + padding-right: 0; +} diff --git a/bartik11/css/components/skip-link.css b/bartik11/css/components/skip-link.css new file mode 100644 index 0000000..c51edd9 --- /dev/null +++ b/bartik11/css/components/skip-link.css @@ -0,0 +1,25 @@ +/** + * @file + * Styles for the skip link. + */ + +.skip-link { + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + transform: translateX(-50%); + z-index: 50; + background: #444; + background: rgba(0, 0, 0, 0.6); + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 0.94em; + line-height: 1.7em; + padding: 1px 10px 2px; + border-radius: 0 0 10px 10px; + border-bottom-width: 0; + outline: 0; +} +.skip-link.visually-hidden.focusable:focus { + position: absolute !important; + color: #fff; +} diff --git a/bartik11/css/components/table.css b/bartik11/css/components/table.css new file mode 100644 index 0000000..663d471 --- /dev/null +++ b/bartik11/css/components/table.css @@ -0,0 +1,76 @@ +/** + * @file + * Styles for bartik11's tables. + */ + +table { + border: 0; + border-spacing: 0; + font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif; + font-size: 0.857em; + margin: 10px 0; + width: 100%; +} +table table { + font-size: 1em; +} +tr { + border-bottom: 1px solid #ccc; + padding: 0.1em 0.6em; + background: #efefef; + background: rgba(0, 0, 0, 0.063); +} +thead > tr { + border-bottom: 1px solid #000; +} +tr.odd { + background: #e4e4e4; + background: rgba(0, 0, 0, 0.105); +} +table tr th { + background: #757575; + background: rgba(0, 0, 0, 0.51); + border-bottom-style: none; +} +table tr th, +table tr th a, +table tr th a:hover, +table tr th a:focus { + color: #fff; + font-weight: bold; +} +table tbody tr th { + vertical-align: top; +} +tr td, +tr th { + padding: 4px 9px; + border: 1px solid #fff; + text-align: left; /* LTR */ +} +.tabledrag-handle:hover, +.tabledrag-handle { + border: none; +} +[dir="rtl"] tr td, +[dir="rtl"] tr th { + text-align: right; +} + +/** + * Responsive tables. + */ +@media screen and (max-width: 37.5em) { /* 600px */ + th.priority-low, + td.priority-low, + th.priority-medium, + td.priority-medium { + display: none; + } +} +@media screen and (max-width: 60em) { /* 920px */ + th.priority-low, + td.priority-low { + display: none; + } +} diff --git a/bartik11/css/components/tablesort-indicator.css b/bartik11/css/components/tablesort-indicator.css new file mode 100644 index 0000000..d0ea03b --- /dev/null +++ b/bartik11/css/components/tablesort-indicator.css @@ -0,0 +1,17 @@ +/** + * @file + * Tablesort indicator styles. + */ + +.tablesort { + width: 14px; + height: 14px; + vertical-align: top; + margin: 1px 0 0 5px; +} +.tablesort--asc { + background-image: url(../../../../misc/icons/ffffff/twistie-down.svg); +} +.tablesort--desc { + background-image: url(../../../../misc/icons/ffffff/twistie-up.svg); +} diff --git a/bartik11/css/components/tabs.css b/bartik11/css/components/tabs.css new file mode 100644 index 0000000..6f232fe --- /dev/null +++ b/bartik11/css/components/tabs.css @@ -0,0 +1,112 @@ +/* --------------- System Tabs --------------- */ + +div.tabs { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + margin-bottom: 20px; +} +.tabs ul.primary { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +.tabs ul.primary li a { + color: #000; + background-color: #ededed; + border-color: #bbb; + border-style: solid solid none solid; + border-width: 1px; + height: 1.8em; + line-height: 1.9; + display: block; + font-size: 0.929em; + padding: 0 10px 3px; + text-shadow: 0 1px 0 #fff; +} +.tabs ul.primary li.is-active a { + background-color: #ffffff; + border: 1px solid #bbb; +} +@media screen and (max-width: 37.5em) { /* 600px */ + .tabs ul.primary { + border-bottom: 1px solid #bbb; + } + .tabs ul.primary li { + display: block; + margin: 0; + } + .tabs ul.primary li a { + padding: 5px 10px; + } + .tabs ul.primary li.is-active a { + border-bottom: none; + } +} +@media screen and (min-width: 37.5em) { /* 600px */ + .tabs ul.primary { + border-collapse: collapse; + height: auto; + line-height: normal; + padding: 0 3px; + margin: 0; + overflow: hidden; + border: none; + background: transparent url(../../images/tabs-border.png) repeat-x left bottom; + white-space: nowrap; + } + .tabs ul.primary li { + display: block; + float: left; /* LTR */ + vertical-align: bottom; + margin: 0 5px 0 0; /* LTR */ + } + [dir="rtl"] .tabs ul.primary li { + margin: 0 0 0 5px; + float: right; + } + .tabs ul.primary li a { + float: left; /* not LTR */ + border-top-left-radius: 6px; + border-top-right-radius: 6px; + } + .tabs ul.primary li.is-active a { + border-bottom: 1px solid #fff; + } +} +.tabs ul.secondary { + border-bottom: none; + margin: 5px; + padding: 0.5em 0; + overflow: hidden; +} +.tabs ul.secondary li { + border-right: 1px solid #ccc; /* LTR */ + display: block; + float: left; /* LTR */ + margin: 0; + padding: 0 1em; +} +[dir="rtl"] .tabs ul.secondary li { + border-left: 1px solid #ccc; + border-right: none; + float: right; +} +.tabs ul.secondary li:last-child { + border-right: none; /* LTR */ +} +[dir="rtl"] .tabs ul.secondary li:last-child { + border-left: none; +} +.tabs ul.secondary li:first-child { + padding-left: 0; /* LTR */ +} +[dir="rtl"] .tabs ul.secondary li:first-child { + padding-right: 0; +} +.tabs ul.secondary li a { + display: inline; + padding: 0.25em 0.5em; + text-decoration: none; +} +.tabs ul.secondary li a.is-active { + background: #f2f2f2; + border-bottom: none; + border-radius: 5px; +} diff --git a/bartik11/css/components/text-formatted.css b/bartik11/css/components/text-formatted.css new file mode 100644 index 0000000..123b644 --- /dev/null +++ b/bartik11/css/components/text-formatted.css @@ -0,0 +1,15 @@ +/** + * @file + * + * Visual styles for bartik11's text-formatted component. + */ + +.text-formatted ul, +.text-formatted ol { + margin: 1em 0; + padding: 0 0 0.25em 15px; /* LTR */ +} +[dir="rtl"] .text-formatted ul, +[dir="rtl"] .text-formatted ol { + padding: 0 15px 0.25em 0; +} diff --git a/bartik11/css/components/toolbar.css b/bartik11/css/components/toolbar.css new file mode 100644 index 0000000..610c19a --- /dev/null +++ b/bartik11/css/components/toolbar.css @@ -0,0 +1,8 @@ +/** + * @file + * Toolbar module overrides for bartik11. + */ + +.toolbar a { + border-bottom: none; +} diff --git a/bartik11/css/components/ui-dialog.css b/bartik11/css/components/ui-dialog.css new file mode 100644 index 0000000..76d8317 --- /dev/null +++ b/bartik11/css/components/ui-dialog.css @@ -0,0 +1,34 @@ +/** + * @file + * Styles for bartik11's modal windows + */ + +.ui-widget-overlay { + background: #000; + opacity: 0.7; +} +.ui-dialog { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + border-radius: 0; +} +.ui-dialog input, +.ui-dialog select, +.ui-dialog textarea { + font-size: 0.9em; +} +.ui-dialog .button { + background-color: #fff; + background-image: -webkit-linear-gradient(top,#f3f3f3,#e8e8e8); + background-image: linear-gradient(to bottom,#f3f3f3,#e8e8e8); + border: 1px solid #e4e4e4; + border-bottom-color: #b4b4b4; + border-left-color: #d2d2d2; + border-right-color: #d2d2d2; + color: #3a3a3a; + cursor: pointer; + font-size: 0.929em; + font-weight: normal; + text-align: center; + padding: 0.250em 1.063em; + border-radius: 1em; +} diff --git a/bartik11/css/components/ui.widget.css b/bartik11/css/components/ui.widget.css new file mode 100644 index 0000000..fe9c8a5 --- /dev/null +++ b/bartik11/css/components/ui.widget.css @@ -0,0 +1,8 @@ +/** + * @file + * Visual styles for bartik11's ui-widget component. + */ + +#page .ui-widget { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} diff --git a/bartik11/css/components/vertical-tabs.component.css b/bartik11/css/components/vertical-tabs.component.css new file mode 100644 index 0000000..ce4d6cd --- /dev/null +++ b/bartik11/css/components/vertical-tabs.component.css @@ -0,0 +1,16 @@ +/** + * @file + * Vertical tabs component. + */ + +/* Vertical Tabs Reset */ +.vertical-tabs__menu { + margin: -1px 0 -1px -15em; /* LTR */ + padding: 0; +} +[dir="rtl"] .vertical-tabs__menu { + margin-left: 0; + margin-right: -15em; + /* This is required to win specificity over [dir="rtl"] .region-content ul */ + padding: 0; +} diff --git a/bartik11/css/components/views.css b/bartik11/css/components/views.css new file mode 100644 index 0000000..f6566e9 --- /dev/null +++ b/bartik11/css/components/views.css @@ -0,0 +1,35 @@ +/** + * @file + * Styling for Views in bartik11. + */ + +/* Tab styles */ +.views-displays .tabs .open > a { + border-radius: 7px 7px 0 0; +} +.views-displays .tabs .open > a:hover, +.views-displays .tabs .open > a:focus { + color: #0071B3; +} +.views-displays .secondary .form-submit { + font-size: 0.846em; +} + +/* Tabs action list styles */ +.views-displays .tabs .action-list { + padding: 0; +} + +/* Contextual filter options styles */ +.views-filterable-options .filterable-option:nth-of-type(even) .form-type-checkbox { + background-color: #F9F9F9; +} + +/* Views action dropbutton styles */ +.views-ui-display-tab-actions .dropbutton .form-submit { + color: #0071B3; +} +.views-ui-display-tab-actions .dropbutton .form-submit:hover, +.views-ui-display-tab-actions .dropbutton .form-submit:focus { + color: #018FE2; +} diff --git a/bartik11/css/layout.css b/bartik11/css/layout.css new file mode 100644 index 0000000..a12090a --- /dev/null +++ b/bartik11/css/layout.css @@ -0,0 +1,30 @@ +/** + * @file + * bartik11 layout styling. + */ + +/** + * Container + */ +.layout-container { + max-width: 860px; + margin-left: auto; + margin-right: auto; + box-sizing: border-box; +} +@media all and (min-width: 851px) { + .layout-container { + max-width: 1290px; + } +} + +/** + * Main + */ +.layout-main-wrapper { + min-height: 300px; +} +.layout-main { + margin-top: 20px; + margin-bottom: 40px; +} diff --git a/bartik11/css/maintenance-page.css b/bartik11/css/maintenance-page.css new file mode 100644 index 0000000..1196a22 --- /dev/null +++ b/bartik11/css/maintenance-page.css @@ -0,0 +1,69 @@ +body.maintenance-page { + background-color: #fff; + color: #000; +} +.maintenance-page #page-wrapper { + background: #fff; + margin-left: auto; + margin-right: auto; + min-width: 0; + min-height: 0; + border: 1px solid #ddd; + margin-top: 40px; +} +.maintenance-page #page { + margin: 10px; +} +.maintenance-page #main-wrapper { + min-height: inherit; +} +.maintenance-page #header { + width: auto; +} +.maintenance-page #main { + margin: 0; +} +.maintenance-page .content .section { + padding: 0 0 0 10px; /* LTR */ +} +[dir="rtl"] .maintenance-page .content .section { + padding-left: 0; + padding-right: 10px; +} +.maintenance-page #header { + background-color: #fff; + background-image: none; +} +.maintenance-page .site-branding-text { + margin-bottom: 50px; + margin-left: 0; /* LTR */ + padding-top: 20px; + font-size: 90%; +} +[dir="rtl"] .maintenance-page .site-branding-text { + margin-right: 0; +} +.maintenance-page .site-branding-text, +.maintenance-page .site-branding-text a, +.maintenance-page .site-branding-text a:hover, +.maintenance-page .site-branding-text a:focus { + color: #777; +} +.maintenance-page .page-title { + line-height: 1em; + margin-top: 0; +} +@media all and (min-width: 800px) { + .maintenance-page #page-wrapper { + width: 800px; + } + .maintenance-page #header div.section, + .maintenance-page #main { + width: 700px; + } +} +@media all and (min-width: 600px) { /* @TODO find the proper breakpoint */ + .maintenance-page #page { + margin: 20px 40px 40px; + } +} diff --git a/bartik11/css/print.css b/bartik11/css/print.css new file mode 100644 index 0000000..4b58dd9 --- /dev/null +++ b/bartik11/css/print.css @@ -0,0 +1,48 @@ + +/* ---------- General Layout ---------- */ + +body, +input, +textarea, +select { + color: #000; + background: none; +} +body.two-sidebars, +body.sidebar-first, +body.sidebar-second, +body { + width: 640px; +} +#sidebar-first, +#sidebar-second, +.navigation, +#toolbar, +.site-footer, +.tabs, +.shortcut-action { + display: none; +} +.one-sidebar .main-content, +.two-sidebars .main-content { + width: 100%; +} +.featured-bottom { + width: 960px; + margin: 0; + padding: 0; + border: none; +} +.featured-bottom-first, +.featured-bottom-second, +.featured-bottom-third { + width: 250px; +} + +/* ---------- Node Pages ---------- */ + +#comments .title, +#comments form, +.comment-forbidden { + display: none; +} diff --git a/bartik11/images/add.png b/bartik11/images/add.png new file mode 100644 index 0000000000000000000000000000000000000000..3e167ebd0fea8015a4e6ecde15d4e99a99092a48 GIT binary patch literal 94 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4|3?y&GPYDK6YymzYuK)l4PfJVddzZ5SC?f3X q;uyjaojj%T5QpP`>4h9>Obk88xw?)iE1U;PGkCiCxvX diff --git a/bartik11/images/tabs-border.png b/bartik11/images/tabs-border.png new file mode 100644 index 0000000000000000000000000000000000000000..25f95356a62c0a945bfd1bda9bd3325aef65c253 GIT binary patch literal 83 zcmeAS@N?(olHy`uVBq!ia0vp^AT}c-GmyM%z19{;F$egBxbEJ)+w`+x43Nw1>Eal| cA)B0#0Fq;1^!MOe4`eZTy85}Sb4q9e0C~d@$N&HU literal 0 HcmV?d00001 diff --git a/bartik11/logo.svg b/bartik11/logo.svg new file mode 100644 index 0000000..7d7cf7c --- /dev/null +++ b/bartik11/logo.svg @@ -0,0 +1 @@ + diff --git a/bartik11/screenshot.png b/bartik11/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..1612c469f69fb2e011aaefae7cac16882fb9630f GIT binary patch literal 40378 zcmZ6y18go%&@cSdwr$%!wV&FyPHo$^ZQE{7ZQFKxYWLj#dvm|!%e%>DliA&w-wu+= zY$j4sUJ?No7Zv~jAV^DzDFXnYKmY)w4I1n}N|z1|+JA&^MWCwqzyCX^si|LH9{$_H z@Mwk5OGI(1g)z-Rb8UpP$cHu0Lw9R}vns^$=|XX=hW}lJU|oXg)sF4g^ZfjP8#IXI zPz9-<3}ccBZIq7V-wSD&hUQWarkjA`T!$Cf4`Y&rU{i+W-O;snSyNMk?%w?R`h?;? z0HzavH`}BBsadCcsfA8Sn5Ed5x@8_+g zq{Q9beQkBMu(0sz>hkXHuCcLkb7Ny}ZZ0w^Dl;>)WBsbCs_N|Y#L&>_@$pebMO8sw zVRCY^yu94S#U(E<&)eI(rKM%g(zOMtM0o*?xY$&+lK<4%y^nb-q_SI(Yf zi5yUp6`~`@H`ce|4`~6Yq>2i#NsICTWMcq!%?5=t05M+x0IH{^-q|T&;^NcZ+CxiO zLR!!Q0u(bZI=QT{!NSNp#48QMC>~8SC?+gJ4QLnb>6H>!)KXaKg2q?o$YU(RA;NWh#0S&g!*W|+Lp$?`tsh9 zfz{F8iSEY9()9G&ygWaD3oq;9`KkTc;oDny1;Bzf8=J;gM|cY-#^FJ&234yvheb+>j{%kYz0`CamhQd7Uv= zwIqZd&IV1v4tG7 z7x8BuK7%sS*4Qd$*!C~!M&>3flA|?X6h$9xQ$F~wm$c-VaL3v6?FRX_TXI3W$qj-e zyYRG`4FqrBk`#ThV=fD7`JlkuH0aW>TjF|2Y2^}gu@uk5ws2nt=Gz~v>% zU(^}S1_-cgu9_D9O-Q%I^4>sdcs9ey@&+LNM!~EtvdwxW!y|G#q#^zhN8tvfy|)11 zp=WKuQ8X!cB;}Iy($!@DT4P27qBCFxwHE!W*;Yeubl=P`17EXe;x z6*CiHmA6HiHaflo$@Gx>|DihJCPP&^kgKrCqT)bT+{vC{q2ajjdBn*aUiW^+s15s?pjYP!;DYwCl z)f5S)hj+0$KsFkf1Brdi9QQX1*(^9vSdpdFKUunT>I`YhnE%u%$x2dEwj$$)Quq9% z6gmCG30PB^Qvz&;r16Sw={<-ji{L?+-jRSEYJ0`gERQ3QG%ne*=e8dJ6t5id9$Gt% z^mH$TUE7st2-?HkKRNXfuBE8TzhBXl8Wy&X|BvRvGN#sHUA)Q@wIq&sO-$v3z4J05 z$}(?A8>MAc%8iuqum+e1EMGg~UbFBUy9uLcbkFzZLXn5)ewZ_zv@zbrWi}VPd+F>oM7R0Mukc5rul&@h_+mN&?MsLhbQSELa@V z)6H|Vm*K$@6fb){6HE|un$Zb)IlI~;o?-nIxo70a+}Rq1dvUdrMMvx?r9+@Z95JTm zb3Eozs6{^VoKq~L;z;E6bKf6_2b3=S&MT2HQWvPp8S7_rI(23IfoUW48DEi6vV1rE z8tGvWTm3QhRHy{ZKYg;A{1hI8xephp*0RNe{mVrNQ<% z)82eP+>|RHARUkPZ_)*xobZ;CYjlWfX=wjl9E6_-eMKszSxaF&U5?GHnXkyM41ZR? zv44m`WFCh3!m6pKcV}zpYJso}vST9EEYeST@R#4^U?K9*!C$cm{dc9O#XjWVs?He# zL{LXne=Dtr&~f^8J9-WHyN6xQDV^Go?8Uz(DygxJeTdU`w$>hN+OY_s-rkRQ4@|h$ zsP^(hRBoU`3hA|vmVPS)uJwyh-hJt#k0mwP7hHK^Lv;W~NT%ostKL3jPj^GGw4vgm z2Em$sn09eLZc|vd4gpQ}C2lQZk9jn>r?YyjyYxw?U#O(Hg_-=8AhMIndCn}E+lAlE z5qYdAK}NRXKxIh2ZNiXTW_S@cyI&(ad?>Ox0v+!Bj226wS51nQyM6Wi2Zj-HWLt>pOt zk9W6JKQ{W>q_oJq*3%MwyVx+5PRft9sh7-v=LI)vcs>+L_9b$V7iAKD`9~-9*?3He zAoES5@GE47tc#yzj-_vv#-QZtI?Duf%59@?gc(&)1uUXd#$nps2*~;}^qYpER?95u zgI{aE%apvdX0zSAbbO+Yf0u>mb$^*))K+|{3|M=(MWeK0J9$fV^L8G-NJL-Aan)HE z{+9iBR1AWLlbs(jqfioGXXLRFH%zO>EEm8>6gn2~#7So{0cY_=kB*9KRAbkoPP93& zsVv&ogU7*{-m=@OW#YZ|68_3LDrfnXO=Z*@*3P?laO=UFN&fnc_t%IO?_URQPaegd zQLlHc@I%A|E=B3$s?&ByMy4@_cI~l2;j~NzrF9yD6l=(;FpHHmu}yG>rXE_0PNc4L z+`8K2G%KBAf z)uN`!f<WosgIVxR^dD{po~-6EKzy7nc#Ne#K4 zE?%i{C`cc>OJ3qE8z(Ho#bLp392}rT;8Bx^2>Rwbl-#CgiX*9JOBDMb5+m7;7Ps3h z0$R=IA&kpojECyMkP=4{LoE#ON=C7K3mkbel+w##zPV+Bg4c4D#xU47}l$QwVhKo55GEBSjH@4eoWtHP_KCF*vE#)*&TriVQ=l% z&bwDSNwljzLM0KU#=5^LYaDyAE`q(7+AhvSq&eZK)S!b@Q4WHT1^?B>3KNdVph%0Y zi_d`Y;Zk0E7*>_CwVR5b0J#fN@R#&!@+$>gt1F5`eRdact^qwHK!D&#=>#5*ij9?fZwntdU zlfeUf2KFTXnt;nlrxSA7F2R+~HyRj!<~$PQM!zSGJ?D-Y)OI8FRa`iH1--U&*~hiF z-x(0-?-0(`=l!@;F~aDm(B>ulC871lO-dv=N<2PqZcP-$)cH_Cax(}+;j$X$sS1sW zLnyvW;prVVUD%n}1m{hVs>&=8-_WGF7Km$YkCWRD8Br-NmQe1oTa#)l(IBVb&d{L` z=93!Qm@uKSp(m_1eAu*A5;Ln+6}=!$(PSUJV6n2$qJ%vdrX!T94}_@_;E54UG~uHN zGQ+(2#pgT8S{V&r@atY6F8+qw;WKX7{O(J7Ls5oBDhyl}29*z;dy3r44E~y+yRn>? z%S#9>zv>_UUnbx3pHmwR4&RX(2I$Kb+8PCW{oekaAD@^9EIZ^ zMk_i9bwat8Dj6{&!sl+kS>@{_>+o4OPfqF#^*FoPKe9Ytq0}cyCFzaL3^?YosF%9c z>cLnf>`|tQkVDeV#VsxacqFtt0wp-(ZYKP&f>|8Pu z;~OI-I>o4s1S$L|GS0$wxRXMp+Tk`?J`uZ7M5csTg_e&yr8W0U`--;szN(8ABZ>Rd zqnm66$gS5g@2#$nJP31V=J7lJdJknSYSfRE`HSOL?s6qfo03Bx6^w=ZTsP2>N8xv8 z!p}AVe0of%8y~7;PeG*L@S+BCrCSz0E@Yfu17*|v#zlH?yb;bg{b+9?Jg7QK7p%vLa*wdK@nFFg6?jHuT3UU?I9siAQGbp z#xt!~NYx^xJdP+{!n{Uyo)@UE9}W>HQNpU}(Hz}vG;MXg6F@ndfGq|0426$g)UwZ0 zFl-dMn7sTdD&&SGxv|0RZh|w)c58r;Y#(L?QLUU+iT zAq4WJsN2xl<(0~3PlNJ-?WEe7n!;!sk^S405czF0iRNMwc}jPg@c~hKO9M_7uwD^5 zCkM8OMA<`JNtN+cD(%LKo{*2Oz@NYsdT%CFlZC(HEk;VTFb{14o5!7L3}bW_xlQxcplt~?jMaf(tO9h9p0`)|;IipgPh z_Zvrdxmph}aHuperOSmO;&lBM`sU#}-KvKyR)9gZ%1`glW&Oc#FuLv1bnI;BgO!oa zDRqb4fi#ZgX|JlR4_=JYP(PNkscVDcnM=pj0Hj@#J5$d;0HHK1hV`$zH^wq5L8+6U zHou0$g`@7*_JNw~dg%b`iVySPXYgMbQn7Zc7}ko*t8k7ZOM< zQ~uye%a**j9TyfCT`~?+;hd>UNzDI6vd0GstGn(mk+i`!41CT%w%p zSE3gF*!gZjQ+8&xeH@lWaFW^DP5`vnNo$86!F0pIgWxNn5-nJ`LB;>& zxW7=+zWZU44(~(;X+%9)7L~vqv_kMIsK}&p-1va*Cm@_l|Be>Xn2!+inD{n2X*9OF ziuOVCQp<~tYci{mL?_mCCQMHzzds-*A0rtdtB))x!yJm243h?yD@`NJ@O7Ryn@P-F*0lQLMW&-~a_eEGqk}XdShhRX@xfR8saOOTO6(=0m_?9kDe|NSio_^1 zy_;%^Bjzs(&r?{MIvi?YdelXQJnWlIJTG=^iz*XYxY*uCsQmsRnp?O;{fLhkKm zjN=GOfX2f@NW$nT{FGt{%SDMs55=3T9HjlWK%tODtf6O{JRG8FizZ4og4ELb-0Ahc z`C(T7rI!O;#GQwsyl&Iz#`!1CtzIceQ!|2;D#)-n;%rVFS-?MsbRAsRoPgXZJSIF8 zGAK1j4^-V*d~}p|#4Y;YpAhuU)eQsBx~b_Z&64r(EiQYieBW+wA8GY3Ds5Z)1#d}g zZ{wgwGW|=-i6A$2H^~-ftA4dbd0Lq6<5mrN1pO(UeK^i_Pg`S)@sNBO<8_XEBVt&K zc@EiPA7t4ubE{WmYj0lK=^YN)ALySJZTGztyv8uh42A^e zHuaP8<~YS<)Gd$J9plP3EF;M`1ZhEs3*EMKpiXnxC*>8ma*%6#@J^Q&N)N27hP&dE zd(vEtk4QDtiO3CLm(n|ZE`p@NZ9swO7JV-y_jU6%HT89jQjPgY^Yh)V!nxhU&Z-Ku z{?3F)vg5k0KV6M=ni2k`SdQff+QrR@l*9bl>}^LtIj1t_`whE<=N7S4#*B~; zzZ00Quc15qHOAyR_-dQ1ugk)|l6R(o8A!2lr^dVQf*{R3WjD0D`P zS8_#B#LydRL<{wNnl3b_Shx$S=S<@2aJB)|g9Vg)kU^UgjeTe<(F9^t#@NGjYJXEf#W z@az?!%TF5@EYY2n4Lpy=SF>ron@4etHL6mT9ye;2Ck20fydP=)sW(b$j>So(QUe-! zdD+T{5-&~A$sF1lhk`+l;`*&Ao5)5F+ZX>LT30_W=ZW=F7ISMT!t zJKTJZ8h>rLyP{CGLoX4)Ita%qwNR55??VM$4|Zcg z2t;})_FOMVLn)EM>z9=4mQE46)%CIUU0ikLVi!swdalo&G2HXqG$^ zCi?sO{VuNmyc0}y8=Y*cv%)B?STNN;CCx6PprjNx{78KzUGPmVpVO3zejhlf)$3KJ z@@!%4SymZqmz6?^2&~C!&>1aO8l=R0VxiHY$xe`S`Ftb7uJHOrPZT@HdKn5LvCfoa z=4Iw_G62Z7jxr>Ihg;Z;bolEvtV2(lOzJkQ?viYy9pV>WWDC=&XxSHf3VS ze!y_-Mc5%Ujao`{Zi><>3dUXvv?0>w!UpwzQMl_38iq7?fQhfLxe}2QpkYjzJWvXR zEeyFRhb3f9xUg*H)#%*b&8BNbI>xLYoIFvn%FOUk&Nis0f2yDC*o!||(v8YXts8VZBQ zmHLR1HJN5PpSD-G2yTfo?$qhMkc!VR~~?fL9ThpFQ- z%l~8&4rEt$@37AN2xhK}l{pq!n_hyFO$`652i{3~u?_BYhxJ^@1^0S7q+QV1>JaA^ zk=*cE8{%ABSw**4ulPFJz;777$gr1pTe$yg932l=m_fw8m;wKXKNjwER`^|f;;`>t z_GLR59_-(O4|`PKKPQikRn{|T*+S&JMWN!ZV~UEFISOrG#b3~x^@&$q`%rCBE$aDF z1;lZ$P%F!%dun=4g6*VMz$Wr*k{tsF3@{^y^!>=KiG|?_fo%n&CBtNnC&FZ&|F8LW zz25kHh#6blh;fI{Y;K=JR%jxNLZPS~+7fzoIcXo)9?|luh%s^P?LdZR#6-AMGwe~$ zD_{uY>x6{zOB7g_tW2?g#{xlB%jFb{$Ry`#E#KAI9gt&&%lm3GhQ9rNKxkrVSBO&q z!^84C)QYE@qujK7`sW<|uuQ=uJ0>8;?6SnvApBsP_qp-b=i^)f zv`GQ%w2lbM4MvMaoT&D7cUSHvmZh(aa}P zn{ZPSz&F#gUF}6_Fz&d=?0^M#VaArm|$a_<6hff%$st z^lOc_I`d_@IVdSU9INM-OpQ6S{Qix#H2Z1H`Mfw#zw^(r&TQ z(Vmj&X)!ppW!%n5C|-xA#!!_0t&`GZ26P>2qdKbNxY@TqzkjmPA5@M&ohLzRKwx5^ zKd~}Q_R<(Oy@&n#`SsSusTWXeHoGLe)7@c@5knsH7=$t`J`R0-rGuZWh@GufA%_IU8%*)Qs%{1D?iJS z6a8Lh*T{QG<8mQFQwhQ07BMCG8)qGhS)eOUh<;NBe$Y~Oc5sf@3Jp#{!{Yc1>#Dmn zw?A5LYEDBQVy|q@W?1VhsXrLfKLq@2YkUQC!agFN_P-k*@wK1Qr5*eehs4aI~30 zUsjJdhfRL3E?(RA;^JH_43Ya7!QFjMg#EY z*a3=A)I_Sl5FD`Ci~uu`4QYb@W}DZU$Egf@(D)jFdkqMUgafg9AWpbYsQUl~n5LH@ z*!d$Wi2L}6(+-6Dj=}P1f54rmA9uaLZQCP>$II~Q=GbUSbM0SPp+JNHG=OuIHtk8- z#5Roq3UoLaGW)3F3AxH_0tm`dQzXrh#Q+PwXIS=$_avYkaCnP7KAf=$wm)=t%@cs! zttbvGL>A#F3viAbz9oOSEt3j93G}+;`vrl=tGkFBZ;M8Nj}_ z3{d1F<7e5-DekmdhuSo5wesl$ciigpd6zzC7M(Fu5Uohv5aN_|gtbwu@aoJ(_Wgu& zIC`l^czYYT02vq_6g2%ViF6ENvOk`N;L`5CC@3nYYZ)K((V0vR=XKpOXvp~qeR{yW z`1`mFWrruJoM!m_)TQ=}uatdOt&uFeB?dH2?Xf3t)vglIF_LhH_npk1p1>hvg7GU; z5V~rzWEp2q(<&B6eq%oj`EV4mA7qsbCWqb;RdZz0vWfQCi?gw}sf^pqa8V0bl1l(# zrf&YJso|^zpjbFb4sam}&G9l{j38+MBG1=61$PHMVTEpXN^E1x5lbq*SJPO`UwRKF!yFc>*V7 z9@T>U{wOLbvATDKgX95>_8{4=ZKJZzsr{p1_XdGxR<82O(=L>E1uatbi zB9y#1j1{y>8fb6bv45E>Jn@jVkjVnWox0D-FWoe$v9v3X18}gc=cgcHB2s=Adze5N zHfkyQ$|+wM%2bdLbS7~n$a%dvl!6;D8^0AOPdugp!BIZKa)*VROA_d;TDcNrW3D!Q zb?Y|Y;v%3{mPVTU;Uj!VrkSkSeo7m8sE?k`YEENQ-i@}NEn&!&bUB5b^DNNK9YAbs z9hNJ+Kiai$it>in1ahF2C3Q676Ywd1RAV5Y(%%LwkC#aJSq?2w=&D!9C3q zq7SwEKoFoyoyP#UaKnEt(taMr;NXkUFc>bny&NYHa(w9pz29O7KcV=^QiHo+AJB8Z zN_Q1JlKr@Lcm9W9u>4U374N?wIeh$1H0omQcQn?zwTYcP_Bc0kyz#j=((>63)!*pM zRVzCL0vLN&XDUo5)^kf@$z#BM_;;td(^r_dMrs1+%K`uSY7$k$T$X|} ztYJoSZIJeK0nV}=VZ14}$HST_txmyEva8?0`uOeu+pD+HZmog7bo&0ul4%5_Y0Xm5 zNxRaPHRs6P#29IDTt!uxgjZd2imaA0QmMM4Os=FZi*1g}c)6p?tUED5htI^yfR?+HUE3lm+y#I5bsq7TwkX90-W-p?W${jGS*>je5^s8=Mxd?tRhv@vmO@B`{P3WceeosT)M#a4gQig(S4OLnF)hG za<_8#ZWtX8sVyu*YXS$78BVIK)J;ME7!q17L%|fA7i2imr-5}Jb~fdG8a0CwMi-zL zDvoMCBT;yQ)A>OGZOQ^zasesjEV!5mIFgC^J z?=e7)*cCDi*q%e_6x5gc~N<5sE8 zgulInyPT@5aCK_fq{D)UsRVgGdA={=j0lgu;XHb>D3)xC2Co1YrR@$1jBar|8I`b4WDYclNaD5T+VqYBg=aZ(V?dku z>x=192w2gy0^RI{_^GkwcxT8Qluf@i8Eq0nw# z3RO${the*Kl9;A)m5;uvE|vNDrrVFCY%tCE3ax(Y0>2?UnFO)cynZu7gSIuXxV^Uy zzBR~ZY{Oc3DbC7F%dW))J^4hQ0h5s`!c}gG?q{ERo~5Ft!t^=^|JeNPK@+lf@hQBRw7F-M2$9 zUNQa0R!D|edU#?E<Y?^wcn>dxz#;fXLywTR+zcbwd=3>E!%cCI;na_)HDmrY((c1 z-=FRh@dY+{L_N8vv+B&D`OPVtOt%KG>6PcwQ?cm1xu}uG#wrHU-|^pDEUxkS+s&WH z6UinPrsyV(GD-`C{62rr2b(ve4+_~d+H!f&jY#e}83Iu$9R$Cj77Oy>C zA8(F~XaAMYy_~LgT|aMkx}UAN+-uS#O@mDy;xJ&T;&XQ0M7#x9;i<|!+kF0|nG0IJ zWTj%wF@^BdHc)5YHEvoFUx6hd85@M#2<}@j>K}ia-$3l4wpjQOKk52J-l0%pO_Wht z^)cK#mg<4}8wb6uw9h`Fz4M$A`u+w zOj;oPnxEszIlo6JViGyExjRfe-UZz|#Cr&2l}&Qzjq@_)ir95boNJl89CVcSBJwpt zBAO{dh@R;7y||9W8;j57Bc+QgUe|8#Zao`p{&<$m)i!r}y?y-DxcdqvOIF=58akK) z?VzX85#j~Q;2pR{C4Y@F1v%`YYD`&ombtk*K=5{d$OhsJIP&*j=I`eV^*Atx%)^_T zXN<6t4Ivf|!4CFiZG zR!So6`c!=Osnt$#m4r?(1Ctd92?;F|*ecWm4;2(aA1>3~8~v@xXsE!f--;{|ukrW) zyuv|)0N^M!-;xY=-ue15AaGw#^dJMTmjpcjI4~ zB?4N%2MMo0-6n-J%V6OLI2R5)nHHNerFny+stHwaGt4UxF%QfbhrDgk?f)ot$wmN}(vo(8r`&?o*Hm5)IgAstVEa|IyV|=7Ex03JUX+7jMH}V$EB(hcWA*mK zyZIZs3@X3xC!$2R`v*w(M;4SQ(rfxWHu!t1e9k+lciQ^XqP(0dd~Wysx;Z_%GH+s4 zOD0qSi9GqoY*)m26?D%Mtf1An^mOfviFqQH(w<>DTB7aD28*t56f48HtA?a5+fNDc zSY+zwBSwSTV@r5oPeI3Aq)K;MEj`zWLVw&@m)6Q`=8p~MWsFDq5ls*Dq0W_ry$u4ZJ*+%$<$1n;My8S2RtlLZklDRC@=|UmONA0yru-9OCp1 zGKSby%oZ83(k013qZPItU<*{FZ~;kmv`}o4oYkuh*9^-DZJVoSk8)yG!$4QPX)>%< zJf#)ba{@6>DVu>52r*!VS_S6-SwOsS3y7kzhnh9B!Nbupl)mo3JmAFKC8{xkonE0=OV#B-foG#zzfpyTu&q;_~kG8BJ z(7WfyY@GD1OwUBoPDIO)9YDd@a4lvQCH>5#LB_r{cIm~5RuOXf0z0<~n1>L$g@IHy zuOyhyRYzcjS^*G$M2h!i+e0*684dPdOHxDAY!Ew`GzRHdgs=`1-!Fgeh)DeK6_3iZK|8H)9;E3U4$okUr$8JIRHh$~1fR=0>{1fa+6(ezw_ zcRu_hPa76@J!UXo$IB{QdH!b3&Q|t5SF0OPO!f4=UxPPW<>3}*R9x*$uBOHzB9@7f zEv$~AGIh-ia4|KN%&qER%v(Uo>q{15b?FqdQmf=nDGr9kjTYm#Dlvkuq}wa?(^wH( z5;g0OCW$WOG#>S25c}>F#s;`a<0VzAX5@%Sr!wHkgLvv0X=a&1bB)CXB?kGLPk`Dn z1Vy2ij|jVtva$_{rZokiT&mJ6eBQ-a{%Gh%OpcAhUkSLVE*yb{RY5*QuM?=tnWYmS zEj_t$axMZ1jp-w8-KWenMN`Q5foscIBQDOnRF|~$z%U1@1j8eJ8YD7i%6}t4BQ9Px z?4pjMh-qps!i2~9C8j~3l5XgARXev!3YV5Q{!=WQyp(-3Gq`{HGk8H|aWpZrbU*Pv zv2buOF>z~V+{6-t*ZkPVLwo=@GT)DACe{EA;8P4)i3A`+*N}pbLT~~!cOrsghfYCP zvBOuoAZ?hfK|0PFP$HmKS3$+O_T8Wk#mlgT90}D&dm$|_pm{*TF&vrwxDTKQ5d?z~ z5_%lK4;?ja9rW=@m<1qeBZdwDR<%aic5Wafg4+Yv zxK{!H4r`8njD0@bJF6qu9J#P5le5h<#UVu)yKU1T_FYWkASMX%^H?+?p+o*A|K|t4 zE^?Xj&tNZO%Q=xo>FACI_xDe4CVp-P-yB@LJX~CyT&~Xl9=p7_1ugdj21c)^}2iY)CK9tCNc_FP6-CIk!aclJWU|UaY@<<=_*c$hMCIT>XB15H0O( zrj9+$2QyKxkxQexme$ncC!kpQ`#Uk?+{OO-e)8C?)uC#)BS;+YvAUbJ_&4_S>bk<> zndc{E$$6rCJNo3hJ$bV>I%Zs;b-^EFW{X3dP@0;mg?`FpI zRZSB_AJI)fX-vT!+Am>S25YYx6MjaT<*V>N zwT-*7ba(a&;9uV|*4ot3-`rj!yb|u=#X=>2-;Bk_ze1P70mGN#W|7<@%BF@xLiznl z%D};CmA*W1@ch((-Rk!KC!x28d_3v3t0mt$E@?Y9sPC>mxoV(zKZKN3YKI(jexy3q zDCCmzWA06GaD#0VT=yy)Y1k=S!%LHkiJexsav}?vhM?%9_sY$mjyY3&W5CwU|J&1c2sv7$*vw_L(X9yEA_P&1yG7uuekt_#SH|RVV zB+&ts;h-T8W;J}5j&K}1VriwKdu^~u;?Zz!jpJ8vvm=9t+XLbfHIU;u0w6cY4l<*1 zUTui)gWQi)`71 zvekMd2e+Kti!fv0W>{;Tj<~q3HYuK3GUz7^hElUIu9#t-D?@6apH2lelX5cF2u?3& zyST|O<2i*GI52=?;4I;K;kW(5E4)xGU^sT^4vlwIo3MEXXkD}%a;%Jdp@Al`*VbS* zg~C-sz&6Z%I3df**@r8*^ZO)#q8dxMmT%_CG^{;nVJ*&NZQr)xwPKEZky38yx&O=k zUN48t+uPmT+}YwI6!^uvOSW`-p|X8$*wftH-CB8rI0nU~fGA=5Bggyi$&@uSCkN@y z=LN~csqIRShWt-*2zpx!?`;Qkbd;$?`1nDf=B(W z>ZyZLvZH0hF>xq1Mx&H~H;bDVcuCQ`B3fC7D*b6EIv~#p+w8SHOp(sixkN34HOUiP$3-`gDpXgq$moEZs0cm4sSia<71RqFH8-Ak&#l`A z!@2ex>$`*c;sq^MPs&-|>7S;;7<+MyQx^3UwN&U@(u0r$4oc>pU+i=4q_a3BD?Xm6Z%h6Ow5{@2G)uAxXg^_GcDqW7t!s$@0<4R^(?#cU052e}^E{jEgcZ1Blh81)Y zlY{VjiX?f~&i^mRg6I_dsf-vRt<|;$MD*w6~+Th4tgQM8HU<`~kznOU0Y)Vg_PZ6GrhZUzi z435?E1z|#583LrUc~~SQ1Bc5w@?r~ybEhRhf-z8HgN7oIHrFy?Xg5@Y6P@ByK*xy`0!8wLtMy>k9P3pn1BhX*we%Y1hzkt$L_?a%NY)tMRRQHcGL~BY z?q7af(?LOr1Ro7*P-SzG5^|h_N)t{~UUE*fShs`)eQkC*ShaTxN zxuHQrF>VB?brQRItnX4dj1``$0f?EAk@ujYEcCO`9g93KsVW&2bX$^RtF zrfwcsc3cH-f6Vi}@4o4n1>V+0Q~$6j2;L93YSbI_zi_?_Vt5)^S$kXaW7D?|YZ!PP zuf*5sc|Q*!8AMIq_5B;XnQ(#ibL#7N^~~6|O8^!3VQMTxs=^F~hU2p>gfZLDR*BABNy^lrV&u{-AUQ8%mh+9nKyLI zG=c?U+c2^P9dHJ8AYms!fYK!OHeO35Dq^Zz%SK*ns%J4K$>~&9EAt@4QD9M5ZjLMG zF59ha%8@mm7j@@3E_!FT)e*ER6B(RN=kVlf@$<&?KN8&bysVbC?{;`NI^M5vY25Zm z_ucm7ty6}|X%Ol5>h?ANc=`MO^XT8hd-du*x*wdqZGW98x;q*gL&~##@_lt-756g_ z7#@TWV|c?@z|0d(j02fP zcqVD@Yg!b%eEzuH+RoVfHuiQuGnCBDMnrPM{FeyCx5^Tt1_deKEfgJr2|@~hQ}BoQ z6Mzv=_*MfJW^KlM(f09b!i7bbP^&o0&Ir{Ppd z^oAb-!-Z#oeuR?MO92D)Q2AMyjtLctCwkLa$V4#M zE-`j*IRwHafD7tz5>grjEmW%WP??xGN13j_yRmWWgxhO(7e7#?s(Un2mdgo3v-a7_ z`ucviw{qvsXn0Jl+8*!r#)C)q9z8lZ*xC38Z*!GKp_XBUIg~hRh705ugqd6ba5gO* znnF(9n=i)O6^IPy(}i*xFe0Bxw_S2l6@}q!2wB`L0E!CptBC~)8iq65Xr7;^7!9Cq z$L>%9V@$}BXw7-#8j}dKK_npe=1 z$KzqIcd+y5@bKZc5B`Bn#kvwQOmQ|Ocnse8DnW(ESxSETiIfn^IQCy2B24HYpPDh1RKec zWGR-tB5RDM=VRWNGE`Jo2*zWpb`%?)<=M29X&1~5aSBNBW=V_{Es}L9K9x0=Taj7g zl;n&FwgRX)PXk7YT`rrMdPlOj6O4!Ge-6CqsZB*|YBD zhE<`wv>@3oR%y<>R269}Eq9_*j#Q<3MlxN9`f(vKSyyT^qI+g3UZ&j@TyT&V7>qVk zmid>w*|u+iOO_`tya1VQtMvkEUEIylGnL6>hG_Q_Q`|!sQaWl9QF2w zh|Q&!-sFqPl3KB86ZP z^(;y@<^ZMAu*R2%^9uGbRF^D+o&9*Q5bmyH7scU4o&`N1>(9Lh7WI96w)l{1s61cavZ zOR}||o8zphIJDXe?i$;KNPDPc3YIqH0O+vc9A$DW-rcyhv7ySearpr$v%Ge7t8g*u z(KIz0uTE!uGWzbj_5J<*xWZ zfwlk{n>WV9P?cH@gIVWJd$M5Is!?!o5)`r1&~sS>!WSz7Wt+9nmkog6M&0jg=o1BK zVqj}1)lB>l>H&P=V?f~wLj!p7x$YqxG*yS6oGEO2vPZ#5X!`2yYUldo4sE5iV> zsoNV5_l88KgZm$m%;o*NrYxg;u^L@K37tBAO{Hf^G0CR&4@cLZp`K+6$|N(IdY5iMGb&H%Nt$K0k;u5>w$ zxvUrsL?nt9?7W*<&hfTvQqQJ*0PPkj__NB)TsaM3m6fM-48?mZ<-DfgjI*t5Ji{ha zzL|oJQ8>1OBHgw{6F#0%tcoS!brur&f*%~uNZtYmILo4vflwEMi9!&7C2Mmt!9r=3 z<(n0U%s4q|N=qA3D6pZ%|8JsIrMyGVPQ4Z-e25eOJiG`frtKn=>a z%m7?w==DCR1ORyTh?rbO(-l}FDB6tyz|}Fq3}X>S6B+C}i42_&Fj`48sC_za2JjYa zE|60zih8xtvAgU~2UOI+0Lz(wdTnZivyo}yWmFPDXr1$MAe?Y%YqnRkT3y@*XETCm z$(5~}0~K2(P^+Bh1NhVmDHc#?Ci1gJrl{-J-`;xLW8vf}Z+hDwDn04$Rln=^_xnSw z_qabk9`5z}qody7;4zWugBO?q@9+*MPK!BfG2*ubSPRYyXB>b(n#c3d)w%QeOiN-D z@bZKK(7pmpYRPeeWWX^2(&DLkAr6pJ0}SVx8VJ!1;?M^9CO+M~y|KBrx$E~Nl9V`4 z34^VjFT2NGl4Uv?^}5GBl583e$D`4xw=?*5=l;hJ*G@7`@4g6`Oa^-grzL`p;dd_= zjW|mpaN&6rq1WT|Ja;+e4=kCO(85-|0@8i%8Su135|ye*By)Lp^TE9vH{RR!D@vm6 zPBhabNBMc_xZ5WyD!u)FmppuvRh4mXwBPHEw-0viKmO>cO#iRVy%B)R$g zWtz%fB(;`Aq-!7CSiCy;VsJ3n-C4Y`d-=WX&p#jB+f`?#z5eLU~Bi_^5)iigU`Pi zT)ns5J=)s~e|kJR8uo}n zF72{kL=NQeCdOaRdGkEac}T8YUAd*cCbL={E9>jxt*g1YrE6EW*0+{!)hZizs?C&T zbCV?Ku5aGmsAT-jrzlUzPw!Oje*5|5Bg&M~58%P*^@%P*V-z`Aco4KojlLfTbg6zT zvrz8@V3hT9toONaA`f(kE zIu*~=@mFPP(X~8$bZviLX*s*JG!!T82BgwHLqK(Fb|ty6bnDi&m6Z=~-DRo;c5Ae@ zO13$f^lqg>H?xl8_+FS2`l{7$zx{OWXfmBMbUdg`ig6YMZn}eyzl=)+o1iQ1!T}tK z8^6Zd8D=!|YSGt^--SELjgf&x4GonLe6VgO3vq!fgwd>_e3(6^RBFa^~L)74a=9Gt#9t$-ndh% z?UB1C>BeTYS`)H_r#U(!UtX&)H%_GD@+dMvqH3UE6TJ|!g(x+P7MuZ38;0K>R&vmy z^aHe|ADjm5No3Tn1OMV8c$1_{s|Ns9LyO$hb;d$L zs2#`{97g{cC|cFMoZ+s14?^ZP+Xan_=Ms4agd-wGw}2KcmJC$Gln5M;sRdxOBdG%U z-%kTGi2{IpeLWY&Vu}l76X=q1iWb8%u*h~REsR)4bB`lLcPhBbn z6jE7mBlXkgCnGa4V47Tp!RrJXCE*MH5N|+aa|t^s5PTLIv|0p+)Lk_Ff~yS|m3I8Z zqh4t_wKlglw?Hbt-zN9qZmHzjN-}wC_{NQE$!l9HAAa=Vj)@e;Rj9q~?cI&-%^JCZ z%IKO;o#MB&QI*QhmtW5w@t&!}A#e*F29U<2`or`-a*Keim=}2J7&=vlmVkF-X&GE4f>re=zmRp($V1b$h2mk zU_h^T4N5UMD(Mz_)zpOCuhLD}eeshWai!bb;ne}2Aya77W1u?1qPX0tRcnF7*>tJg zRLthjPZuwJ0&q$_!4oLvgR9(h`g}1uS;{9$iMlKpA}2UlUQMjdWLFENa!-j}E&#>! za$O>yE_{+M6_-niVwpQxDiu#;v#Vpl;K63dk7odA;$c^S*B4NFt*zcRz}adu8A+1c zrIB_TwC)RLsgV3t{KrS8`MJ3Ta;V^Kax7&b=Wwpy_-yNgrL7O9$f?XLQ|~9Qs;`rR zfog?>DoOl%r&6VBB#L_anYOmt7dzB&crbb|si4GbQo1PYc>46_OPCXE=Qt7yjbj6We1Bd zz1oywWLjP>p)`$rF`vkmn({q(It}92p-hEIZh0CdWXpx;%4{A`%%<~*o~SPYb@@Dz zZLBzhSIMh3qmH&2SKcb7%nNyjc^zNOI*ntY-G;IYhmIkI2!9YgTi?7v5|>6 z%eyc~Tq0diNQWk-2MTd3cZKOYaQWuVWNxtaHt}e;LIO>9tJUgerCQUSI>l*e-nmiZ zSHm}6JL1YT0)-KZ00n0|5#(YkJ=6l8MggrvXx2#iP6g25W)k^wg`1Cky5lW?ln=4{ zqEMxg+F^#xj1C(N@HxR!4bi|Ex3ozj15ei`35c8~nED_yLO(1~LflKKKolE9NQFKD zR20B7qfd+raN41`*lUUl0B#+S*Wgjbo0th zgZ}o$8>F0RbC)P}cduI6-mSH?WpsS`&fU!#Rr_M$X!T5PF>6ACa2&l}6>HpOo6w1^ z?cw%g{e6ybJTxRQdbMhwRBf_0SouK%;g>x9itlqEQ11uPKBdE z#UC^R(92*PQnojm`BGnJz~~IfyPY0`e8kXx%&we}x5|dcMV2_LTbh|r1Jt-nGi1{G z46XbLrHYdD0gFil|X$s8%MTv#KAG2bTDD9jN| zW|boCD{`0Lzd5^P-QL~Z-PqWyR4OFJTd9yojoR61(baaYS9F;#r;a3(TpOm9128Jl zr5&J@8h>XS8b{=`g$ilg>?T(O{HRPv#wLC~>){>~82kY|tD=P@cp#$npl z4ytj$PT78(qyt2)cAibGfv_=TRJLgvEPV8iw1-1Jix2{vU1K!S_5n)m0_c%2G_Afi zQ;1gked;iPXd=o^6c9|0ArXuLu>?Ds;6_vF9v~fDUQR@SnRGqs6F^foo63#>%jc&f z?D}jpn6yjFXC9hNALNKjYe^Cg*snq%3(`R=l(&*(+q?Y1 z($rGlM&-_Kb@L8!X>C?(|eU+o&2lWzY(;Qsf2jcXu=^JW;iy6pEw*Y zHXY0xBLfEBA`W3ba5$50qGg)2y2yqPLHNXLy$>aFBbKigW-S>+ROQzg=OC;bu zJNL>0N%zJb(v{@I6p`yP>D82cKNpxKrY)%kUneEIB;#9Q3Y#jMyVY8TM4V`T&BY)4 zCimZx>CxssG9mm#1Dq0wY&y6?r!*qJ#!q=foHo1vv`92yer+z`9r7j(-7=@3Z*bIkb#`_tM`8p-BrnOe%<4z=Z*J4IJ9kL9>7W|Ck|D|7 z8eOaDc>JmVW%{?c?=}bOmA%96keNWe00d{khSO);|(}> zubKbwwz(-L{!QBJ{=nXuy|z-tahz}UPw-C&zT`nlNSVlFI*ZA~Op;C(Cdq7>kV(>H zvJnyzDI_nY5elUb1ueAHrA86-Mfz$lb-RMfb-|@j_w`l_!u3J$!87f>ZYX-|RlMpa zG@YC|b4~`noSgZc-|u(2Gb9%{pA)2?7m%O>CtKIdA% zceW?Q#d1Ycs{$=)dk0(Ft1er_GBE7q_`L)1(MMl9JUTo&Qi#jt7nhGtj*gD@7edWI z;PDH8QcU4I{x}PH)W!A;^J{`x$8S;>a1D8RR?&W4adY^AP8~ns`&D86!2|@qmT!RR zC4klp6LP}12Hjo%6JqjZmw4T3c?S2I9j6^D-*FezE_3go$95z79Vut%S*k6inYRD5 z_Fot`_Yhf~Bew6Y?cMEFwPRXk-dUMyt1IM}ZfnX$A|fyG7tL3mdFGWbUh`~(_n$w! zd>A9bik*CxtbO+B;~$-@gai=b{Jsb*r4gGQkZX1YrJZ4_8Hz8~NS(J`lXws~60Y<6P*p z?&9eu%q6b&QR4k)l|mp~>k4`Q)uP1NpJDn>FQ30w32Tix0G7PgAid?!3K!YX*~$6D zb&H9BlxUR@SCl|Ps_R85b!Ubym1}W|9@HXZTB%uq7Ed+iZuyJF^yI@^E7K{F&PrG7 zl+DgmBNOlo#9vO^s#e7U#hSEa^3M}BJ$2>EYlokGb+mt!{cK$HCP`A1OZ#7a{`7f_ zmS#P|BUb17LB|<|%4rUPdX(3>Le_2}N>gFX)0pxf#87lFkQP1&}@c}4n?%eoC1ZbQzf2a3$SW=r7&CrDbF}w&RFk9r7(ix zFfAfg=VYI0v65!h_*jLV8<=c8J%T}J5^0HJgUWIwh)p&!94dCyZMo>j5Zbm8EYE6-dZyyp3MW8-KeCd*mov(G>8U;g~lht4xHiE79hwW6i& zoEcdZB2Y6TJ@4p>Ixoo0YI24HxN4ZUJZf^O!U-WK)$|m5b9_1m*py zs{?g`EQ^?hMSv{Jh-%hJ)nr9o>_TKo1bD0muI^oCMqz||W51U7@QLMCD}i}27go87 z;_1Q6d1`DkUyZK!W{ZweF=?ikoD}*_NbLu;h97=G3@tZnYTnV;yIzUS_5vkgAzn>R z%34w10Aa1$Pxa>MHqYtH4W_TH^PJ77QjrbUdcL7JuMLd=W}UKJvKIx~FSN5--fqc5 zT9{YkU{TNcwaUQR9Gzoiy8XuSXR@H&`rOkGtq?bqt<~+V?vitmPLml^clF?4s;bpo zvz3mQ98;=49jKB>7o9$$b9F*Oxy2{F|L~E%Z_lYhg0(p&p0BfUdGZ zNUbIds!4a+vKKHcq;jI!mcvvAVr8Mgv5?}34k08VG)W=v-RxCkfFS9$b-n~(B%bD& zF9io_(HAMu4EQ8EkjtQ!IX{>xzz1~;@nv_Mq9`bKBA({mBiKo>9PMK}f+9Ym~xieSjHpr&}K(E}^3Q7n48zq@Ib z7rM<7cmXg4Y-Vk04JcJ1v9K$h2;(5?$beQ^cMz8tJ+RzHuv=O0ZjO0ov@j_FoCTI< z>oEtGiTPg9FVMlsVoCKur1T!Ka{zUupV# z1vv(wnhL7fWrmYdv6x2n^4W~Dh)r5sOZD<5J1-a@XdZaAyh{74wM8{wrREq;$X5&V z8VW+*iH?Fs_j<)d4BN>K?+qduy7T-a)6?6lJH*X$mv|2By2hoRnj>S9I%V0aP%KGQ zaonfrG-Xs|IrG8sl`F?r9(~}oqod0txcBQzmo9z!;g`GT+3;DCn4D2#2STgu)EX8S zK~l(QsWq13(mH5bj~~ExF}k}ASaVA)&hd8NQIQ@ z2r$%CL}CO(5i_|KmE+lpptLl-AofK?SpbScCRa3ASu~6gP^iYs>mD}KsYN;oq_ses zv{~_JNzyAgmP=-MhEKy}vk1GJ)sKtS>}bdtU?Ys$Ul+LbvY08EaZfKVx+&qi3vt8^knV41agy>2mVWDfA!Y3L3^Zk8=ns!7HkHiP7z>9N*c=+JC*F!a=} zUreEm`5Q&Zd-wU5Q*L!VP>A93!Br9+PJZhqz23xeR5d5m3lWJg$BQ1N7LP<*qgt_W z`P<{;<16>S_T3?InY(=H(&bB^fBE`3#B}y>kHlIJOa_vEVZ4SP(PgW-cAnbOE zIUw(I+gS5s4e$Y3|J9DM;Di5a1m!xy0r%vhTPX+xPFwbuYrvY@)jWda&*wIu^#Q^B zSqH(>)APVA=E!T&E%7b7{}X2w^6qgM^9YA<{bEW4aH9x%@BCAyf!(c@=XM`lA#p0M zt#Wnw-mY!iD$A7xL6j((mTOI}9Bq}xC!_u2;}3|KPAkvMk5+D!nAU$5qBiftBK{P= zmpaw&c6oF0PZ!hfHZfbSu6CW=-uBMcODj7)o|e>{nlmllG$mFnzZL(M<04e;@bDz| z{FQHyAAOgk9UzY3Zk+gsBu&%*Yjb}wH;b4aeC`R79(9MjmaC5DtWGC8cDbyns@jnv z>2jGCO>1bqm7!>^P%9n9DEEPmq^Cb2qWh%6~~r ze*6wT{B``}#dPaK?!ZL037fJuFR|uQwJzB#YpMsl))VS1D_W*x)}v9XTsD+SoM`ET z51vnwJUirv?(^44YRlalCZ+{B0AH)d;Cd-Z_;q|z1=mTt-74krTU6AT-`vD+GdHZ` zDqI2A!$vDLPU6?ONyPN@F0n7|KD4{KI+;}M-jLlJc38<)`5cMDv^ZW$7dTU7Et)P5 zGx3(;j!gS8pLhS2*A7o!AluJ<`Ou9MlXwS%!K97rqB24%f?vU}0Ne=Ii9F+pJ0<)U zLIGzH>H!(Qis7J=f=e`t>mfO@WHo|c<0cW4x;@<@v+tg>ynE|&OEcZ&>2%e!a$1hc z9YoCGP%=e{CX%wuxLl?by+Ec+$L$1=c9TD8F(yoJ_P306Z; z?hQkZFG5ZgMu0x>A{-xqFp`BL(+0*$mYa;nsk{;jlBT^n<(i4yo0*S^n^iT{8p$O+ zkIg{}!FUDhay$f#Dy3*pDFUfM5(}QFf6WtJo9)YfoRS+LcyAvga(AVcZ1}M0-h9!M z$4w$8``#I+x;L5GQ&(3e)eHOziNKs%2iA0wQ>S~jAmlooIwwk&WxbHOkS-OEuRQRU z9)|C>;{K)2zHxU9d+t19(yH+;EeSp+5+KoU8My$Ll+Ft%g?kb2a$~$?Xxw_v=qkuA z4IxCWk}Y#xqdW4lCAB413*AsnlyeKVpbv8kxpumNMZ2o>#-)i+rsD&)*7N9HJ?iAE zk;Jmab!BY`gf*?u&6qa$xHU)$qlqlfC{+%2)2_fJQH=pznU3^@u&rjg!Ld}+Ql`

H^Y;Rp4E+{1Fz=Z=oXAUKCShol-y~JOL6EQvdEt7!nuGs!7FMLR* zOc&4Nf&wZ6dju6331&*^MiX#pRWKusKv|GN%|*nqaS zm_w08X{3366q9P^W}%h(6xg<9#w3YHGX*$fl%p^M_Qu+1#3Nv%Xu_uDCQv1e%Yh0)vGnXS*;;e9zCN+T)+EudS0U$+61Y1qh=A*PT+ zr3`?|fMsCL4|R@$NClAOp>PSF;mIWc{8|w0Zd03u+Vo^#dc`_0r~*EqS3$i9X`$K# zC>ALjMj7S^Ip`7qi30Bpis%@w$iOuX8;JLS;HEsGfq)3ZM19<VErZ$)7I0^5kE^JCO3#+N&>{)lmpuju8?;kFio4L zFB}|Pkj(l4|LVckv|qdb{!ByPNonOZErU^6iPF(%tVhn9?>g~ zfoOFsG+Rq43~j?m_PAItz33EdyU`smOG&PqAU)?cmJNMbcMMaT>#!EnoJp4Laktr{ zTD?3_yO)!5GQ@IUm=ijrZpDcgTDCOk1C%58>dZ`P(985olW0~OkfPXVY58W?$!qdtOZ889*lT;sRB2K+aQ z?4R)(AR^jv)9O65?H+8OZb9#chd)RZ_5SMKOIv#vSa#2zUL>j_;l1_yANYa^9~~wd zmtTAS;+t>0_tEM%v5P97cZAH4ncm*0G}`wtS+zn*`#5BS~=nSk$*2e^kHbCaN4e32wR zAqgzVF5&OLbdiXOq_iM`Di_~=_MOL8TrsKlAAfP+IoVHUPrjJG|Is%ey}k3lnEo#Q z>G_$yXYX8J+*s>4&UZb3f`39dZ}Q?0VwTBaGCLPHGiN4~OlF43J(HOGJ%ofr3dx&g zQz$HpEIlo3v1@Brxb31-0#IxAjs5K}AsUne=Ke=k(N8t@vp= z$xP;wY(IUT-#(Y$Y<@gFaK!0MIll4jZ*OdD99UkzevDLb$F_HOHc1AH%RA@JuV38W zCNdpczxZP!(_ge)=I60!^LO&?z1x5M?d6aEFVoBNzb?~(?=7z%UtT_bfCNsLuOB#e zeB<)=2FV@wjU&5To8Q^kzJ2T5i323{*H3@^<7<~UeoU&l-v!!hzjOcm=h3a5olicw zzW#cW$}cW5S{3(6SRuR&%>Z5+-{a>eamVlkfyJmR2rOm}!=YS5aP5i9Wde9@_@W8C zfK^u;Pw|$>wEWKTkB>WvEy)yKGJWpYw>PdGBjwV@WfFL=AOFtwt#kbon;RS7I`-p> zf4p|=#~Wuy<3Qkp_uao!w{Bkh*7hgYH(rBG;UEm2d6X7AQH$q(FMn%e`Sgvv=Kk^r z@Be&j`{F0RBqh_U<+Pj!d>+6J!0iK1t;80=)`AbFjTc0p^St0g0tkTMLBiwgJC9WW z?RYg7_piD=j1U3VfGQkTP_1I#dG;>AVHJ2d<6wb)XMo`T$_hN;`{Q-JWa)K>?|+E- z*>z%mh*kuksZ}`e&A?$G=0(-{ERZN?=NTR#48TWLeE_=Z0%8l8twd(x0aaAJaPaz^ zZI3=@KEBGt6IHj*#a3rKCLTz3823*fZ1UB&Q>Fvo`azI)^Zcka@)^-I@|EuXxqS?Or(3(W27KO%Qly?Ol`uOyS+*8^SM zMN@}0OBz>-6GKK^5!KaXx?S|vBzH18;O8Zt<7Iy21608j3ZSVG6BV+o(ooHwImx>1 zDLrp;qoyvff(KU76v~H_YnC`)61!QkIbeM?E!&1evlz!XHA22_-B%K0nn z$1i=dv3&IE)iN_-zI~CByT@RwN^G@}(Ez^Uch}j_luibl!u*?&>5D7h z{K88e_39nH7mv^KqLRV8AAe`#$Pv=PyS#DyJIj|hzO}J_{f`&7FK%zCgYup8%jb8O z8)T|e$Nf8ZF z1qIy}L<}T|8L%NB$^(2uLa-97N70JIF96xJKMt{uXr-Eq0EqEGN>|cg;gSGh4AG}Q zyhC>_Ozn@61EWJp0h@=2+6XAwkmgJ;Fe2AWbjUm8d8pY?YCx6sq(!e}nr% z4_SQ=JD@6&ek`v6#5i9n6CZf{4Ed0#sEhmDS)zJ{eu4s?nQh`+x7d4 zR{7oezyAGie}AbYgs(o;iR2mhHc{zYm#^<$TR*p1Stlb=c6KkF*jQgbLRv2`Un3(= zGA>QOwY9T(^v2bUZd-*kxf$Kgy}O@mKikUm;oO;f?lufAgLZt#*Hj@f?$T^q=9#RiCpBQPVwTdNsd{L!NTJHs6H+!UnhrC0f^ z8L@b}%Zw_YOD3FCL{!jW2zGzy6J6wDi15nZ8ZBdB5@TcP^7# zrmP=7(oe?ORBHXi`SZJ5JLi_kkb;d};?1C(Zcetg^biyXWrhJ*Sp? zZ~v)}P8~c*ggSHP?1htuPWIk=annE;Kn!>=AJXHjdcDqy@BRXw+3#jRrxEhr-`C@; zVilP8flvkf&c+1*%|_bU=9wKiKYKixiEFmO=N!5M-@|y#r)9qxvDw1Ka36EVKke0zvZfhTZ2KS7EUkPu{70sH)C<3u*x?+Sor4Oom9JT zvYMOCPFdc*w0Zm+`%-b9t>?0e(&f)dySKM?t~jX(ch2o}bSA2+C)gi;-~Z(h-DNMG zyL)Hn&fXu7JX^=@-~Z7^2hW}+h0|%mg$sw0AN}hs;Q4L~pGl!x!)qrMmwQkM1`HK8&2utsyeLNAkD>Sv2asqumD z%i(V>zWZinBIyRntuPNv=l1opBU&}E{4 zzP?FDnUGQ7U9n_v>ToE_nnfFwJ>*8x;O_3FbIa%NbhJ<`?K;8#jP&rf;|F%{?%ljO zSi86VY{4{>>CC~82&ZN?5ssezf8X5e;Kg~s^WQUo?mneY%ee+Us0f&r#vh{9vlM={vW#&Qo_Lx1xUC zK2ZAk@0zjBI=Nl_&2!tgzIykm$-LilTp}`^Iz>!!WIE`CO(zc#oBl5o;f=|(GIr%7 z@4MAWtyU{6GFCbEzV7~VXC56|$HarZaYYf?5=B$0YcQ}f zgS=*0g_d^Z%ALL2wp^Rs@w?mH^5(C;A9D*Q?rv?7==|PyFMa$}x%A%5r5Pj)cVr@A z)1gBrFNlrTAk+LauU7DCcwYL7|7E-=K`KBR2Ji%A<$Zkd3(j`ngV|f&FTQD+Y@xS& z{Ofb6y29s5lx^CU<&xE5W?&5lgNf_b;MQT4wgz|h)}mv6`TP%l=eH}j{kL!LZEXea z9(dXAu9E{L=RPasLHO4 znz3A#EnC(^&UXs#me$e79sk>j`SyXGwL3(na`a2PUw_6WQq7$@IIH9y$#miL zSrU++Ji7m%WYTha3@>8*tPmMzlNrYYh5{T`D>XbxBHn1_k^y`co{IHYtTLXa{qU^5 zq6seG9^e^NAmfHLfQ;v21@HnE=R$ZzUOa3!viQ0Pf8pI%9|JyZe3&x0T+X0v)3h^0 zAz8KtwN@=d+k-)?tflo%C!{lL_jZ>1Lx29j#@){3?%rM~a&P;4PrF3;=%6E$CVZA00YirXazMeSk<Gj@dz!=?(z5saK0VM=;%Fps2d;QKoqy?aFhDh^Q(OR?Cv7cB?0j z$LP$J7OF!Fi&jldkZTq!XU>ejxs+oHElVp@^KH+dZI?q*6!)1pKZT&Gp~q zvXkRGoyoOnAQYbnc0D-;YV4#R&N7uk%>CK>{pOS;OHQo3S?dg@|a z#NxP1ex6L8Ai!Lk^k%jsv?IOd+EHkXoFAS{4qXhyqnh0)2O#>1IH)RUUXG zQ#vVT;qUvh0kDgyf{SBm6snjs7|9;ToznumUKc~79E)+7reU+>{Q6Y#17;<}7c>cg z7>}|Hr-DaI1c8kp9%q5R-*h1m2fAr+G~&=wKrg|yumFfl|K zAVlEM?$-8&g8ejQ1X$EcOoPeMepiW|{5Z zv(DeMr%zru>sWR6=r8ua!{H&E>Ych#jfz0Nj+_l8Ake6K>K%xva~O7=jeNo#hs*(} z>lBYc9YFwD7I|}A0r~;S&D!8Z$H~u_HObV=6ujlI7kzA;?brLU;i0SaT<#SYB$!-4hC%5ku z3Z$MR?E+7^G^^%_O-=~z1WOmr&iYhH%Ow%(%!Oa{9?RqtDpe(}<|lJyNWEq<8=Y&_ z8bdqUphI&_YpKOF)J8TmSE$WJ#Yzx~M(%LK7AyXg421f_Y$L{6QYk_vZwrH>-rA=l z&I7^jl4Y_hk>o(619SQEKEF{^2ZcVz=~xjIbrNdGjjjiWmrT83n&~cYrsZjQ(#Z5^ zLoF+Szrqa}Z7C15`?RembJ4jpvt+Nro1|qi!rFA!S7BEY4Kc!}I`KGC*%+IVN}itL z17b^c-(rQ1r#$hZ-mL@>SGZ|N6q-}DGuPy^fVC7w=DoZk%7r|cmfonw>zP_nqWbAn zJvx`c^LT4y%3g4iR*tS-H8@(8a*|C|;(WYL5v}S9tF}9gp4RnH;P&!4+f=f5cE0nY zy*stR?R$I6@BEWYM56Z`m7E6f(`TGu>Cj0MdmntzJV1)3L#f9y&6l+VGOFjWrK3}8 zjyq9JN1HmlqUoVQ6Y>~s7o$h>OsE!3*MbPvCUD#7@?n++(6rlyD&#!Et~MAo3f*GR zP6NThWKaeWmRneKF(H>9gJBp^ig5%UX68|LG39w2*2V}?9n6~=pr$d&>z(Ex?*R~? zYCvWJph+>+S~{vRs9Ezs*Cy{*GcI^)wN)^5HE1*G0-CgELCzzQpExq*TRwzjrtAw3 zL!Ep8fnhowO_!SmCNyw&IzTzYK-W5u<$3oYs%t*bE<}d=pI zl?;h96wapC8|z6vCykVPDa&$gJsM&tW2{2d{)ifkC~hR z+=-daoILFmP~CS*_!sfvKSik3_TfLyf45AfZcfRKvI=K#l#)}a#@7$5r%G3fPF*)} z4JW#u?&xbwc5}vvK0$hF^I zzJ2$Px9{Ej`g6uH?RR8)Xww-|Hj&!SiM$UTJ$iw>Jb3a$1OMk0cw1z;dPvOi@i;GW z9BnFmZXX%@&6#Yf8|URhiR5S8v;>dLJ%t2z+d;gc|m3V7piZ^;UV=~z&*C>j_&of#%R~vuR6H)$m2*Sd zV7q*8dHsBrEp|Ch;Ko{B@1)bwXltyGHLbOG@Ak!C-oAPJ_U+}TTp~C!ogyO5Tq2d+ z+^I9wDHxQ{|6PO^uU#43Q0W5!{?(*)R9Q}it$;cSY5Fuw-xJgQzG z7(>uYUM;{Eb>3i0RaB$*hxiMo2LZCD2VOWNPz@psLKGM&36~HI90uHh*?S2`y=DNb z0NJ>L6`ylJ#5o`c-y$O9g7EoPF(V2z*#$>kcLWi@IXE1K2k<|1nWiY7 z6O+kGkslg$)#w^qnY6BV+J(YcXY{)}moIKy|KqJaQppjXBhx9TBZb7=PT$;FC-^>i zmbi4%DVPpjIC|*x<94Q4TadwKCm0b?BNuhj8?OBDNz`V$}!p; zg7vpYfz&vithNRt7f{Pl>U^=lq=LG{#kF`#PbK`cN%;`!SJIskM}q`|Vo_LY)eRY} zSjmH67tJnZ2)OnQFo0$Q6?kD|x%}T4k-4oE?y8r6{&U z7h`q`syNe9p>u&KpWtP32sP4^OhJGw8Lh=4`FUni7J%`PuI1SvKU@@=A(gVzDVmk& zm6?+dF!dN>_--dvlF_QzN70 z2ecq$i#%s4VrfXF&TWl#qEUNNXt%enT;900d;5oWb0STN) z{7qgvO_wv5j*>y(zd3aJpJZ~?A*{HwC``L6N)3$_up>B_MK_Sof;JY^jL?jv8l5Dfi|s73 zQ0-b5ZWe3}e1cJx5po@L(ar+FiZ+gh;%McdxF9a&eLTuMsM?5w-i@2E6gU)3z?YnN z^DroYTcYOUfv|$fG#+>bShUaZX88T-AO$lK~d84FH*jM=|nCfrd4Jk}D}-)+$V);^h_hv@k$6 z4m8B*)KlX9OUz>5a6=UROQAXseGL%AU?sEK4-Jz(RH$G-9q5JYA_7tjX!lm6BQ>8iJ^h5MG0$cZ{jdz% z1-SMvCI`{J$Kd_bX1NG~YEIp~yqc;Ot(EDjE9HZyG6cgk-1XFIkuLaal|Vl+Xw36w zzTzv5tVSSLta432>Mf4-WLoZ3MHa5IzvoVltyFq|zWP!!eevD*UmG9%E5mj#96idD z9u-4YheK7>3PYafq+&KzJinRT+$QNPw{97{eQRfDcYEjN&Aq*w-*~P|PTK&f-kc@@ zVv|$D9VFG>qo#qQP5{3DiSbM>9x_jl3OU=g+Df&f_h)4T;aofos9lCCF}Y#R=IG4f zDz9jIci@VL-K;IvXvzu!dEVyRF?J}{G$Gg54wH8ZRWUmZ0EN^zDv|SX-8E!VA-%*E zFcK3BOEypwbX#Gva$8jSRx_yuSi99NNJGmFXmQ=-QR5^g5x3ICPEe$?nO1yufZY+s z8qbvKfD**02gDSrPFY<>WuYl07H#rb+7=0(dfh;~PshgP^clT$MzD-N)2(xznee0dceF zo2W$$I!Z)xWFlka9uJNSTRa6UfDi!i_}SU!1Ht!jHQ@!203L6gZJObMLr(*r#eEWZ zNZ|1SzQk*KtzvQm| zB~z2NTRSHC*1bmA!j=FHRvpYqp%#ZfA*0Bw9M{s6{pHYaZd|?km%o@4XPOz( z%zah)i>(c`%+Ph^#3fS8k+Nxb>(covH*a4egP1noc`=Smv$5aK7)v6O6Dc_|-B;>2 zhu+*I%>RP!e0cHZ`LCCWB+2=UV^h6UGE`?0ui>g$cEOVE?Gu--tRJ{`jij!)x%>OQ z-9I`meTGc4vgxdou)>MDe?eq&DmkZky0P#7GkX8$W%|w4tHh?9QgZI-oRVQx36D1uuRINKm7SmdtW=}IPPnMir` z&?e&3=+JwwQzmZ^4@uxtSXjXfUlmW0@ZwF7z~?83m*p*x>BiL?Vx7y@X^u8Zc1Bj6 zf{9iXLz1?(cF%3^kXY%;*518yPc<;Ts1@8v^hJ76?%PC`hwi)d5;8Gt;#1!?t?&bx z=wbx-sim5@Pl1PnnZqOIvkHJPuk%k|dEA)brC?;YvvdXUG89sNdcjXWBFyvU~cm zOHS35ms1uqC{Z zw1r26=H?b~_`PlrFGW9!Poq{w$i^e8w&SRvK6!1|+bh%6t~2p;R5CcK#1`urmpoL> zkz!D?MXQB@Y;5g)?cUbby{~QGPnz?+&#LI00Q~GM{&pZwq$}n0v&p^^s=SK4s)k^x zk-{7m0HMVsGBtC6YMy3ldVr2JGc~T6r#x`T^#Btcx{VcCEglB6R?rL~tJ6z`w#&*C zLhz`XzvhSE)R55VHK3f#m|!N5i>d{r>8MX`Q8l38N)FojgdGZ!^>n-L2e4?V^8tAx z>7Mv>f-?O;*VcXu`TYa9f4o)ED4Wj?>a|LR^cp$}4Ylx-d`iNvLC!ZmZ=VkI; z7dUp@V6Sp)UjfFI81Jf3K=_C*au*ibuV5U~06?(!VCxcyGi(@DuJP*`E zNGBB@X!QX$?9^eP>ktEzIKVDKuLq_PV5o+Az+t!Emw-VWp~^xIW)`Yg65*XUhR8PK z11Nc41)7N50K&?e0(kkBtw1S51f?KZf-g|@02n~rkC6?5F|>RNi1wmDkH)G;=|G&% zmTd`ss^y{i}JJ$uqGxVBom^aHvo6GT1i7>VoBH% zvT5+(l($!=8>iXq$Z52^Y8W;xjf|ne$r+B8twMR+PPg?|dyS+){alc=I;RD;dnkE& z>BAQ#l~;sejcMe>n3*!wWojIXy0U($^umvXoV5o@FY|7u{o_g=caO*t}iY$dp6TE=nz}VC0#tDv;l5f zHmA`z8=Yp-JtLznF`0_hmpmz25TbpWnG2PdT;5ld>D^D^-y_q>-#F#cjT`k5M~U66 zL2)Y0xeA5Wc${vh%dKXJpT*rT$%7r=n@xQBv|EH}8Bcu}6}p(%5ri^sK?9n#n8vo6 zh`P!^T8lExNhsQCGUGrx03^y*8}QRgTRG%y}S0k;`NS#M5sv)UFJ(*vug`#;sS{Wb8>9tmR zb{cXW-L1R)0DLZ;d?8(LwmJxzfj~ZrNuFuLO}@!mnOwVx+T@jFA}W3H%P)q!{cn)z z(2X0Ur+0Kz=w@?!gH#BHi-i z0S^?acE&OMpMS7-KfP&!aRA5ji*JFKuyEnD5E~(VC{}$c{^1d9)TgzIsZ+Fy9$Yk8 z((c$LOXE5(UY5Ovop;*a*dA=Mc^GBQG@UOED%c;B6FKf*-he zgw%b;6pjKHB>^$1rbRKqgyt;F)_0WPrOP%@ufC*9Ob8oub0bmQVN8*`tu?o!n4~%- z3^b>Rz6J@FfGB&K$9#iS)_)v)+ycq7b-BO#43kO zKPK&JcsS6VOsRa*D6*Iu)=6{F0_4L|Ob>Ht)=T&C*;qTT!CCuwIFf)16?_7&tgy)- zbaOfoeKB)UGQA<%1v5X1N-rm`hnFQS`K2H^(k+02x3lSKTpkl9tF+zwS z!XT7%;mF)<`cFit>1nDM&zNAM51V$Q1B(Bb;cpIKkt)A=YN()?7{m0MT4{@AmA2W} zny3mfjp+}{mL+iiA~+_&P$lgVB~uoKMC@bY{y!#05RFIqyCohI_gmDjwB()@9uxOM zVzM-aUyk;CL_4O!wCnH*!)GJfF@e_toOT8J>prFZ9BR*R7sA z1>mAA;xUbj&@6XS#Tp!z$L%yfe~Pq-$8@Q~X}{C0R1drJc6nw27hw^P327i-Tny|~ zzCZG+yrpOhi%C$!=eqYl&s5J>+k6@-@$fY-$6DELskv;^68_@UWBY6%d%iFpc<-dWc|SeTiEvIbMj`zmiKEz;4|Pa z!!P#EpY@3tjN?40gNuVYxfB#{QE+H=IH+B0;aMyQA`UJ=#6?6ALC6qV9C9SaCSF5b^7$ORssuFsR}2?3Nx8bD^^Y`IYy?2hZIMl^iUE>Y^CgS)tI0jFNslmb=W1@4=kh>EXF)IKct zmuWN?XO`Q+lUMM8<;C1w!VX?N`H%+C@jKZq)9Bozhv!B);LQ~S>?;LPG2T>uY!>1a zF$8r2XCkYJ@jfyvb(Ksqz)s=FCkReWD|0mmLM>d`TPEI1;ru3^nK23?Jnd8S?B9b06Cn}|QWN{7~%#ri69;cppmtVBUqJ)-KriJrC zQZ7@dJap{Auh<&MGQs+D8z4ge{c)Wz&#ybser^NA9HH&xnN2HCv;hJ4zsyMr@XD~D z6g210Q%C|fI7O3@{tTF>4an0HsDcf&0pL=Z#r1(P^HG3~J@^$em9^E{TA{VDR(~4B zCT_=HU!@yS?l03ZY4R&Z2aTr*{CU{m=RPh|6{&Bc@+Lr{uz?;k@Sj63 z32YchQ_W?ySn@MVvK-B!V-J4OW$x$Mf77!6F&;qX;%B1~jJ6S;Y&)ZE*bY1P;1@lc zE6Sh#rsc^)*{75H$n+%d2k^ygc7`)C7mUx%3|i*RnfYvyTl4drpWj4iS+ea<^Tvoh{3@b!eUY>R3^Bk5m4A zc5hl107W~(>Nu=C)J=hwjwHRV4NYT_N zv_K;L$xf#KfSocG&u-m%Rz0f>k|!5RL7KfO%FX@M5j+fQp&-piu5{}{s(s7GhOWW zaXl(Z^Lk*9FH&lpkwU#N+PgytNrH4q*X@%rg;^%&gbXgFiYFyGx>8m^m8(;DW<8Ap zJDL7{cFB}M-2Q@GIq8=r)`<0_k9FBEu43(EiT&{e@#IY$mU(e;nj+v3%QCMR=Oea| z+$j$APY&_s$xfz!pKoss6hkttNnKx^5;7jv^_Y<9aKNIyNl1M)k8>T?n%H3Svgy?^ z8IQ;7iQLQYn2dFObzG10!lIMu-{(8~OoR)|8zuy6xXm#a!8y^JxM?kN9O@6NzI;QD zqPu7M5BTo0xw1sumTlaYABf#$?myrU{}N`$-$W-&%;h0|48NWU-{=di)rr=AHd9vj^hH( z$~6-J@&{>r9xma{yiT+^^RZ)arb_~F77)`RpQKUw1t8azfp!L0H@U{yC2*xZBCcgo z>gW28sH(YX9G4Y9?ms9}GNT@1hsCsataWq(-~D0D@!FeoZT<+|TeT8bbG;(^xU z4@N@$Zq&dIi)ruJ1fU-1hcW!^jli~{jnMwq1VFP3>d;T{Y;$2P=1#{6=7d^6S}loC zYbYxye^C(cO`C0b3bc7Fiz*6dDiqxCDg<>dM>Xw~n|QfxOw9i9Vn$-N(mQ&>GC3nQiy0lqd|DGmVii4^mVR#- ziD)(S)v9A9uygo;mtrw7e`7H*?*WU6VKFi94~vOmF){DYZ+7We00000V35D{G=6@UVvm@pNj@ma4<$KJA|_gH?tuo&gqRrQ z=4i1@h>6!;9n$~+03ZzW?-~<3I9d&a9g;aJo(W^(kjzo>Oc)b~WR8kw!k9QDb5uMN z#>63+qvDw`CJxCQ70-k*aY*Kof)G50000 + {{ parent() }} + +{% endblock %} diff --git a/bartik11/templates/block--system-branding-block.html.twig b/bartik11/templates/block--system-branding-block.html.twig new file mode 100644 index 0000000..9c2eb29 --- /dev/null +++ b/bartik11/templates/block--system-branding-block.html.twig @@ -0,0 +1,35 @@ +{% extends "block.html.twig" %} +{# +/** + * @file + * bartik11's theme implementation for a branding block. + * + * Each branding element variable (logo, name, slogan) is only available if + * enabled in the block configuration. + * + * Available variables: + * - site_logo: Logo for site as defined in Appearance or theme settings. + * - site_name: Name for site as defined in Site information settings. + * - site_slogan: Slogan for site as defined in Site information settings. + */ +#} +{% set attributes = attributes.addClass('site-branding') %} +{% block content %} + {% if site_logo %} + + {% endif %} + {% if site_name or site_slogan %} +

+ {% if site_name %} + + {% endif %} + {% if site_slogan %} +
{{ site_slogan }}
+ {% endif %} +
+ {% endif %} +{% endblock %} diff --git a/bartik11/templates/block--system-menu-block.html.twig b/bartik11/templates/block--system-menu-block.html.twig new file mode 100644 index 0000000..c9c8000 --- /dev/null +++ b/bartik11/templates/block--system-menu-block.html.twig @@ -0,0 +1,21 @@ +{% extends "@classy/block/block--system-menu-block.html.twig" %} +{# +/** + * @file + * bartik11's theme implementation for a menu block. + * + * @ingroup themeable + */ +#} +{% set show_anchor = "show-" ~ attributes.id|clean_id %} +{% set hide_anchor = "hide-" ~ attributes.id|clean_id %} +{% block content %} + + {# When rendering a menu without label, render a menu toggle. #} + + + {% trans %} Show — {{ configuration.label }}{% endtrans %} + {% trans %} Hide — {{ configuration.label }}{% endtrans %} + {{ content }} + +{% endblock %} diff --git a/bartik11/templates/block.html.twig b/bartik11/templates/block.html.twig new file mode 100644 index 0000000..9d8be22 --- /dev/null +++ b/bartik11/templates/block.html.twig @@ -0,0 +1,50 @@ +{# +/** + * @file + * Default theme implementation to display a block. + * + * Available variables: + * - plugin_id: The ID of the block implementation. + * - label: The configured label of the block if visible. + * - configuration: A list of the block's configuration values. + * - label: The configured label for the block. + * - label_display: The display settings for the label. + * - provider: The module or other provider that provided this block plugin. + * - Block plugin specific settings will also be stored here. + * - content: The content of this block. + * - attributes: array of HTML attributes populated by modules, intended to + * be added to the main container tag of this template. + * - id: A valid HTML ID and guaranteed unique. + * - title_attributes: Same as attributes, except applied to the main title + * tag that appears in the template. + * - content_attributes: Same as attributes, except applied to the main content + * tag that appears in the template. + * - title_prefix: Additional output populated by modules, intended to be + * displayed in front of the main title tag that appears in the template. + * - title_suffix: Additional output populated by modules, intended to be + * displayed after the main title tag that appears in the template. + * + * @see template_preprocess_block() + * + * @ingroup themeable + */ +#} +{% + set classes = [ + 'block', + 'block-' ~ configuration.provider|clean_class, + 'block-' ~ plugin_id|clean_class, + ] +%} + + {{ title_prefix }} + {% if label %} + {{ label }} + {% endif %} + {{ title_suffix }} + {% block content %} + + {{ content }} + + {% endblock %} + diff --git a/bartik11/templates/comment.html.twig b/bartik11/templates/comment.html.twig new file mode 100644 index 0000000..37a4d92 --- /dev/null +++ b/bartik11/templates/comment.html.twig @@ -0,0 +1,108 @@ +{# +/** + * @file + * bartik11's theme implementation for comments. + * + * Available variables: + * - author: Comment author. Can be a link or plain text. + * - content: The content-related items for the comment display. Use + * {{ content }} to print them all, or print a subset such as + * {{ content.field_example }}. Use the following code to temporarily suppress + * the printing of a given child element: + * @code + * {{ content|without('field_example') }} + * @endcode + * - created: Formatted date and time for when the comment was created. + * Preprocess functions can reformat it by calling format_date() with the + * desired parameters on the 'comment.created' variable. + * - changed: Formatted date and time for when the comment was last changed. + * Preprocess functions can reformat it by calling format_date() with the + * desired parameters on the 'comment.changed' variable. + * - permalink: Comment permalink. + * - submitted: Submission information created from author and created + * during template_preprocess_comment(). + * - user_picture: The comment author's profile picture. + * - status: Comment status. Possible values are: + * unpublished, published, or preview. + * - title: Comment title, linked to the comment. + * - attributes: HTML attributes for the containing element. + * The attributes.class may contain one or more of the following classes: + * - comment: The current template type; e.g., 'theming hook'. + * - by-anonymous: Comment by an unregistered user. + * - by-{entity-type}-author: Comment by the author of the parent entity, + * eg. by-node-author. + * - preview: When previewing a new or edited comment. + * The following applies only to viewers who are registered users: + * - unpublished: An unpublished comment visible only to administrators. + * - title_prefix: Additional output populated by modules, intended to be + * displayed in front of the main title tag that appears in the template. + * - title_suffix: Additional output populated by modules, intended to be + * displayed after the main title tag that appears in the template. + * - title_attributes: Same as attributes, except applied to the main title + * tag that appears in the template. + * - content_attributes: List of classes for the styling of the comment content. + * - threaded: A flag indicating whether the comments are threaded or not. + * + * These variables are provided to give context about the parent comment (if + * any): + * - comment_parent: Full parent comment entity (if any). + * - parent_author: Equivalent to author for the parent comment. + * - parent_created: Equivalent to created for the parent comment. + * - parent_changed: Equivalent to changed for the parent comment. + * - parent_title: Equivalent to title for the parent comment. + * - parent_permalink: Equivalent to permalink for the parent comment. + * - parent: A text string of parent comment submission information created from + * 'parent_author' and 'parent_created' during template_preprocess_comment(). + * This information is presented to help screen readers follow lengthy + * discussion threads. You can hide this from sighted users using the class + * visually-hidden. + * + * These two variables are provided for context: + * - comment: Full comment object. + * - entity: Entity the comments are attached to. + * + * @see template_preprocess_comment() + */ +#} +{% + set classes = [ + 'comment', + 'js-comment', + status != 'published' ? 'comment--' ~ status, + comment.owner.anonymous ? 'by-anonymous', + author_id and author_id == commented_entity.getOwnerId() ? 'by-' ~ commented_entity.getEntityTypeId() ~ '-author', + 'clearfix', + ] +%} +
+ {# + Hide the "new" indicator by default, let a piece of JavaScript ask the + server which comments are new for the user. Rendering the final "new" + indicator here would break the render cache. + #} + + +
+ {{ user_picture }} +

{{ author }}

+

{{ created }}

+ + {# + Indicate the semantic relationship between parent and child comments + for accessibility. The list is difficult to navigate in a screen + reader without this information. + #} + {% if parent %} +

{{ parent }}

+ {% endif %} +
+ + + {% if title %} + {{ title_prefix }} + {{ title }} + {{ title_suffix }} + {% endif %} + {{ content }} + +
diff --git a/bartik11/templates/field--node--field-tags.html.twig b/bartik11/templates/field--node--field-tags.html.twig new file mode 100644 index 0000000..429edf5 --- /dev/null +++ b/bartik11/templates/field--node--field-tags.html.twig @@ -0,0 +1,47 @@ +{# +/** + * @file + * bartik11 theme override for taxonomy term fields. + * + * Available variables: + * - attributes: HTML attributes for the containing element. + * - label_hidden: Whether to show the field label or not. + * - title_attributes: HTML attributes for the label. + * - label: The label for the field. + * - content_attributes: HTML attributes for the content. + * - items: List of all the field items. Each item contains: + * - attributes: List of HTML attributes for each item. + * - content: The field item's content. + * - entity_type: The entity type to which the field belongs. + * - field_name: The name of the field. + * - field_type: The type of the field. + * - label_display: The display settings for the label. + * + * @see template_preprocess_field() + */ +#} +{% + set classes = [ + 'field', + 'field--name-' ~ field_name|clean_class, + 'field--type-' ~ field_type|clean_class, + 'field--label-' ~ label_display, + 'clearfix', + ] +%} +{% + set title_classes = [ + 'field__label', + label_display == 'inline' ? 'inline', + ] +%} + + {% if not label_hidden %} + {{ label }} + {% endif %} + + diff --git a/bartik11/templates/form--search-block-form.html.twig b/bartik11/templates/form--search-block-form.html.twig new file mode 100644 index 0000000..68847fc --- /dev/null +++ b/bartik11/templates/form--search-block-form.html.twig @@ -0,0 +1,15 @@ +{# +/** + * @file + * Default theme implementation for a 'form' element. + * + * Available variables: + * - attributes: A list of HTML attributes for the wrapper element. + * - children: The child elements of the form. + * + * @see template_preprocess_form() + */ +#} + + {{ children }} + diff --git a/bartik11/templates/maintenance-page.html.twig b/bartik11/templates/maintenance-page.html.twig new file mode 100644 index 0000000..77814f0 --- /dev/null +++ b/bartik11/templates/maintenance-page.html.twig @@ -0,0 +1,48 @@ +{# +/** + * @file + * bartik11's theme implementation to display a single Drupal page while offline. + * + * All available variables are mirrored in page.html.twig. + * + * @see template_preprocess_maintenance_page() + */ + #} +
+
+ +
+
+
+
+ + {% if title %} +

{{ title }}

+ {% endif %} + {{ page.content }} + {{ page.highlighted }} +
+
+
+
+
+
diff --git a/bartik11/templates/node.html.twig b/bartik11/templates/node.html.twig new file mode 100644 index 0000000..afce92c --- /dev/null +++ b/bartik11/templates/node.html.twig @@ -0,0 +1,103 @@ +{# +/** + * @file + * bartik11's theme implementation to display a node. + * + * Available variables: + * - node: The node entity with limited access to object properties and methods. + * Only method names starting with "get", "has", or "is" and a few common + * methods such as "id", "label", and "bundle" are available. For example: + * - node.getCreatedTime() will return the node creation timestamp. + * - node.hasField('field_example') returns TRUE if the node bundle includes + * field_example. (This does not indicate the presence of a value in this + * field.) + * - node.isPublished() will return whether the node is published or not. + * Calling other methods, such as node.delete(), will result in an exception. + * See \Drupal\node\Entity\Node for a full list of public properties and + * methods for the node object. + * - label: The title of the node. + * - content: All node items. Use {{ content }} to print them all, + * or print a subset such as {{ content.field_example }}. Use + * {{ content|without('field_example') }} to temporarily suppress the printing + * of a given child element. + * - author_picture: The node author user entity, rendered using the "compact" + * view mode. + * - metadata: Metadata for this node. + * - date: Themed creation date field. + * - author_name: Themed author name field. + * - url: Direct URL of the current node. + * - display_submitted: Whether submission information should be displayed. + * - attributes: HTML attributes for the containing element. + * The attributes.class element may contain one or more of the following + * classes: + * - node: The current template type (also known as a "theming hook"). + * - node--type-[type]: The current node type. For example, if the node is an + * "Article" it would result in "node--type-article". Note that the machine + * name will often be in a short form of the human readable label. + * - node--view-mode-[view_mode]: The View Mode of the node; for example, a + * teaser would result in: "node--view-mode-teaser", and + * full: "node--view-mode-full". + * The following are controlled through the node publishing options. + * - node--promoted: Appears on nodes promoted to the front page. + * - node--sticky: Appears on nodes ordered above other non-sticky nodes in + * teaser listings. + * - node--unpublished: Appears on unpublished nodes visible only to site + * admins. + * - title_attributes: Same as attributes, except applied to the main title + * tag that appears in the template. + * - content_attributes: Same as attributes, except applied to the main + * content tag that appears in the template. + * - author_attributes: Same as attributes, except applied to the author of + * the node tag that appears in the template. + * - title_prefix: Additional output populated by modules, intended to be + * displayed in front of the main title tag that appears in the template. + * - title_suffix: Additional output populated by modules, intended to be + * displayed after the main title tag that appears in the template. + * - view_mode: View mode; for example, "teaser" or "full". + * - teaser: Flag for the teaser state. Will be true if view_mode is 'teaser'. + * - page: Flag for the full page state. Will be true if view_mode is 'full'. + * - readmore: Flag for more state. Will be true if the teaser content of the + * node cannot hold the main body content. + * - logged_in: Flag for authenticated user status. Will be true when the + * current user is a logged-in member. + * - is_admin: Flag for admin user status. Will be true when the current user + * is an administrator. + * + * @see template_preprocess_node() + */ +#} +{% + set classes = [ + 'node', + 'node--type-' ~ node.bundle|clean_class, + node.isPromoted() ? 'node--promoted', + node.isSticky() ? 'node--sticky', + not node.isPublished() ? 'node--unpublished', + view_mode ? 'node--view-mode-' ~ view_mode|clean_class, + 'clearfix', + ] +%} +{{ attach_library('classy/node') }} + +
+ {{ title_prefix }} + {% if not page %} + + {{ label }} + + {% endif %} + {{ title_suffix }} + {% if display_submitted %} +
+ {{ author_picture }} + + {% trans %}Submitted by {{ author_name }} on {{ date }}{% endtrans %} + + {{ metadata }} +
+ {% endif %} +
+ + {{ content }} + +
diff --git a/bartik11/templates/page-title.html.twig b/bartik11/templates/page-title.html.twig new file mode 100644 index 0000000..be4ebf3 --- /dev/null +++ b/bartik11/templates/page-title.html.twig @@ -0,0 +1,16 @@ +{% extends "@classy/content/page-title.html.twig" %} +{# +/** + * @file + * bartik11's theme implementation for a page title. + * + * Available variables: + * - title_attributes: HTML attributes for the page title element. + * - title_prefix: Additional output populated by modules, intended to be + * displayed in front of the main title tag that appears in the template. + * - title: The page title, for use in the actual content. + * - title_suffix: Additional output populated by modules, intended to be + * displayed after the main title tag that appears in the template. + */ +#} +{% set title_attributes = title_attributes.addClass('title') %} diff --git a/bartik11/templates/page.html.twig b/bartik11/templates/page.html.twig new file mode 100644 index 0000000..52b2827 --- /dev/null +++ b/bartik11/templates/page.html.twig @@ -0,0 +1,128 @@ +{# +/** + * @file + * bartik11's theme implementation to display a single page. + * + * The doctype, html, head and body tags are not in this template. Instead they + * can be found in the html.html.twig template normally located in the + * core/modules/system directory. + * + * Available variables: + * + * General utility variables: + * - base_path: The base URL path of the Drupal installation. Will usually be + * "/" unless you have installed Drupal in a sub-directory. + * - is_front: A flag indicating if the current page is the front page. + * - logged_in: A flag indicating if the user is registered and signed in. + * - is_admin: A flag indicating if the user has permission to access + * administration pages. + * + * Site identity: + * - front_page: The URL of the front page. Use this instead of base_path when + * linking to the front page. This includes the language domain or prefix. + * + * Page content (in order of occurrence in the default page.html.twig): + * - node: Fully loaded node, if there is an automatically-loaded node + * associated with the page and the node ID is the second argument in the + * page's path (e.g. node/12345 and node/12345/revisions, but not + * comment/reply/12345). + * + * Regions: + * - page.header: Items for the header region. + * - page.highlighted: Items for the highlighted region. + * - page.primary_menu: Items for the primary menu region. + * - page.secondary_menu: Items for the secondary menu region. + * - page.featured_top: Items for the featured top region. + * - page.content: The main content of the current page. + * - page.sidebar_first: Items for the first sidebar. + * - page.sidebar_second: Items for the second sidebar. + * - page.featured_bottom_first: Items for the first featured bottom region. + * - page.featured_bottom_second: Items for the second featured bottom region. + * - page.featured_bottom_third: Items for the third featured bottom region. + * - page.footer_first: Items for the first footer column. + * - page.footer_second: Items for the second footer column. + * - page.footer_third: Items for the third footer column. + * - page.footer_fourth: Items for the fourth footer column. + * - page.footer_fifth: Items for the fifth footer column. + * - page.breadcrumb: Items for the breadcrumb region. + * + * @see template_preprocess_page() + * @see html.html.twig + */ +#} +
+
+ + {% if page.highlighted %} +
+ +
+ {% endif %} + {% if page.featured_top %} + + {% endif %} +
+
+ {{ page.breadcrumb }} +
+
+ + {{ page.content }} +
+
+ {% if page.sidebar_first %} + + {% endif %} + {% if page.sidebar_second %} + + {% endif %} +
+
+ {% if page.featured_bottom_first or page.featured_bottom_second or page.featured_bottom_third %} + + {% endif %} +
+
+ {% if page.footer_first or page.footer_second or page.footer_third or page.footer_fourth %} + + {% endif %} + {% if page.footer_fifth %} + + {% endif %} +
+
+
+
diff --git a/bartik11/templates/region--header.html.twig b/bartik11/templates/region--header.html.twig new file mode 100644 index 0000000..19f45d4 --- /dev/null +++ b/bartik11/templates/region--header.html.twig @@ -0,0 +1,16 @@ +{% extends "region.html.twig" %} +{# +/** + * @file + * bartik11's theme implementation to display a header region. + * + * Available variables: + * - content: The content for this region, typically blocks. + * - attributes: HTML attributes for the region div. + * - region: The name of the region variable as defined in the theme's + * .info.yml file. + * + * @see template_preprocess_region() + */ +#} +{% set attributes = attributes.addClass('clearfix') %} diff --git a/bartik11/templates/status-messages.html.twig b/bartik11/templates/status-messages.html.twig new file mode 100644 index 0000000..e1a24bc --- /dev/null +++ b/bartik11/templates/status-messages.html.twig @@ -0,0 +1,30 @@ +{% extends "@classy/misc/status-messages.html.twig" %} +{# +/** + * @file + * Default theme implementation for status messages. + * + * Displays status, error, and warning messages, grouped by type. + * + * An invisible heading identifies the messages for assistive technology. + * Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html + * for info. + * + * Add an ARIA label to the contentinfo area so that assistive technology + * user agents will better describe this landmark. + * + * Available variables: + * - message_list: List of messages to be displayed, grouped by type. + * - status_headings: List of all status types. + * - display: (optional) May have a value of 'status' or 'error' when only + * displaying messages of that specific type. + */ +#} +{% block messages %} + {% if message_list is not empty %} + {{ attach_library('bartik11/messages') }} +
+ {{ parent() }} +
+ {% endif %} +{% endblock messages %} From f30fe20825cea5120b4e0aa3c949d55da12b4a83 Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 25 Aug 2017 19:06:19 +0200 Subject: [PATCH 15/18] 188 cleaning up the unused templates --- .../templates/form/checkbox/form-checkbox.css | 112 ----------- .../checkbox/form-element--checkbox.html.twig | 68 ------- .../form/form-element-label.html.twig | 35 ---- .../templates/form/form-element.html.twig | 111 ----------- elevenfeat/templates/form/input.html.twig | 17 -- .../form/radio/form-element--radio.html.twig | 69 ------- .../templates/form/radio/form-radio.css | 110 ----------- .../templates/form/select/form-select.css | 184 ------------------ .../templates/form/select/select.html.twig | 30 --- 9 files changed, 736 deletions(-) delete mode 100644 elevenfeat/templates/form/checkbox/form-checkbox.css delete mode 100644 elevenfeat/templates/form/checkbox/form-element--checkbox.html.twig delete mode 100644 elevenfeat/templates/form/form-element-label.html.twig delete mode 100644 elevenfeat/templates/form/form-element.html.twig delete mode 100644 elevenfeat/templates/form/input.html.twig delete mode 100644 elevenfeat/templates/form/radio/form-element--radio.html.twig delete mode 100644 elevenfeat/templates/form/radio/form-radio.css delete mode 100644 elevenfeat/templates/form/select/form-select.css delete mode 100644 elevenfeat/templates/form/select/select.html.twig diff --git a/elevenfeat/templates/form/checkbox/form-checkbox.css b/elevenfeat/templates/form/checkbox/form-checkbox.css deleted file mode 100644 index 84e0868..0000000 --- a/elevenfeat/templates/form/checkbox/form-checkbox.css +++ /dev/null @@ -1,112 +0,0 @@ -/* -template: form-element--checkbox.html.twig -*/ -.form-item--checkbox input[type=checkbox] { - opacity: 0 -} - -/* checkbox ------------------------------------------------------------------*/ -.checkbox { - position: relative; - display: inline-block; - margin-right: 0.5rem; - line-height: 1rem; -} -.checkbox input[type=checkbox] + label { - position: absolute; - top: 0; - left: 0; - width: 1rem; - height: 1rem; - padding: 0; - line-height: 1rem; - text-indent: -999rem; - cursor: pointer; - transition: all 0.5s ease-in-out; -} -.checkbox input[type=checkbox] + label::before { - position: absolute; - top: 0; - left: 0; - display: block; - width: 1rem; - height: 1rem; - content: ""; - transition: all 0.5s ease-in-out; - - -webkit-mask-size: cover ! important; - mask-size: cover ! important; -} - -.checkbox__title { - display: inline-block; - margin-left: 0.5rem -} -.checkbox__title label { - padding: 0; -} -.checkbox input[type=checkbox]:focus + label + .checkbox__title label, -.checkbox input[type=checkbox]:hover + label + .checkbox__title label { - -} - -/*-- colors ---------------------------------------------------------*/ -/* checkbox input color */ -.checkbox input[type=checkbox] + label { - background-color: var(--bluesky); -} -.checkbox input[type=checkbox]:checked + label { - background-color: var(--bluesky); -} -.checkbox input[type=checkbox]:focus + label, -.checkbox input[type=checkbox]:hover + label { - background-color: var(--bluesky-light); -} -.form-item--disabled .checkbox input[type=checkbox] + label, -.form-item--disabled .checkbox input[type=checkbox]:checked + label, -.form-item--disabled .checkbox input[type=checkbox]:focus + label, -.form-item--disabled .checkbox input[type=checkbox]:hover + label { - background-color: var(--concrete); -} - -/* radio icon */ -.checkbox input[type=checkbox] + label:before { - background-color: var(--bluesky-light); - - mask: var(--icon-square) no-repeat; - -webkit-mask: var(--icon-square) no-repeat; -} - -.checkbox input[type=checkbox]:checked + label:before{ - background-color: var(--gravel-light); - - mask: var(--icon-square-check) no-repeat; - -webkit-mask: var(--icon-square-check) no-repeat; -} -.checkbox input[type=checkbox]:focus + label:before, -.checkbox input[type=checkbox]:hover + label:before { - background-color: var(--bluesky-10); - - mask: var(--icon-square-check) no-repeat; - -webkit-mask: var(--icon-square-check) no-repeat; -} -.checkbox input[type=checkbox]:checked:focus + label:before, -.checkbox input[type=checkbox]:checked:hover + label:before { - background-color: var(--gravel-light); -} - - -/* title */ -.checkbox input[type=checkbox]:checked + label + .checkbox__title label { - color: var(--bluesky); -} - - -/* -fixes for views tables with the select all functions -ex: /admin/content -adds in the visually-hidden class we wanna overwrite -*/ -.checkbox .visually-hidden { - clip: inherit; -} diff --git a/elevenfeat/templates/form/checkbox/form-element--checkbox.html.twig b/elevenfeat/templates/form/checkbox/form-element--checkbox.html.twig deleted file mode 100644 index c1cac2b..0000000 --- a/elevenfeat/templates/form/checkbox/form-element--checkbox.html.twig +++ /dev/null @@ -1,68 +0,0 @@ -{% - set classes = [ - 'form-item', - 'form-item--' ~ type|clean_class , - 'form-item--name-' ~ name|clean_class , - disabled == 'disabled' ? 'form-item--disabled', - errors ? 'form-item--error', - 'js-form-item', - 'js-form-type-' ~ type|clean_class, - 'js-form-item-' ~ name|clean_class, - ] -%} - -{% - set description_classes = [ - 'form-item__description', - description_display == 'invisible' ? 'visually-hidden', - ] -%} - - - - {# prefix #} - {% if prefix is not empty %} - {{ prefix }} - {% endif %} - - {# children = the content of a field. #} - - {# -- checkbox--slide / checkbox--check --------------------------------------#} -
- {# checkbox #} - {{ children }} - - {# - If a checkbox is printed out witout a label the checkbox--slide/check wont - work - so we test on the labels title and if its not there we create a label - this is used for the module pages admin/modules - #} - - {% if label['#title'] %} - {# form-element-label.html.twig #} - {{ label }} - {% else %} - - {% endif %} - - {# yes repeating the label #} -
{{ label }}
-
- - - {{ description.content }} - - - {# suffix #} - {% if suffix is not empty %} - {{ suffix }} - {% endif %} - - {# errors #} - {% if errors %} -
- {{ errors }} -
- {% endif %} - - diff --git a/elevenfeat/templates/form/form-element-label.html.twig b/elevenfeat/templates/form/form-element-label.html.twig deleted file mode 100644 index 23df083..0000000 --- a/elevenfeat/templates/form/form-element-label.html.twig +++ /dev/null @@ -1,35 +0,0 @@ -{# -We want to be able to identity some of the labels so we can change that markup -and yank in some icons etc - -first lets grap the label for id and use that as a identifier so we can add -a span for an icon inside the label - -the wrapper is defined over in form-element.html.twig remeber to set it to inline etc -#} - -{% if element['#title'].getUntranslatedString() %} - {% set element_name = element['#title'].getUntranslatedString()|clean_class %} -{% elseif element['#title'] %} - {% set element_name = element['#title']|render %} -{% else %} - {% set element_name = '' %} -{% endif %} - -{# '_t-elementname--' ~ element_name|clean_class, #} -{% - set classes = [ - title_display == 'invisible' ? 'visually-hidden', - required ? 'js-form-required', - required ? 'is-required', - ] -%} - -{% if title is not empty or required -%} - - - {# hide the name if its printed as an icon #} - {{ title }} - - -{%- endif %} diff --git a/elevenfeat/templates/form/form-element.html.twig b/elevenfeat/templates/form/form-element.html.twig deleted file mode 100644 index 8652ff4..0000000 --- a/elevenfeat/templates/form/form-element.html.twig +++ /dev/null @@ -1,111 +0,0 @@ -{# -form-element & form-element-label test for if the label should be a svg icon instead - #} - -{% if element['#title'].getUntranslatedString() %} - {% set element_name = element['#title'].getUntranslatedString()|clean_class %} -{% else %} - {% set element_name = element['#title']|clean_class %} -{% endif %} - -{% set make_these_inline = [ - 'your-name', - 'your-email-address', - 'username-or-email-address', - 'username', - 'password', - 'subject', - 'message', - 'comment', - 'email-address', - 'time-zone', - 'comment', - ] -%} -{# icons for labels #} -{% set these_contains_an_icon = [ - 'your-name', - 'your-email-address', - 'username-or-email-address', - 'username', - 'password', - 'subject', - 'message', - 'comment', - ] -%} -{% - set classes = [ - 'form-item', - 'form-item--' ~ type|clean_class , - element_name in make_these_inline ? 'form-item--inline', - element_name in these_contains_an_icon? 'form-item--icon', - element['#type'] == 'select' ? 'form-item--inline': 'nope', - errors ? 'form-item--error', - disabled == 'disabled' ? 'form-item--disabled', - 'js-form-item', - 'js-form-type-' ~ type|clean_class, - 'js-form-item-' ~ name|clean_class, - ] -%} -{% - set description_classes = [ - 'form-item__description', - description_display == 'invisible' ? 'visually-hidden', - ] -%} - -{# {{ element_name }} #} - - - - - {% block formItemIcon %} - {% endblock %} - - - {# label before/invisble #} - {% if label_display in ['before', 'invisible'] %} - {{ label }} - {% endif %} - - {# prefix #} - {% if prefix is not empty %} - {{ prefix }} - {% endif %} - - - {# children = the content of a field. #} - {% if type == "item" %} -
- {{ children }} -
- {% else %} - {{ children }} - {% endif %} - - {# description before #} - {% if description.content %} - - {{ description.content }} - - {% endif %} - - {# suffix #} - {% if suffix is not empty %} - {{ suffix }} - {% endif %} - - {# label after #} - {% if label_display == 'after' %} - {{ label }} - {% endif %} - - {# errors #} - {% if errors %} -
- {{ errors }} -
- {% endif %} - - diff --git a/elevenfeat/templates/form/input.html.twig b/elevenfeat/templates/form/input.html.twig deleted file mode 100644 index 2a67333..0000000 --- a/elevenfeat/templates/form/input.html.twig +++ /dev/null @@ -1,17 +0,0 @@ -{{ attach_library('elevenfeat/form') }} - -{% - set remove_classes = [ - 'text-full', - 'form-text', - ] -%} - -{% set placeholder = element['#title'] %} - -{{ children }} diff --git a/elevenfeat/templates/form/radio/form-element--radio.html.twig b/elevenfeat/templates/form/radio/form-element--radio.html.twig deleted file mode 100644 index 4e4a9cb..0000000 --- a/elevenfeat/templates/form/radio/form-element--radio.html.twig +++ /dev/null @@ -1,69 +0,0 @@ -{% - set classes = [ - 'form-item', - 'form-item--' ~ type|clean_class , - 'form-item--name-' ~ name|clean_class , - disabled == 'disabled' ? 'form-item--disabled', - errors ? 'form-item--error', - 'js-form-item', - 'js-form-type-' ~ type|clean_class, - 'js-form-item-' ~ name|clean_class, - ] -%} - -{% - set description_classes = [ - 'form-item__description', - description_display == 'invisible' ? 'visually-hidden', - ] -%} - - - - {# prefix #} - {% if prefix is not empty %} - {{ prefix }} - {% endif %} - - {# children = the content of a field. #} - - {# -- checkbox--slide / checkbox--check --------------------------------------#} -
- {# checkbox #} - {{ children }} - - {# - If a checkbox is printed out witout a label the checkbox--slide/check wont - work - so we test on the labels title and if its not there we create a label - this is used for the module pages admin/modules - #} - - {% if label['#title'] %} - {# form-element-label.html.twig #} - {{ label }} - {% else %} - - {% endif %} - - {# yes repeating the label #} -
{{ label }}
-
- - - - {{ description.content }} - - - {# suffix #} - {% if suffix is not empty %} - {{ suffix }} - {% endif %} - - {# errors #} - {% if errors %} -
- {{ errors }} -
- {% endif %} - - diff --git a/elevenfeat/templates/form/radio/form-radio.css b/elevenfeat/templates/form/radio/form-radio.css deleted file mode 100644 index f16c7f5..0000000 --- a/elevenfeat/templates/form/radio/form-radio.css +++ /dev/null @@ -1,110 +0,0 @@ -/* -template: form-element--radio.html.twig -*/ -.form-item--radio input[type="radio"] { - visibility: hidden; -} - - -/* radio ------------------------------------------------------------------*/ -.radio { - position: relative; - display: inline-block; - margin-right: 0.5rem; - line-height: 1rem; -} -.radio input[type=radio] + label { - position: absolute; - top: 0; - left: 0; - width: 1rem; - height: 1rem; - padding: 0; - border-radius: 0.5rem; - line-height: 1rem; - text-indent: -999rem; - cursor: pointer; -} -.radio input[type=radio] + label::before { - position: absolute; - top: 0; - left: 0; - display: block; - width: 1rem; - height: 1rem; - content: ""; - transition: all 0.5s ease-in-out; - - -webkit-mask-size: contain ! important; - mask-size: contain ! important; -} - -.radio__title { - display: inline-block; - margin-left: 0.5rem; -} -.radio__title label { - padding: 0; -} -.radio input[type=radio]:focus + label + .radio__title label, -.radio input[type=radio]:hover + label + .radio__title label { - outline: 0; -} - -/*-- colors ---------------------------------------------------------*/ - -/* radio input color */ -.radio input[type=radio] + label { - background-color: var(--bluesky); -} -.radio input[type=radio]:checked + label { - background-color: var(--bluesky-light); -} -.radio input[type=radio]:focus + label, -.radio input[type=radio]:hover + label { - background-color: var(--bluesky-light); -} -.form-item--disabled .radio input[type=radio] + label, -.form-item--disabled .radio input[type=radio]:checked + label, -.form-item--disabled .radio input[type=radio]:focus + label, -.form-item--disabled .radio input[type=radio]:hover + label { - background-color: var(--concrete); -} - -/* radio icon */ -.radio input[type=radio] + label:before { - background-color: var(--bluesky-30); - - mask: var(--icon-circle) no-repeat; - -webkit-mask: var(--icon-circle) no-repeat; -} -.radio input[type=radio]:checked + label:before, -.radio input[type=radio]:checked:focus + label:before, -.radio input[type=radio]:checked:hover + label:before { - background-color: white; - - mask: var(--icon-circle-dot) no-repeat; - -webkit-mask: var(--icon-circle-dot) no-repeat; -} -.radio input[type=radio]:focus + label:before, -.radio input[type=radio]:hover + label:before { - background-color: var(--gravel); - - mask: var(--icon-circle) no-repeat; - -webkit-mask: var(--icon-circle) no-repeat; -} - - -/* title */ -.radio input[type=radio]:checked + label + .radio__title label { - color: var(--bluesky); -} - -/* -fixes for views tables with the select all functions -ex: /admin/content -adds in the visually-hidden class we wanna overwrite -*/ -.radio .visually-hidden { - clip: inherit; -} diff --git a/elevenfeat/templates/form/select/form-select.css b/elevenfeat/templates/form/select/form-select.css deleted file mode 100644 index 14496c9..0000000 --- a/elevenfeat/templates/form/select/form-select.css +++ /dev/null @@ -1,184 +0,0 @@ -.form-item--select { -} -.form-item--select label { - display: inline-block; -} -.form-select { - display: inline-block; -} - -/* -- select -----------------------------------------------------------------*/ -select { - width: 100%; - min-width: 10rem; - height: 2rem; - margin: 0; - padding: 0 0.5rem; - border-radius: 0; - font-size: 1rem; - font-weight: normal; - line-height: 2; - text-transform: none; - - -webkit-appearance: none; - -moz-appearance: none; -} -select:hover, -select:focus { - outline: 0; - cursor: pointer; -} - - - -/* -select wrappper class for the arrow -we have added a select wrapper class on the select box to control it and add the -arrow -*/ -.select { - position: relative; - min-width: 10rem; -} - -/* arrow */ -.select__arrow { - position: absolute; - top: 0; - right: 0; - width: 2rem; - height: 2rem; - pointer-events: none; -} -.select__arrow::before { - position: absolute; - top: 0.5rem; - left: 0.5rem; - width: 1rem; - height: 1rem; - content: ""; -} -select.form-select[multiple] + .select__arrow { - display: none; -} - -/* ----------------------------------------------------------------------------- -colors - -----------------------------------------------------------------------------*/ -select { - border: 1px solid var(--concrete); - background-color: var(--gravel-light); - color: var(--bluesky); - transition: all .5s ease-in-out; -} -select:hover, -select:focus { - border-color: var(--bluesky-light); - background-color: var(--white); - color: var(--bluesky-light); -} - -/* arrow */ -.select__arrow { - border-left: 1px solid var(--bluesky-light); - background-color: var(--bluesky); -} -select:hover + .select__arrow, -select:focus + .select__arrow { - background-color: var(--bluesky-light); -} - -.select__arrow::before { - background-color: var(--gravel-light); - - mask: var(--icon-coffee) no-repeat; - -webkit-mask: var(--icon-coffee) no-repeat; - -webkit-mask-size: contain; - mask-size: contain; - transition: all .5s ease-in-out; -} -select:hover + .select__arrow::before, -select:focus + .select__arrow::before { - background-color: var(--gravel); - transform: rotate(90deg); -} - - - - -.required select { -} -.required .select__arrow { -} -.required select:hover + .select__arrow, -.required select:focus + .select__arrow { -} - - -/* Select multiple option */ -select[multiple] { - height: auto; - min-height: 6rem; - font-size: 1rem; -} -option { - border-bottom: 1px dotted #ddd; -} -option:focus { - outline: 0; -} - -option:checked { - box-shadow: inset 20px 30px #1397cb; -} - -/* Elements that were selecting */ - -/* -option:checked { - box-shadow: inset 20px 30px red; - color: white; -} -select option:before{ -} - -option:checked:before { - background: url(../icons/checkbox-on.svg) no-repeat center center ; - background-size: 1rem; - width: 1rem; - padding-left: 2rem; -} -select option:not(:checked) { - background: url(../icons/checkbox.svg) no-repeat center center ; - background-size: 1rem; - width: 1rem; - padding-left: 2rem; -} -*/ - -/* was selected */ -option[selected] { -} -option[selected]:before { - width: 1rem; - padding-left: 2rem; - background: url(../icons/checkbox.svg) no-repeat center center ; - background-size: 1rem; -} -option[selected]:checked:before { - width: 1rem; - padding-left: 2rem; - background: url(../icons/checkbox-on.svg) no-repeat center center ; - background-size: 1rem; -} -select option:hover { - background-color: var(--brown100); -} - - -optgroup { - margin: 0; - color: inherit; - font: inherit; - font-weight: bold; -} diff --git a/elevenfeat/templates/form/select/select.html.twig b/elevenfeat/templates/form/select/select.html.twig deleted file mode 100644 index 4e918eb..0000000 --- a/elevenfeat/templates/form/select/select.html.twig +++ /dev/null @@ -1,30 +0,0 @@ -{# -/** - * @file - * Theme override for a select element. - * - * Available variables: - * - attributes: HTML attributes for the select tag. - * - options: The option element children. - * - * @see template_preprocess_select() - */ -#} -{% spaceless %} -
- - {% for option in options %} - {% if option.type == 'optgroup' %} - - {% for sub_option in option.options %} - - {% endfor %} - - {% elseif option.type == 'option' %} - - {% endif %} - {% endfor %} - -{% endspaceless %} -
-
From 7c6e3f79d43f25b40a8f9ae408de8c2b983f5c10 Mon Sep 17 00:00:00 2001 From: mortendk Date: Fri, 25 Aug 2017 23:33:16 +0200 Subject: [PATCH 16/18] cleaning up forms --- eleven/eleven.theme | 61 ++++++++++++++++++++++--------------- elevenfeat/elevenfeat.theme | 6 ++-- elevenfeat/sign-out.svg | 7 ----- 3 files changed, 40 insertions(+), 34 deletions(-) delete mode 100644 elevenfeat/sign-out.svg diff --git a/eleven/eleven.theme b/eleven/eleven.theme index de82a51..2051fa4 100644 --- a/eleven/eleven.theme +++ b/eleven/eleven.theme @@ -1,4 +1,8 @@ getPath()); @@ -195,7 +199,6 @@ function eleven_theme_suggestions_form_element_label_alter(array &$suggestions, } - // ----------------------------------------------------------------------------- // provide an alternative template for links // ----------------------------------------------------------------------------- @@ -213,25 +216,10 @@ function eleven_theme_suggestions_links_alter(array &$suggestions, array $variab } -// form -function eleven_theme_suggestions_form_alter(array &$suggestions, array $variables) { - $suggestions[] = 'form__' . $variables['element']['#form_id']; -} - -// input fields -function eleven_theme_suggestions_input_alter(array &$suggestions, array $variables) { - $path = explode('/', \Drupal::service('path.current')->getPath()); - - //fix for views ui - // do an uglye test on the paths then check on the wrapper if its not action then add in the new template suggestion - if( (isset($path[4]) AND $path[2] == "structure" AND $path[3] == "views" AND $path[4] == "view") and ( isset($variables['element']['#array_parents']) and $variables['element']['#array_parents'][0] != 'actions' ) ) { - $suggestions[] = 'input__submit__view_admin_ui'; - } - -} - +// ----------------------------------------------------------------------------- //item list +// ----------------------------------------------------------------------------- function eleven_theme_suggestions_item_list_alter(array &$suggestions, array $variables) { $path = explode('/', \Drupal::service('path.current')->getPath()); @@ -244,17 +232,43 @@ function eleven_theme_suggestions_item_list_alter(array &$suggestions, array $va $suggestions[] = 'item_list__' . $path[3]; } +} + +// ----------------------------------------------------------------------------- +// Form +// ----------------------------------------------------------------------------- + +// add the id to a form template +function eleven_theme_suggestions_form_alter(array &$suggestions, array $variables) { + $suggestions[] = 'form__' . $variables['element']['#form_id']; } -// function THEMENAME_preprocess_item_list(&$variables) { } +function eleven_theme_suggestions_form_element_alter(array &$suggestions, array $variables) { + if ( isset($variables['element']['#form_is']) ) { + $suggestions[] = 'form_element__formid' . $variables['element']['#form_is']; + } + $suggestions[] = 'form_element__' . $variables['element']['#type']; +} +// input fields +function eleven_theme_suggestions_input_alter(array &$suggestions, array $variables) { + $path = explode('/', \Drupal::service('path.current')->getPath()); + + //fix for views ui + // do an uglye test on the paths then check on the wrapper if its not action then add in the new template suggestion + if( (isset($path[4]) AND $path[2] == "structure" AND $path[3] == "views" AND $path[4] == "view") and ( isset($variables['element']['#array_parents']) and $variables['element']['#array_parents'][0] != 'actions' ) ) { + $suggestions[] = 'input__submit__view_admin_ui'; + } +} -use Drupal\Core\Render\Element; + + +// Container /** * Implements hook_theme_suggestions_HOOK_alter(). */ @@ -311,7 +325,6 @@ function eleven_theme_suggestions_container_alter(array &$suggestions, array $va // ---------------------------------------------------------------------------- // node-edit 2 columns // ---------------------------------------------------------------------------- -use Drupal\Core\Form\FormStateInterface; function eleven_form_node_form_alter(&$form, FormStateInterface $form_state) { diff --git a/elevenfeat/elevenfeat.theme b/elevenfeat/elevenfeat.theme index 9b36fa3..5210922 100644 --- a/elevenfeat/elevenfeat.theme +++ b/elevenfeat/elevenfeat.theme @@ -1,5 +1,5 @@ - - - - - - \ No newline at end of file From 7c1342218c7c80eefa1ed1c33388a148a115eb64 Mon Sep 17 00:00:00 2001 From: mortendk Date: Sat, 26 Aug 2017 07:33:25 +0200 Subject: [PATCH 17/18] adding in a custom version of themable forms --- .../component/form/select/form-select.css | 2 +- elevenfeat/elevenfeat.theme | 4 - .../elevenformsuggestions.info.yml | 4 + .../elevenformsuggestions.module | 93 +++++++++++++++++++ 4 files changed, 98 insertions(+), 5 deletions(-) create mode 100644 elevenformsuggestions/elevenformsuggestions.info.yml create mode 100644 elevenformsuggestions/elevenformsuggestions.module diff --git a/eleven/templates/component/form/select/form-select.css b/eleven/templates/component/form/select/form-select.css index 48e5c86..410f4fe 100644 --- a/eleven/templates/component/form/select/form-select.css +++ b/eleven/templates/component/form/select/form-select.css @@ -4,7 +4,7 @@ select { min-width: 11rem; height: 2rem; margin: 0; - padding: 0 0.5rem; + padding: 0 1rem; border-right: 0; -webkit-border-radius: 0rem; border-radius: 0; diff --git a/elevenfeat/elevenfeat.theme b/elevenfeat/elevenfeat.theme index 5210922..b3d9bbc 100644 --- a/elevenfeat/elevenfeat.theme +++ b/elevenfeat/elevenfeat.theme @@ -1,5 +1 @@ Date: Sat, 26 Aug 2017 08:47:53 +0200 Subject: [PATCH 18/18] cleaned up the elevenformsuggestions a little bit --- .../feat/outside_in/offcanvas_container.css | 11 ++++- .../templates/feat/outside_in/outside_in.css | 4 ++ .../elevenformsuggestions.module | 43 ++++++++++++------- 3 files changed, 41 insertions(+), 17 deletions(-) diff --git a/elevenfeat/templates/feat/outside_in/offcanvas_container.css b/elevenfeat/templates/feat/outside_in/offcanvas_container.css index 18e14d0..8616b20 100644 --- a/elevenfeat/templates/feat/outside_in/offcanvas_container.css +++ b/elevenfeat/templates/feat/outside_in/offcanvas_container.css @@ -1,5 +1,14 @@ /* ui dialog components */ - +.ui-corner-all{ + border-radius: 0; + border-left: 1px solid var(--asphalt-light); + border-top: 0 solid; + border-right: 0 solid; +} +/*remove all ui icons */ +.ui-icon { + display: none; +} /* ----------------------------------------------------------------------------- ui dialog Titlebar ------------------------------------------------------------------------------*/ diff --git a/elevenfeat/templates/feat/outside_in/outside_in.css b/elevenfeat/templates/feat/outside_in/outside_in.css index 55760e1..586ac17 100644 --- a/elevenfeat/templates/feat/outside_in/outside_in.css +++ b/elevenfeat/templates/feat/outside_in/outside_in.css @@ -1,3 +1,7 @@ +/**/ +form.block-off-canvas-form{ + +} /* Style content in the tray. */ .ui-dialog-offcanvas p, .ui-dialog-offcanvas h1, diff --git a/elevenformsuggestions/elevenformsuggestions.module b/elevenformsuggestions/elevenformsuggestions.module index 5dcb0bf..7934ca3 100644 --- a/elevenformsuggestions/elevenformsuggestions.module +++ b/elevenformsuggestions/elevenformsuggestions.module @@ -4,7 +4,6 @@ * @file * Provides hooks for elevenformsuggestions module. */ - use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Render\Element; @@ -16,6 +15,23 @@ function elevenformsuggestions_theme_suggestions_input(array $variables) { return $suggestions; } + +/** + * Implements hook_preprocess_form_element(). + */ +function elevenformsuggestions_preprocess_form_element(array &$variables) { + if (!isset($variables['label'])) { + return; + } + + if (isset($variables['element']['#form_id'])) { + $variables['label']['#form_id'] = $variables['element']['#form_id']; + } + if (isset($variables['element']['#type'])) { + $variables['label']['#form_element_type'] = $variables['element']['#type']; + } +} + /** * Implements hook_theme_suggestions_form_element(). */ @@ -34,36 +50,31 @@ function elevenformsuggestions_theme_suggestions_form_element(array $variables) */ function elevenformsuggestions_theme_suggestions_form_element_label(array $variables) { $suggestions = []; - if (isset($variables['element']['#form_element_type'])) { - $suggestions[] = 'form_element_label__type__' . $variables['element']['#form_element_type']; - } + // if (isset($variables['element']['#form_element_type'])) { + // $suggestions[] = 'form_element_label__type__' . $variables['element']['#form_element_type']; + // } if (isset($variables['element']['#form_id'])) { $suggestions[] = 'form_element_label__form-id__' . $variables['element']['#form_id']; - $suggestions[] = 'form_element_label__type__' . $variables['element']['#form_element_type'] .'__form_id__' . $variables['element']['#form_id']; - + // $suggestions[] = 'form_element_label__type__' . $variables['element']['#form_element_type'] .'__form_id__' . $variables['element']['#form_id']; } if (isset($variables['element']['#form_element_type']) && isset($variables['element']['#form_id'])) { $suggestions[] = 'form_element_label__' . $variables['element']['#form_id'] . '__' . $variables['element']['#form_element_type']; } - return $suggestions; } /** - * Implements hook_preprocess_form_element(). + * Implements hook_theme_suggestions_details(). */ -function elevenformsuggestions_preprocess_form_element(array &$variables) { - if (!isset($variables['label'])) { - return; - } +function elevenformsuggestions_theme_suggestions_details(array $variables) { + $suggestions = []; if (isset($variables['element']['#form_id'])) { - $variables['label']['#form_id'] = $variables['element']['#form_id']; - } - if (isset($variables['element']['#type'])) { - $variables['label']['#form_element_type'] = $variables['element']['#type']; + $suggestions[] = 'details__form-id__' . $variables['element']['#form_id']; } + + return $suggestions; } /**