diff options
author | John Ahlroos <john@vaadin.com> | 2012-10-10 08:36:07 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-10-10 08:36:07 +0300 |
commit | 0dcfdd5fa0e249e24e288f282d3c4bb98797090d (patch) | |
tree | 7ad7234eeb8553f044bc6ddebd4d9462bf5d33e6 /WebContent/VAADIN/themes | |
parent | 282df27379d251aea4c9ec5e15e179070a8e7633 (diff) | |
download | vaadin-framework-0dcfdd5fa0e249e24e288f282d3c4bb98797090d.tar.gz vaadin-framework-0dcfdd5fa0e249e24e288f282d3c4bb98797090d.zip |
Reverted previously fixed scrollbars since it does not work with components requiring inline-block #9552 #9572
Change-Id: Iec43c1e4926b51724c93c93d1f4500e0fcf8759e
Diffstat (limited to 'WebContent/VAADIN/themes')
3 files changed, 0 insertions, 34 deletions
diff --git a/WebContent/VAADIN/themes/base/accordion/accordion.scss b/WebContent/VAADIN/themes/base/accordion/accordion.scss index 694f5ca930..6f4825f16b 100644 --- a/WebContent/VAADIN/themes/base/accordion/accordion.scss +++ b/WebContent/VAADIN/themes/base/accordion/accordion.scss @@ -27,14 +27,4 @@ width: 100%; } -/* - * In IE8 and IE9 we need to do magic things to avoid scrollbars since it does not completely - * support the HTML5 doctype. Changing the contained element to a block element will not add - * magical bottom paddings to the contained element and cause scrollbars. Doing this for - * all browsers for consistency. - */ -.v-accordion .v-accordion-item-content > .v-widget { - display: block; -} - }
\ No newline at end of file diff --git a/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss b/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss index b29f596e36..f9731cf83c 100644 --- a/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss +++ b/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss @@ -31,16 +31,4 @@ .v-disabled .#{$name}-vsplitter div { cursor: default; } - -/* - * In IE8 and IE9 we need to do magic things to avoid scrollbars since it does not completely - * support the HTML5 doctype. Changing the contained element to a block element will not add - * magical bottom paddings to the contained element and cause scrollbars. Doing this for all - * browsers for consistency. - */ -.v-splitpanel-first-container > .v-widget, -.v-splitpanel-second-container > .v-widget{ - display:block; -} - }
\ No newline at end of file diff --git a/WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss b/WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss index 6fcb3d1705..a001605f27 100644 --- a/WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss +++ b/WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss @@ -125,16 +125,4 @@ height: 0; } -/* - * In IE8 and IE9 we need to do magic things to avoid scrollbars since it does not completely - * support the HTML5 doctype. Changing the contained element to a block element will not add - * magical bottom paddings to the contained element and cause scrollbars. Doing this for - * all browsers for consistency. - */ -.#{$name} .v-scrollable > .v-widget { - display: block; -} - - - }
\ No newline at end of file |