summaryrefslogtreecommitdiffstats
path: root/WebContent
diff options
context:
space:
mode:
authorSauli Tähkäpää <sauli@vaadin.com>2015-04-27 22:05:35 +0300
committerVaadin Code Review <review@vaadin.com>2015-06-09 16:05:21 +0000
commit45fb2934f2104f97575fade34b96a56b5823e457 (patch)
tree1d3c4fd0148c802cedde50c0b8e4d84f8ed3b8e5 /WebContent
parent4837e3838e22bf8699ac88a967ca6d5063df39d0 (diff)
downloadvaadin-framework-45fb2934f2104f97575fade34b96a56b5823e457.tar.gz
vaadin-framework-45fb2934f2104f97575fade34b96a56b5823e457.zip
Fix readonly checkbox opacity in Valo. (#17548)
Change-Id: I633e0deeca6c1268937d8c9b918ea414355c85f3
Diffstat (limited to 'WebContent')
-rw-r--r--WebContent/VAADIN/themes/valo/components/_checkbox.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_checkbox.scss b/WebContent/VAADIN/themes/valo/components/_checkbox.scss
index 7283c4cbbf..1be12d3533 100644
--- a/WebContent/VAADIN/themes/valo/components/_checkbox.scss
+++ b/WebContent/VAADIN/themes/valo/components/_checkbox.scss
@@ -144,4 +144,24 @@
}
}
+ &.v-readonly {
+ > label,
+ > .v-icon {
+ cursor: default;
+ }
+
+ > label > .v-icon {
+ cursor: default;
+ }
+
+ :root & > input:active ~ label:after {
+ background: transparent;
+ }
+
+ :root & > input ~ label:after {
+ @include opacity($v-disabled-opacity);
+ }
+ }
+
+
}