From commits-return-3314-archive-asf-public=cust-asf.ponee.io@royale.apache.org Tue Mar 27 20:14:20 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 46474180671 for ; Tue, 27 Mar 2018 20:14:19 +0200 (CEST) Received: (qmail 74101 invoked by uid 500); 27 Mar 2018 18:14:18 -0000 Mailing-List: contact commits-help@royale.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@royale.apache.org Delivered-To: mailing list commits@royale.apache.org Received: (qmail 74067 invoked by uid 99); 27 Mar 2018 18:14:18 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Mar 2018 18:14:18 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id B56C380A29; Tue, 27 Mar 2018 18:14:17 +0000 (UTC) Date: Tue, 27 Mar 2018 18:14:17 +0000 To: "commits@royale.apache.org" Subject: [royale-asjs] branch feature/jewel-ui-set updated: checked state in radiobutton and checkbox solved thanks to fix apache/royale-compiler#35 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152217445768.5549.9902973913816560520@gitbox.apache.org> From: carlosrovira@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: royale-asjs X-Git-Refname: refs/heads/feature/jewel-ui-set X-Git-Reftype: branch X-Git-Oldrev: 6b849b8c1e7ea38d9c2b5de5c68e9373c9d267d2 X-Git-Newrev: 293876c4fba528bd6aa51938a16c6e55f605c2fb X-Git-Rev: 293876c4fba528bd6aa51938a16c6e55f605c2fb X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 293876c checked state in radiobutton and checkbox solved thanks to fix apache/royale-compiler#35 293876c is described below commit 293876c4fba528bd6aa51938a16c6e55f605c2fb Author: Carlos Rovira AuthorDate: Tue Mar 27 20:14:13 2018 +0200 checked state in radiobutton and checkbox solved thanks to fix apache/royale-compiler#35 --- frameworks/themes/JewelTheme/src/main/resources/defaults.css | 8 ++++---- .../themes/JewelTheme/src/main/sass/components/_checkbox.sass | 4 ++-- .../themes/JewelTheme/src/main/sass/components/_radiobutton.sass | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/frameworks/themes/JewelTheme/src/main/resources/defaults.css b/frameworks/themes/JewelTheme/src/main/resources/defaults.css index 1fdef9a..1609244 100644 --- a/frameworks/themes/JewelTheme/src/main/resources/defaults.css +++ b/frameworks/themes/JewelTheme/src/main/resources/defaults.css @@ -211,7 +211,7 @@ div { border-radius: 3px; } .jewel.checkbox input:checked, .jewel.checkbox input:checked:active { - background: url("data:image/svg+xml;utf8,"); + background: url("data:image/svg+xml;utf8,"), #b3dffa; background-repeat: no-repeat; background-size: 90%; background-position: center; @@ -231,7 +231,7 @@ div { } .jewel.checkbox input[disabled]:checked { border: 1px solid #c6c6c6; - background: url("data:image/svg+xml;utf8,"); + background: url("data:image/svg+xml;utf8,"), #F9F9F9; background-size: 90%; background-position: center; background-repeat: no-repeat; @@ -277,7 +277,7 @@ div { border-radius: 50%; } .jewel.radiobutton input:checked, .jewel.radiobutton input:checked:active { - background: url("data:image/svg+xml;utf8,"); + background: url("data:image/svg+xml;utf8,"), #b3dffa; background-repeat: no-repeat; background-size: 60%; background-position: center; @@ -297,7 +297,7 @@ div { } .jewel.radiobutton input[disabled]:checked { border: 1px solid #c6c6c6; - background: url("data:image/svg+xml;utf8,"); + background: url("data:image/svg+xml;utf8,"), #F9F9F9; background-size: 60%; background-position: center; background-repeat: no-repeat; diff --git a/frameworks/themes/JewelTheme/src/main/sass/components/_checkbox.sass b/frameworks/themes/JewelTheme/src/main/sass/components/_checkbox.sass index 92f4fd0..ea1830e 100644 --- a/frameworks/themes/JewelTheme/src/main/sass/components/_checkbox.sass +++ b/frameworks/themes/JewelTheme/src/main/sass/components/_checkbox.sass @@ -62,7 +62,7 @@ $checkbox-label-font-size: 16px &:checked, &:checked:active //background: url(assets/checkbox-tick.svg), lighten($primary-color, 25%) - background: url("data:image/svg+xml;utf8,") + background: url("data:image/svg+xml;utf8,"), lighten($primary-color, 25%) background-repeat: no-repeat background-size: 90% background-position: center @@ -93,7 +93,7 @@ $checkbox-label-font-size: 16px &:checked border: 1px solid darken($disabled-color, 20%) //background: url(assets/checkbox-tick.svg), $disabled-color - background: url("data:image/svg+xml;utf8,") + background: url("data:image/svg+xml;utf8,"), $disabled-color background-size: 90% background-position: center background-repeat: no-repeat diff --git a/frameworks/themes/JewelTheme/src/main/sass/components/_radiobutton.sass b/frameworks/themes/JewelTheme/src/main/sass/components/_radiobutton.sass index d45a56a..72139b4 100644 --- a/frameworks/themes/JewelTheme/src/main/sass/components/_radiobutton.sass +++ b/frameworks/themes/JewelTheme/src/main/sass/components/_radiobutton.sass @@ -62,7 +62,7 @@ $radiobutton-label-font-size: 16px &:checked, &:checked:active //background: url(assets/radiobutton-tick.svg), lighten($primary-color, 25%) - background: url("data:image/svg+xml;utf8,") + background: url("data:image/svg+xml;utf8,"), lighten($primary-color, 25%) background-repeat: no-repeat background-size: 60% background-position: center @@ -86,7 +86,7 @@ $radiobutton-label-font-size: 16px &:checked border: 1px solid darken($disabled-color, 20%) //background: url(assets/radiobutton-tick.svg), $disabled-color - background: url("data:image/svg+xml;utf8,") + background: url("data:image/svg+xml;utf8,"), $disabled-color background-size: 60% background-position: center background-repeat: no-repeat -- To stop receiving notification emails like this one, please contact carlosrovira@apache.org.