diff options
Diffstat (limited to 'WebContent/VAADIN/themes/runo/shadow/shadow.scss')
-rw-r--r-- | WebContent/VAADIN/themes/runo/shadow/shadow.scss | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/WebContent/VAADIN/themes/runo/shadow/shadow.scss b/WebContent/VAADIN/themes/runo/shadow/shadow.scss index 96a911fca4..f24cab1bd2 100644 --- a/WebContent/VAADIN/themes/runo/shadow/shadow.scss +++ b/WebContent/VAADIN/themes/runo/shadow/shadow.scss @@ -1,31 +1,31 @@ -@mixin runo-shadow { +@mixin runo-shadow($primaryStyleName : v-shadow) { -.v-shadow { +.#{$primaryStyleName} { position: absolute; } -.v-shadow .top-left { +.#{$primaryStyleName} .top-left { position: absolute; overflow: hidden; top: -3px; left: -4px; width: 8px; height: 8px; background: transparent url(img/top-left.png); } -.v-shadow .top { +.#{$primaryStyleName} .top { position: absolute; overflow: hidden; top: -3px; left: 4px; height: 8px; right: 4px; background: transparent url(img/top.png); } -.v-shadow .top-right { +.#{$primaryStyleName} .top-right { position: absolute; overflow: hidden; top: -3px; right: -4px; width: 8px; height: 8px; background: transparent url(img/top-right.png); } -.v-shadow .left { +.#{$primaryStyleName} .left { position: absolute; overflow: hidden; top: 5px; left: -4px; width: 8px; @@ -33,14 +33,14 @@ background: transparent url(img/left.png); } -.v-shadow .center { +.#{$primaryStyleName} .center { position: absolute; overflow: hidden; top: 5px; left: 4px; bottom: 3px; right: 4px; background: transparent url(img/center.png); } -.v-shadow .right { +.#{$primaryStyleName} .right { position: absolute; overflow: hidden; top: 5px; right: -4px; width: 8px; @@ -48,21 +48,21 @@ background: transparent url(img/right.png); } -.v-shadow .bottom-left { +.#{$primaryStyleName} .bottom-left { position: absolute; overflow: hidden; bottom: -5px; left: -4px; width: 8px; height: 8px; background: transparent url(img/bottom-left.png); } -.v-shadow .bottom { +.#{$primaryStyleName} .bottom { position: absolute; overflow: hidden; bottom: -5px; left: 4px; right: 4px; height: 8px; background: transparent url(img/bottom.png); } -.v-shadow .bottom-right { +.#{$primaryStyleName} .bottom-right { position: absolute; overflow: hidden; bottom: -5px; right: -4px; width: 8px; height: 8px; |