Skip to content

Commit 588cedf

Browse files
pdanpdanrstoenescu
authored andcommitted
Change q-radial-ripple so that it plays nice with tables (quasarframework#2485)
Solve vertical scroll present in IE
1 parent 2b26358 commit 588cedf

File tree

3 files changed

+9
-16
lines changed

3 files changed

+9
-16
lines changed

src/components/table/table.ios.styl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,6 @@
109109
font-weight 400
110110
font-size 13px
111111

112-
.q-radial-ripple
113-
margin-bottom -100%
114-
115112
.q-table-col-auto-width
116113
width 1px
117114

src/components/table/table.mat.styl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,6 @@
109109
font-weight 400
110110
font-size 13px
111111

112-
.q-radial-ripple
113-
margin-bottom -100%
114-
115112
.q-table-col-auto-width
116113
width 1px
117114

src/css/core/ripples.styl

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,22 @@
3333

3434
.q-radial-ripple
3535
overflow hidden
36-
transform translate3d(-25%, -25%, 0)
37-
width 200%
38-
height 200%
3936
border-radius 50%
4037
pointer-events none
38+
position absolute
39+
top -50%
40+
left -50%
41+
width 200%
42+
height 200%
4143

42-
&, &:after
44+
&:after
45+
content ''
46+
display block
4347
position absolute
4448
top 0
49+
left 0
4550
right 0
4651
bottom 0
47-
left 0
48-
&:after
49-
content ''
50-
display block
51-
width 100%
52-
height 100%
5352
background-image radial-gradient(circle, currentColor 10%, transparent 10.01%)
5453
background-repeat no-repeat
5554
background-position 50%

0 commit comments

Comments
 (0)