You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by pi...@apache.org on 2018/03/12 22:20:46 UTC

[royale-asjs] branch develop updated: Move Button related styles to themes basic.css

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

piotrz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 819f69f  Move Button related styles to themes basic.css
819f69f is described below

commit 819f69feff177fe696feae7a7d6a1568405351e6
Author: Piotr Zarzycki <pi...@gmail.com>
AuthorDate: Mon Mar 12 23:20:37 2018 +0100

    Move Button related styles to themes basic.css
---
 .../projects/Basic/src/main/resources/defaults.css | 23 ----------------------
 frameworks/themes/Basic/basic.css                  | 23 ++++++++++++++++++++++
 2 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/frameworks/projects/Basic/src/main/resources/defaults.css b/frameworks/projects/Basic/src/main/resources/defaults.css
index e254ef3..c6df215 100644
--- a/frameworks/projects/Basic/src/main/resources/defaults.css
+++ b/frameworks/projects/Basic/src/main/resources/defaults.css
@@ -55,29 +55,6 @@ Application
 	margin: 0px;
 }
 
-Button
-{
-	background-color: #f8f8f8;
-	border: 1px solid #808080;
-	border-radius: 2px;
-	padding: 4px;
-	margin: 0px;
-}
-
-Button:hover
-{
-	background-color: #e8e8e8;
-	border: 1px solid #808080;
-	padding: 4px;
-}
-
-Button:active
-{
-	background-color: #d8d8d8;
-	border: 1px solid #808080;
-	padding: 4px;
-}
-
 ButtonBar
 {
 	IBeadModel: ClassReference("org.apache.royale.html.beads.models.ButtonBarModel");
diff --git a/frameworks/themes/Basic/basic.css b/frameworks/themes/Basic/basic.css
index a82fe85..44cc745 100644
--- a/frameworks/themes/Basic/basic.css
+++ b/frameworks/themes/Basic/basic.css
@@ -19,6 +19,29 @@
 
 @namespace "library://ns.apache.org/royale/basic";
 
+Button
+{
+	background-color: #f8f8f8;
+	border: 1px solid #808080;
+	border-radius: 2px;
+	padding: 4px;
+	margin: 0px;
+}
+
+Button:hover
+{
+	background-color: #e8e8e8;
+	border: 1px solid #808080;
+	padding: 4px;
+}
+
+Button:active
+{
+	background-color: #d8d8d8;
+	border: 1px solid #808080;
+	padding: 4px;
+}
+
 CheckBox
 {
 	font-size: 12px;

-- 
To stop receiving notification emails like this one, please contact
piotrz@apache.org.