diff options
author | Henri Sara <hesara@vaadin.com> | 2012-12-27 10:22:45 +0200 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2012-12-27 10:22:45 +0200 |
commit | 45c6065c791125959c2a35bbfba0aa5499fc2580 (patch) | |
tree | 70865a9c54b6e3b0c56cf8d51102d0d9b80e88b5 /theme-compiler/tests | |
parent | ff9c8684698a7c57ea5b040be23c7a883713125a (diff) | |
download | vaadin-framework-45c6065c791125959c2a35bbfba0aa5499fc2580.tar.gz vaadin-framework-45c6065c791125959c2a35bbfba0aa5499fc2580.zip |
Extend support for Microsoft filter expressions in SASS (#10597)
Now, also string parameters and multiple parameters are accepted by the
parser.
Change-Id: I3b1a707e4d0531c4d6117c8f0b2b140fdf6ac741
Diffstat (limited to 'theme-compiler/tests')
-rw-r--r-- | theme-compiler/tests/resources/automatic/css/microsoft-extensions.css | 1 | ||||
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/microsoft-extensions.scss | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/css/microsoft-extensions.css b/theme-compiler/tests/resources/automatic/css/microsoft-extensions.css index 18bc34ca6c..af614316c9 100644 --- a/theme-compiler/tests/resources/automatic/css/microsoft-extensions.css +++ b/theme-compiler/tests/resources/automatic/css/microsoft-extensions.css @@ -1,6 +1,7 @@ .v-ie6 .v-shadow-window { background: #000000; filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=5 ) alpha(opacity = 20); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed'); margin-top: 2px; margin-left: 2px; }
\ No newline at end of file diff --git a/theme-compiler/tests/resources/automatic/scss/microsoft-extensions.scss b/theme-compiler/tests/resources/automatic/scss/microsoft-extensions.scss index 69670969de..e08f3f07a3 100644 --- a/theme-compiler/tests/resources/automatic/scss/microsoft-extensions.scss +++ b/theme-compiler/tests/resources/automatic/scss/microsoft-extensions.scss @@ -1,6 +1,7 @@ .v-ie6 .v-shadow-window { background: #000000; filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=5 ) alpha(opacity = 20); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed'); margin-top: 2px; margin-left: 2px; } |