diff options
author | Jouni Koivuviita <jouni@vaadin.com> | 2014-12-18 14:27:02 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-12-18 14:16:51 +0000 |
commit | b178104c75d99a34869eb10dedd73b67383c7374 (patch) | |
tree | b8bd91e48800f2872213198f8cfaf2775fea82c4 /WebContent/VAADIN/themes/runo | |
parent | 41bf82e6dd57dc23c6cc298fde0a971305e9134b (diff) | |
download | vaadin-framework-b178104c75d99a34869eb10dedd73b67383c7374.tar.gz vaadin-framework-b178104c75d99a34869eb10dedd73b67383c7374.zip |
Fix regressions in Grid SCSS
Fix regressions from previous Grid style patch:
- Typo in selector (dot instead of comma)
- “active” style renamed to “focused”
- Scrollbar border styling moved from Valo (was working) to Base (now
all themes work the same)
Change-Id: I778de73027f0cb9def1fb93e5188f494f0a49639
Diffstat (limited to 'WebContent/VAADIN/themes/runo')
-rw-r--r-- | WebContent/VAADIN/themes/runo/grid/grid.scss | 2 | ||||
-rw-r--r-- | WebContent/VAADIN/themes/runo/runo.scss | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/runo/grid/grid.scss b/WebContent/VAADIN/themes/runo/grid/grid.scss index 4d16c79fb8..a1081878cc 100644 --- a/WebContent/VAADIN/themes/runo/grid/grid.scss +++ b/WebContent/VAADIN/themes/runo/grid/grid.scss @@ -4,7 +4,7 @@ .#{$primaryStyleName}-header, .#{$primaryStyleName}-footer { - > .#{$primaryStyleName}-cell { + .#{$primaryStyleName}-cell { background-image: url(img/header-bg.png); color: #393a3c; text-shadow: #fff 0 1px 0; diff --git a/WebContent/VAADIN/themes/runo/runo.scss b/WebContent/VAADIN/themes/runo/runo.scss index 92fed26267..73566be8c3 100644 --- a/WebContent/VAADIN/themes/runo/runo.scss +++ b/WebContent/VAADIN/themes/runo/runo.scss @@ -7,7 +7,7 @@ $v-grid-border: 1px solid #b6bbbc; $v-grid-cell-vertical-border: 1px solid #d4d4d4; $v-grid-cell-vertical-border: none; $v-grid-cell-horizontal-border: none; -$v-grid-cell-active-border: 1px solid #57a7ed; +$v-grid-cell-focused-border: 1px solid #57a7ed; $v-grid-row-height: 26px; $v-grid-header-row-height: 36px; $v-grid-row-background-color: #fff !default; |