diff options
author | Artur Signell <artur@vaadin.com> | 2012-09-07 16:43:01 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-07 16:43:01 +0300 |
commit | 544152d1adc3a098445f7b11b4651fcc3c2f13bc (patch) | |
tree | 755041e36ad5f39ddc4d72db0f977ef68da7e047 /sass/tests/resources/css | |
parent | 733a7fd89068939b44f357e9eb88e197427097da (diff) | |
download | vaadin-framework-544152d1adc3a098445f7b11b4651fcc3c2f13bc.tar.gz vaadin-framework-544152d1adc3a098445f7b11b4651fcc3c2f13bc.zip |
Renamed sass -> theme-compiler for consistency (#9299)
Diffstat (limited to 'sass/tests/resources/css')
-rw-r--r-- | sass/tests/resources/css/comments.css | 15 | ||||
-rw-r--r-- | sass/tests/resources/css/control-directives.css | 23 | ||||
-rw-r--r-- | sass/tests/resources/css/extends.css | 13 | ||||
-rw-r--r-- | sass/tests/resources/css/functions.css | 14 | ||||
-rw-r--r-- | sass/tests/resources/css/imports.css | 11 | ||||
-rw-r--r-- | sass/tests/resources/css/microsoft-extensions.css | 6 | ||||
-rw-r--r-- | sass/tests/resources/css/mixins.css | 46 | ||||
-rw-r--r-- | sass/tests/resources/css/nested-properties.css | 5 | ||||
-rw-r--r-- | sass/tests/resources/css/nesting.css | 47 | ||||
-rw-r--r-- | sass/tests/resources/css/parent-import.css | 25 | ||||
-rw-r--r-- | sass/tests/resources/css/parent-selector.css | 24 | ||||
-rw-r--r-- | sass/tests/resources/css/semicolons.css | 10 | ||||
-rw-r--r-- | sass/tests/resources/css/var-guarded.css | 4 | ||||
-rw-r--r-- | sass/tests/resources/css/variables.css | 12 |
14 files changed, 0 insertions, 255 deletions
diff --git a/sass/tests/resources/css/comments.css b/sass/tests/resources/css/comments.css deleted file mode 100644 index 1c773f7974..0000000000 --- a/sass/tests/resources/css/comments.css +++ /dev/null @@ -1,15 +0,0 @@ -/** 0sprite: verticals; sprite-image: url(../common/img/vertical-sprites.png); sprite-layout: vertical */ - -/** 1sprite: verticals; sprite-image: url(../common/img/vertical-sprites.png); sprite-layout: vertical */ - -/** 2sprite: verticals; sprite-image: url(../common/img/vertical-sprites.png); sprite-layout: vertical */ - -.v-button:focus { - background-image: url(img/left-focus.png);/** sprite-ref: buttons */ - outline: none; -} - -.v-button:focus .v-button-wrap { - background-image: url(img/right-focus.png);/** sprite-ref: buttons; sprite-alignment: right */ - outline: none; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/control-directives.css b/sass/tests/resources/css/control-directives.css deleted file mode 100644 index dbc44e886c..0000000000 --- a/sass/tests/resources/css/control-directives.css +++ /dev/null @@ -1,23 +0,0 @@ -.salamander-icon #animal, .menu { - background-image: url(/images/salamander.png); - font-size: 10px; - font-color: blue; -} - -.egret-icon #animal, .menu { - background-image: url(/images/egret.png); - font-size: 10px; - font-color: blue; -} - -.sea-slug-icon #animal, .menu { - background-image: url(/images/sea-slug.png); - font-size: 10px; - font-color: blue; -} - -.puma-icon #animal, .menu { - background-image: url(/images/puma.png); - font-size: 10px; - font-color: blue; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/extends.css b/sass/tests/resources/css/extends.css deleted file mode 100644 index d1c903f166..0000000000 --- a/sass/tests/resources/css/extends.css +++ /dev/null @@ -1,13 +0,0 @@ -.error, .badError { - border: 1px #f00; - background: #fdd; -} - -.error.intrusion, .badError.intrusion { - font-size: 1.3em; - font-weight: bold; -} - -.badError { - border-width: 3px; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/functions.css b/sass/tests/resources/css/functions.css deleted file mode 100644 index 0fef5d899f..0000000000 --- a/sass/tests/resources/css/functions.css +++ /dev/null @@ -1,14 +0,0 @@ -.main { - margin: 2px; - border: 11px; - border: 10px; - border: 10px; - color: hsl(0, 0%, 30%); - color: hsl(25, 100%, 50%); - color: rgb(36, 0, 0); - color: rgb(240, 0, 0); - color: #240000; - color: #200; - color: #f00000; - color: #f00; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/imports.css b/sass/tests/resources/css/imports.css deleted file mode 100644 index 5b1001802a..0000000000 --- a/sass/tests/resources/css/imports.css +++ /dev/null @@ -1,11 +0,0 @@ -.caption { - border: 1px solid black; - background: #ff0000; - padding: 10px; - margin: 10px; -} - -.text { - font-weight: bold; - color: red; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/microsoft-extensions.css b/sass/tests/resources/css/microsoft-extensions.css deleted file mode 100644 index 69670969de..0000000000 --- a/sass/tests/resources/css/microsoft-extensions.css +++ /dev/null @@ -1,6 +0,0 @@ -.v-ie6 .v-shadow-window { - background: #000000; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=5 ) alpha(opacity = 20); - margin-top: 2px; - margin-left: 2px; -} diff --git a/sass/tests/resources/css/mixins.css b/sass/tests/resources/css/mixins.css deleted file mode 100644 index 5c727c193b..0000000000 --- a/sass/tests/resources/css/mixins.css +++ /dev/null @@ -1,46 +0,0 @@ -.main { - border: 1px solid black; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - font-family: arial; - font-size: 16px; - font-weight: bold; -} - -.main .details { - font-size: 14px; - font-weight: bold; -} - -.footer { - border: 2px solid black; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - border-radius: 10px; -} - -.header { - width: 100%; -} - -.main { - width: 100%; - height: 100%; -} - -.footer { - width: 100%; -} - -@media print { - .v-view { - overflow: visible; - } -} - -font-family: arial; - -font-size: 16px; - -font-weight: bold;
\ No newline at end of file diff --git a/sass/tests/resources/css/nested-properties.css b/sass/tests/resources/css/nested-properties.css deleted file mode 100644 index 79b21e632b..0000000000 --- a/sass/tests/resources/css/nested-properties.css +++ /dev/null @@ -1,5 +0,0 @@ -li { - font-family: serif; - font-weight: bold; - font-size: 1.2em; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/nesting.css b/sass/tests/resources/css/nesting.css deleted file mode 100644 index b3861a0131..0000000000 --- a/sass/tests/resources/css/nesting.css +++ /dev/null @@ -1,47 +0,0 @@ -.top-bar { - color: red; -} - -.top-bar .alt { - color: blue; -} - -.menu { - background-color: red; -} - -.menu a { - color: blue; -} - -.caption { - padding: 10px; -} - -.caption .text, .caption .header { - color: green; -} - -.footer { - padding: 10px; -} - -.footer .left, .footer .right { - color: purple; -} - -.footer .left a, .footer .right a { - color: orange; -} - -.main { - color: red; -} - -.main .second.third { - color: blue; -} - -.main .second.third .fourth { - color: black; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/parent-import.css b/sass/tests/resources/css/parent-import.css deleted file mode 100644 index f67d17f8b4..0000000000 --- a/sass/tests/resources/css/parent-import.css +++ /dev/null @@ -1,25 +0,0 @@ -.content-navigation { - border-color: #3bbfce; - color: #0000ff; -} - -.border { - padding: 8px; - margin: 8px; - border-color: #3bbfce; -} - -.body { - background-image: url(../folder-test2/bg.png); - background: transparent url(../folder-test2/img/loading-indicator.gif); - background-image: url(http://abc/bg.png); - background-image: url(/abc/bg.png); -} - -.base { - color: red; -} - -.text { - font-weight: bold; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/parent-selector.css b/sass/tests/resources/css/parent-selector.css deleted file mode 100644 index 9c7140e313..0000000000 --- a/sass/tests/resources/css/parent-selector.css +++ /dev/null @@ -1,24 +0,0 @@ -a { - font-weight: bold; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - -body.firefox a { - font-weight: normal; -} - -#main { - color: black; -} - -#main a { - font-weight: bold; -} - -#main a:hover { - color: red; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/semicolons.css b/sass/tests/resources/css/semicolons.css deleted file mode 100644 index ba28e8cab4..0000000000 --- a/sass/tests/resources/css/semicolons.css +++ /dev/null @@ -1,10 +0,0 @@ -.all-the-properties { - font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; - position: absolute; - overflow: hidden; -} - -.missing-semicolon-on-last-row { - color: red; - background-color: blue; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/var-guarded.css b/sass/tests/resources/css/var-guarded.css deleted file mode 100644 index c4a8c49d12..0000000000 --- a/sass/tests/resources/css/var-guarded.css +++ /dev/null @@ -1,4 +0,0 @@ -#main { - content: "First content"; - new-content: "First time reference"; -}
\ No newline at end of file diff --git a/sass/tests/resources/css/variables.css b/sass/tests/resources/css/variables.css deleted file mode 100644 index d54ae6cd30..0000000000 --- a/sass/tests/resources/css/variables.css +++ /dev/null @@ -1,12 +0,0 @@ -.content-navigation { - border-color: #3bbfce; - color: #0000ff; - color1: #0000d1; - font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; -} - -.border { - padding: 8px; - margin: 8px; - border-color: #3bbfce; -}
\ No newline at end of file |