diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-30 15:22:06 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-30 15:22:06 +0300 |
commit | d028bf97a4ce9629b8ebab06978218fc9fa4ca71 (patch) | |
tree | 6ab09d7f23bf72e9a0f0f49ad5d2084ebcbe58fe /sass/tests/resources/basic/properties.css | |
parent | ed2a07f55455eef981944e57ea0e2e35ee11971a (diff) | |
download | vaadin-framework-d028bf97a4ce9629b8ebab06978218fc9fa4ca71.tar.gz vaadin-framework-d028bf97a4ce9629b8ebab06978218fc9fa4ca71.zip |
Moved tests/sass to sass/tests (#9299)
Diffstat (limited to 'sass/tests/resources/basic/properties.css')
-rw-r--r-- | sass/tests/resources/basic/properties.css | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/sass/tests/resources/basic/properties.css b/sass/tests/resources/basic/properties.css new file mode 100644 index 0000000000..946ee3a675 --- /dev/null +++ b/sass/tests/resources/basic/properties.css @@ -0,0 +1,67 @@ +.all-the-properties { + font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; + position: absolute; + overflow: hidden; + outline: none; + text-align: left; + zoom: 1; + white-space: nowrap; + background: #123456; + border-bottom: 1px solid #ffffff; + filter: alpha(opacity = 30); + cursor: pointer; + overflow: auto; + width: 100%; + display: inline-block; +} + +.lexical-value-test { + margin: none; + margin: 0px; + margin: 0; + margin: 0.5px; + margin: 2px; + margin: -0.5px; + margin: -2px; + margin: 10px 20px; + margin: -10px 20px; + margin: 20px -10px -20px 40px; + margin-right: -0.5px; +} + +.background-positioning { + background-position: 0 0; + background-position: left top; + background-position: left 40px; + background-position: 50px left; + background-position: right -286px; +} + +.user-select-rules { + user-select: none; + -ie-user-select: none; +} + +.box-sizing-rules { + box-sizing: border-box; + -moz-box-sizing: border-box; +} + +.user-select-and-box-sizing-combined { + -khtml-user-select: none; + -moz-user-select: none; + -ie-user-select: none; + user-select: none; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; +} + +@media print { + .v-generated-body { + height: auto; + min-height: 20cm; + overflow: visible; + } +} |