├── .cfignore ├── .gitignore ├── .npmignore ├── LICENSE ├── NOTICE ├── README.md ├── bower.json ├── config.json ├── dist ├── bootstrap │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── js │ ├── bootstrap.min.js │ ├── jquery.Jcrop.min.js │ ├── jquery.min.js │ └── select2.js ├── select2 │ ├── .bower.json │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── component.json │ ├── composer.json │ ├── package.json │ ├── release.sh │ ├── select2-bootstrap.css │ ├── select2-spinner.gif │ ├── select2.css │ ├── select2.jquery.json │ ├── select2.js │ ├── select2.min.js │ ├── select2.png │ ├── select2_locale_ar.js │ ├── select2_locale_az.js │ ├── select2_locale_bg.js │ ├── select2_locale_ca.js │ ├── select2_locale_cs.js │ ├── select2_locale_da.js │ ├── select2_locale_de.js │ ├── select2_locale_el.js │ ├── select2_locale_en.js.template │ ├── select2_locale_es.js │ ├── select2_locale_et.js │ ├── select2_locale_eu.js │ ├── select2_locale_fa.js │ ├── select2_locale_fi.js │ ├── select2_locale_fr.js │ ├── select2_locale_gl.js │ ├── select2_locale_he.js │ ├── select2_locale_hr.js │ ├── select2_locale_hu.js │ ├── select2_locale_id.js │ ├── select2_locale_is.js │ ├── select2_locale_it.js │ ├── select2_locale_ja.js │ ├── select2_locale_ka.js │ ├── select2_locale_ko.js │ ├── select2_locale_lt.js │ ├── select2_locale_lv.js │ ├── select2_locale_mk.js │ ├── select2_locale_ms.js │ ├── select2_locale_nb.js │ ├── select2_locale_nl.js │ ├── select2_locale_pl.js │ ├── select2_locale_pt-BR.js │ ├── select2_locale_pt-PT.js │ ├── select2_locale_ro.js │ ├── select2_locale_rs.js │ ├── select2_locale_ru.js │ ├── select2_locale_sk.js │ ├── select2_locale_sv.js │ ├── select2_locale_th.js │ ├── select2_locale_tr.js │ ├── select2_locale_ug-CN.js │ ├── select2_locale_uk.js │ ├── select2_locale_vi.js │ ├── select2_locale_zh-CN.js │ ├── select2_locale_zh-TW.js │ └── select2x2.png └── techne │ ├── css │ └── techne.min.css │ └── fonts │ ├── hyicon.eot │ ├── hyicon.svg │ ├── hyicon.ttf │ ├── hyicon.woff │ └── hyicon.woff2 ├── docs ├── kss │ ├── components │ │ ├── Alerts-Errors-Notifications.html │ │ ├── Buttons.html │ │ ├── Card.html │ │ ├── Cards.html │ │ ├── Contextual-Menu.html │ │ ├── Feedback-Form.html │ │ ├── Form-Elements.html │ │ ├── Help-and-Validation.html │ │ ├── Icons.html │ │ ├── Lists.html │ │ ├── Loading-Spinner.html │ │ ├── Localization.html │ │ ├── Modal.html │ │ ├── Page-Content-Panels.html │ │ ├── Page-Header.html │ │ ├── Pagination.html │ │ ├── Status-Indicators.html │ │ ├── Tables.html │ │ ├── Tabs.html │ │ ├── Thumbnail-Zoom.html │ │ ├── Tooltip-and-Popover.html │ │ ├── Tour-Bubble.html │ │ └── Trees.html │ ├── error │ │ ├── error-403.html │ │ ├── error-404.html │ │ └── error.html │ ├── images │ │ ├── H1.png │ │ ├── H2.png │ │ ├── H3.png │ │ ├── appexchange.svg │ │ ├── arrows-four-down.png │ │ ├── back-link-arrow.png │ │ ├── blue_square.png │ │ ├── btn_more.png │ │ ├── cat-avatar.jpg │ │ ├── controls-drag-drop.png │ │ ├── controls-multi-select.png │ │ ├── controls-select.png │ │ ├── controls-typeahead.png │ │ ├── default_circle-pic.png │ │ ├── default_hexagon-pic.png │ │ ├── default_square-pic.png │ │ ├── domains │ │ │ ├── appexchange.svg │ │ │ ├── builder.svg │ │ │ ├── builder_logo.svg │ │ │ ├── devportal.svg │ │ │ ├── home-header-bg.png │ │ │ └── techne.svg │ │ ├── favicons │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-160x160.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-192x192.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── home-header.png │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ └── mstile-70x70.png │ │ ├── first-contact.png │ │ ├── fullscreen │ │ │ ├── 01_help_page.jpg │ │ │ ├── 02_help_hover.jpg │ │ │ ├── 03_help_all.jpg │ │ │ ├── 04_help_errors.jpg │ │ │ ├── 05_help_sectionOff.jpg │ │ │ ├── 06_help_sectionOn.jpg │ │ │ ├── 07_forms_alignment.jpg │ │ │ ├── 08_forms_alignment.jpg │ │ │ ├── Dialogues.jpg │ │ │ ├── Help-all.jpg │ │ │ ├── Help-bubble.jpg │ │ │ ├── Help-mobile.png │ │ │ ├── Help-pageLevel.jpg │ │ │ ├── Help-validation.jpg │ │ │ ├── MixedPatterns_Organization.jpg │ │ │ ├── MixedPatterns_Package.jpg │ │ │ ├── Products_desktop.jpg │ │ │ ├── Products_tablet.png │ │ │ ├── ProjectDetails-mobile.png │ │ │ ├── Tour_desktop_1.jpg │ │ │ ├── Tour_desktop_2.jpg │ │ │ ├── Trees_desktop.jpg │ │ │ ├── Trees_mobile.png │ │ │ ├── action-bar-confirm.png │ │ │ ├── action-bar-deploy.png │ │ │ ├── action-bar-publish.png │ │ │ ├── cards-Packages.jpg │ │ │ ├── cards-mobile.png │ │ │ ├── cards-team_Members.jpg │ │ │ ├── filter_multiple_attributes.png │ │ │ ├── filter_single_attributes.png │ │ │ ├── header_clean.jpg │ │ │ ├── header_dirty.jpg │ │ │ ├── header_publish.jpg │ │ │ ├── header_validate.jpg │ │ │ ├── headers-guidelines.png │ │ │ ├── help-section-all.jpg │ │ │ ├── help-section.jpg │ │ │ ├── list-Packages.jpg │ │ │ ├── list-team_Members.jpg │ │ │ ├── local_field-level.png │ │ │ ├── local_page-level.png │ │ │ ├── products-mobile.png │ │ │ ├── sort.png │ │ │ ├── standard-header.jpg │ │ │ ├── standard-header_mobile.png │ │ │ ├── table_mobile.jpg │ │ │ ├── table_mobile.png │ │ │ ├── techne_styles.png │ │ │ ├── tour_mobile.png │ │ │ ├── wizard-desktop.jpg │ │ │ └── wizard_mobile.png │ │ ├── git-icon.png │ │ ├── gsg-back-to-top.png │ │ ├── h1-example-full.png │ │ ├── h1-example.png │ │ ├── h2-example-full.png │ │ ├── h2-example.png │ │ ├── h3-example-full.png │ │ ├── h3-example.png │ │ ├── h4-example-full.png │ │ ├── h4-example.png │ │ ├── h5-example-full.png │ │ ├── h5-example.png │ │ ├── header-styles.png │ │ ├── home-header-bg.png │ │ ├── home-header-mobile.png │ │ ├── home-header.png │ │ ├── home │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── banner_bg.png │ │ │ ├── consumer_1.png │ │ │ ├── consumer_2.png │ │ │ ├── consumer_3.png │ │ │ ├── consumer_over.png │ │ │ ├── consumer_slider.png │ │ │ ├── consumer_up.png │ │ │ ├── developer_1.png │ │ │ ├── developer_2.png │ │ │ ├── developer_3.png │ │ │ ├── developer_slider.png │ │ │ ├── developers_over.png │ │ │ ├── developers_up.png │ │ │ ├── high_touch_over.png │ │ │ ├── high_touch_up.png │ │ │ ├── hight_slider.png │ │ │ ├── hight_user_1.png │ │ │ ├── hight_user_2.png │ │ │ ├── hight_user_3.png │ │ │ ├── icon-copy.png │ │ │ ├── link-arrow.png │ │ │ ├── low_touch_over.png │ │ │ ├── low_touch_up.png │ │ │ ├── lowt_slider.png │ │ │ ├── lowt_user_1.png │ │ │ ├── lowt_user_2.png │ │ │ ├── lowt_user_3.png │ │ │ └── techne-logo.png │ │ ├── hybris-guy-bg.png │ │ ├── hybris-logo.png │ │ ├── hybris.svg │ │ ├── ico_code.png │ │ ├── ico_collapse.png │ │ ├── ico_type.png │ │ ├── icon-sprite.png │ │ ├── kss-active.svg │ │ ├── localization.png │ │ ├── navigation-desktop (1).png │ │ ├── navigation-desktop.png │ │ ├── navigation-header.png │ │ ├── navigation-mobile-closed.png │ │ ├── navigation-mobile-open-2.png │ │ ├── navigation-mobile-open.png │ │ ├── navigation-project-switcher.png │ │ ├── navigation-secondary.png │ │ ├── navigation-tablet-OPEN-2.png │ │ ├── navigation-tablet-closed.png │ │ ├── navigation-tablet-open.png │ │ ├── navigation-toolbar.png │ │ ├── package-picture.png │ │ ├── persona-consumer.png │ │ ├── persona-csr.png │ │ ├── persona-developer.png │ │ ├── persona-it-ops.png │ │ ├── persona-marketer.png │ │ ├── persona-merchant.png │ │ ├── persona-merchant.svg │ │ ├── persona-order-manager.png │ │ ├── persona-product-manager.png │ │ ├── product-thumbnail-tall.png │ │ ├── product-thumbnail-wide.png │ │ ├── product-thumbnail.png │ │ ├── quotes.png │ │ ├── sap-hybris-logo.png │ │ ├── screen-grid.png │ │ ├── techne_Cat.png │ │ ├── techne_Parrot.png │ │ ├── techne_Zip.png │ │ ├── techne_styles.png │ │ ├── thumbnail-zoom-example.jpg │ │ ├── thumbnails │ │ │ ├── 01_help_page.jpg │ │ │ ├── 02_help_hover.jpg │ │ │ ├── 03_help_all.jpg │ │ │ ├── 04_help_errors.jpg │ │ │ ├── 05_help_sectionOff.jpg │ │ │ ├── 06_help_sectionOn.jpg │ │ │ ├── 07_forms_alignment.jpg │ │ │ ├── 08_forms_alignment.jpg │ │ │ ├── Cards-mobile.jpg │ │ │ ├── Dialogues.jpg │ │ │ ├── Help-all.jpg │ │ │ ├── Help-bubble.jpg │ │ │ ├── Help-mobile.jpg │ │ │ ├── Help-pageLevel.jpg │ │ │ ├── Help-validation.jpg │ │ │ ├── MixedPatterns_Organization.jpg │ │ │ ├── MixedPatterns_Package.jpg │ │ │ ├── Products-mobile.jpg │ │ │ ├── Products_desktop.jpg │ │ │ ├── Products_tablet.jpg │ │ │ ├── ProjectDetails-mobile.png │ │ │ ├── Tour_desktop_1.jpg │ │ │ ├── Tour_desktop_2.jpg │ │ │ ├── Trees_desktop.jpg │ │ │ ├── Trees_mobile.jpg │ │ │ ├── action-bar-confirm-thumb.png │ │ │ ├── action-bar-deploy-thumb.png │ │ │ ├── action-bar-publish-thumb.png │ │ │ ├── cards-Packages.jpg │ │ │ ├── cards-team_Members.jpg │ │ │ ├── field-level_thumbnail.png │ │ │ ├── header_clean.jpg │ │ │ ├── header_dirty.jpg │ │ │ ├── header_publish.jpg │ │ │ ├── header_validate.jpg │ │ │ ├── headers-guidelines-thumb.png │ │ │ ├── help-section-all.jpg │ │ │ ├── help-section.jpg │ │ │ ├── list-team_Members.jpg │ │ │ ├── lists-Packages.jpg │ │ │ ├── local_thumbnail.png │ │ │ ├── standard-header.jpg │ │ │ ├── standard-header_mobile.jpg │ │ │ ├── table_mobile.jpg │ │ │ ├── techne_styles.jpg │ │ │ ├── thump_multi.png │ │ │ ├── thump_single.png │ │ │ ├── thump_sort.png │ │ │ ├── tour_mobile.jpg │ │ │ ├── wizard.jpg │ │ │ └── wizard_mobile.jpg │ │ ├── user.png │ │ ├── visual-system-header-example.png │ │ ├── visual-system-positioning.png │ │ ├── visual-system-processing-position.png │ │ ├── visual-system-processing-treatmeant.png │ │ └── welcome-bg.png │ ├── nginx.conf │ ├── patterns │ │ ├── Action-Bar.html │ │ ├── Cards.html │ │ ├── Data-Set-Display.html │ │ ├── Dialogues-Modals.html │ │ ├── Feedback-Form.html │ │ ├── Grids.html │ │ ├── Localization-Editor.html │ │ ├── Localization.html │ │ ├── Navigation-test.html │ │ ├── Navigation.html │ │ ├── Pattern-Section.html │ │ ├── Pattern-Two.html │ │ ├── Section-one.html │ │ ├── Tables.html │ │ ├── Tour-Bubble.html │ │ ├── Tours.html │ │ ├── Trees.html │ │ └── Wizards.html │ ├── public │ │ ├── bootstrap │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── css │ │ │ ├── highlightjs-techne.css │ │ │ ├── techne.css │ │ │ └── techne.min.css │ │ ├── dist │ │ │ ├── bootstrap │ │ │ │ └── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.Jcrop.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── select2.js │ │ │ ├── techne │ │ │ │ ├── css │ │ │ │ │ └── techne.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── hyicon.eot │ │ │ │ │ ├── hyicon.svg │ │ │ │ │ ├── hyicon.ttf │ │ │ │ │ ├── hyicon.woff │ │ │ │ │ └── hyicon.woff2 │ │ │ └── vendor │ │ │ │ ├── Jcrop.gif │ │ │ │ └── jquery.Jcrop.min.css │ │ ├── downloads │ │ │ ├── Techne_AxureLibrary_v1_3_1.rplib │ │ │ └── teche_colors.aco │ │ ├── jquery-ui.js │ │ ├── jquery.cookiebar.js │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── highlight.pack.min.js │ │ │ ├── jquery.min.js │ │ │ ├── select2.js │ │ │ └── yaas.sso.js │ │ ├── kss.css │ │ ├── kss.js │ │ ├── less.js │ │ ├── main.js │ │ ├── markdown.css │ │ ├── prettify.js │ │ ├── prism.js │ │ ├── release-archive │ │ │ ├── techne0.0.2.zip │ │ │ ├── techne0.1.4.zip │ │ │ ├── techne0.1.5.zip │ │ │ ├── techne0.1.6.zip │ │ │ ├── techne0.1.7.zip │ │ │ ├── techne0.1.8.zip │ │ │ ├── techne0.2.0.zip │ │ │ ├── techne0.2.1.zip │ │ │ ├── techne0.2.2.zip │ │ │ ├── techne0.2.3.zip │ │ │ ├── techne0.2.4.zip │ │ │ ├── techne0.2.41.zip │ │ │ ├── techne1.0.0.zip │ │ │ ├── techne1.0.1.zip │ │ │ ├── techne1.1.0.zip │ │ │ ├── techne1.2.0.zip │ │ │ ├── techne1.2.1.zip │ │ │ ├── techne1.3.0.zip │ │ │ ├── techne1.3.1.zip │ │ │ ├── techne1.4.1.zip │ │ │ ├── techne1.5.0.zip │ │ │ ├── techne1.5.1.zip │ │ │ ├── techne1.5.2.zip │ │ │ ├── techne1.5.3.zip │ │ │ ├── techne1.5.4.zip │ │ │ ├── techne1.5.5.zip │ │ │ ├── techne1.5.6.zip │ │ │ ├── techne1.5.7.zip │ │ │ ├── techne1.5.8.zip │ │ │ └── techne1.5.9.zip │ │ ├── script.js │ │ ├── select2.min.js │ │ ├── style.css │ │ ├── super-nav.js │ │ └── yaas.sso.js │ └── starterpages │ │ ├── cards.html │ │ ├── details-1.html │ │ ├── details-2.html │ │ ├── empty-page.html │ │ ├── images │ │ ├── empty.png │ │ ├── favicon-96x96.png │ │ ├── hybris.svg │ │ ├── project-icon.png │ │ └── user-icon.png │ │ ├── index.html │ │ ├── product-grid.html │ │ ├── start.html │ │ ├── table.html │ │ └── tree.html ├── markdown │ ├── main │ │ ├── GettingStarted.md │ │ ├── Guidelines.md │ │ └── index.md │ └── starterpages │ │ └── start.md └── template │ ├── elements.html │ ├── index.html │ ├── public │ ├── jquery-ui.js │ ├── jquery.cookiebar.js │ ├── kss.js │ ├── kss.less │ ├── less.js │ ├── less │ │ ├── _common.less │ │ ├── _components.less │ │ ├── _footer.less │ │ ├── _getting-started.less │ │ ├── _guidelines.less │ │ ├── _homepage.less │ │ ├── _icons.less │ │ ├── _kss-content.less │ │ ├── _markdown.less │ │ ├── _patterns.less │ │ ├── _pretty-print.less │ │ ├── _side-nav.less │ │ ├── _starter-pages.less │ │ ├── _top-nav.less │ │ └── _variables.less │ ├── main.js │ ├── prettify.js │ ├── script.js │ ├── super-nav.js │ └── yaas.sso.js │ └── starterpages.html ├── docu ├── files │ └── overview.html.md.eco └── release_notes │ ├── 2015-11-02-Technev100.html.md │ ├── 2015-12-04-Technev101.html.md │ ├── 2016-02-12-Technev110.html.md │ ├── 2016-04-13-Technev120.html.md │ ├── 2016-06-20-Technev130.html.md │ ├── 2016-08-22-Technev131.html.md │ ├── 2016-09-03-Technev140.html.md │ ├── 2016-09-03-Technev141.html.md │ ├── 2016-11-04-Technev150.html.md │ ├── 2016-11-22-Technev151.html.md │ ├── 2016-12-06-Technev152.html.md │ ├── 2016-12-20-Technev153.html.md │ ├── 2017-01-03-Technev154.html.md │ ├── 2017-02-09-Technev155.html.md │ ├── 2017-05-11-Technev156.html.md │ ├── 2017-09-19-Technev157.html.md │ ├── 2017-09-22-Technev158.html.md │ ├── 2017-10-31-Technev159.html.md │ └── img │ ├── 2016-12-06 │ └── tree-highlight.png │ └── v1.5.3 │ └── avatars-images.png ├── gulp-patch ├── gulp-kss │ ├── handlebarHelpers.js │ └── index.js └── kss │ ├── kss.js │ └── kss_styleguide.js ├── gulpfile.js ├── package-lock.json ├── package.json ├── repo-properties.json └── src ├── font-icon-template.svg ├── icons ├── uE001-add.svg ├── uE002-arrow.svg ├── uE003-back.svg ├── uE004-checked.svg ├── uE005-chevron.svg ├── uE006-close.svg ├── uE007-dragdrop.svg ├── uE008-expand.svg ├── uE009-collapse.svg ├── uE00A-localization.svg ├── uE00B-grid.svg ├── uE00C-list.svg ├── uE00D-more.svg ├── uE00E-remove.svg ├── uE00F-search.svg ├── uE010-top.svg ├── uE011-helpoff.svg ├── uE012-helpon.svg ├── uE013-filter.svg ├── uE014-filterremove.svg ├── uE015-sort.svg ├── uE016-addlg.svg ├── uE017-combinedview.svg ├── uE018-customize.svg ├── uE019-info.svg ├── uE01A-library.svg ├── uE01B-restrictions.svg ├── uE01C-sync.svg ├── uE01D-caution.svg ├── uE01E-done.svg ├── uE01F-delete.svg ├── uE020-change.svg ├── uE021-checkedlg.svg ├── uE022-dragdroplg.svg ├── uE023-edit.svg ├── uE024-linked.svg ├── uE025-noimage.svg ├── uE026-options.svg ├── uE027-removelg.svg ├── uE028-visibilityoff.svg ├── uE029-visibilityon.svg ├── uE02A-warning.svg ├── uE02B-feedback.svg ├── uE02C-gethelp.svg ├── uE02D-infoon.svg ├── uE02E-lock.svg ├── uE02F-clone.svg ├── uE030-duplicate.svg ├── uE031-maximize.svg ├── uE032-minimize.svg ├── uE033-msgdanger.svg ├── uE034-msginfo.svg ├── uE035-msgsuccess.svg ├── uE036-msgwarning.svg ├── uEA01-commerce.svg ├── uEA02-commercelg.svg ├── uEA03-unpowered.svg ├── uEA04-optionssm.svg ├── uEA05-globe.svg └── uEA06-unlinked.svg └── less ├── __components.less ├── __patterns.less ├── components ├── _atoms.less ├── _back-to-top.less ├── _button-icon.less ├── _feedback-menu.less ├── _forms-charactercounter.less ├── _forms-checkboxes.less ├── _forms-criticalerroravoidance.less ├── _forms-help.less ├── _forms-hint-text.less ├── _forms-radiobuttons.less ├── _forms-readonly.less ├── _forms-select.less ├── _forms-toggle.less ├── _forms-validationandhelp.less ├── _icons.less ├── _layout-section.less ├── _products.less ├── _spinner.less ├── _stepbar.less ├── _sticky_navbar.less ├── _tabs-scrollable.less ├── _thumbnail-zoom.less └── _tooltip-popover.less ├── globals ├── _shame.less ├── _utils.less ├── _variables.less └── themes │ ├── _belize.less │ └── _techne.less ├── overwrites ├── __overwrites.less ├── _alert.less ├── _badges.less ├── _buttons.less ├── _close.less ├── _code.less ├── _dropdowns.less ├── _forms.less ├── _grid.less ├── _input-groups.less ├── _labels.less ├── _listgroup.less ├── _navs.less ├── _pagination.less ├── _panels.less ├── _tabs.less ├── _thumbnails.less ├── _tooltip.less └── _type.less ├── styles.less ├── techne-patterns ├── _action-bar.less ├── _avatars.less ├── _crop-img.less ├── _data-card.less ├── _data-set-display.less ├── _data.less ├── _dialogues-modals.less ├── _expandable-button.less ├── _feedback-form.less ├── _locals-tabs.less ├── _multi-tab-editor.less ├── _navigation.less ├── _new-items.less ├── _popover.less ├── _product-thumbnail.less ├── _tables.less ├── _toolbar.less ├── _tours.less ├── _trees.less ├── _usercards.less └── _wizards.less ├── templates ├── _icons.less └── _resource-paths.less └── vendor └── _select2.less /.cfignore: -------------------------------------------------------------------------------- 1 | docu/ 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## BOWER COMPONENTS 2 | bower_components/ 3 | 4 | ## NODE MODULES 5 | node_modules/* 6 | 7 | ## CONFIG FILES 8 | src/less/globals/_resource-paths.less 9 | 10 | ## IDE Specfici folders 11 | .idea/ 12 | .vscode/ 13 | 14 | docs/kss/*.html 15 | docs/kss/patterns/*.html 16 | docs/kss/components/*.html 17 | 18 | # OS generated files # 19 | ###################### 20 | .DS_Store 21 | .DS_Store? 22 | ._* 23 | .Spotlight-V100 24 | .Trashes 25 | ehthumbs.db 26 | Thumbs.db 27 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Exclude Directories 2 | /docs 3 | /docu 4 | /gulp-patch 5 | 6 | # Exclude Files 7 | .npmignore 8 | .gitignore 9 | *.yml 10 | deploy-key.enc 11 | gulpfile.js 12 | .tmp 13 | *.log 14 | PROJECT.md 15 | package-lock.json 16 | bower.json 17 | repo-properties.json 18 | 19 | 20 | # OS generated files 21 | .DS_Store 22 | .DS_Store? 23 | ._* 24 | .Spotlight-V100 25 | .Trashes 26 | ehthumbs.db 27 | Thumbs.db 28 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 SAP SE or an SAP affiliate company. All rights reserved. -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hyTechne", 3 | "version": "1.5.10", 4 | "description": "Hybris Techne style guide", 5 | "authors": [ 6 | "Hybris Software" 7 | ], 8 | "keywords":[ 9 | "Hybris", "techne", "SAP", "[y]" 10 | ], 11 | "ignore":[ 12 | ".idea/", 13 | "docs/", 14 | "bower_components", 15 | "node_modules/", 16 | "src/less/templates/", 17 | ".gitignore", 18 | "config.json", 19 | "gulpfile.js", 20 | "package.json" 21 | 22 | ], 23 | "main":[ 24 | "dist/js/techne.min.js", 25 | "dist/css/techne.min.css" 26 | ], 27 | "license": "Apache 2.0", 28 | "private": false, 29 | "dependencies": { 30 | "bootstrap": "~3.3.2", 31 | "select2": "~3.5.2", 32 | "jquery": "~2.1.0", 33 | "Jcrop" : "~0.9.12" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "bower_path": "../../bower_components", 3 | "bootstrap_path": "../../bootstrap", 4 | "appendComponentCss": false, 5 | "appendComponentHTML": false 6 | } 7 | -------------------------------------------------------------------------------- /dist/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dist/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dist/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dist/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /dist/select2/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2", 3 | "version": "3.5.4", 4 | "main": [ 5 | "select2.js", 6 | "select2.css", 7 | "select2.png", 8 | "select2x2.png", 9 | "select2-spinner.gif" 10 | ], 11 | "dependencies": { 12 | "jquery": ">= 1.7.1" 13 | }, 14 | "homepage": "https://github.com/ivaynberg/select2", 15 | "_release": "3.5.4", 16 | "_resolution": { 17 | "type": "version", 18 | "tag": "3.5.4", 19 | "commit": "9f414ea289b0db3c6a63e5d5adee448189689bc6" 20 | }, 21 | "_source": "git://github.com/ivaynberg/select2.git", 22 | "_target": "~3.5.2", 23 | "_originalSource": "select2" 24 | } -------------------------------------------------------------------------------- /dist/select2/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | -------------------------------------------------------------------------------- /dist/select2/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2014 Igor Vaynberg 2 | 3 | Version: @@ver@@ Timestamp: @@timestamp@@ 4 | 5 | This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU 6 | General Public License version 2 (the "GPL License"). You may choose either license to govern your 7 | use of this software only upon the condition that you accept all of the terms of either the Apache 8 | License or the GPL License. 9 | 10 | You may obtain a copy of the Apache License and the GPL License at: 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | http://www.gnu.org/licenses/gpl-2.0.html 14 | 15 | Unless required by applicable law or agreed to in writing, software distributed under the Apache License 16 | or the GPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 17 | either express or implied. See the Apache License and the GPL License for the specific language governing 18 | permissions and limitations under the Apache License and the GPL License. 19 | -------------------------------------------------------------------------------- /dist/select2/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2", 3 | "version": "3.5.4", 4 | "main": ["select2.js", "select2.css", "select2.png", "select2x2.png", "select2-spinner.gif"], 5 | "dependencies": { 6 | "jquery": ">= 1.7.1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dist/select2/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": 3 | "ivaynberg/select2", 4 | "description": "Select2 is a jQuery based replacement for select boxes.", 5 | "version": "3.5.4", 6 | "type": "component", 7 | "homepage": "http://ivaynberg.github.io/select2/", 8 | "license": "Apache-2.0", 9 | "require": { 10 | "robloach/component-installer": "*", 11 | "components/jquery": ">=1.7.1" 12 | }, 13 | "extra": { 14 | "component": { 15 | "scripts": [ 16 | "select2.js" 17 | ], 18 | "files": [ 19 | "select2.js", 20 | "select2_locale_*.js", 21 | "select2.css", 22 | "select2-bootstrap.css", 23 | "select2-spinner.gif", 24 | "select2.png", 25 | "select2x2.png" 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /dist/select2/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Select2", 3 | "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", 4 | "homepage": "http://ivaynberg.github.io/select2", 5 | "author": "Igor Vaynberg", 6 | "repository": {"type": "git", "url": "git://github.com/ivaynberg/select2.git"}, 7 | "main": "select2.js", 8 | "version": "3.5.4", 9 | "jspm": { 10 | "main": "select2", 11 | "files": ["select2.js", "select2.png", "select2.css", "select2-spinner.gif"], 12 | "shim": { 13 | "select2": { 14 | "imports": ["jquery", "./select2.css!"], 15 | "exports": "$" 16 | } 17 | }, 18 | "buildConfig": { "uglify": true } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /dist/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/select2/select2-spinner.gif -------------------------------------------------------------------------------- /dist/select2/select2.jquery.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2", 3 | "title": "Select2", 4 | "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", 5 | "keywords": [ 6 | "select", 7 | "autocomplete", 8 | "typeahead", 9 | "dropdown", 10 | "multiselect", 11 | "tag", 12 | "tagging" 13 | ], 14 | "version": "3.5.4", 15 | "author": { 16 | "name": "Igor Vaynberg", 17 | "url": "https://github.com/ivaynberg" 18 | }, 19 | "licenses": [ 20 | { 21 | "type": "Apache", 22 | "url": "http://www.apache.org/licenses/LICENSE-2.0" 23 | }, 24 | { 25 | "type": "GPL v2", 26 | "url": "http://www.gnu.org/licenses/gpl-2.0.html" 27 | } 28 | ], 29 | "bugs": "https://github.com/ivaynberg/select2/issues", 30 | "homepage": "http://ivaynberg.github.com/select2", 31 | "docs": "http://ivaynberg.github.com/select2/", 32 | "download": "https://github.com/ivaynberg/select2/tags", 33 | "dependencies": { 34 | "jquery": ">=1.7.1" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /dist/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/select2/select2.png -------------------------------------------------------------------------------- /dist/select2/select2_locale_az.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Azerbaijani translation. 3 | * 4 | * Author: Farhad Safarov 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['az'] = { 10 | formatMatches: function (matches) { return matches + " nəticə mövcuddur, hərəkət etdirmək üçün yuxarı və aşağı düymələrindən istifadə edin."; }, 11 | formatNoMatches: function () { return "Nəticə tapılmadı"; }, 12 | formatInputTooShort: function (input, min) { var n = min - input.length; return n + " simvol daxil edin"; }, 13 | formatInputTooLong: function (input, max) { var n = input.length - max; return n + " simvol silin"; }, 14 | formatSelectionTooBig: function (limit) { return "Sadəcə " + limit + " element seçə bilərsiniz"; }, 15 | formatLoadMore: function (pageNumber) { return "Daha çox nəticə yüklənir…"; }, 16 | formatSearching: function () { return "Axtarılır…"; } 17 | }; 18 | 19 | $.extend($.fn.select2.defaults, $.fn.select2.locales['az']); 20 | })(jQuery); 21 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Bulgarian translation. 3 | * 4 | * @author Lubomir Vikev 5 | * @author Uriy Efremochkin 6 | */ 7 | (function ($) { 8 | "use strict"; 9 | 10 | $.fn.select2.locales['bg'] = { 11 | formatNoMatches: function () { return "Няма намерени съвпадения"; }, 12 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Моля въведете още " + n + " символ" + (n > 1 ? "а" : ""); }, 13 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Моля въведете с " + n + " по-малко символ" + (n > 1 ? "а" : ""); }, 14 | formatSelectionTooBig: function (limit) { return "Можете да направите до " + limit + (limit > 1 ? " избора" : " избор"); }, 15 | formatLoadMore: function (pageNumber) { return "Зареждат се още…"; }, 16 | formatSearching: function () { return "Търсене…"; } 17 | }; 18 | 19 | $.extend($.fn.select2.defaults, $.fn.select2.locales['bg']); 20 | })(jQuery); 21 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Catalan translation. 3 | * 4 | * Author: David Planella 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ca'] = { 10 | formatNoMatches: function () { return "No s'ha trobat cap coincidència"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduïu " + n + " caràcter" + (n == 1 ? "" : "s") + " més"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Introduïu " + n + " caràcter" + (n == 1? "" : "s") + "menys"; }, 13 | formatSelectionTooBig: function (limit) { return "Només podeu seleccionar " + limit + " element" + (limit == 1 ? "" : "s"); }, 14 | formatLoadMore: function (pageNumber) { return "S'estan carregant més resultats…"; }, 15 | formatSearching: function () { return "S'està cercant…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ca']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Danish translation. 3 | * 4 | * Author: Anders Jenbo 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['da'] = { 10 | formatNoMatches: function () { return "Ingen resultater fundet"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Angiv venligst " + n + " tegn mere"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Angiv venligst " + n + " tegn mindre"; }, 13 | formatSelectionTooBig: function (limit) { return "Du kan kun vælge " + limit + " emne" + (limit === 1 ? "" : "r"); }, 14 | formatLoadMore: function (pageNumber) { return "Indlæser flere resultater…"; }, 15 | formatSearching: function () { return "Søger…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['da']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 German translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['de'] = { 8 | formatNoMatches: function () { return "Keine Übereinstimmungen gefunden"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Bitte " + n + " Zeichen mehr eingeben"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Bitte " + n + " Zeichen weniger eingeben"; }, 11 | formatSelectionTooBig: function (limit) { return "Sie können nur " + limit + " Eintr" + (limit === 1 ? "ag" : "äge") + " auswählen"; }, 12 | formatLoadMore: function (pageNumber) { return "Lade mehr Ergebnisse…"; }, 13 | formatSearching: function () { return "Suche…"; }, 14 | formatMatches: function (matches) { return matches + " Ergebnis " + (matches > 1 ? "se" : "") + " verfügbar, zum Navigieren die Hoch-/Runter-Pfeiltasten verwenden."; } 15 | }; 16 | 17 | $.extend($.fn.select2.defaults, $.fn.select2.locales['de']); 18 | })(jQuery); -------------------------------------------------------------------------------- /dist/select2/select2_locale_el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Greek translation. 3 | * 4 | * @author Uriy Efremochkin 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['el'] = { 10 | formatNoMatches: function () { return "Δεν βρέθηκαν αποτελέσματα"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Παρακαλούμε εισάγετε " + n + " περισσότερο" + (n > 1 ? "υς" : "") + " χαρακτήρ" + (n > 1 ? "ες" : "α"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Παρακαλούμε διαγράψτε " + n + " χαρακτήρ" + (n > 1 ? "ες" : "α"); }, 13 | formatSelectionTooBig: function (limit) { return "Μπορείτε να επιλέξετε μόνο " + limit + " αντικείμεν" + (limit > 1 ? "α" : "ο"); }, 14 | formatLoadMore: function (pageNumber) { return "Φόρτωση περισσότερων…"; }, 15 | formatSearching: function () { return "Αναζήτηση…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['el']); 19 | })(jQuery); -------------------------------------------------------------------------------- /dist/select2/select2_locale_en.js.template: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 translation. 3 | * 4 | * Author: Your Name 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['en'] = { 10 | formatMatches: function (matches) { if (matches === 1) { return "One result is available, press enter to select it."; } return matches + " results are available, use up and down arrow keys to navigate."; }, 11 | formatNoMatches: function () { return "No matches found"; }, 12 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Please enter " + n + " or more character" + (n == 1 ? "" : "s"); }, 13 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Please delete " + n + " character" + (n == 1 ? "" : "s"); }, 14 | formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); }, 15 | formatLoadMore: function (pageNumber) { return "Loading more results…"; }, 16 | formatSearching: function () { return "Searching…"; } 17 | }; 18 | 19 | $.extend($.fn.select2.defaults, $.fn.select2.locales['en']); 20 | })(jQuery); 21 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_et.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Estonian translation. 3 | * 4 | * Author: Kuldar Kalvik 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['et'] = { 10 | formatNoMatches: function () { return "Tulemused puuduvad"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Sisesta " + n + " täht" + (n == 1 ? "" : "e") + " rohkem"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Sisesta " + n + " täht" + (n == 1? "" : "e") + " vähem"; }, 13 | formatSelectionTooBig: function (limit) { return "Saad vaid " + limit + " tulemus" + (limit == 1 ? "e" : "t") + " valida"; }, 14 | formatLoadMore: function (pageNumber) { return "Laen tulemusi.."; }, 15 | formatSearching: function () { return "Otsin.."; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['et']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Persian translation. 3 | * 4 | * Author: Ali Choopan 5 | * Author: Ebrahim Byagowi 6 | */ 7 | (function ($) { 8 | "use strict"; 9 | 10 | $.fn.select2.locales['fa'] = { 11 | formatMatches: function (matches) { return matches + " نتیجه موجود است، کلیدهای جهت بالا و پایین را برای گشتن استفاده کنید."; }, 12 | formatNoMatches: function () { return "نتیجه‌ای یافت نشد."; }, 13 | formatInputTooShort: function (input, min) { var n = min - input.length; return "لطفاً " + n + " نویسه بیشتر وارد نمایید"; }, 14 | formatInputTooLong: function (input, max) { var n = input.length - max; return "لطفاً " + n + " نویسه را حذف کنید."; }, 15 | formatSelectionTooBig: function (limit) { return "شما فقط می‌توانید " + limit + " مورد را انتخاب کنید"; }, 16 | formatLoadMore: function (pageNumber) { return "در حال بارگیری موارد بیشتر…"; }, 17 | formatSearching: function () { return "در حال جستجو…"; } 18 | }; 19 | 20 | $.extend($.fn.select2.defaults, $.fn.select2.locales['fa']); 21 | })(jQuery); 22 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Finnish translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['fi'] = { 7 | formatNoMatches: function () { 8 | return "Ei tuloksia"; 9 | }, 10 | formatInputTooShort: function (input, min) { 11 | var n = min - input.length; 12 | return "Ole hyvä ja anna " + n + " merkkiä lisää"; 13 | }, 14 | formatInputTooLong: function (input, max) { 15 | var n = input.length - max; 16 | return "Ole hyvä ja anna " + n + " merkkiä vähemmän"; 17 | }, 18 | formatSelectionTooBig: function (limit) { 19 | return "Voit valita ainoastaan " + limit + " kpl"; 20 | }, 21 | formatLoadMore: function (pageNumber) { 22 | return "Ladataan lisää tuloksia…"; 23 | }, 24 | formatSearching: function () { 25 | return "Etsitään…"; 26 | } 27 | }; 28 | 29 | $.extend($.fn.select2.defaults, $.fn.select2.locales['fi']); 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 French translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['fr'] = { 8 | formatMatches: function (matches) { return matches + " résultats sont disponibles, utilisez les flèches haut et bas pour naviguer."; }, 9 | formatNoMatches: function () { return "Aucun résultat trouvé"; }, 10 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Saisissez " + n + " caractère" + (n == 1? "" : "s") + " supplémentaire" + (n == 1? "" : "s") ; }, 11 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Supprimez " + n + " caractère" + (n == 1? "" : "s"); }, 12 | formatSelectionTooBig: function (limit) { return "Vous pouvez seulement sélectionner " + limit + " élément" + (limit == 1 ? "" : "s"); }, 13 | formatLoadMore: function (pageNumber) { return "Chargement de résultats supplémentaires…"; }, 14 | formatSearching: function () { return "Recherche en cours…"; } 15 | }; 16 | 17 | $.extend($.fn.select2.defaults, $.fn.select2.locales['fr']); 18 | })(jQuery); 19 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Hebrew translation. 3 | * 4 | * Author: Yakir Sitbon 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['he'] = { 10 | formatNoMatches: function () { return "לא נמצאו התאמות"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "נא להזין עוד " + n + " תווים נוספים"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "נא להזין פחות " + n + " תווים"; }, 13 | formatSelectionTooBig: function (limit) { return "ניתן לבחור " + limit + " פריטים"; }, 14 | formatLoadMore: function (pageNumber) { return "טוען תוצאות נוספות…"; }, 15 | formatSearching: function () { return "מחפש…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['he']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Croatian translation. 3 | * 4 | * @author Edi Modrić 5 | * @author Uriy Efremochkin 6 | */ 7 | (function ($) { 8 | "use strict"; 9 | 10 | $.fn.select2.locales['hr'] = { 11 | formatNoMatches: function () { return "Nema rezultata"; }, 12 | formatInputTooShort: function (input, min) { return "Unesite još" + character(min - input.length); }, 13 | formatInputTooLong: function (input, max) { return "Unesite" + character(input.length - max) + " manje"; }, 14 | formatSelectionTooBig: function (limit) { return "Maksimalan broj odabranih stavki je " + limit; }, 15 | formatLoadMore: function (pageNumber) { return "Učitavanje rezultata…"; }, 16 | formatSearching: function () { return "Pretraga…"; } 17 | }; 18 | 19 | $.extend($.fn.select2.defaults, $.fn.select2.locales['hr']); 20 | 21 | function character (n) { 22 | return " " + n + " znak" + (n%10 < 5 && n%10 > 0 && (n%100 < 5 || n%100 > 19) ? n%10 > 1 ? "a" : "" : "ova"); 23 | } 24 | })(jQuery); 25 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Hungarian translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['hu'] = { 8 | formatNoMatches: function () { return "Nincs találat."; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Túl rövid. Még " + n + " karakter hiányzik."; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Túl hosszú. " + n + " karakterrel több, mint kellene."; }, 11 | formatSelectionTooBig: function (limit) { return "Csak " + limit + " elemet lehet kiválasztani."; }, 12 | formatLoadMore: function (pageNumber) { return "Töltés…"; }, 13 | formatSearching: function () { return "Keresés…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['hu']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Indonesian translation. 3 | * 4 | * Author: Ibrahim Yusuf 5 | * Author: Salahuddin Hairai 6 | */ 7 | (function ($) { 8 | "use strict"; 9 | 10 | $.fn.select2.locales['id'] = { 11 | formatMatches: function (matches) { if (matches === 1) { return "Satu keputusan ditemui, tekan enter untuk memilih."; } return matches + " keputusan ditemui, gunakan kekunci anak panah ke atas dan ke bawah untuk menavigasi."; }, 12 | formatNoMatches: function () { return "Tidak ada data yang sesuai"; }, 13 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Masukkan " + n + " huruf lagi"; }, 14 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Hapuskan " + n + " huruf" ; }, 15 | formatSelectionTooBig: function (limit) { return "Anda hanya dapat memilih " + limit + " pilihan"; }, 16 | formatLoadMore: function (pageNumber) { return "Mengambil data…"; }, 17 | formatSearching: function () { return "Mencari…"; } 18 | }; 19 | 20 | $.extend($.fn.select2.defaults, $.fn.select2.locales['id']); 21 | })(jQuery); 22 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Icelandic translation. 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['is'] = { 8 | formatNoMatches: function () { return "Ekkert fannst"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vinsamlegast skrifið " + n + " staf" + (n > 1 ? "i" : "") + " í viðbót"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vinsamlegast styttið texta um " + n + " staf" + (n > 1 ? "i" : ""); }, 11 | formatSelectionTooBig: function (limit) { return "Þú getur aðeins valið " + limit + " atriði"; }, 12 | formatLoadMore: function (pageNumber) { return "Sæki fleiri niðurstöður…"; }, 13 | formatSearching: function () { return "Leita…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['is']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Italian translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['it'] = { 8 | formatNoMatches: function () { return "Nessuna corrispondenza trovata"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Inserisci ancora " + n + " caratter" + (n == 1? "e" : "i"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Inserisci " + n + " caratter" + (n == 1? "e" : "i") + " in meno"; }, 11 | formatSelectionTooBig: function (limit) { return "Puoi selezionare solo " + limit + " element" + (limit == 1 ? "o" : "i"); }, 12 | formatLoadMore: function (pageNumber) { return "Caricamento in corso…"; }, 13 | formatSearching: function () { return "Ricerca…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['it']); 17 | })(jQuery); -------------------------------------------------------------------------------- /dist/select2/select2_locale_ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Japanese translation. 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['ja'] = { 8 | formatNoMatches: function () { return "該当なし"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "後" + n + "文字入れてください"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "検索文字列が" + n + "文字長すぎます"; }, 11 | formatSelectionTooBig: function (limit) { return "最多で" + limit + "項目までしか選択できません"; }, 12 | formatLoadMore: function (pageNumber) { return "読込中・・・"; }, 13 | formatSearching: function () { return "検索中・・・"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ja']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_ka.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Georgian (Kartuli) translation. 3 | * 4 | * Author: Dimitri Kurashvili dimakura@gmail.com 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ka'] = { 10 | formatNoMatches: function () { return "ვერ მოიძებნა"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "გთხოვთ შეიყვანოთ კიდევ " + n + " სიმბოლო"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "გთხოვთ წაშალოთ " + n + " სიმბოლო"; }, 13 | formatSelectionTooBig: function (limit) { return "თქვენ შეგიძლიათ მხოლოდ " + limit + " ჩანაწერის მონიშვნა"; }, 14 | formatLoadMore: function (pageNumber) { return "შედეგის ჩატვირთვა…"; }, 15 | formatSearching: function () { return "ძებნა…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ka']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Korean translation. 3 | * 4 | * @author Swen Mun 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ko'] = { 10 | formatNoMatches: function () { return "결과 없음"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "너무 짧습니다. "+n+"글자 더 입력해주세요."; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "너무 깁니다. "+n+"글자 지워주세요."; }, 13 | formatSelectionTooBig: function (limit) { return "최대 "+limit+"개까지만 선택하실 수 있습니다."; }, 14 | formatLoadMore: function (pageNumber) { return "불러오는 중…"; }, 15 | formatSearching: function () { return "검색 중…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ko']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Latvian translation. 3 | * 4 | * @author Uriy Efremochkin 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['lv'] = { 10 | formatNoMatches: function () { return "Sakritību nav"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Lūdzu ievadiet vēl " + n + " simbol" + (n == 11 ? "us" : n%10 == 1 ? "u" : "us"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Lūdzu ievadiet par " + n + " simbol" + (n == 11 ? "iem" : n%10 == 1 ? "u" : "iem") + " mazāk"; }, 13 | formatSelectionTooBig: function (limit) { return "Jūs varat izvēlēties ne vairāk kā " + limit + " element" + (limit == 11 ? "us" : limit%10 == 1 ? "u" : "us"); }, 14 | formatLoadMore: function (pageNumber) { return "Datu ielāde…"; }, 15 | formatSearching: function () { return "Meklēšana…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['lv']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_mk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Macedonian translation. 3 | * 4 | * Author: Marko Aleksic 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['mk'] = { 10 | formatNoMatches: function () { return "Нема пронајдено совпаѓања"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Ве молиме внесете уште " + n + " карактер" + (n == 1 ? "" : "и"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Ве молиме внесете " + n + " помалку карактер" + (n == 1? "" : "и"); }, 13 | formatSelectionTooBig: function (limit) { return "Можете да изберете само " + limit + " ставк" + (limit == 1 ? "а" : "и"); }, 14 | formatLoadMore: function (pageNumber) { return "Вчитување резултати…"; }, 15 | formatSearching: function () { return "Пребарување…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['mk']); 19 | })(jQuery); -------------------------------------------------------------------------------- /dist/select2/select2_locale_nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Dutch translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['nl'] = { 8 | formatNoMatches: function () { return "Geen resultaten gevonden"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vul nog " + n + " karakter" + (n == 1? "" : "s") + " in"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Haal " + n + " karakter" + (n == 1? "" : "s") + " weg"; }, 11 | formatSelectionTooBig: function (limit) { return "Maximaal " + limit + " item" + (limit == 1 ? "" : "s") + " toegestaan"; }, 12 | formatLoadMore: function (pageNumber) { return "Meer resultaten laden…"; }, 13 | formatSearching: function () { return "Zoeken…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['nl']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Brazilian Portuguese translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['pt-BR'] = { 8 | formatNoMatches: function () { return "Nenhum resultado encontrado"; }, 9 | formatAjaxError: function () { return "Erro na busca"; }, 10 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Digite " + (min == 1 ? "" : "mais") + " " + n + " caracter" + (n == 1? "" : "es"); }, 11 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " caracter" + (n == 1? "" : "es"); }, 12 | formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, 13 | formatLoadMore: function (pageNumber) { return "Carregando mais resultados…"; }, 14 | formatSearching: function () { return "Buscando…"; } 15 | }; 16 | 17 | $.extend($.fn.select2.defaults, $.fn.select2.locales['pt-BR']); 18 | })(jQuery); 19 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_pt-PT.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Portuguese (Portugal) translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['pt-PT'] = { 8 | formatNoMatches: function () { return "Nenhum resultado encontrado"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduza " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, 11 | formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, 12 | formatLoadMore: function (pageNumber) { return "A carregar mais resultados…"; }, 13 | formatSearching: function () { return "A pesquisar…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['pt-PT']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Romanian translation. 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['ro'] = { 8 | formatNoMatches: function () { return "Nu a fost găsit nimic"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vă rugăm să introduceți incă " + n + " caracter" + (n == 1 ? "" : "e"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vă rugăm să introduceți mai puțin de " + n + " caracter" + (n == 1? "" : "e"); }, 11 | formatSelectionTooBig: function (limit) { return "Aveți voie să selectați cel mult " + limit + " element" + (limit == 1 ? "" : "e"); }, 12 | formatLoadMore: function (pageNumber) { return "Se încarcă…"; }, 13 | formatSearching: function () { return "Căutare…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ro']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_rs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Serbian translation. 3 | * 4 | * @author Limon Monte 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['rs'] = { 10 | formatNoMatches: function () { return "Ništa nije pronađeno"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Ukucajte bar još " + n + " simbol" + (n % 10 == 1 && n % 100 != 11 ? "" : "a"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Obrišite " + n + " simbol" + (n % 10 == 1 && n % 100 != 11 ? "" : "a"); }, 13 | formatSelectionTooBig: function (limit) { return "Možete izabrati samo " + limit + " stavk" + (limit % 10 == 1 && limit % 100 != 11 ? "u" : (limit % 10 >= 2 && limit % 10 <= 4 && (limit % 100 < 12 || limit % 100 > 14)? "e" : "i")); }, 14 | formatLoadMore: function (pageNumber) { return "Preuzimanje još rezultata…"; }, 15 | formatSearching: function () { return "Pretraga…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['rs']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Russian translation. 3 | * 4 | * @author Uriy Efremochkin 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ru'] = { 10 | formatNoMatches: function () { return "Совпадений не найдено"; }, 11 | formatInputTooShort: function (input, min) { return "Пожалуйста, введите еще хотя бы" + character(min - input.length); }, 12 | formatInputTooLong: function (input, max) { return "Пожалуйста, введите на" + character(input.length - max) + " меньше"; }, 13 | formatSelectionTooBig: function (limit) { return "Вы можете выбрать не более " + limit + " элемент" + (limit%10 == 1 && limit%100 != 11 ? "а" : "ов"); }, 14 | formatLoadMore: function (pageNumber) { return "Загрузка данных…"; }, 15 | formatSearching: function () { return "Поиск…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ru']); 19 | 20 | function character (n) { 21 | return " " + n + " символ" + (n%10 < 5 && n%10 > 0 && (n%100 < 5 || n%100 > 20) ? n%10 > 1 ? "a" : "" : "ов"); 22 | } 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Swedish translation. 3 | * 4 | * Author: Jens Rantil 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['sv'] = { 10 | formatNoMatches: function () { return "Inga träffar"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Var god skriv in " + n + (n>1 ? " till tecken" : " tecken till"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Var god sudda ut " + n + " tecken"; }, 13 | formatSelectionTooBig: function (limit) { return "Du kan max välja " + limit + " element"; }, 14 | formatLoadMore: function (pageNumber) { return "Laddar fler resultat…"; }, 15 | formatSearching: function () { return "Söker…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['sv']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Thai translation. 3 | * 4 | * Author: Atsawin Chaowanakritsanakul 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['th'] = { 10 | formatNoMatches: function () { return "ไม่พบข้อมูล"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "โปรดพิมพ์เพิ่มอีก " + n + " ตัวอักษร"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "โปรดลบออก " + n + " ตัวอักษร"; }, 13 | formatSelectionTooBig: function (limit) { return "คุณสามารถเลือกได้ไม่เกิน " + limit + " รายการ"; }, 14 | formatLoadMore: function (pageNumber) { return "กำลังค้นข้อมูลเพิ่ม…"; }, 15 | formatSearching: function () { return "กำลังค้นข้อมูล…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['th']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Turkish translation. 3 | * 4 | * Author: Salim KAYABAŞI 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['tr'] = { 10 | formatMatches: function (matches) { if (matches === 1) { return "Sadece bir sonuç bulundu, seçmek için enter tuşuna basabilirsiniz."; } return matches + " sonuç bulundu, yukarı ve aşağı tuşları ile seçebilirsiniz."; }, 11 | formatNoMatches: function () { return "Sonuç bulunamadı"; }, 12 | formatInputTooShort: function (input, min) { var n = min - input.length; return "En az " + n + " karakter daha girmelisiniz"; }, 13 | formatInputTooLong: function (input, max) { var n = input.length - max; return n + " karakter azaltmalısınız"; }, 14 | formatSelectionTooBig: function (limit) { return "Sadece " + limit + " seçim yapabilirsiniz"; }, 15 | formatLoadMore: function (pageNumber) { return "Daha fazla…"; }, 16 | formatSearching: function () { return "Aranıyor…"; } 17 | }; 18 | 19 | $.extend($.fn.select2.defaults, $.fn.select2.locales['tr']); 20 | })(jQuery); 21 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_ug-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Uyghur translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['ug-CN'] = { 7 | formatNoMatches: function () { return "ماس كېلىدىغان ئۇچۇر تېپىلمىدى"; }, 8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "يەنە " + n + " ھەرپ كىرگۈزۈڭ";}, 9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "" + n + "ھەرپ ئۆچۈرۈڭ";}, 10 | formatSelectionTooBig: function (limit) { return "ئەڭ كۆپ بولغاندا" + limit + " تال ئۇچۇر تاللىيالايسىز"; }, 11 | formatLoadMore: function (pageNumber) { return "ئۇچۇرلار ئوقۇلىۋاتىدۇ…"; }, 12 | formatSearching: function () { return "ئىزدەۋاتىدۇ…"; } 13 | }; 14 | 15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ug-CN']); 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Vietnamese translation. 3 | * 4 | * Author: Long Nguyen , Nguyen Chien Cong 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['vi'] = { 10 | formatNoMatches: function () { return "Không tìm thấy kết quả"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vui lòng nhập nhiều hơn " + n + " ký tự"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vui lòng nhập ít hơn " + n + " ký tự"; }, 13 | formatSelectionTooBig: function (limit) { return "Chỉ có thể chọn được " + limit + " lựa chọn"; }, 14 | formatLoadMore: function (pageNumber) { return "Đang lấy thêm kết quả…"; }, 15 | formatSearching: function () { return "Đang tìm…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['vi']); 19 | })(jQuery); 20 | 21 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Chinese translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['zh-CN'] = { 7 | formatNoMatches: function () { return "没有找到匹配项"; }, 8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "请再输入" + n + "个字符";}, 9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "请删掉" + n + "个字符";}, 10 | formatSelectionTooBig: function (limit) { return "你只能选择最多" + limit + "项"; }, 11 | formatLoadMore: function (pageNumber) { return "加载结果中…"; }, 12 | formatSearching: function () { return "搜索中…"; } 13 | }; 14 | 15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['zh-CN']); 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /dist/select2/select2_locale_zh-TW.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Traditional Chinese translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['zh-TW'] = { 7 | formatNoMatches: function () { return "沒有找到相符的項目"; }, 8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "請再輸入" + n + "個字元";}, 9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "請刪掉" + n + "個字元";}, 10 | formatSelectionTooBig: function (limit) { return "你只能選擇最多" + limit + "項"; }, 11 | formatLoadMore: function (pageNumber) { return "載入中…"; }, 12 | formatSearching: function () { return "搜尋中…"; } 13 | }; 14 | 15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['zh-TW']); 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /dist/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/select2/select2x2.png -------------------------------------------------------------------------------- /dist/techne/fonts/hyicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/techne/fonts/hyicon.eot -------------------------------------------------------------------------------- /dist/techne/fonts/hyicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/techne/fonts/hyicon.ttf -------------------------------------------------------------------------------- /dist/techne/fonts/hyicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/techne/fonts/hyicon.woff -------------------------------------------------------------------------------- /dist/techne/fonts/hyicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/dist/techne/fonts/hyicon.woff2 -------------------------------------------------------------------------------- /docs/kss/images/H1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/H1.png -------------------------------------------------------------------------------- /docs/kss/images/H2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/H2.png -------------------------------------------------------------------------------- /docs/kss/images/H3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/H3.png -------------------------------------------------------------------------------- /docs/kss/images/arrows-four-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/arrows-four-down.png -------------------------------------------------------------------------------- /docs/kss/images/back-link-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/back-link-arrow.png -------------------------------------------------------------------------------- /docs/kss/images/blue_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/blue_square.png -------------------------------------------------------------------------------- /docs/kss/images/btn_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/btn_more.png -------------------------------------------------------------------------------- /docs/kss/images/cat-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/cat-avatar.jpg -------------------------------------------------------------------------------- /docs/kss/images/controls-drag-drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/controls-drag-drop.png -------------------------------------------------------------------------------- /docs/kss/images/controls-multi-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/controls-multi-select.png -------------------------------------------------------------------------------- /docs/kss/images/controls-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/controls-select.png -------------------------------------------------------------------------------- /docs/kss/images/controls-typeahead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/controls-typeahead.png -------------------------------------------------------------------------------- /docs/kss/images/default_circle-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/default_circle-pic.png -------------------------------------------------------------------------------- /docs/kss/images/default_hexagon-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/default_hexagon-pic.png -------------------------------------------------------------------------------- /docs/kss/images/default_square-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/default_square-pic.png -------------------------------------------------------------------------------- /docs/kss/images/domains/builder_logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/kss/images/domains/home-header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/domains/home-header-bg.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | #da532c 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/kss/images/favicons/favicon-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/favicon-160x160.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/favicon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/favicon-192x192.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/favicon.ico -------------------------------------------------------------------------------- /docs/kss/images/favicons/home-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/home-header.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /docs/kss/images/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /docs/kss/images/first-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/first-contact.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/01_help_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/01_help_page.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/02_help_hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/02_help_hover.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/03_help_all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/03_help_all.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/04_help_errors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/04_help_errors.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/05_help_sectionOff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/05_help_sectionOff.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/06_help_sectionOn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/06_help_sectionOn.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/07_forms_alignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/07_forms_alignment.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/08_forms_alignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/08_forms_alignment.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Dialogues.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Dialogues.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Help-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Help-all.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Help-bubble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Help-bubble.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Help-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Help-mobile.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Help-pageLevel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Help-pageLevel.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Help-validation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Help-validation.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/MixedPatterns_Organization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/MixedPatterns_Organization.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/MixedPatterns_Package.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/MixedPatterns_Package.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Products_desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Products_desktop.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Products_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Products_tablet.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/ProjectDetails-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/ProjectDetails-mobile.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Tour_desktop_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Tour_desktop_1.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Tour_desktop_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Tour_desktop_2.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Trees_desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Trees_desktop.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/Trees_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/Trees_mobile.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/action-bar-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/action-bar-confirm.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/action-bar-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/action-bar-deploy.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/action-bar-publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/action-bar-publish.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/cards-Packages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/cards-Packages.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/cards-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/cards-mobile.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/cards-team_Members.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/cards-team_Members.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/filter_multiple_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/filter_multiple_attributes.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/filter_single_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/filter_single_attributes.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/header_clean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/header_clean.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/header_dirty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/header_dirty.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/header_publish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/header_publish.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/header_validate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/header_validate.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/headers-guidelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/headers-guidelines.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/help-section-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/help-section-all.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/help-section.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/help-section.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/list-Packages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/list-Packages.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/list-team_Members.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/list-team_Members.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/local_field-level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/local_field-level.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/local_page-level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/local_page-level.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/products-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/products-mobile.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/sort.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/standard-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/standard-header.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/standard-header_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/standard-header_mobile.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/table_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/table_mobile.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/table_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/table_mobile.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/techne_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/techne_styles.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/tour_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/tour_mobile.png -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/wizard-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/wizard-desktop.jpg -------------------------------------------------------------------------------- /docs/kss/images/fullscreen/wizard_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/fullscreen/wizard_mobile.png -------------------------------------------------------------------------------- /docs/kss/images/git-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/git-icon.png -------------------------------------------------------------------------------- /docs/kss/images/gsg-back-to-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/gsg-back-to-top.png -------------------------------------------------------------------------------- /docs/kss/images/h1-example-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/h1-example-full.png -------------------------------------------------------------------------------- /docs/kss/images/h1-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/h1-example.png -------------------------------------------------------------------------------- /docs/kss/images/h2-example-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/h2-example-full.png -------------------------------------------------------------------------------- /docs/kss/images/h2-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/h2-example.png -------------------------------------------------------------------------------- /docs/kss/images/h3-example-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/h3-example-full.png -------------------------------------------------------------------------------- /docs/kss/images/h3-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/h3-example.png -------------------------------------------------------------------------------- /docs/kss/images/h4-example-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/h4-example-full.png -------------------------------------------------------------------------------- /docs/kss/images/h4-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/h4-example.png -------------------------------------------------------------------------------- /docs/kss/images/h5-example-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/h5-example-full.png -------------------------------------------------------------------------------- /docs/kss/images/h5-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/h5-example.png -------------------------------------------------------------------------------- /docs/kss/images/header-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/header-styles.png -------------------------------------------------------------------------------- /docs/kss/images/home-header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home-header-bg.png -------------------------------------------------------------------------------- /docs/kss/images/home-header-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home-header-mobile.png -------------------------------------------------------------------------------- /docs/kss/images/home-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home-header.png -------------------------------------------------------------------------------- /docs/kss/images/home/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/arrow_left.png -------------------------------------------------------------------------------- /docs/kss/images/home/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/arrow_right.png -------------------------------------------------------------------------------- /docs/kss/images/home/banner_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/banner_bg.png -------------------------------------------------------------------------------- /docs/kss/images/home/consumer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/consumer_1.png -------------------------------------------------------------------------------- /docs/kss/images/home/consumer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/consumer_2.png -------------------------------------------------------------------------------- /docs/kss/images/home/consumer_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/consumer_3.png -------------------------------------------------------------------------------- /docs/kss/images/home/consumer_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/consumer_over.png -------------------------------------------------------------------------------- /docs/kss/images/home/consumer_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/consumer_slider.png -------------------------------------------------------------------------------- /docs/kss/images/home/consumer_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/consumer_up.png -------------------------------------------------------------------------------- /docs/kss/images/home/developer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/developer_1.png -------------------------------------------------------------------------------- /docs/kss/images/home/developer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/developer_2.png -------------------------------------------------------------------------------- /docs/kss/images/home/developer_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/developer_3.png -------------------------------------------------------------------------------- /docs/kss/images/home/developer_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/developer_slider.png -------------------------------------------------------------------------------- /docs/kss/images/home/developers_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/developers_over.png -------------------------------------------------------------------------------- /docs/kss/images/home/developers_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/developers_up.png -------------------------------------------------------------------------------- /docs/kss/images/home/high_touch_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/high_touch_over.png -------------------------------------------------------------------------------- /docs/kss/images/home/high_touch_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/high_touch_up.png -------------------------------------------------------------------------------- /docs/kss/images/home/hight_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/hight_slider.png -------------------------------------------------------------------------------- /docs/kss/images/home/hight_user_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/hight_user_1.png -------------------------------------------------------------------------------- /docs/kss/images/home/hight_user_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/hight_user_2.png -------------------------------------------------------------------------------- /docs/kss/images/home/hight_user_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/hight_user_3.png -------------------------------------------------------------------------------- /docs/kss/images/home/icon-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/icon-copy.png -------------------------------------------------------------------------------- /docs/kss/images/home/link-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/link-arrow.png -------------------------------------------------------------------------------- /docs/kss/images/home/low_touch_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/low_touch_over.png -------------------------------------------------------------------------------- /docs/kss/images/home/low_touch_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/low_touch_up.png -------------------------------------------------------------------------------- /docs/kss/images/home/lowt_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/lowt_slider.png -------------------------------------------------------------------------------- /docs/kss/images/home/lowt_user_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/lowt_user_1.png -------------------------------------------------------------------------------- /docs/kss/images/home/lowt_user_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/lowt_user_2.png -------------------------------------------------------------------------------- /docs/kss/images/home/lowt_user_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/lowt_user_3.png -------------------------------------------------------------------------------- /docs/kss/images/home/techne-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/home/techne-logo.png -------------------------------------------------------------------------------- /docs/kss/images/hybris-guy-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/hybris-guy-bg.png -------------------------------------------------------------------------------- /docs/kss/images/hybris-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/hybris-logo.png -------------------------------------------------------------------------------- /docs/kss/images/ico_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/ico_code.png -------------------------------------------------------------------------------- /docs/kss/images/ico_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/ico_collapse.png -------------------------------------------------------------------------------- /docs/kss/images/ico_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/ico_type.png -------------------------------------------------------------------------------- /docs/kss/images/icon-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/icon-sprite.png -------------------------------------------------------------------------------- /docs/kss/images/kss-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/kss/images/localization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/localization.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-desktop (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-desktop (1).png -------------------------------------------------------------------------------- /docs/kss/images/navigation-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-desktop.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-header.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-mobile-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-mobile-closed.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-mobile-open-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-mobile-open-2.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-mobile-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-mobile-open.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-project-switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-project-switcher.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-secondary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-secondary.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-tablet-OPEN-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-tablet-OPEN-2.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-tablet-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-tablet-closed.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-tablet-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-tablet-open.png -------------------------------------------------------------------------------- /docs/kss/images/navigation-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/navigation-toolbar.png -------------------------------------------------------------------------------- /docs/kss/images/package-picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/package-picture.png -------------------------------------------------------------------------------- /docs/kss/images/persona-consumer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/persona-consumer.png -------------------------------------------------------------------------------- /docs/kss/images/persona-csr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/persona-csr.png -------------------------------------------------------------------------------- /docs/kss/images/persona-developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/persona-developer.png -------------------------------------------------------------------------------- /docs/kss/images/persona-it-ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/persona-it-ops.png -------------------------------------------------------------------------------- /docs/kss/images/persona-marketer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/persona-marketer.png -------------------------------------------------------------------------------- /docs/kss/images/persona-merchant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/persona-merchant.png -------------------------------------------------------------------------------- /docs/kss/images/persona-order-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/persona-order-manager.png -------------------------------------------------------------------------------- /docs/kss/images/persona-product-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/persona-product-manager.png -------------------------------------------------------------------------------- /docs/kss/images/product-thumbnail-tall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/product-thumbnail-tall.png -------------------------------------------------------------------------------- /docs/kss/images/product-thumbnail-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/product-thumbnail-wide.png -------------------------------------------------------------------------------- /docs/kss/images/product-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/product-thumbnail.png -------------------------------------------------------------------------------- /docs/kss/images/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/quotes.png -------------------------------------------------------------------------------- /docs/kss/images/sap-hybris-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/sap-hybris-logo.png -------------------------------------------------------------------------------- /docs/kss/images/screen-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/screen-grid.png -------------------------------------------------------------------------------- /docs/kss/images/techne_Cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/techne_Cat.png -------------------------------------------------------------------------------- /docs/kss/images/techne_Parrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/techne_Parrot.png -------------------------------------------------------------------------------- /docs/kss/images/techne_Zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/techne_Zip.png -------------------------------------------------------------------------------- /docs/kss/images/techne_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/techne_styles.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnail-zoom-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnail-zoom-example.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/01_help_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/01_help_page.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/02_help_hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/02_help_hover.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/03_help_all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/03_help_all.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/04_help_errors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/04_help_errors.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/05_help_sectionOff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/05_help_sectionOff.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/06_help_sectionOn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/06_help_sectionOn.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/07_forms_alignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/07_forms_alignment.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/08_forms_alignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/08_forms_alignment.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Cards-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Cards-mobile.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Dialogues.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Dialogues.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Help-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Help-all.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Help-bubble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Help-bubble.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Help-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Help-mobile.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Help-pageLevel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Help-pageLevel.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Help-validation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Help-validation.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/MixedPatterns_Organization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/MixedPatterns_Organization.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/MixedPatterns_Package.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/MixedPatterns_Package.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Products-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Products-mobile.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Products_desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Products_desktop.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Products_tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Products_tablet.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/ProjectDetails-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/ProjectDetails-mobile.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Tour_desktop_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Tour_desktop_1.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Tour_desktop_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Tour_desktop_2.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Trees_desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Trees_desktop.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/Trees_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/Trees_mobile.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/action-bar-confirm-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/action-bar-confirm-thumb.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/action-bar-deploy-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/action-bar-deploy-thumb.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/action-bar-publish-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/action-bar-publish-thumb.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/cards-Packages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/cards-Packages.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/cards-team_Members.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/cards-team_Members.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/field-level_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/field-level_thumbnail.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/header_clean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/header_clean.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/header_dirty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/header_dirty.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/header_publish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/header_publish.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/header_validate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/header_validate.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/headers-guidelines-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/headers-guidelines-thumb.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/help-section-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/help-section-all.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/help-section.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/help-section.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/list-team_Members.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/list-team_Members.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/lists-Packages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/lists-Packages.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/local_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/local_thumbnail.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/standard-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/standard-header.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/standard-header_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/standard-header_mobile.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/table_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/table_mobile.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/techne_styles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/techne_styles.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/thump_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/thump_multi.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/thump_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/thump_single.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/thump_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/thump_sort.png -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/tour_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/tour_mobile.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/wizard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/wizard.jpg -------------------------------------------------------------------------------- /docs/kss/images/thumbnails/wizard_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/thumbnails/wizard_mobile.jpg -------------------------------------------------------------------------------- /docs/kss/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/user.png -------------------------------------------------------------------------------- /docs/kss/images/visual-system-header-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/visual-system-header-example.png -------------------------------------------------------------------------------- /docs/kss/images/visual-system-positioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/visual-system-positioning.png -------------------------------------------------------------------------------- /docs/kss/images/visual-system-processing-position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/visual-system-processing-position.png -------------------------------------------------------------------------------- /docs/kss/images/visual-system-processing-treatmeant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/visual-system-processing-treatmeant.png -------------------------------------------------------------------------------- /docs/kss/images/welcome-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/images/welcome-bg.png -------------------------------------------------------------------------------- /docs/kss/public/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/kss/public/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/kss/public/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/kss/public/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/kss/public/dist/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/dist/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/kss/public/dist/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/dist/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/kss/public/dist/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/dist/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/kss/public/dist/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/dist/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/kss/public/dist/techne/fonts/hyicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/dist/techne/fonts/hyicon.eot -------------------------------------------------------------------------------- /docs/kss/public/dist/techne/fonts/hyicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/dist/techne/fonts/hyicon.ttf -------------------------------------------------------------------------------- /docs/kss/public/dist/techne/fonts/hyicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/dist/techne/fonts/hyicon.woff -------------------------------------------------------------------------------- /docs/kss/public/dist/techne/fonts/hyicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/dist/techne/fonts/hyicon.woff2 -------------------------------------------------------------------------------- /docs/kss/public/dist/vendor/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/dist/vendor/Jcrop.gif -------------------------------------------------------------------------------- /docs/kss/public/downloads/Techne_AxureLibrary_v1_3_1.rplib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/downloads/Techne_AxureLibrary_v1_3_1.rplib -------------------------------------------------------------------------------- /docs/kss/public/main.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function() { 2 | var 3 | $menu = jQuery('.kss-menu'), 4 | $childMenu = $('.kss-menu-child'), 5 | $menuItem = $menu.find('.kss-menu-item'), 6 | ref = $menu.data('kss-ref'); 7 | 8 | $menuItem.eq(ref).addClass('active'); 9 | 10 | if ($(".js_navtrigger.active").size() > 0) { 11 | $menuItem.removeClass('active'); 12 | $($menuItem[1]).toggleClass('active'); 13 | $menuItem.click(function (event) { 14 | $menuItem.removeClass('active'); 15 | $(this).toggleClass('active'); 16 | }); 17 | }; 18 | }); 19 | 20 | $(".js-menu-toggle").click(function(e) { 21 | e.preventDefault(); 22 | $("body").toggleClass("toggled"); 23 | }); 24 | -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.0.2.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.1.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.1.4.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.1.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.1.5.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.1.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.1.6.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.1.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.1.7.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.1.8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.1.8.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.2.0.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.2.1.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.2.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.2.2.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.2.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.2.3.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.2.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.2.4.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne0.2.41.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne0.2.41.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.0.0.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.0.1.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.1.0.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.2.0.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.2.1.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.3.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.3.0.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.3.1.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.4.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.4.1.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.5.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.5.0.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.5.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.5.1.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.5.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.5.2.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.5.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.5.3.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.5.4.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.5.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.5.5.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.5.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.5.6.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.5.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.5.7.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.5.8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.5.8.zip -------------------------------------------------------------------------------- /docs/kss/public/release-archive/techne1.5.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/public/release-archive/techne1.5.9.zip -------------------------------------------------------------------------------- /docs/kss/public/super-nav.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){function a(a,b,c){var d;return function(){var e=this,f=arguments,g=function(){d=null,c||a.apply(e,f)},h=c&&!d;clearTimeout(d),d=setTimeout(g,b),h&&a.apply(e,f)}}var b=!1,c=0,d=5,e=$(".navbar-super").outerHeight();$(".nav-super-toggle").on("click",function(a){a.preventDefault(),$(this).hasClass("active")?($(this).removeClass("active"),$(".nav-super").removeClass("open"),b=!1):($(this).addClass("active"),$(".nav-super").addClass("open"),b=!0)});var f=a(function(){var a=$(this).scrollTop();Math.abs(c-a)<=d||(a>c&&a>e&&0==b?$("body").removeClass("navbar-super-down").addClass("navbar-super-up"):a+$(window).height()<$(document).height()&&$("body").removeClass("navbar-super-up").addClass("navbar-super-down"),c=a)},250);window.addEventListener("scroll",f)}); -------------------------------------------------------------------------------- /docs/kss/starterpages/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/starterpages/images/empty.png -------------------------------------------------------------------------------- /docs/kss/starterpages/images/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/starterpages/images/favicon-96x96.png -------------------------------------------------------------------------------- /docs/kss/starterpages/images/project-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/starterpages/images/project-icon.png -------------------------------------------------------------------------------- /docs/kss/starterpages/images/user-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docs/kss/starterpages/images/user-icon.png -------------------------------------------------------------------------------- /docs/template/public/kss.less: -------------------------------------------------------------------------------- 1 | @import 'less/_markdown'; 2 | @import 'less/_variables'; 3 | @import 'less/_common'; 4 | @import 'less/_top-nav'; 5 | @import 'less/_side-nav'; 6 | @import 'less/_pretty-print'; 7 | @import 'less/_footer'; 8 | @import 'less/_kss-content'; 9 | @import 'less/_homepage'; 10 | @import 'less/_components'; 11 | @import 'less/_guidelines'; 12 | @import 'less/_patterns'; 13 | @import 'less/_getting-started'; 14 | @import 'less/_starter-pages.less'; 15 | @import 'less/_icons.less'; 16 | -------------------------------------------------------------------------------- /docs/template/public/less/_footer.less: -------------------------------------------------------------------------------- 1 | // Footer styles 2 | 3 | @import '_variables'; 4 | 5 | .footer { 6 | a:visited { 7 | color: @white; 8 | } 9 | .toggled &{ 10 | display: none!important; 11 | } 12 | 13 | .footer-right{ 14 | padding:0!important; 15 | } 16 | } 17 | 18 | .feedback-form-wrapper{ 19 | 20 | .close{ 21 | font-size: 30px; 22 | padding:10px 5px; 23 | } 24 | 25 | a:visited{ 26 | color:@blue_gd; 27 | } 28 | } 29 | 30 | .feedback-menu--techne{ 31 | position: fixed; 32 | right: 10px; 33 | bottom: 50px; 34 | z-index: 1; 35 | } 36 | 37 | #cookie-bar{ 38 | display: none !important; 39 | } 40 | 41 | // cookie bar fix 42 | .yg-cookie-bar{ 43 | z-index: 5000!important; 44 | } -------------------------------------------------------------------------------- /docs/template/public/less/_getting-started.less: -------------------------------------------------------------------------------- 1 | // getting download page 2 | 3 | @import '_variables'; 4 | 5 | .hyDownloadPage { 6 | padding:0 20px; 7 | margin-top: 25px; 8 | 9 | p { 10 | padding-bottom: 10px; 11 | } 12 | 13 | a { 14 | vertical-align: middle; 15 | } 16 | 17 | dt { 18 | font-weight: normal; 19 | } 20 | 21 | dd { 22 | margin-bottom: 18px; 23 | } 24 | 25 | code { 26 | color: @code-text; 27 | background-color: @code-text-bg; 28 | } 29 | 30 | .alert-getting-started{ 31 | background-color: @alert-getting-started-bg; 32 | box-shadow: none; 33 | } 34 | 35 | .section-seperator{ 36 | margin:20px -35px; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /docs/template/public/less/_patterns.less: -------------------------------------------------------------------------------- 1 | @import '_variables'; 2 | @import '_kss-content'; 3 | 4 | // Patterns page styles 5 | .kss-patterns-page{ 6 | max-width: 1000px; 7 | padding:0 20px; 8 | } 9 | 10 | #patterns-localization .btn-link.collapsed .glyphicon-chevron-right:before { 11 | content: ""; 12 | } 13 | #patterns-localization .btn-link .glyphicon-chevron-right:before { 14 | content: ""; 15 | } 16 | #patterns-trees .btn-link .glyphicon-plus:before { 17 | content: "−"; 18 | } 19 | #patterns-trees .btn-link.collapsed .glyphicon-plus:before { 20 | content: "+"; 21 | } 22 | 23 | #patterns-list-pages, 24 | #patterns-card-pages, 25 | #patterns-retail-product-pages, 26 | #patterns-trees, 27 | #patterns-mixed-pattern-pages, 28 | #patterns-overall-pattern-reference{ 29 | 30 | #kss-content; 31 | 32 | } -------------------------------------------------------------------------------- /docs/template/public/less/_starter-pages.less: -------------------------------------------------------------------------------- 1 | @import '_variables'; 2 | 3 | #content.starterpages{ 4 | position: absolute; 5 | right: 0; 6 | bottom: 0; 7 | left: 250px; 8 | top: 0; 9 | background-color:#e0e9f0; 10 | margin-bottom: 40px; 11 | } 12 | 13 | @media (max-width: 768px) { 14 | #content.starterpages{ 15 | left: 0; 16 | top: 100px; 17 | } 18 | } 19 | .kss-main.starterpages{ 20 | height: 100%; 21 | } 22 | 23 | .content-frame{ 24 | height: 100%; 25 | width: 100%; 26 | } 27 | 28 | .starterpages #kss-nav .kss-menu-item.active a{ 29 | background-image: none; 30 | } 31 | 32 | .donloadsrc{ 33 | margin-top: 30px; 34 | } 35 | -------------------------------------------------------------------------------- /docs/template/public/less/_variables.less: -------------------------------------------------------------------------------- 1 | @screen-bg_gd: #E0E9F0; 2 | @content-bg_gd: #ffffff; 3 | @screen-bg-2_gd: #29374f; 4 | @typographySecondValue_gd: #8A8FA1; 5 | @typography_gd: #313440; 6 | @typography-light_gd: #7f90a4; 7 | @blue_gd: #0486E0; 8 | @help-info_gd: #d3dbe6; 9 | @attention_gd: #5bc0de; 10 | @success_gd: #233243; 11 | @warning_gd: #3cb1da; 12 | @try-again_gd: #ff3b30; 13 | @white: #ffffff; 14 | @black: #000000; 15 | @blue-heading:#369ad6; 16 | @grey-border: #e2e6e9; 17 | @top-nav-link: #a4c8f0; 18 | @kss-shadow: #1e2c3b; 19 | @kss-grey: #edf1f5; 20 | @light-grey: #d8dfe8; 21 | @kss-grey-border: #d4d7dc; 22 | @dark-blue: #27394f; 23 | @side-nav-link: #dbe3eb; 24 | @top-nav-hover: #0376C6; 25 | @btn-type-color: #0b0080; 26 | @home-persona-bg: #f7f7f7; 27 | @kss-green: #04ce26; 28 | @circle-border-color: #cfd8e3; 29 | @primary-yellow: #fcdf2b; 30 | @primary-blue: #0486e0; 31 | @secondary-grey: #b7c1cd; 32 | @secondary-green: #04ce26; 33 | @secondary-orange: #fbbb21; 34 | @secondary-red: #ff3b30; 35 | @code-text: #cc1212; 36 | @code-text-bg: #f8e0e0; 37 | @alert-getting-started-bg: #eef1f3; 38 | @hr-border-color: #e7ebef; -------------------------------------------------------------------------------- /docs/template/public/main.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function() { 2 | var 3 | $menu = jQuery('.kss-menu'), 4 | $childMenu = $('.kss-menu-child'), 5 | $menuItem = $menu.find('.kss-menu-item'), 6 | ref = $menu.data('kss-ref'); 7 | 8 | $menuItem.eq(ref).addClass('active'); 9 | 10 | if ($(".js_navtrigger.active").size() > 0) { 11 | $menuItem.removeClass('active'); 12 | $($menuItem[1]).toggleClass('active'); 13 | $menuItem.click(function (event) { 14 | $menuItem.removeClass('active'); 15 | $(this).toggleClass('active'); 16 | }); 17 | }; 18 | }); 19 | 20 | $(".js-menu-toggle").click(function(e) { 21 | e.preventDefault(); 22 | $("body").toggleClass("toggled"); 23 | }); 24 | -------------------------------------------------------------------------------- /docs/template/public/super-nav.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){function a(a,b,c){var d;return function(){var e=this,f=arguments,g=function(){d=null,c||a.apply(e,f)},h=c&&!d;clearTimeout(d),d=setTimeout(g,b),h&&a.apply(e,f)}}var b=!1,c=0,d=5,e=$(".navbar-super").outerHeight();$(".nav-super-toggle").on("click",function(a){a.preventDefault(),$(this).hasClass("active")?($(this).removeClass("active"),$(".nav-super").removeClass("open"),b=!1):($(this).addClass("active"),$(".nav-super").addClass("open"),b=!0)});var f=a(function(){var a=$(this).scrollTop();Math.abs(c-a)<=d||(a>c&&a>e&&0==b?$("body").removeClass("navbar-super-down").addClass("navbar-super-up"):a+$(window).height()<$(document).height()&&$("body").removeClass("navbar-super-up").addClass("navbar-super-down"),c=a)},250);window.addEventListener("scroll",f)}); -------------------------------------------------------------------------------- /docu/files/overview.html.md.eco: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Overview' 3 | service: 'hybris techne' 4 | type: Overview 5 | order: 1 6 | --- 7 | 8 | techne is the design guideline and component library for modern, mobile-first, user-centric experience design on YaaS that gives UX professionals the freedom and creativity to implement experiences from design to deployment FAST 9 | 10 | techne design patterns serve consumers and business users equally. It enables best practice storefront and other digital touchpoint experiences as well as what we like to call the “consumerization of business user tooling,” which is an ethos that envisions any digital experience, regardless of whether it is buying a shirt as a consumer or marketing that shirt as a business user, will provide the same highly engaged, visual, efficient and fun experience. 11 | -------------------------------------------------------------------------------- /docu/release_notes/2016-02-12-Technev110.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: February 12, 2016 3 | service: 'hybris techne' 4 | official_version: v1.1.0 5 | headline: 'Updated styling, list management, label status class, tool tips and pop overs, help icon, updated Getting Started' 6 | --- 7 | 8 |

Techne v1.1.0

9 | 10 |

Updates

11 |

12 | Updated style for required field indicator 13 |

14 |

15 | Updated list management interaction design to improve usability 16 |

17 |

18 | Updated label status class to correct status color display 19 |

20 |

21 | Updated Tool Tips vs. Pop Over usage guidelines and classes 22 |

23 |

24 | Updated placement of help icon to allow for proper scaling and layout across devices 25 |

26 |

27 | Updated style to better visuals indicate inactive cards 28 |

29 |

30 | Updated validation styling 31 |

32 |

33 | Other minor styling improvements across components 34 |

35 |

36 | Updated techne.yaas.io/gettingstarted.html to ensure all materials are in sync 37 |

38 | -------------------------------------------------------------------------------- /docu/release_notes/2016-09-03-Technev141.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: October 6, 2016 3 | service: 'hybris techne' 4 | official_version: v1.4.1 5 | headline: 'Patch release - Starter Page updates and some minor bug fixes' 6 | --- 7 | 8 |

Techne v1.4.1

9 |

This is a minor patch release with some small updates to Starter Pages and minor bug fixes.

10 | 11 |

Updates

12 |
    13 |
  • Starter Pages - Updated Table and Cards pages to include pagination component at the bottom of the page
  • 14 |
  • Localization Editor - Updated to show more specific error messages
  • 15 |
16 | 17 | -------------------------------------------------------------------------------- /docu/release_notes/2016-11-22-Technev151.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: November 22, 2016 3 | service: 'hybris techne' 4 | official_version: v1.5.1 5 | headline: 'New way to display grouped cards' 6 | --- 7 | 8 |

New Pattern

9 |
    10 |
  • New way to display cards in groups. With the new modifier you can esily group cards into groups, with a more compact design.
  • 11 |
12 | 13 |

Minor updates

14 |
    15 |
  • Resolved an issue with the mobile behavior of the tabs.
  • 16 |
  • Modified the style of the tabs on the `:hover` and `:active` states.
  • 17 |
  • Fixed the misaligned icon on the Add Button for Android.
  • 18 |
  • Changed the Starter Pages to reflect the standard way to use a margin on a full page.
  • 19 |
  • Visual changes were made to the Tables pattern.
  • 20 |
21 | 22 | -------------------------------------------------------------------------------- /docu/release_notes/2016-12-06-Technev152.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: December 6, 2016 3 | service: 'hybris techne' 4 | official_version: v1.5.2 5 | headline: 'Pattern to highlight new items' 6 | --- 7 | 8 | ### New Pattern 9 | * There is a new pattern that highlights new and unsaved data elements. This pattern can be applied to cards, tables, and trees. An example of this pattern used in a tree, is shown in the following screenshot: 10 | ![Tree screenshot](img/2016-12-06/tree-highlight.png) 11 | 12 | ### Minor updates 13 | * A new modifier class added to the expandable button pattern prevents the **expanded options** from breaking the other elements in the layout. 14 | * There is a new **Custom Select** element added to the form components. 15 | * There are improvements to the documentation. 16 | * Vendor-specific CSS prefixes are now added automatically 17 | -------------------------------------------------------------------------------- /docu/release_notes/2017-01-03-Technev154.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: January 03, 2017 3 | service: 'hybris techne' 4 | official_version: v1.5.4 5 | headline: 'Feedback Menu Icons Hot Fix' 6 | --- 7 | 8 | ### Hot Fix 9 | * This is a patch release to fix the Feedback Menu icons rendering issues on Windows machines -------------------------------------------------------------------------------- /docu/release_notes/2017-09-19-Technev157.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: September 19, 2017 3 | service: 'hybris techne' 4 | official_version: v1.5.7 5 | headline: 'Additional Icons' 6 | --- 7 | 8 | ### Additional Icons 9 | This release contains some additional icons. These Icons are used for an internal library for Enterprise Commerce platform, and not meant for external use. 10 | -------------------------------------------------------------------------------- /docu/release_notes/2017-09-22-Technev158.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: September 19, 2017 3 | service: 'hybris techne' 4 | official_version: v1.5.8 5 | headline: 'Patch to fix icon rendring issues' 6 | --- 7 | 8 | ### Patch Release 9 | This is a patch release to fix icon rendering issues there were released in previous version 1.5.7 10 | -------------------------------------------------------------------------------- /docu/release_notes/2017-10-31-Technev159.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: October 31, 2017 3 | service: 'hybris techne' 4 | official_version: v1.5.9 5 | headline: 'Patch to fix NPM package delivery' 6 | --- 7 | 8 | ### Patch Release 9 | This is a patch release to fix NPM package delivery. Bower component dependencies are now excluded as they were causing issues with `npm shrinkwrap` from locking down version numbers. 10 | -------------------------------------------------------------------------------- /docu/release_notes/img/2016-12-06/tree-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docu/release_notes/img/2016-12-06/tree-highlight.png -------------------------------------------------------------------------------- /docu/release_notes/img/v1.5.3/avatars-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-archive/techne/42e05bc4114a2a7bbb8565a54d6364db0e888f58/docu/release_notes/img/v1.5.3/avatars-images.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "techne", 3 | "version": "1.5.10", 4 | "description": "hybris Techne Style Guide", 5 | "main": "docs/index.js", 6 | "scripts": { 7 | "start": "gulp" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/SAP/techne.git" 12 | }, 13 | "homepage": "http://techne.yaas.io/", 14 | "author": "SAP SE", 15 | "license": "Apache-2.0", 16 | "devDependencies": { 17 | "bower": "^1.8.0", 18 | "browser-sync": "^2.24.5", 19 | "gulp": "^3.8.11", 20 | "gulp-cache-bust": "^1.0.2", 21 | "gulp-concat": "^2.6.1", 22 | "gulp-consolidate": "^0.2.0", 23 | "gulp-iconfont": "^8.0.1", 24 | "gulp-if": "^2.0.2", 25 | "gulp-kss": "0.0.2", 26 | "gulp-less": "2.0.1", 27 | "gulp-zip": "^4.0.0", 28 | "less-plugin-autoprefix": "^1.4.0", 29 | "less-plugin-clean-css": "^1.5.0", 30 | "lodash": "^4.17.13", 31 | "yargs": "^6.6.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /repo-properties.json: -------------------------------------------------------------------------------- 1 | { 2 | “_comment" : "Do not modify this file if you don't know what you do! PLEASE!!!! " , 3 | “bdid" : 181 , 4 | “area" : “tech" , 5 | "bdscan" : true , 6 | "bdscan-contact” : “ jeremy.rawls@sap.com " 7 | } 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE001-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /src/icons/uE002-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/icons/uE003-back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/icons/uE004-checked.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE005-chevron.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/icons/uE006-close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE007-dragdrop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE008-expand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/icons/uE009-collapse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/icons/uE00B-grid.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE00C-list.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE00D-more.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE00E-remove.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /src/icons/uE00F-search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /src/icons/uE010-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE012-helpon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /src/icons/uE013-filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/icons/uE014-filterremove.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /src/icons/uE015-sort.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/icons/uE016-addlg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE017-combinedview.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 12 | 13 | -------------------------------------------------------------------------------- /src/icons/uE019-info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE01B-restrictions.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/icons/uE01C-sync.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE01D-caution.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /src/icons/uE01F-delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE020-change.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE021-checkedlg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE023-edit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE024-linked.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE025-noimage.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/icons/uE027-removelg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/icons/uE028-visibilityoff.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE029-visibilityon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE02A-warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE02B-feedback.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /src/icons/uE02D-infoon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE02E-lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE02F-clone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE030-duplicate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE031-maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /src/icons/uE032-minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /src/icons/uE033-msgdanger.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uE034-msginfo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /src/icons/uE035-msgsuccess.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /src/icons/uE036-msgwarning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /src/icons/uEA01-commerce.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /src/icons/uEA02-commercelg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 10 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/icons/uEA03-unpowered.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/icons/uEA04-optionssm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /src/icons/uEA06-unlinked.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /src/less/components/_atoms.less: -------------------------------------------------------------------------------- 1 | // File with super small css snippets, need to split up in folder structure 2 | 3 | .hint-text{ 4 | color: @dark-grey-600; 5 | font-size: 21px; 6 | display: inline-block; 7 | margin-bottom: 25px; 8 | } 9 | 10 | .light-text{ 11 | color: @dark-grey-600; 12 | } 13 | 14 | 15 | section{ 16 | &.white{ 17 | background: #fff; 18 | 19 | } 20 | 21 | &.light-grey{ 22 | background: #fcfcfc; 23 | } 24 | 25 | &.section{ 26 | padding-bottom: 40px; 27 | padding-top: 40px; 28 | margin-left: (@grid-gutter-width / -2); 29 | margin-right: (@grid-gutter-width / -2); 30 | padding-left: (@grid-gutter-width / 2); 31 | padding-right: (@grid-gutter-width / 2); 32 | } 33 | } -------------------------------------------------------------------------------- /src/less/components/_back-to-top.less: -------------------------------------------------------------------------------- 1 | // Back to top 2 | // 3 | // Use the standard 'back to top' component on infinite scroll pages or pages that have data sets longer than 25 records. 4 | // 5 | // Markup: 6 | // 7 | // 8 | // Component 2.9 9 | 10 | .back-to-top { 11 | color: #7f90a4; 12 | cursor:pointer; 13 | &:hover{ 14 | color: #4f86e3; 15 | } 16 | } 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/less/components/_button-icon.less: -------------------------------------------------------------------------------- 1 | // Button Icon 2 | // 3 | // You can use an Icon as a button, just add class `button-icon` to icon element and the icon with get the corresponding visual style. 4 | // 5 | // Markup: 6 | // 7 | // 8 | // Component 2.4 9 | // 10 | 11 | .button-icon { 12 | position: relative; 13 | display: inline-flex; 14 | cursor:pointer; 15 | 16 | &::before { 17 | display: block; 18 | position: relative; 19 | z-index: 100; 20 | color: #fff; 21 | text-shadow: 0.454px 0.891px 3px rgba(64, 89, 116, 0.47); 22 | } 23 | 24 | &::after { 25 | content: ""; 26 | position: absolute; 27 | top: .5px; 28 | right: 1.5px; 29 | bottom: 1.5px; 30 | left: 1px; 31 | background: #8292a4; 32 | display: block; 33 | border-radius: 50%; 34 | z-index: 50; 35 | } 36 | 37 | &:hover { 38 | 39 | &::after { 40 | background: #0486e0; 41 | } 42 | 43 | } 44 | 45 | } 46 | -------------------------------------------------------------------------------- /src/less/components/_feedback-menu.less: -------------------------------------------------------------------------------- 1 | // Feedback Menu 2 | // 3 | // Combines the Feedback and Get Help options in one widget. Using two independent icon buttons. 4 | // 5 | // Markup: 6 | // 10 | // 11 | // Component 5.5 12 | 13 | .feedback-menu { 14 | display: flex; 15 | flex-flow: column nowrap; 16 | justify-content: center; 17 | align-items: center; 18 | font-size: 35px; 19 | 20 | & .button-icon { 21 | margin-top: 5px; 22 | 23 | &:first-child { 24 | margin-top: 0; 25 | } 26 | 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /src/less/components/_forms-criticalerroravoidance.less: -------------------------------------------------------------------------------- 1 | // Critical Error-Avoidance 2 | // 3 | // Any help that can be offered that allows a user to avoid making an error while completing a form should display directly under the field at all times. An example of this type of help content is “Must start with a lowercase alpha character, followed by any combination of alphanumeric characters, 3-16 characters” 4 | // 5 | // Markup: 6 | //
7 | // 8 | //
9 | // 10 | //
11 | // 12 | // 13 | // Must start with a lowercase alpha character, followed by any combination of alphanumeric characters, 3-16 characters 14 | // 15 | //
16 | // 17 | // Component 5.2 18 | -------------------------------------------------------------------------------- /src/less/components/_forms-hint-text.less: -------------------------------------------------------------------------------- 1 | // Inline Help 2 | // 3 | // Use inline help to guide the user through formular fields. 4 | // The inline help should be placed below the input field. Keep it short and clear. Avoid more then two lines. 5 | // Focus on the action required and make it relevant to the user’s current situation. 6 | //
    7 | //
  • unfamiliar concepts
  • 8 | //
  • what format the information should be given in
  • 9 | //
  • where to find further information
  • 10 | //
11 | // 12 | // Markup: 13 | //
14 | // 15 | // 16 | // This line is reserved for help text 17 | //
18 | // 19 | // Component 4.2 20 | 21 | .inline-hint-text{ 22 | // background: fade(@body-bg, 50%); 23 | // Include the help-block styling but avoid 24 | // the styling of has-error etc when validation fails. 25 | .help-block(); 26 | display: inline-block; 27 | } 28 | -------------------------------------------------------------------------------- /src/less/components/_forms-readonly.less: -------------------------------------------------------------------------------- 1 | // Read Only Form Elements 2 | // 3 | // Read Only Form Elements share the same styling as 4 | // the well know input-lg, input-sm size modifier classes. 5 | // Use them if you want to provide inline text with a label 6 | // within a form. 7 | // 8 | // Markup: 9 | //
10 | // 11 | //

12 | // Content 13 | //

14 | //
15 | // 16 | // .form-readonly-text-lg - input large styling 17 | // .form-readonly-text-sm - input small styling 18 | // 19 | // Component 4.6 20 | 21 | 22 | .form-readonly-text{ 23 | padding: 0 12px @padding-base-vertical 0; 24 | height: auto; 25 | 26 | color: @input-color; 27 | 28 | &.form-readonly-text-lg{ 29 | .input-lg(); 30 | padding-left:0; 31 | padding-top: 0; 32 | height: auto; 33 | } 34 | &.form-readonly-text-sm{ 35 | .input-sm(); 36 | padding-left:0; 37 | padding-top: 0; 38 | height: auto; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/less/components/_forms-select.less: -------------------------------------------------------------------------------- 1 | // Custom Select 2 | // 3 | // Use Select2 for a replacement of the "select" control. It replace the standard "select" markup for custom html and adding the necesary Javascript functionality to make it stylable, accesible and keyboard friendly. Refer to Select2 documentation to see how to implement it. 4 | // 5 | // Markup: 6 | // 7 | // 19 | // 20 | // Component 4.5 21 | -------------------------------------------------------------------------------- /src/less/components/_layout-section.less: -------------------------------------------------------------------------------- 1 | // Section Container to handle vertical spacing 2 | .section{ 3 | padding-top: 20px; 4 | } 5 | 6 | .section-header{ 7 | text-align: center; 8 | margin-bottom: 15px; 9 | 10 | .section-headline{ 11 | display: inline; 12 | } 13 | 14 | .btn-link{ 15 | padding-top: 0; 16 | padding-bottom: 0; 17 | } 18 | } 19 | 20 | // Container to avoid helptext to go full bleed 21 | .section-help{ 22 | margin: 5px auto; 23 | max-width: 600px; 24 | font-family: @font-family-opensans; 25 | } -------------------------------------------------------------------------------- /src/less/components/_stepbar.less: -------------------------------------------------------------------------------- 1 | .stepbar{ 2 | text-align: center; 3 | .container-fluid(); 4 | } 5 | 6 | .stepbar-left{ 7 | float: left; 8 | } 9 | 10 | .stepbar-right{ 11 | float: right; 12 | } 13 | 14 | .stepbar-center{ 15 | .navbar-vertical-align(@line-height-computed); 16 | display: inline-block; 17 | float: none; 18 | } 19 | 20 | .stepbar-label{ 21 | } -------------------------------------------------------------------------------- /src/less/components/_sticky_navbar.less: -------------------------------------------------------------------------------- 1 | .stickyNavigation-container{ 2 | height: 75px; 3 | padding-top: 17px; 4 | 5 | .navbar-left{ 6 | padding-top: 5px; 7 | } 8 | 9 | .navbar-left .navbar-btn{ 10 | padding-top: 4px; 11 | padding-left: 0; 12 | } 13 | 14 | .navbar-left h1{ 15 | display: inline; 16 | font-family: 'Dosis', sans-serif; 17 | } 18 | 19 | .glyphicon{ 20 | font-size: 29px; 21 | color: #bdc6c2; 22 | } 23 | 24 | .titleDescriptor{ 25 | font-size: 80%; 26 | } 27 | } -------------------------------------------------------------------------------- /src/less/components/_tooltip-popover.less: -------------------------------------------------------------------------------- 1 | // Tooltip 2 | // 3 | //Use tooltips for textual identification of an element in question. Tooltips are displayed on hover and focus or upon touch on touch screen devices. 4 | // 5 | // Markup: 6 | //
7 | //
8 | //
9 | // Tooltip message goes here 10 | //
11 | //
12 | // 13 | // Component 14.1 14 | 15 | // Popover 16 | // 17 | // Use the pop over with the Tour UI component to put together a comprehensive overview of UIs to new visitors. 18 | // 19 | // Markup: 20 | //
21 | //
22 | //

Popover title

23 | //
24 | //

25 | // Popover message goes here 26 | //

27 | //
28 | //
29 | // 30 | // Component 14.2 31 | -------------------------------------------------------------------------------- /src/less/globals/_shame.less: -------------------------------------------------------------------------------- 1 | // ------------------------------------------ 2 | // This file is only hacks and bugfixed you would 3 | // like to avoid ;) - Don't forget to comment 4 | // and describe bug + browser 5 | // PS: Hope you never need this file :P 6 | // ------------------------------------------ 7 | 8 | 9 | 10 | body, html, .wrapper { 11 | height: 100%; 12 | 13 | @media (min-width: 0) and (max-width: @screen-sm) { 14 | overflow-x: hidden; 15 | } 16 | } 17 | 18 | 19 | 20 | 21 | 22 | body{ 23 | overflow: auto; 24 | } 25 | 26 | .wrapper{ 27 | height: 100%!important; 28 | overflow: auto; 29 | @media (min-width: 0) and (max-width: @screen-sm) { 30 | // Prevent narrow devices from vertical scrollbar 31 | // when offcanvas is open 32 | overflow-x: hidden; 33 | position: relative; 34 | min-height: 100%; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/less/globals/_variables.less: -------------------------------------------------------------------------------- 1 | @import "./themes/_techne"; 2 | // @import "./themes/_belize"; 3 | -------------------------------------------------------------------------------- /src/less/overwrites/_badges.less: -------------------------------------------------------------------------------- 1 | // Status Badges 2 | // 3 | // 4 | // Markup: 5 | // Default 6 | // Success 7 | // Warning 8 | // Danger 9 | // 10 | // Component 11.7 11 | 12 | .badge{ 13 | text-transform: uppercase; 14 | font-weight: bold; 15 | padding: 5px 12px; 16 | border-radius: 15px; 17 | border: 1px solid @default-greyblue-500; 18 | margin-left: 0px; 19 | margin-bottom: 10px; 20 | margin-right: 13px; 21 | 22 | &[href] { 23 | &:hover, 24 | &:focus { 25 | background-color: @badge-hover-bg; 26 | } 27 | } 28 | } 29 | 30 | .badge-success { 31 | .badge-variant(@badge-success-bg); 32 | } 33 | .badge-warning { 34 | .badge-variant(@badge-warning-bg); 35 | } 36 | 37 | .badge-danger { 38 | .badge-variant(@badge-danger-bg); 39 | } 40 | 41 | // Mixin 42 | .badge-variant(@color) { 43 | border-color: @color; 44 | color: @color; 45 | 46 | &[href] { 47 | color: @color; 48 | 49 | &:hover, 50 | &:focus { 51 | background-color: darken(@color, 10%); 52 | color: #fff; 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/less/overwrites/_close.less: -------------------------------------------------------------------------------- 1 | .close{ 2 | text-shadow: none; 3 | .opacity(1); 4 | } -------------------------------------------------------------------------------- /src/less/overwrites/_code.less: -------------------------------------------------------------------------------- 1 | // Extend pre with size modifier classes 2 | pre{ 3 | &.pre-lg{ 4 | .input-lg(); 5 | } 6 | &.pre-sm{ 7 | .input-sm(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/less/overwrites/_grid.less: -------------------------------------------------------------------------------- 1 | @media (max-width: @screen-xxs) { 2 | .make-grid(xxs); 3 | } -------------------------------------------------------------------------------- /src/less/overwrites/_input-groups.less: -------------------------------------------------------------------------------- 1 | // Button input groups fixes 2 | // ------------------------- 3 | .input-group-btn{ 4 | > .btn, > .btn-group{ 5 | margin-top: -2px; 6 | } 7 | } 8 | 9 | .input-group-addon{ 10 | background-color: #fff; 11 | 12 | } -------------------------------------------------------------------------------- /src/less/overwrites/_thumbnails.less: -------------------------------------------------------------------------------- 1 | // Removeable Thumbnails 2 | 3 | .thumbnail{ 4 | &.thumbnail_deletable{ 5 | position: relative; 6 | } 7 | } 8 | 9 | .thumbnail_deletable_action{ 10 | position: absolute; 11 | top: 0; 12 | right: 0; 13 | 14 | border-bottom: 1px solid #ddd; 15 | border-left: 1px solid #ddd; 16 | background: #fff; 17 | } 18 | 19 | 20 | .y-thumbnail__img{ 21 | width: 200px; 22 | height: 200px; 23 | position: relative; 24 | overflow: hidden; 25 | background-size: cover; 26 | background-position: 50% 50%; 27 | background-repeat: no-repeat; 28 | } 29 | 30 | /*y-thumbnail should be deprecated instead .thumbnail__img used */ 31 | .thumbnail__img{ 32 | .y-thumbnail__img(); 33 | background-color: transparent; 34 | } -------------------------------------------------------------------------------- /src/less/overwrites/_tooltip.less: -------------------------------------------------------------------------------- 1 | .tooltip.in{ 2 | opacity: 1; 3 | } 4 | .tooltip-inner{ 5 | border-radius: 0px; 6 | box-shadow: 0px 2px 4px 0px rgba(73, 101, 130, 0.25); 7 | max-width: 300px; 8 | padding: 10px; 9 | font-size: @font-size-base; 10 | text-align: left; 11 | 12 | } -------------------------------------------------------------------------------- /src/less/overwrites/_type.less: -------------------------------------------------------------------------------- 1 | 2 | h1, .h1 { 3 | font-weight: 400; 4 | } 5 | 6 | h2, .h2 { 7 | font-weight: 500; 8 | } 9 | 10 | h3, .h3{ 11 | font-weight: 600; 12 | } 13 | 14 | h4, .h4{ 15 | font-weight: 500; 16 | } 17 | 18 | .page-header{ 19 | border:none; 20 | margin-top:0px; 21 | margin-bottom: 15px; 22 | } 23 | -------------------------------------------------------------------------------- /src/less/styles.less: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Dosis:400,500,600); 2 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,300,400italic,600); 3 | 4 | 5 | @hytech-path: "../"; 6 | 7 | @import "@{bower-path}/bootstrap/less/bootstrap"; 8 | @import (less) "@{bower-path}/select2/select2.css"; 9 | 10 | 11 | // Globals 12 | @import "./globals/_variables"; 13 | @import (optional) "./globals/_resource-paths"; 14 | @import "./globals/_utils"; 15 | @import "./overwrites/__overwrites.less"; 16 | @import "./components/_layout-section"; 17 | 18 | @import "./__components.less"; 19 | @import "./__patterns.less"; 20 | 21 | // Atoms 22 | // 23 | // Micro CSS things 24 | // 25 | 26 | @import "./components/_atoms"; 27 | 28 | 29 | // Vendor 30 | @import "./vendor/_select2"; 31 | @import "./components/_tabs-scrollable.less"; 32 | @import "./globals/_shame"; -------------------------------------------------------------------------------- /src/less/techne-patterns/_data-set-display.less: -------------------------------------------------------------------------------- 1 | // Infinite Scroll 2 | // 3 | // Infinite Scroll is a familiar consumer interaction pattern that allows an immersive experience when browsing or searching through data sets. It can and should be incorporated into administrative interfaces to enhance the usability. Examples of these instances are in the case of 'known searching' a filtered dataset; browsing scenarios; and to quickly identify visual objects. When using Infinite Scroll on a lengthy data set employing filtering and sorting components is recommended. 4 | // 5 | // Pattern 2.1 6 | 7 | // Pagination 8 | // 9 | // Use pagination components in conjunction with Tables (recommended) or Cards (if needed) to allow for more efficient performance and quick access to specific records in the overall data set. It is also recommended that the number of records is displayed at the top of the page, not just the total number displayed on the single page. Get more information how to display pagination. 10 | // 11 | // Pattern 2.2 -------------------------------------------------------------------------------- /src/less/techne-patterns/_popover.less: -------------------------------------------------------------------------------- 1 | // Usage Guidlines 2 | // 3 | // A “Tour” should be used when a new visitor comes to a UI module. It gives a step-by-step explanation of what the UI Module covers and where to go to accomplish certain tasks. The ‘Tour’ pattern uses the “Tour Bubble” UI component. We recommend to use the bootstrap popover component to do so. 4 | // 5 | // Markup: 6 | //
7 | //
8 | //

Popover

9 | //
10 | //

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

11 | //
12 | //
13 | // 14 | // Pattern 11.1 15 | 16 | .popover { 17 | color:#fff; 18 | border: none; 19 | border-radius: 0; 20 | font-size: @font-size-base; 21 | .popover-title{ 22 | border-bottom: none; 23 | font-size: @popover-heading-font-size; 24 | padding:25px 25px 8px 25px; 25 | } 26 | .popover-content{ 27 | padding:8px 25px 25px 25px; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/less/techne-patterns/_usercards.less: -------------------------------------------------------------------------------- 1 | .usercard{ 2 | display: table; 3 | } 4 | 5 | 6 | .usercard-info, 7 | .usercard-avatar{ 8 | display: table-cell; 9 | padding: 0 10px; 10 | vertical-align: top; 11 | 12 | h1, h2, h3{ 13 | margin-top: 0px; 14 | margin-bottom: 0px; 15 | } 16 | } 17 | 18 | .usercard-info{ 19 | .usercard-title{ 20 | color: @dark-grey-600; 21 | font-size: 1em; 22 | } 23 | .usercard-primary-info{ 24 | color: #000; 25 | } 26 | p{ 27 | color: @dark-grey-600; 28 | } 29 | } 30 | 31 | .usercard-avatar{ 32 | padding: 0px; 33 | max-width: 60px; 34 | img{ 35 | .img-responsive(); 36 | } 37 | } -------------------------------------------------------------------------------- /src/less/techne-patterns/_wizards.less: -------------------------------------------------------------------------------- 1 | // Wizard Examples 2 | // 3 | //
4 | //
5 | // 6 | // 7 | // 8 | //
9 | //
10 | // 11 | // 12 | // 13 | //
14 | //
15 | // 24 | // 25 | // Pattern 9.1 26 | -------------------------------------------------------------------------------- /src/less/templates/_resource-paths.less: -------------------------------------------------------------------------------- 1 | // To set a specific path for your resources just overwrite the variale here 2 | // Yeah, global scope :) 3 | 4 | @bower-path: '<%= bower_path %>'; 5 | @bootstrap-path: '<%= bootstrap_path %>'; 6 | @hytech-path: '..'; --------------------------------------------------------------------------------