diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2014-09-12 15:48:38 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-09-19 13:09:40 +0000 |
commit | bb286a0c177551269a9d1eccc02978beeb71a4ee (patch) | |
tree | 387cfeda6fc3ba2836e5ec94f1822e5d32cc323c /WebContent/VAADIN/themes/base/grid | |
parent | b42e8c36888b6f75ecf54e0e83160f08736cdd5c (diff) | |
download | vaadin-framework-bb286a0c177551269a9d1eccc02978beeb71a4ee.tar.gz vaadin-framework-bb286a0c177551269a9d1eccc02978beeb71a4ee.zip |
Implement commit/discard functionality for editor row (#13334)
Includes commit and cancel UI. Vaadin-specific commit/discard implementation
will be submitted as a separate patch. As of now, commits are assumed
to always succeed.
Change-Id: I2043eac2fe80012bee235648b01518f19057c215
Diffstat (limited to 'WebContent/VAADIN/themes/base/grid')
-rw-r--r-- | WebContent/VAADIN/themes/base/grid/grid.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/grid/grid.scss b/WebContent/VAADIN/themes/base/grid/grid.scss index de38b8c1ff..69b293e26e 100644 --- a/WebContent/VAADIN/themes/base/grid/grid.scss +++ b/WebContent/VAADIN/themes/base/grid/grid.scss @@ -39,12 +39,19 @@ .#{$primaryStyleName}-editor-row { position: absolute; + overflow-y: visible; background: #EEE; box-shadow: 0 0 5px; & > div { position: absolute; + box-sizing: border-box; border: 1px solid #CCC; } + + .v-editor-row-save, + .v-editor-row-cancel { + position: absolute; + } } } |