This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch feature/jewel-ui-set
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/feature/jewel-ui-set by this 
push:
     new 110fe61  remove deprecated blue theme
110fe61 is described below

commit 110fe615d3728bc884792869ceef47db3ac4e805
Author: Carlos Rovira <[email protected]>
AuthorDate: Thu Apr 5 20:35:56 2018 +0200

    remove deprecated blue theme
---
 frameworks/themes/JewelBlueTheme/asconfig.json     |  34 ------
 frameworks/themes/JewelBlueTheme/build.xml         | 133 ---------------------
 frameworks/themes/JewelBlueTheme/pom.xml           |  88 --------------
 .../src/main/config/compile-swf-config.xml         |  85 -------------
 .../src/main/resources/assets/some.svg             |  19 ---
 .../src/main/royale/JewelBlueThemeClasses.as       |  33 -----
 .../JewelBlueTheme/src/main/sass/_functions.sass   |  18 ---
 .../JewelBlueTheme/src/main/sass/_global.sass      |  22 ----
 .../JewelBlueTheme/src/main/sass/_mixins.sass      |  77 ------------
 .../JewelBlueTheme/src/main/sass/_variables.sass   |  82 -------------
 .../src/main/sass/components/_alert.sass           |  23 ----
 .../src/main/sass/components/_button.sass          |  62 ----------
 .../src/main/sass/components/_checkbox.sass        |  22 ----
 .../src/main/sass/components/_controlbar.sass      |  22 ----
 .../src/main/sass/components/_label.sass           |  20 ----
 .../src/main/sass/components/_radiobutton.sass     |  22 ----
 .../src/main/sass/components/_slider.sass          |  20 ----
 .../src/main/sass/components/_textbutton.sass      |  79 ------------
 .../src/main/sass/components/_textfield.sass       |  22 ----
 .../src/main/sass/components/_titlebar.sass        |  22 ----
 .../JewelBlueTheme/src/main/sass/defaults.sass     |  36 ------
 21 files changed, 941 deletions(-)

diff --git a/frameworks/themes/JewelBlueTheme/asconfig.json 
b/frameworks/themes/JewelBlueTheme/asconfig.json
deleted file mode 100644
index b30f1fd..0000000
--- a/frameworks/themes/JewelBlueTheme/asconfig.json
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- {
-    "config": "royale",
-    "type": "lib",
-    "compilerOptions": {
-        "debug": true,
-        "targets": [
-            "JSRoyale",
-            "SWF"
-        ],
-        "include-classes": [
-            "JewelBlueThemeClasses"
-        ],
-        "include-sources": [
-            "src/main/royale"
-        ],
-        "output": "target/JewelBlueTheme.swc"
-    }
-}
diff --git a/frameworks/themes/JewelBlueTheme/build.xml 
b/frameworks/themes/JewelBlueTheme/build.xml
deleted file mode 100644
index d809961..0000000
--- a/frameworks/themes/JewelBlueTheme/build.xml
+++ /dev/null
@@ -1,133 +0,0 @@
-<?xml version="1.0"?>
-<!--
-
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
-
--->
-
-
-<project name="JewelBlueTheme" default="main" basedir=".">
-    <property name="ROYALE_HOME" location="../../.."/>
-    
-    <property file="${ROYALE_HOME}/env.properties"/>
-    <property environment="env"/>
-    <property file="${ROYALE_HOME}/build.properties"/>
-    <property name="ROYALE_HOME" value="${ROYALE_HOME}"/>
-    
-    <property name="target.name" value="${ant.project.name}.swc" />
-    
-    <!-- doesn't contain compiled files so only need to compile JS version -->
-    <target name="main" 
depends="clean,check-compiler,compile,compile-js,copy-swc,test" 
description="Full build of ${ant.project.name}.swc">
-    </target>
-    
-    <target name="compile-js">
-        <!-- doesn't contain compiled files so only need to compile JS version
-        <ant 
dir="${ROYALE_HOME}/frameworks/js/projects/${ant.project.name}JS/" 
inheritAll="false" >
-            <property name="ROYALE_SWF_COMPILER_HOME" 
value="${ROYALE_SWF_COMPILER_HOME}"/>
-            <property name="ROYALE_COMPILER_HOME" 
value="${ROYALE_COMPILER_HOME}"/>
-            <property name="ROYALE_HOME" value="${ROYALE_HOME}"/>
-        </ant>
-         -->
-    </target>
-    
-    <target name="copy-swc" if="env.AIR_HOME">
-        <copy file="${basedir}/target/${target.name}" 
tofile="${ROYALE_HOME}/frameworks/libs/${target.name}" />
-    </target>
-    
-    <target name="check-for-tests" >
-        <condition property="skip-tests" >
-            <not>
-                <available file="${basedir}/src/test/royale/build.xml" />
-            </not>
-        </condition>
-    </target>
-    
-    <target name="test" depends="check-for-tests" unless="skip-tests">
-        <ant dir="src/test/royale" />
-    </target>
-    
-    <target name="clean">
-        <delete failonerror="false">
-            <fileset dir="${ROYALE_HOME}/frameworks/libs">
-                <include name="${target.name}"/>
-            </fileset>
-        </delete>
-        <delete failonerror="false" includeemptydirs="true">
-            <fileset dir="${basedir}/target">
-                <include name="**/**"/>
-            </fileset>
-        </delete>
-        <antcall target="clean-tests" />
-    </target>
-    
-    <target name="clean-tests" depends="check-for-tests" unless="skip-tests">
-        <ant dir="src/test/royale" target="clean"/>
-    </target>
-    
-    <target name="compile" description="Compiles .as files into .swc" 
if="env.AIR_HOME">
-        <echo message="Compiling libs/${ant.project.name}.swc"/>
-        <echo message="ROYALE_HOME: ${ROYALE_HOME}"/>
-        <echo message="ROYALE_SWF_COMPILER_HOME: ${ROYALE_SWF_COMPILER_HOME}"/>
-        <echo message="ROYALE_COMPILER_HOME: ${ROYALE_COMPILER_HOME}"/>
-        
-        <java jar="${ROYALE_COMPILER_HOME}/lib/compc.jar" fork="true" >
-            <jvmarg value="-Xmx384m" />
-            <jvmarg value="-Dsun.io.useCanonCaches=false" />
-            <jvmarg value="-Droyalelib=${ROYALE_HOME}/frameworks" />
-            <arg value="+royalelib=${ROYALE_HOME}/frameworks" />
-            <arg value="+playerglobal.version=${playerglobal.version}" />
-            <arg value="+env.AIR_HOME=${env.AIR_HOME}" />
-            <arg value="-compiler.strict-xml=true" />
-            <arg value="-compiler.targets=SWF,JSRoyale" />
-            <arg value="-output=${basedir}/target/${target.name}" />
-            <arg 
value="-load-config=${basedir}/src/main/config/compile-swf-config.xml" />
-            <arg 
value="-js-load-config=${ROYALE_HOME}/frameworks/js-config.xml" />
-            <arg 
value="-js-load-config+=${basedir}/../../js/themes/${ant.project.name}JS/src/main/config/compile-js-config.xml"
 />
-        </java>
-    </target>
-    
-    <target name="check-compiler" 
depends="check-compiler-home,check-transpiler-home">
-        <path id="lib.path">
-            <fileset dir="${ROYALE_COMPILER_HOME}/lib" 
includes="compiler-royaleTasks.jar"/>
-        </path>
-        <taskdef resource="flexTasks.tasks" classpathref="lib.path"/>
-    </target>
-    
-    <target name="check-compiler-home"
-        description="Set ROYALE_SWF_COMPILER_HOME to point at the compiler.">
-        
-        <available file="${ROYALE_HOME}/lib/compiler-mxmlc.jar"
-        type="file"
-        property="ROYALE_SWF_COMPILER_HOME"
-        value="${ROYALE_HOME}"/>
-        
-        <fail message="ROYALE_SWF_COMPILER_HOME must be set to a folder with a 
lib sub-folder containing compiler-mxmlc.jar such as the compiler folder in 
royale-compiler repo or the root of a Royale SDK"
-        unless="ROYALE_SWF_COMPILER_HOME"/>
-    </target>
-    
-    <target name="check-transpiler-home"
-        description="Set ROYALE_COMPILER_HOME to point at the cross-compiler.">
-        
-        <available file="${ROYALE_HOME}/js/lib/jsc.jar"
-        type="file"
-        property="ROYALE_COMPILER_HOME"
-        value="${ROYALE_HOME}/js"/>
-        
-        <fail message="ROYALE_COMPILER_HOME must be set to a folder with a lib 
sub-folder containing jsc.jar such as the compiler-jx folder in royale-compiler 
repo or the js folder of a Royale SDK"
-        unless="ROYALE_COMPILER_HOME"/>
-    </target>
-    
-</project>
diff --git a/frameworks/themes/JewelBlueTheme/pom.xml 
b/frameworks/themes/JewelBlueTheme/pom.xml
deleted file mode 100644
index c37e7e4..0000000
--- a/frameworks/themes/JewelBlueTheme/pom.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
-
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>org.apache.royale.framework</groupId>
-    <artifactId>themes</artifactId>
-    <version>0.9.3-SNAPSHOT</version>
-  </parent>
-
-  <artifactId>JewelBlueTheme</artifactId>
-  <version>0.9.3-SNAPSHOT</version>
-  <packaging>swc</packaging>
-
-  <name>Apache Royale: Framework: Themes: JewelBlueTheme</name>
-
-  <build>
-    <sourceDirectory>src/main/royale</sourceDirectory>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.royale.compiler</groupId>
-        <artifactId>royale-maven-plugin</artifactId>
-        <version>${royale.compiler.version}</version>
-        <extensions>true</extensions>
-        <configuration>
-          <includeClasses>
-            <includeClass>JewelBlueThemeClasses</includeClass>
-          </includeClasses>
-          <includeFiles>
-            <include-file>
-              <name>assets/*</name>
-              <path>../src/main/resources/assets/*</path>
-            </include-file>
-            <include-file>
-              <name>defaults.css</name>
-              <path>../src/main/resources/defaults.css</path>
-            </include-file>
-          </includeFiles>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>nl.geodienstencentrum.maven</groupId>
-        <artifactId>sass-maven-plugin</artifactId>
-        <version>3.5.2</version>
-        <configuration>
-          <resources>
-              <resource>
-                  <source>
-                      <directory>${basedir}/src/main/sass</directory>
-                      <includes>
-                          <include>**/*.sass</include>
-                      </includes>
-                  </source>
-                  <destination>${basedir}/src/main/resources</destination>
-              </resource>
-          </resources>
-        </configuration>
-        <executions>
-          <execution>
-              <id>generate-css-using-sass</id>
-              <goals>
-                  <goal>update-stylesheets</goal>
-              </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-
-</project>
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/config/compile-swf-config.xml 
b/frameworks/themes/JewelBlueTheme/src/main/config/compile-swf-config.xml
deleted file mode 100644
index 221a32b..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/config/compile-swf-config.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-<!--
-
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
-
--->
-<royale-config>
-
-    <compiler>
-        <accessible>false</accessible>
-        
-        <!-- build both SWF and JS. -->
-        <targets>
-            <target>JSRoyale</target>
-        </targets>
-        <strict-xml>true</strict-xml>
-
-        <external-library-path>
-            
<path-element>${env.AIR_HOME}/frameworks/libs/air/airglobal.swc</path-element>
-            <path-element>../../../../../libs/Binding.swc</path-element>
-            <path-element>../../../../../libs/Core.swc</path-element>
-            <path-element>../../../../../libs/Graphics.swc</path-element>
-            <path-element>../../../../../libs/Basic.swc</path-element>
-            <path-element>../../../../../libs/Collections.swc</path-element>
-            <path-element>../../../../../libs/HTML.swc</path-element>
-        </external-library-path>
-        
-        <allow-subclass-overrides>true</allow-subclass-overrides>
-               <mxml>
-                       <children-as-data>true</children-as-data>
-               </mxml>
-               
<binding-value-change-event>org.apache.royale.events.ValueChangeEvent</binding-value-change-event>
-               
<binding-value-change-event-kind>org.apache.royale.events.ValueChangeEvent</binding-value-change-event-kind>
-               
<binding-value-change-event-type>valueChange</binding-value-change-event-type>
-
-        <define>
-            <name>COMPILE::SWF</name>
-            <value>true</value>
-        </define>
-        <define>
-            <name>COMPILE::JS</name>
-            <value>true</value>
-        </define>
-
-        <keep-as3-metadata>
-          <name>Bindable</name>
-          <name>Managed</name>
-          <name>ChangeEvent</name>
-          <name>NonCommittingChangeEvent</name>
-          <name>Transient</name>
-        </keep-as3-metadata>
-         
-        <locale/>
-        
-        <library-path/>
-
-        <source-path>
-            <path-element>../royale</path-element>
-        </source-path>
-        
-        <warn-no-constructor>false</warn-no-constructor>
-    </compiler>
-    
-    <include-lookup-only>true</include-lookup-only>
-    
-    <include-classes>
-        <class>JewelBlueThemeClasses</class>
-    </include-classes>
-    
-    <target-player>${playerglobal.version}</target-player>
-       
-
-</royale-config>
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/resources/assets/some.svg 
b/frameworks/themes/JewelBlueTheme/src/main/resources/assets/some.svg
deleted file mode 100644
index f95ec08..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/resources/assets/some.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-<!--
-
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
-
--->
-<svg viewBox="0 0 16 13" version="1.1" xmlns="http://www.w3.org/2000/svg";><g 
transform="translate(-763, -290)"><g transform="translate(760, 
285)"><g><polygon points="3 13 9 18 19 7 16 5 9 13 6 
10"></polygon></g></g></g></svg>
\ No newline at end of file
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/royale/JewelBlueThemeClasses.as 
b/frameworks/themes/JewelBlueTheme/src/main/royale/JewelBlueThemeClasses.as
deleted file mode 100644
index fddadba..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/royale/JewelBlueThemeClasses.as
+++ /dev/null
@@ -1,33 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-package
-{
-
-    /**
-     *  @private
-     *  This class is used to link additional classes into JewelBlueTheme.swc
-     *  beyond those that are found by dependecy analysis starting
-     *  from the classes specified in manifest.xml.
-     */
-    internal class JewelBlueThemeClasses
-    {
-       
-    }
-
-}
\ No newline at end of file
diff --git a/frameworks/themes/JewelBlueTheme/src/main/sass/_functions.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/_functions.sass
deleted file mode 100644
index 0c6fb82..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/_functions.sass
+++ /dev/null
@@ -1,18 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
diff --git a/frameworks/themes/JewelBlueTheme/src/main/sass/_global.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/_global.sass
deleted file mode 100644
index be93742..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/_global.sass
+++ /dev/null
@@ -1,22 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-@namespace j "library://ns.apache.org/royale/jewel"
-@namespace "http://www.w3.org/1999/xhtml";
-
diff --git a/frameworks/themes/JewelBlueTheme/src/main/sass/_mixins.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/_mixins.sass
deleted file mode 100644
index 7e5787b..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/_mixins.sass
+++ /dev/null
@@ -1,77 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-
-=appear($val)
-       -webkit-appearance: $val
-       -moz-appearance: $val
-       -o-appearance: $val
-       appearance: $val
-
-//=trans($val...)
-//     -webkit-transition: $val
-//     -moz-transition: $val
-//     -o-transition: $val
-//     transition: $val
-
-
-=jewel-bg-border($state, $bg-color, $border-radius: 0px)
-       @if ($state == "normal")
-               @if $flat
-                       border: 0px solid
-                       background: $bg-color
-               @else
-                       border: 1px solid darken($bg-color, 15%)// .094em 
-                       background: linear-gradient(lighten($bg-color, 5%), 
darken($bg-color, 5%))
-                       box-shadow: inset 0 1px 0 lighten($bg-color, 20%)
-               border-radius: $border-radius //.625em
-       
-       @else if ($state == "hover")
-               @if $flat
-                       border: 0px solid
-                       background: darken($bg-color, 5%)
-               @else
-                       border: 1px solid darken($bg-color, 20%)// .094em 
-                       background: linear-gradient($bg-color, 
darken($bg-color, 10%))
-       
-       @else if ($state == "active")
-               @if $flat
-                       border: 0px solid
-                       background: darken($bg-color, 15%)
-               @else
-                       border: 1px solid darken($bg-color, 30%)// .094em 
-                       background: linear-gradient(darken($bg-color, 10%), 
darken($bg-color, 20%))
-                       box-shadow: inset 0px 1px 3px 0px rgba(50, 50, 50, 0.5)
-
-       @else if ($state == "focus")
-               @if $flat
-                       border: 0px solid $bg-color
-                       background: lighten($bg-color, 5%)
-               @else
-                       border: 1px solid darken($bg-color, 15%)
-                       box-shadow: inset 0px 0px 0px 1px 
rgba(lighten($bg-color, 50%), .5), inset 0 1px 0 rgba(lighten($bg-color, 55%), 
.6)
-       
-       @else if ($state == "disabled")
-               @if $flat
-                       border: 0px solid
-                       background: $disabled-color
-               @else
-                       border: 1px solid $disabled-border-color// .094em
-                       background: $disabled-color
-               box-shadow: none
diff --git a/frameworks/themes/JewelBlueTheme/src/main/sass/_variables.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/_variables.sass
deleted file mode 100644
index e87c616..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/_variables.sass
+++ /dev/null
@@ -1,82 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-// CONSTANTS
-// 12 Color Themes (this will go to one separate project each one)
-$red: #EC1C24
-$amethyst: #922590
-$violet: #662C90
-$Sapphire: #2C74BE
-$blue: #3CADF1
-$turquoise: #29A89F
-$green: #3AB549
-$emerald: #8CC63C
-$yellow: #FCEF0A
-$sunflower: #F8B13F
-$orange: #F7941D
-$topaz: #EF5A2A
-$font-theme-color: #FFFFFF
-
-$light-color: #d9d9d9
-$font-light-color: #808080
-
-$dark-color: #595959
-$font-dark-color: #FFFFFF
-
-//Theme Style (Flat or Gradient)
-$flat: false
-$dark: false
-$transitions-enable: false
-$transition-duration: .3s
-$transition-timing: easein
-
-// FONTS
-$font-stack: 'Lato', sans-serif
-$font-size: 14px//0.75rem
-
-// VARIABLES
-$default-color: $light-color
-@if $dark
-    $default-color: $dark-color
-
-$primary-color: $blue
-$secondary-color: $topaz
-$emphasized-color: $green
-
-$default-font-color: $font-light-color
-@if $dark
-    $default-font-color: $font-dark-color
-
-// DISABLED
-$disabled-color: lighten($light-color, 10%)
-@if $dark
-    $disabled-color: darken($dark-color, 10%)
-
-$disabled-font-color: darken($disabled-color, 20%)
-@if $dark
-    $disabled-font-color: lighten($disabled-color, 20%)
-
-$disabled-border-color: darken($disabled-color, 10%)
-@if $dark
-    $disabled-border-color: darken($disabled-color, 20%)
-
-// BACKGROUND
-$background-color: lighten($light-color, 45%)
-@if $dark
-    $background-color: darken($dark-color, 35%)
\ No newline at end of file
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_alert.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/components/_alert.sass
deleted file mode 100644
index 1c8d95a..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_alert.sass
+++ /dev/null
@@ -1,23 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-// Jewel Alert
-
-// Alert variables
-
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_button.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/components/_button.sass
deleted file mode 100644
index 674fd65..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_button.sass
+++ /dev/null
@@ -1,62 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-// Jewel Button
-
-// Button variables
-$button-margin: 0 !default
-$button-padding: 8px !default
-$button-min-height: 34px !default
-$button-min-width: 34px !default
-
-$button-border-radius: 3px
-
-=button-theme($button-color)
-       cursor: pointer
-       display: inline-block
-
-       margin: $button-margin //1rem
-       padding: $button-padding //.938em 1.875em
-       
-       min-width: $button-min-width
-       min-height: $button-min-height
-       
-       +jewel-bg-border("normal", $button-color, $button-border-radius)
-       
-       @if $transitions-enable
-               transition:
-                       duration: $transition-duration
-                       timing-function: $transition-timing
-       
-       &:hover, &:hover:focus
-               +jewel-bg-border("hover", $button-color)
-       
-       &:active, &:active:focus
-               +jewel-bg-border("active", $button-color)
-       
-       &:focus
-               outline: none
-               +jewel-bg-border("focus", $button-color)
-
-       &[disabled]
-               cursor: unset
-               +jewel-bg-border("disabled", $button-color)
-
-.jewel.button.secondary
-       +button-theme($secondary-color)
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_checkbox.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/components/_checkbox.sass
deleted file mode 100644
index 9b0ac58..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_checkbox.sass
+++ /dev/null
@@ -1,22 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-// Jewel CheckBox
-
-// CheckBox variables
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_controlbar.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/components/_controlbar.sass
deleted file mode 100644
index 5ddca20..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_controlbar.sass
+++ /dev/null
@@ -1,22 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-// Jewel ControlBar
-
-// ControlBar variables
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_label.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/components/_label.sass
deleted file mode 100644
index 019c818..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_label.sass
+++ /dev/null
@@ -1,20 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_radiobutton.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/components/_radiobutton.sass
deleted file mode 100644
index 9016e3a..0000000
--- 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_radiobutton.sass
+++ /dev/null
@@ -1,22 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-// Jewel RadioButton
-
-// RadioButton variables
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_slider.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/components/_slider.sass
deleted file mode 100644
index 019c818..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_slider.sass
+++ /dev/null
@@ -1,20 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_textbutton.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/components/_textbutton.sass
deleted file mode 100644
index 12c1939..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_textbutton.sass
+++ /dev/null
@@ -1,79 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-// Jewel TextButton
-
-// TextButton variables
-$textbutton-margin: 0 !default
-$textbutton-padding: 10px 16px !default
-$textbutton-min-height: 34px !default
-$textbutton-min-width: 74px !default
-
-$textbutton-border-radius: 3px
-
-=textbutton-theme($textbutton-color, $text-color)
-       cursor: pointer
-       display: inline-block
-       
-       margin: $textbutton-margin //1rem
-       padding: $textbutton-padding //.938em 1.875em
-       
-       min-width: $textbutton-min-width
-       min-height: $textbutton-min-height
-       
-       +jewel-bg-border("normal", $textbutton-color, $textbutton-border-radius)
-       
-       @if $transitions-enable
-               transition:
-                       duration: $transition-duration
-                       timing-function: $transition-timing
-       
-       font:
-               family: $font-stack 
-               size: $font-size
-               weight: bold
-       color: $text-color
-       text:
-               transform: uppercase
-               decoration: none 
-       @if not $flat and $text-color == $font-theme-color
-               text:
-                       shadow: 0 -1px 0 rgba(darken($textbutton-color, 30%), 
.7) //0 .063em
-       
-       &:hover, &:hover:focus
-               +jewel-bg-border("hover", $textbutton-color)
-
-       &:active, &:active:focus
-               +jewel-bg-border("active", $textbutton-color)
-
-       &:focus
-               outline: none
-               +jewel-bg-border("focus", $textbutton-color)
-               
-       &[disabled]
-               cursor: unset
-               +jewel-bg-border("disabled", $textbutton-color)
-               color: $disabled-font-color
-               font:
-                       weight: normal
-               text:
-                       shadow: unset
-
-.jewel.textbutton.secondary
-       +textbutton-theme($secondary-color, $font-theme-color)
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_textfield.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/components/_textfield.sass
deleted file mode 100644
index 5ac77c9..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_textfield.sass
+++ /dev/null
@@ -1,22 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-// Jewel Textfield
-
-// Textfield variables
diff --git 
a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_titlebar.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/components/_titlebar.sass
deleted file mode 100644
index 813c0f0..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/components/_titlebar.sass
+++ /dev/null
@@ -1,22 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Licensed to the Apache Software Foundation (ASF) under one or more
-//  contributor license agreements.  See the NOTICE file distributed with
-//  this work for additional information regarding copyright ownership.
-//  The ASF licenses this file to You under the Apache License, Version 2.0
-//  (the "License"); you may not use this file except in compliance with
-//  the License.  You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-//  Unless required by applicable law or agreed to in writing, software
-//  distributed under the License is distributed on an "AS IS" BASIS,
-//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//  See the License for the specific language governing permissions and
-//  limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-// Jewel TitleBAr
-
-// TitleBar variables
diff --git a/frameworks/themes/JewelBlueTheme/src/main/sass/defaults.sass 
b/frameworks/themes/JewelBlueTheme/src/main/sass/defaults.sass
deleted file mode 100644
index b4f6a8f..0000000
--- a/frameworks/themes/JewelBlueTheme/src/main/sass/defaults.sass
+++ /dev/null
@@ -1,36 +0,0 @@
-/**
- *  Licensed to the Apache Software Foundation (ASF) under one or more
- *  contributor license agreements.  See the NOTICE file distributed with
- *  this work for additional information regarding copyright ownership.
- *  The ASF licenses this file to You under the Apache License, Version 2.0
- *  (the "License"); you may not use this file except in compliance with
- *  the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- *  Unless required by applicable law or agreed to in writing, software
- *  distributed under the License is distributed on an "AS IS" BASIS,
- *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *  See the License for the specific language governing permissions and
- *  limitations under the License.
- */
-
-// Variables
-@import "variables"
-@import "mixins"
-@import "functions"
-
-// Global
-@import "global"
-
-// Components
-@import "components/alert"    
-@import "components/button"
-@import "components/checkbox"
-@import "components/controlbar"
-@import "components/label"
-@import "components/radiobutton"
-@import "components/slider"
-@import "components/textbutton"
-@import "components/textfield"
-@import "components/titlebar"

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to