diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-02-09 20:13:40 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-02-09 20:13:40 +0200 |
commit | c6ef3aa139dae091fd3a27809361fe631041e3d2 (patch) | |
tree | 772795def788dc86b88ccea1bb54aaf4019c0d29 /WebContent | |
parent | 36a0b5375c70d732684b191372e92bf55aed3a02 (diff) | |
download | vaadin-framework-c6ef3aa139dae091fd3a27809361fe631041e3d2.tar.gz vaadin-framework-c6ef3aa139dae091fd3a27809361fe631041e3d2.zip |
Use box-sizing: border-box for all paintables (#8313)
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/base/paintable/paintable.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/paintable/paintable.css b/WebContent/VAADIN/themes/base/paintable/paintable.css new file mode 100644 index 0000000000..1de0b70c38 --- /dev/null +++ b/WebContent/VAADIN/themes/base/paintable/paintable.css @@ -0,0 +1,4 @@ +.v-paintable { + box-sizing: border-box; + -moz-box-sizing: border-box; +}
\ No newline at end of file |