summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/runo/grid/grid.scss
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/VAADIN/themes/runo/grid/grid.scss')
-rw-r--r--WebContent/VAADIN/themes/runo/grid/grid.scss79
1 files changed, 0 insertions, 79 deletions
diff --git a/WebContent/VAADIN/themes/runo/grid/grid.scss b/WebContent/VAADIN/themes/runo/grid/grid.scss
deleted file mode 100644
index 87fe88b9a2..0000000000
--- a/WebContent/VAADIN/themes/runo/grid/grid.scss
+++ /dev/null
@@ -1,79 +0,0 @@
-// Variables defined in runo.scss
-
-@mixin runo-grid($primaryStyleName: v-grid) {
-
- .#{$primaryStyleName}-header,
- .#{$primaryStyleName}-footer {
- .#{$primaryStyleName}-cell {
- background-image: url(img/header-bg.png);
- color: #393a3c;
- text-shadow: #fff 0 1px 0;
- @include box-shadow(inset 1px 0 0 #fff);
- }
- }
-
- .#{$primaryStyleName}-header-deco,
- .#{$primaryStyleName}-footer-deco,
- .#{$primaryStyleName}-horizontal-scrollbar-deco {
- background-image: url(img/header-bg.png);
- }
-
- // Selected row
- .#{$primaryStyleName}-row-selected {
- color: #fff;
-
- // Selected and focused
- > .#{$primaryStyleName}-cell-focused:before {
- border-color: lighten($v-grid-row-selected-background-color, 20%);
- }
- }
-
- // Sidebar
- .#{$primaryStyleName}-sidebar.v-contextmenu {
-
- .#{$primaryStyleName}-sidebar-content {
- background-color: transparent;
-
- .gwt-MenuBar {
- border: none;
- }
- }
-
- .v-on:before, .v-off:before {
- content: none;
- font-size: 0;
- margin-right: 0;
- }
- }
-
- // Sort indicators
- .#{$primaryStyleName} th.sort-asc,
- .#{$primaryStyleName} th.sort-desc {
- padding-right: 30px + $v-grid-cell-padding-horizontal;
-
- &:after {
- content: attr(sort-order);
- background: transparent no-repeat right 50%;
- width: 30px;
- height: 36px;
- top: 0;
- }
- }
-
- .#{$primaryStyleName} th.sort-asc:after {
- background-image: url(img/sort-asc.png);
- }
-
- .#{$primaryStyleName} th.sort-desc:after {
- background-image: url(img/sort-desc.png);
- }
-
- .#{$primaryStyleName}-editor-footer {
- background: #e7e9ea;
- }
-
- .#{$primaryStyleName}-column-header-content, .#{$primaryStyleName}-column-footer-content {
- line-height: $v-grid-header-row-height;
- }
-
-}