diff --git a/examples/dist/example.css b/examples/dist/example.css index 953850b292..00f150f43d 100644 --- a/examples/dist/example.css +++ b/examples/dist/example.css @@ -333,38 +333,6 @@ -webkit-transform: rotate(1turn); } } -/* Grid default theme */ -.Grid { - position: relative; - overflow: auto; - -webkit-overflow-scrolling: touch; - z-index: 10; - /* Without this property, Chrome repaints the entire Grid any time a new row or column is added. - Firefox only repaints the new row or column (regardless of this property). - Safari and IE don't support the property at all. */ - will-change: transform; -} -.Grid__innerScrollContainer { - box-sizing: border-box; - overflow: hidden; -} -.Grid__cell { - position: absolute; -} -/* VirtualScroll default theme */ -.VirtualScroll { - position: relative; - overflow-y: auto; - overflow-x: hidden; - -webkit-overflow-scrolling: touch; -} -.VirtualScroll__innerScrollContainer { - box-sizing: border-box; - overflow: hidden; -} -.VirtualScroll__row { - position: absolute; -} body { color: #333; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; diff --git a/examples/dist/index.html b/examples/dist/index.html index 91da54cb04..c867e5fee7 100644 --- a/examples/dist/index.html +++ b/examples/dist/index.html @@ -12,6 +12,7 @@ +
diff --git a/examples/src/index.html b/examples/src/index.html index 91da54cb04..c867e5fee7 100644 --- a/examples/src/index.html +++ b/examples/src/index.html @@ -12,6 +12,7 @@ + diff --git a/less/react-virtualized.less b/less/react-virtualized.less deleted file mode 100644 index 14c1dd0618..0000000000 --- a/less/react-virtualized.less +++ /dev/null @@ -1,40 +0,0 @@ -/* Grid default theme */ - -.Grid { - position: relative; - overflow: auto; - -webkit-overflow-scrolling: touch; - z-index: 10; - - /* Without this property, Chrome repaints the entire Grid any time a new row or column is added. - Firefox only repaints the new row or column (regardless of this property). - Safari and IE don't support the property at all. */ - will-change: transform; -} - -.Grid__innerScrollContainer { - box-sizing: border-box; - overflow: hidden; -} - -.Grid__cell { - position: absolute; -} - -/* VirtualScroll default theme */ - -.VirtualScroll { - position: relative; - overflow-y: auto; - overflow-x: hidden; - -webkit-overflow-scrolling: touch; -} - -.VirtualScroll__innerScrollContainer { - box-sizing: border-box; - overflow: hidden; -} - -.VirtualScroll__row { - position: absolute; -} diff --git a/less/select.less b/less/select.less index e8d4a59f81..608f81788c 100644 --- a/less/select.less +++ b/less/select.less @@ -80,4 +80,3 @@ @import "mixins.less"; @import "multi.less"; @import "spinner.less"; -@import "react-virtualized.less"; diff --git a/scss/default.scss b/scss/default.scss index df57616d7a..696d9feee9 100644 --- a/scss/default.scss +++ b/scss/default.scss @@ -4,4 +4,3 @@ @import "mixins"; @import "multi"; @import "spinner"; -@import "react-virtualized"; diff --git a/scss/react-virtualized.scss b/scss/react-virtualized.scss deleted file mode 100644 index e24585b067..0000000000 --- a/scss/react-virtualized.scss +++ /dev/null @@ -1,36 +0,0 @@ -.Grid { - position: relative; - overflow: auto; - -webkit-overflow-scrolling: touch; - z-index: 10; - - /* Without this property, Chrome repaints the entire Grid any time a new row or column is added. - Firefox only repaints the new row or column (regardless of this property). - Safari and IE don't support the property at all. */ - will-change: transform; -} - -.Grid__innerScrollContainer { - box-sizing: border-box; - overflow: hidden; -} - -.Grid__cell { - position: absolute; -} - -.VirtualScroll { - position: relative; - overflow-y: auto; - overflow-x: hidden; - -webkit-overflow-scrolling: touch; -} - -.VirtualScroll__innerScrollContainer { - box-sizing: border-box; - overflow: hidden; -} - -.VirtualScroll__row { - position: absolute; -}