summaryrefslogtreecommitdiffstats
path: root/tests/sass/resources/scss/extends.scss
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni@vaadin.com>2012-08-13 08:54:54 +0300
committerJouni Koivuviita <jouni@vaadin.com>2012-08-13 08:54:54 +0300
commit6031735017cd2fad28cdf64f4246e6d9914cc3ad (patch)
tree7ce54cd9b21fd29b425e90833384e1f66f52aa0c /tests/sass/resources/scss/extends.scss
parent559775efaf0a8f0f9f1ad6246084667732b15a0f (diff)
parent1fd77ff0d5fc6dee010b5c83acfd5b87b6801264 (diff)
downloadvaadin-framework-6031735017cd2fad28cdf64f4246e6d9914cc3ad.tar.gz
vaadin-framework-6031735017cd2fad28cdf64f4246e6d9914cc3ad.zip
merge master (sass theme changes)
Diffstat (limited to 'tests/sass/resources/scss/extends.scss')
-rw-r--r--tests/sass/resources/scss/extends.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/sass/resources/scss/extends.scss b/tests/sass/resources/scss/extends.scss
new file mode 100644
index 0000000000..c9e0f85381
--- /dev/null
+++ b/tests/sass/resources/scss/extends.scss
@@ -0,0 +1,13 @@
+.error {
+ border: 1px #f00;
+ background: #fdd;
+}
+.error.intrusion {
+ font-size: 1.3em;
+ font-weight: bold;
+}
+
+.badError {
+ @extend .error;
+ border-width: 3px;
+} \ No newline at end of file