├── routingExample ├── WebContent │ ├── Components.js │ └── META-INF │ │ └── MANIFEST.MF └── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope ├── i18nDemo ├── WebContent │ ├── i18n │ │ ├── i18n.properties │ │ ├── i18n_de.properties │ │ └── i18n_ch.properties │ └── META-INF │ │ └── MANIFEST.MF └── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope ├── barChart ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── demo ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── formCSS ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ ├── META-INF │ └── MANIFEST.MF │ └── css │ └── style.css ├── oData ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── vizDemo ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── 3rdPartyLib ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── demoFragment ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ ├── META-INF │ └── MANIFEST.MF │ └── demofragment │ └── demo.fragment.js ├── eventsDemo1 ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── eventsDemo2 ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope ├── WebContent │ └── META-INF │ │ └── MANIFEST.MF └── resources │ └── sap │ ├── m │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── me │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── ovp │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── tnt │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── uxap │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── ca │ └── ui │ │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── fiori │ └── themes │ │ └── custom1bluecrystal │ │ └── .theming │ ├── makit │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── ui │ ├── dt │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── rta │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── ux3 │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── vbm │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── vk │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── comp │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── layout │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── suite │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── table │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── commons │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── unified │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── generic │ │ └── template │ │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── richtexteditor │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ └── core │ │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ ├── global.less │ │ └── library.less │ ├── ushell │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── landvisz │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── uiext │ └── inbox │ │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── collaboration │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ └── suite │ └── ui │ ├── commons │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── microchart │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ └── generic │ └── template │ └── themes │ └── custom1bluecrystal │ ├── .theming │ └── library.less ├── fragmentDemo ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── langInterDemo ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ ├── i18n │ ├── i18n.properties │ ├── i18n_de.properties │ └── i18n_ch.properties │ └── META-INF │ └── MANIFEST.MF ├── myFirstApp_01 ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ ├── META-INF │ └── MANIFEST.MF │ ├── resources │ └── sap │ │ ├── m │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── me │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── ovp │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── tnt │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── uxap │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── ca │ │ └── ui │ │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── fiori │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ └── .theming │ │ ├── makit │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── ui │ │ ├── dt │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── rta │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── ux3 │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── vbm │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── vk │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── comp │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── layout │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── suite │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── table │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── commons │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── unified │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── generic │ │ │ └── template │ │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ ├── richtexteditor │ │ │ └── themes │ │ │ │ └── custom1bluecrystal3 │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ └── core │ │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ ├── global.less │ │ │ └── library.less │ │ ├── ushell │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── landvisz │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── uiext │ │ └── inbox │ │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── collaboration │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ └── suite │ │ └── ui │ │ ├── commons │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ ├── microchart │ │ └── themes │ │ │ └── custom1bluecrystal3 │ │ │ ├── .theming │ │ │ └── library.less │ │ └── generic │ │ └── template │ │ └── themes │ │ └── custom1bluecrystal3 │ │ ├── .theming │ │ └── library.less │ └── css │ └── new.css ├── myfirstApp ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── newVizFrame ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── oDataDemo ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── shellDemo ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── tablesDemo1 ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── themeDesigner ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ ├── META-INF │ └── MANIFEST.MF │ ├── themedesigner │ └── custom1bluecrystal │ │ ├── neo-app.json │ │ ├── UI5 │ │ └── sap │ │ │ ├── m │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── me │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── ovp │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── tnt │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── uxap │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── ca │ │ │ └── ui │ │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── fiori │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ └── .theming │ │ │ ├── makit │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── ui │ │ │ ├── dt │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── rta │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── ux3 │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── vbm │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── vk │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── comp │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── layout │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── suite │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── table │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── commons │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── unified │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── generic │ │ │ │ └── template │ │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ ├── richtexteditor │ │ │ │ └── themes │ │ │ │ │ └── custom1bluecrystal │ │ │ │ │ ├── .theming │ │ │ │ │ └── library.less │ │ │ └── core │ │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ ├── global.less │ │ │ │ └── library.less │ │ │ ├── ushell │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── landvisz │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── uiext │ │ │ └── inbox │ │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── collaboration │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ └── suite │ │ │ └── ui │ │ │ ├── commons │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ └── library.less │ │ │ ├── microchart │ │ │ └── themes │ │ │ │ └── custom1bluecrystal │ │ │ │ └── .theming │ │ │ └── generic │ │ │ └── template │ │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ └── .theming │ │ ├── UR │ │ ├── baseLib │ │ │ └── custom1bluecrystal │ │ │ │ ├── .theming │ │ │ │ ├── standards.less │ │ │ │ └── base.less │ │ └── ls │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ ├── base.less │ │ │ ├── custom.less │ │ │ └── standards.less │ │ ├── Base │ │ └── baseLib │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ ├── custom.less │ │ │ └── preview.less │ │ └── exportedThemeInfo.json │ └── resources1 │ └── sap │ ├── m │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── me │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── ovp │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── tnt │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── uxap │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── ca │ └── ui │ │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── fiori │ └── themes │ │ └── custom1bluecrystal │ │ └── .theming │ ├── makit │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── ui │ ├── comp │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── dt │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── rta │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── ux3 │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── vbm │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── vk │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── layout │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── suite │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── table │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── commons │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── unified │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── richtexteditor │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ ├── generic │ │ └── template │ │ │ └── themes │ │ │ └── custom1bluecrystal │ │ │ ├── .theming │ │ │ └── library.less │ └── core │ │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ ├── global.less │ │ └── library.less │ ├── ushell │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── landvisz │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── uiext │ └── inbox │ │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── collaboration │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ └── suite │ └── ui │ ├── commons │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ ├── microchart │ └── themes │ │ └── custom1bluecrystal │ │ ├── .theming │ │ └── library.less │ └── generic │ └── template │ └── themes │ └── custom1bluecrystal │ └── .theming ├── eventDemo4_Advance ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── eventsDemo3_Tables ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── externalLibraries ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── masterDetailDemo ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── splitScreenAppDemo ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF ├── twoPageSimpleApp ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ └── .jsdtscope └── WebContent │ └── META-INF │ └── MANIFEST.MF └── README.md /routingExample/WebContent/Components.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18nDemo/WebContent/i18n/i18n.properties: -------------------------------------------------------------------------------- 1 | greet=Hello -------------------------------------------------------------------------------- /i18nDemo/WebContent/i18n/i18n_de.properties: -------------------------------------------------------------------------------- 1 | greet=Halo -------------------------------------------------------------------------------- /barChart/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /demo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /formCSS/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /i18nDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /i18nDemo/WebContent/i18n/i18n_ch.properties: -------------------------------------------------------------------------------- 1 | greet=\u4F60\u597D -------------------------------------------------------------------------------- /oData/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /vizDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /3rdPartyLib/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /demoFragment/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /eventsDemo1/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /eventsDemo2/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /fragmentDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /langInterDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /myFirstApp_01/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /myfirstApp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /newVizFrame/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /oDataDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /shellDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /tablesDemo1/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /themeDesigner/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /eventDemo4_Advance/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /eventsDemo3_Tables/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /externalLibraries/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /masterDetailDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /routingExample/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /splitScreenAppDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /twoPageSimpleApp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /langInterDemo/WebContent/i18n/i18n.properties: -------------------------------------------------------------------------------- 1 | masterTitle=hello 2 | someAction=Click -------------------------------------------------------------------------------- /demo/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /langInterDemo/WebContent/i18n/i18n_de.properties: -------------------------------------------------------------------------------- 1 | masterTitle=hallo 2 | someAction=Klicken -------------------------------------------------------------------------------- /oData/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /barChart/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /formCSS/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /i18nDemo/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /myfirstApp/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /oDataDemo/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /shellDemo/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /vizDemo/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /3rdPartyLib/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /demoFragment/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /eventsDemo1/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /eventsDemo2/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /fragmentDemo/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /langInterDemo/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /newVizFrame/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /routingExample/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /tablesDemo1/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /eventDemo4_Advance/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /eventsDemo3_Tables/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /externalLibraries/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /masterDetailDemo/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /splitScreenAppDemo/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /twoPageSimpleApp/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /demo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /langInterDemo/WebContent/i18n/i18n_ch.properties: -------------------------------------------------------------------------------- 1 | masterTitle=\u4F60\u597D 2 | someAction=\u70B9\u51FB 3 | -------------------------------------------------------------------------------- /oData/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /barChart/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /formCSS/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /i18nDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /myfirstApp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /oDataDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /shellDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /vizDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /3rdPartyLib/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /demoFragment/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /eventsDemo1/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /eventsDemo2/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /fragmentDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /langInterDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /myFirstApp_01/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /newVizFrame/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /routingExample/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /tablesDemo1/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /themeDesigner/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /eventDemo4_Advance/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /eventsDemo3_Tables/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /externalLibraries/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /masterDetailDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /splitScreenAppDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /twoPageSimpleApp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ui5-demos 2 | All eclipse demos of UI5CN used for UI5 Professional development course www.ui5cn.com 3 | For Full Course Visit UI5CN https://www.ui5cn.com/courses/sapui5-professional-development-2019/ 4 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/m/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/m.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/me/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/me.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ovp/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ovp.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/tnt/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/tnt.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/uxap/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/uxap.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ca/ui/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ca/ui.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/fiori/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/fiori.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/makit/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/makit.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/dt/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/dt.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/rta/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/rta.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/ux3/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/ux3.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/vbm/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/vbm.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/vk/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/vk.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ushell/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ushell.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/neo-app.json: -------------------------------------------------------------------------------- 1 | {"authenticationMethod":"none","routes":[{"path":"/UI5","target":{"type":"service","name":"sapui5","preferLocal":true,"entryPath":"/resources"},"description":"SAPUI5 Resources"}]} -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/landvisz/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/landvisz.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/comp/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/comp.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/layout/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/layout.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/suite/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/suite.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/table/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/table.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/m/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/m.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/m/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/m.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/me/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/me.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/commons/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/commons.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/unified/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/unified.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/uiext/inbox/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/uiext/inbox.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/me/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/me.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ovp/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ovp.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/tnt/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/tnt.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/uxap/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/uxap.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ovp/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ovp.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/tnt/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/tnt.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/uxap/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/uxap.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/collaboration/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/collaboration.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ca/ui/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ca/ui.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/fiori/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/fiori.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/makit/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/makit.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/dt/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/dt.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/rta/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/rta.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/ux3/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/ux3.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/vbm/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/vbm.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/vk/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/vk.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ushell/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ushell.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ca/ui/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ca/ui.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/fiori/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/fiori.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/makit/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/makit.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/comp/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/comp.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/dt/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/dt.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/rta/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/rta.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/ux3/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/ux3.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/vbm/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/vbm.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/vk/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/vk.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ushell/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ushell.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/suite/ui/commons/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/commons.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/landvisz/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/landvisz.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/comp/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/comp.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/layout/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/layout.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/suite/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/suite.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/table/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/table.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/landvisz/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/landvisz.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/layout/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/layout.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/suite/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/suite.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/table/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/table.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/suite/ui/microchart/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/microchart.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/generic/template/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/generic/template.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/richtexteditor/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/richtexteditor.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/commons/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/commons.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/unified/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/unified.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/uiext/inbox/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/uiext/inbox.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/commons/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/commons.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/unified/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/unified.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/uiext/inbox/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/uiext/inbox.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/collaboration/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/collaboration.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/collaboration/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/collaboration.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/m/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/m.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/suite/ui/commons/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/commons.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/suite/ui/commons/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/commons.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/richtexteditor/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/richtexteditor.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/me/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/me.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ovp/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ovp.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/tnt/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/tnt.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/uxap/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/uxap.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/suite/ui/generic/template/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/generic/template.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/suite/ui/microchart/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/microchart.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/generic/template/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/generic/template.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/richtexteditor/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/richtexteditor.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/suite/ui/microchart/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/microchart.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/generic/template/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/generic/template.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ca/ui/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ca/ui.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/fiori/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/fiori.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/makit/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/makit.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/dt/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/dt.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/rta/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/rta.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/ux3/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/ux3.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/vbm/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/vbm.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/vk/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/vk.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ushell/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ushell.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/landvisz/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/landvisz.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/comp/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/comp.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/layout/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/layout.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/suite/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/suite.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/table/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/table.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/commons/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/commons.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/unified/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/unified.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/uiext/inbox/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/uiext/inbox.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/suite/ui/generic/template/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/generic/template.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/suite/ui/generic/template/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/generic/template.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/collaboration/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/collaboration.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/css/new.css: -------------------------------------------------------------------------------- 1 | .inputCss{ 2 | 3 | width: 60% !important; 4 | padding-left: 30% !important; 5 | 6 | } 7 | 8 | .btnCss{ 9 | width: 60% !important; 10 | padding-left: 30% !important; 11 | 12 | } 13 | 14 | .btnCss>.sapMBtnInner{ 15 | 16 | background:#007cc0; 17 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/suite/ui/commons/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/commons.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/suite/ui/microchart/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/microchart.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/generic/template/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/generic/template.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/richtexteditor/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/richtexteditor.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/suite/ui/generic/template/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/suite/ui/generic/template.sap_bluecrystal", 6 | "sTextDirections": "LTR" 7 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UR/baseLib/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UR.baseLib.sap_bluecrystal", 6 | "aBuildFiles": [ 7 | "standards" 8 | ], 9 | "aFiles": [ 10 | "base", 11 | "standards" 12 | ], 13 | "sTextDirections": "LTR" 14 | } -------------------------------------------------------------------------------- /demo/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UR/ls/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UR.ls.sap_bluecrystal", 6 | "aBuildFiles": [ 7 | "standards" 8 | ], 9 | "aFiles": [ 10 | "base", 11 | "standards", 12 | "custom" 13 | ], 14 | "sTextDirections": "LTR" 15 | } -------------------------------------------------------------------------------- /barChart/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/core/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/core.sap_bluecrystal", 6 | "aBuildFiles": [ 7 | "library", 8 | "custom" 9 | ], 10 | "aFiles": [ 11 | "library", 12 | "global", 13 | "custom" 14 | ], 15 | "sTextDirections": "LTR" 16 | } -------------------------------------------------------------------------------- /formCSS/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /i18nDemo/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /oData/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /oDataDemo/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /shellDemo/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vizDemo/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /3rdPartyLib/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demoFragment/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /eventsDemo1/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /eventsDemo2/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/core/themes/custom1bluecrystal/global.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30"} 5 | */ 6 | 7 | 8 | /******************* FILE /UI5/sap/ui/core/themes/custom1bluecrystal/global.less (Version 1.34.9) *******************/ 9 | 10 | @sapUiThemeDesignerCustomCss: false; 11 | -------------------------------------------------------------------------------- /fragmentDemo/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /langInterDemo/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /myFirstApp_01/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /myfirstApp/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /newVizFrame/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /routingExample/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tablesDemo1/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /themeDesigner/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/Base/baseLib/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "Base.baseLib.sap_bluecrystal", 6 | "aFiles": [ 7 | "base", 8 | "preview", 9 | "custom" 10 | ], 11 | "sTextDirections": "LTR", 12 | "sFallbackThemeId": "sap_goldreflection" 13 | } -------------------------------------------------------------------------------- /eventDemo4_Advance/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /eventsDemo3_Tables/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /externalLibraries/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /masterDetailDemo/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /splitScreenAppDemo/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /twoPageSimpleApp/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/core/themes/custom1bluecrystal3/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal3", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/core.sap_bluecrystal", 6 | "aBuildFiles": [ 7 | "library", 8 | "custom" 9 | ], 10 | "aFiles": [ 11 | "library", 12 | "global", 13 | "custom" 14 | ], 15 | "sTextDirections": "LTR" 16 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/core/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/core.sap_bluecrystal", 6 | "aBuildFiles": [ 7 | "library", 8 | "custom" 9 | ], 10 | "aFiles": [ 11 | "library", 12 | "global", 13 | "custom" 14 | ], 15 | "sTextDirections": "LTR" 16 | } -------------------------------------------------------------------------------- /demo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/core/themes/custom1bluecrystal3/global.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30"} 5 | */ 6 | 7 | 8 | /******************* FILE /UI5/sap/ui/core/themes/custom1bluecrystal3/global.less (Version 1.34.9) *******************/ 9 | 10 | @sapUiThemeDesignerCustomCss: false; 11 | -------------------------------------------------------------------------------- /oData/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/core/themes/custom1bluecrystal/global.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30"} 5 | */ 6 | 7 | 8 | /******************* FILE /UI5/sap/ui/core/themes/custom1bluecrystal/global.less (Version 1.34.9) *******************/ 9 | 10 | @sapUiThemeDesignerCustomCss: false; 11 | -------------------------------------------------------------------------------- /3rdPartyLib/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /barChart/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /eventsDemo1/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /eventsDemo2/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /formCSS/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /i18nDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /myfirstApp/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /newVizFrame/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /oDataDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /shellDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /tablesDemo1/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/exportedThemeInfo.json: -------------------------------------------------------------------------------- 1 | {"zipInfo":{"type":"custom-repository-theme","compression":"false"},"theme":{"themeId":"custom1bluecrystal","themeName":"Custom Blue Crystal","vendor":"","textDirections":"LTR"},"buildInformation":{"buildWith":"UI-themedesigner","buildDate":1460284646162,"themedesignerVersion":"1.16.1","themingengineVersion":"1.16.1","ui5RuntimeVersion":"1.34.9"}} -------------------------------------------------------------------------------- /vizDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /demoFragment/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /fragmentDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /langInterDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /masterDetailDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /myFirstApp_01/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /routingExample/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /themeDesigner/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /twoPageSimpleApp/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /eventDemo4_Advance/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /eventsDemo3_Tables/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /externalLibraries/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /splitScreenAppDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/core/themes/custom1bluecrystal/.theming: -------------------------------------------------------------------------------- 1 | { 2 | "sEntity": "Theme", 3 | "sId": "custom1bluecrystal", 4 | "sLabel": "Custom Blue Crystal", 5 | "oExtends": "UI5.sap/ui/core.sap_bluecrystal", 6 | "aBuildFiles": [ 7 | "library", 8 | "custom" 9 | ], 10 | "aFiles": [ 11 | "library", 12 | "global", 13 | "custom" 14 | ], 15 | "sTextDirections": "LTR" 16 | } -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/core/themes/custom1bluecrystal/global.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30"} 5 | */ 6 | 7 | 8 | /******************* FILE /UI5/sap/ui/core/themes/custom1bluecrystal/global.less (Version 1.34.9) *******************/ 9 | 10 | @sapUiThemeDesignerCustomCss: false; 11 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UR/ls/custom1bluecrystal/base.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","sCheck":"H0.01-61b06b34","mVersionDependency":{}} 5 | */ 6 | 7 | @import "custom.less"; 8 | 9 | /******************* FILE /UR/ls/custom1bluecrystal/base.less (Version 10.30.3.240577.0) *******************/ 10 | 11 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UR/ls/custom1bluecrystal/custom.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","sCheck":"H0.01-19aba8cb"} 5 | */ 6 | 7 | 8 | /******************* FILE /UR/ls/custom1bluecrystal/custom.less (Version 10.30.3.240577.0) *******************/ 9 | 10 | /**//**/ -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/Base/baseLib/custom1bluecrystal/custom.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","sCheck":"H0.01-688e96b"} 5 | */ 6 | 7 | 8 | /******************* FILE /Base/baseLib/custom1bluecrystal/custom.less (Version 10.30.3.240577.0) *******************/ 9 | 10 | /**//**/ -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UR/baseLib/custom1bluecrystal/standards.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","sCheck":"H0.01-157dc91e","mVersionDependency":{}} 5 | */ 6 | 7 | @import "base.less"; 8 | 9 | /******************* FILE /UR/baseLib/custom1bluecrystal/standards.less (Version 10.30.3.240577.0) *******************/ 10 | 11 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UR/baseLib/custom1bluecrystal/base.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","sCheck":"H0.01-7413a774","mVersionDependency":{}} 5 | */ 6 | 7 | @import "../../../Base/baseLib/custom1bluecrystal/base.less"; 8 | 9 | /******************* FILE /UR/baseLib/custom1bluecrystal/base.less (Version 10.30.3.240577.0) *******************/ 10 | 11 | -------------------------------------------------------------------------------- /demo/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /oData/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /formCSS/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vizDemo/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /barChart/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /i18nDemo/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /oDataDemo/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /shellDemo/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /3rdPartyLib/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /eventsDemo1/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /eventsDemo2/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /myfirstApp/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /newVizFrame/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tablesDemo1/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demoFragment/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /fragmentDemo/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /langInterDemo/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /myFirstApp_01/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /themeDesigner/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/Base/baseLib/custom1bluecrystal/preview.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","sCheck":"H0.01-41a4dc7f","mVersionDependency":{"Base.baseLib.sap_bluecrystal":"10.30.3.240577.0"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/preview.less"; 8 | @import "base.less"; 9 | 10 | /******************* FILE /Base/baseLib/custom1bluecrystal/preview.less (Version 10.30.3.240577.0) *******************/ 11 | 12 | -------------------------------------------------------------------------------- /routingExample/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /masterDetailDemo/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /twoPageSimpleApp/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/core/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/core.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/core/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /externalLibraries/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /eventDemo4_Advance/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /eventsDemo3_Tables/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /splitScreenAppDemo/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/core/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/core.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/core/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/core/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/core.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/core/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/m/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/m.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/m/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/me/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/me.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/me/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /demoFragment/WebContent/demofragment/demo.fragment.js: -------------------------------------------------------------------------------- 1 | sap.ui.jsfragment("demofragment.demo",{ 2 | 3 | 4 | 5 | createContent : function(oController){ 6 | 7 | var oItemTemplate = new sap.m.StandardListItem({ 8 | title:"{list>Name}", 9 | active:true 10 | }); 11 | var oSelDialog = new sap.m.SelectDialog({ 12 | 13 | title:"Animals", 14 | type:"Active", 15 | liveChange:[oController.liveChange,oController] 16 | }); 17 | oSelDialog.bindAggregation("items","list>/names",oItemTemplate); 18 | 19 | return oSelDialog; 20 | 21 | } 22 | 23 | 24 | }) 25 | 26 | 27 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ovp/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ovp.sap_bluecrystal":"1.34.6"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ovp/themes/custom1bluecrystal/library.less (Version 1.34.6) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/tnt/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/tnt.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/tnt/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/makit/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/makit.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/makit/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/dt/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/dt.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/dt/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/vk/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/vk.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/vk/themes/custom1bluecrystal/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/uxap/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/uxap.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/uxap/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UR/ls/custom1bluecrystal/standards.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","sCheck":"H0.01-30740eed","mVersionDependency":{"UR.ls.sap_bluecrystal":"10.30.3.240577.0"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/standards.less"; 8 | @import "../../baseLib/custom1bluecrystal/standards.less"; 9 | @import "base.less"; 10 | 11 | /******************* FILE /UR/ls/custom1bluecrystal/standards.less (Version 10.30.3.240577.0) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ca/ui/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ca/ui.sap_bluecrystal":"1.34.4"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ca/ui/themes/custom1bluecrystal/library.less (Version 1.34.4) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/comp/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/comp.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/comp/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/rta/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/rta.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/rta/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/ux3/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/ux3.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/ux3/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/vbm/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/vbm.sap_bluecrystal":"1.34.6"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/vbm/themes/custom1bluecrystal/library.less (Version 1.34.6) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ushell/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ushell.sap_bluecrystal":"1.34.8"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ushell/themes/custom1bluecrystal/library.less (Version 1.34.8) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/m/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/m.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/m/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/m/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/m.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/m/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/me/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/me.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/me/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/core/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/core.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/core/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/landvisz/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/landvisz.sap_bluecrystal":"1.34.0"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/landvisz/themes/custom1bluecrystal/library.less (Version 1.34.0) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/suite/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/suite.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/suite/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/table/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/table.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/table/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/me/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/me.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/me/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ovp/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ovp.sap_bluecrystal":"1.34.6"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ovp/themes/custom1bluecrystal3/library.less (Version 1.34.6) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/tnt/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/tnt.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/tnt/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ovp/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ovp.sap_bluecrystal":"1.34.6"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ovp/themes/custom1bluecrystal/library.less (Version 1.34.6) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/tnt/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/tnt.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/tnt/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/uxap/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/uxap.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/uxap/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/commons/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/commons.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/commons/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/layout/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/layout.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/layout/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/unified/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/unified.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/unified/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/uxap/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/uxap.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/uxap/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/makit/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/makit.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/makit/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/dt/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/dt.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/dt/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/vk/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/vk.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/vk/themes/custom1bluecrystal/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/makit/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/makit.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/makit/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/dt/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/dt.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/dt/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/rta/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/rta.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/rta/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/ux3/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/ux3.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/ux3/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/vbm/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/vbm.sap_bluecrystal":"1.34.6"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/vbm/themes/custom1bluecrystal3/library.less (Version 1.34.6) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/vk/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/vk.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/vk/themes/custom1bluecrystal3/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ushell/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ushell.sap_bluecrystal":"1.34.8"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ushell/themes/custom1bluecrystal3/library.less (Version 1.34.8) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ca/ui/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ca/ui.sap_bluecrystal":"1.34.4"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ca/ui/themes/custom1bluecrystal/library.less (Version 1.34.4) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/comp/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/comp.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/comp/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/rta/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/rta.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/rta/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/ux3/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/ux3.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/ux3/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/vbm/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/vbm.sap_bluecrystal":"1.34.6"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/vbm/themes/custom1bluecrystal/library.less (Version 1.34.6) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ushell/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ushell.sap_bluecrystal":"1.34.8"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ushell/themes/custom1bluecrystal/library.less (Version 1.34.8) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/collaboration/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/collaboration.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/collaboration/themes/custom1bluecrystal/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/uiext/inbox/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/uiext/inbox.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/uiext/inbox/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ca/ui/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ca/ui.sap_bluecrystal":"1.34.4"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ca/ui/themes/custom1bluecrystal3/library.less (Version 1.34.4) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/landvisz/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/landvisz.sap_bluecrystal":"1.34.0"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/landvisz/themes/custom1bluecrystal3/library.less (Version 1.34.0) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/comp/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/comp.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/comp/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/suite/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/suite.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/suite/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/table/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/table.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/table/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/landvisz/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/landvisz.sap_bluecrystal":"1.34.0"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/landvisz/themes/custom1bluecrystal/library.less (Version 1.34.0) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/layout/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/layout.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/layout/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/suite/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/suite.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/suite/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/table/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/table.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/table/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/layout/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/layout.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/layout/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/commons/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/commons.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/commons/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/unified/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/unified.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/unified/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/m/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/m.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/m/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/me/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/me.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/me/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /demo/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/richtexteditor/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/richtexteditor.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/richtexteditor/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/commons/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/commons.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/commons/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/unified/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/unified.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/unified/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /oData/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ovp/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ovp.sap_bluecrystal":"1.34.6"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ovp/themes/custom1bluecrystal/library.less (Version 1.34.6) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/tnt/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/tnt.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/tnt/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /3rdPartyLib/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /barChart/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /eventsDemo1/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /eventsDemo2/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /formCSS/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /i18nDemo/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/collaboration/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/collaboration.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/collaboration/themes/custom1bluecrystal3/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/uiext/inbox/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/uiext/inbox.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/uiext/inbox/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myfirstApp/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /newVizFrame/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /oDataDemo/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /shellDemo/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tablesDemo1/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/collaboration/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/collaboration.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/collaboration/themes/custom1bluecrystal/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/uiext/inbox/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/uiext/inbox.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/uiext/inbox/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/makit/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/makit.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/makit/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/dt/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/dt.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/dt/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/vk/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/vk.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/vk/themes/custom1bluecrystal/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/uxap/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/uxap.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/uxap/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /vizDemo/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /demoFragment/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/suite/ui/commons/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/suite/ui/commons.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/suite/ui/commons/themes/custom1bluecrystal/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /fragmentDemo/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /langInterDemo/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /masterDetailDemo/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /myFirstApp_01/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /routingExample/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /themeDesigner/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ca/ui/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ca/ui.sap_bluecrystal":"1.34.4"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ca/ui/themes/custom1bluecrystal/library.less (Version 1.34.4) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/comp/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/comp.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/comp/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/rta/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/rta.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/rta/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/ux3/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/ux3.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/ux3/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/vbm/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/vbm.sap_bluecrystal":"1.34.6"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/vbm/themes/custom1bluecrystal/library.less (Version 1.34.6) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ushell/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ushell.sap_bluecrystal":"1.34.8"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ushell/themes/custom1bluecrystal/library.less (Version 1.34.8) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /twoPageSimpleApp/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /eventDemo4_Advance/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/ui/generic/template/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/generic/template.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/generic/template/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo3_Tables/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /externalLibraries/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /splitScreenAppDemo/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/richtexteditor/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/richtexteditor.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/richtexteditor/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/landvisz/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/landvisz.sap_bluecrystal":"1.34.0"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/landvisz/themes/custom1bluecrystal/library.less (Version 1.34.0) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/suite/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/suite.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/suite/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/table/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/table.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/table/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/suite/ui/microchart/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/suite/ui/microchart.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/suite/ui/microchart/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/richtexteditor/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/richtexteditor.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/richtexteditor/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/commons/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/commons.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/commons/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/layout/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/layout.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/layout/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/unified/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/unified.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/unified/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/suite/ui/commons/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/suite/ui/commons.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/suite/ui/commons/themes/custom1bluecrystal/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /formCSS/WebContent/css/style.css: -------------------------------------------------------------------------------- 1 | .newForm{ 2 | width: 70% !important; 3 | padding-left: 30% !important; 4 | padding-top: 10% !important; 5 | 6 | } 7 | 8 | .hBoxForm{ 9 | padding-left: 30%; 10 | } 11 | .vBoxForm{ 12 | padding-left: 40%; 13 | 14 | } 15 | 16 | .sapUiRFLContainer { 17 | width: 100% !important; 18 | } 19 | 20 | /*.hBoxForm>.sapMFlexItem>.sapMBtn>.sapMBtnInner { 21 | background: green; 22 | }*/ 23 | .newBtnGreen>.sapMBtnInner { 24 | background: green; 25 | } 26 | 27 | @media screen and (max-width:600px){ 28 | .hBoxForm{ 29 | padding-left: 0%; 30 | } 31 | .vBoxForm{ 32 | padding-left: 18%; 33 | 34 | } 35 | 36 | 37 | } -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/suite/ui/commons/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/suite/ui/commons.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/suite/ui/commons/themes/custom1bluecrystal3/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/ui/generic/template/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/ui/generic/template.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../../core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/generic/template/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/ui/generic/template/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/generic/template.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/generic/template/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/collaboration/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/collaboration.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/collaboration/themes/custom1bluecrystal/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/uiext/inbox/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/uiext/inbox.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/uiext/inbox/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/suite/ui/microchart/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/suite/ui/microchart.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/suite/ui/microchart/themes/custom1bluecrystal3/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/resources1/sap/suite/ui/microchart/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/suite/ui/microchart.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/suite/ui/microchart/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/richtexteditor/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/richtexteditor.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/richtexteditor/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /eventsDemo2/resources/sap/suite/ui/generic/template/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/suite/ui/generic/template.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/suite/ui/generic/template/themes/custom1bluecrystal/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/suite/ui/commons/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/suite/ui/commons.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../../ui/core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/suite/ui/commons/themes/custom1bluecrystal/library.less (Version 1.34.5) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /themeDesigner/WebContent/themedesigner/custom1bluecrystal/UI5/sap/ui/generic/template/themes/custom1bluecrystal/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-10T10:37:12-05:30","mVersionDependency":{"UI5.sap/ui/generic/template.sap_bluecrystal":"1.34.9"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../Base/baseLib/custom1bluecrystal/base.less"; 9 | @import "../../../../core/themes/custom1bluecrystal/global.less"; 10 | 11 | /******************* FILE /UI5/sap/ui/generic/template/themes/custom1bluecrystal/library.less (Version 1.34.9) *******************/ 12 | 13 | -------------------------------------------------------------------------------- /myFirstApp_01/WebContent/resources/sap/suite/ui/generic/template/themes/custom1bluecrystal3/library.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013 SAP AG, All Rights Reserved 3 | * Theming Engine 1.16.1 4 | * data:{"sModified":"2016-04-14T00:15:54-05:30","mVersionDependency":{"UI5.sap/suite/ui/generic/template.sap_bluecrystal":"1.34.5"}} 5 | */ 6 | 7 | @import "../sap_bluecrystal/library.less"; 8 | @import "../../../../../../../../Base/baseLib/custom1bluecrystal3/base.less"; 9 | @import "../../../../../../ui/core/themes/custom1bluecrystal3/global.less"; 10 | 11 | /******************* FILE /UI5/sap/suite/ui/generic/template/themes/custom1bluecrystal3/library.less (Version 1.34.5) *******************/ 12 | 13 | --------------------------------------------------------------------------------