diff options
author | Adam Wagner <wbadam@users.noreply.github.com> | 2017-04-17 22:05:49 +0300 |
---|---|---|
committer | Pekka Hyvönen <pekka@vaadin.com> | 2017-04-17 22:05:49 +0300 |
commit | b480c7166ac56801cda11b73a6ad4694d467b98b (patch) | |
tree | 3393269e557ea929b30d225544ed2bdf25f1f71f /themes | |
parent | fa9bdbef6601f66bd2d14d07595bfa7e3e609997 (diff) | |
download | vaadin-framework-b480c7166ac56801cda11b73a6ad4694d467b98b.tar.gz vaadin-framework-b480c7166ac56801cda11b73a6ad4694d467b98b.zip |
Indicate when multiple rows are dragged (#9087)
* Indicate when multiple rows are dragged (#8398)
Diffstat (limited to 'themes')
-rw-r--r-- | themes/src/main/themes/VAADIN/themes/valo/components/_grid.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/src/main/themes/VAADIN/themes/valo/components/_grid.scss b/themes/src/main/themes/VAADIN/themes/valo/components/_grid.scss index b0279ecea2..5e2af76a72 100644 --- a/themes/src/main/themes/VAADIN/themes/valo/components/_grid.scss +++ b/themes/src/main/themes/VAADIN/themes/valo/components/_grid.scss @@ -815,6 +815,18 @@ $v-grid-details-border-bottom-stripe: 1px solid darken($v-grid-row-background-co min-width: 30px; } + // Drag and drop badge + .#{$primary-stylename}-row-drag-badge { + background-color: red; + color: white; + display: block; + width: 30px; + height: 30px; + border-radius: 10px; + line-height: 30px; + text-align: center; + float: left; + } } |