Skip to content

Commit 0fac54f

Browse files
committed
Remove select-contain due to limited browser support
1 parent d92dae4 commit 0fac54f

File tree

3 files changed

+0
-41
lines changed

3 files changed

+0
-41
lines changed

__tests__/fixtures/tailwind-output-important.css

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7202,10 +7202,6 @@ video {
72027202
user-select: all !important;
72037203
}
72047204

7205-
.select-contain {
7206-
user-select: contain !important;
7207-
}
7208-
72097205
.select-auto {
72107206
user-select: auto !important;
72117207
}
@@ -14107,10 +14103,6 @@ video {
1410714103
user-select: all !important;
1410814104
}
1410914105

14110-
.sm\:select-contain {
14111-
user-select: contain !important;
14112-
}
14113-
1411414106
.sm\:select-auto {
1411514107
user-select: auto !important;
1411614108
}
@@ -21013,10 +21005,6 @@ video {
2101321005
user-select: all !important;
2101421006
}
2101521007

21016-
.md\:select-contain {
21017-
user-select: contain !important;
21018-
}
21019-
2102021008
.md\:select-auto {
2102121009
user-select: auto !important;
2102221010
}
@@ -27919,10 +27907,6 @@ video {
2791927907
user-select: all !important;
2792027908
}
2792127909

27922-
.lg\:select-contain {
27923-
user-select: contain !important;
27924-
}
27925-
2792627910
.lg\:select-auto {
2792727911
user-select: auto !important;
2792827912
}
@@ -34825,10 +34809,6 @@ video {
3482534809
user-select: all !important;
3482634810
}
3482734811

34828-
.xl\:select-contain {
34829-
user-select: contain !important;
34830-
}
34831-
3483234812
.xl\:select-auto {
3483334813
user-select: auto !important;
3483434814
}

__tests__/fixtures/tailwind-output.css

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7202,10 +7202,6 @@ video {
72027202
user-select: all;
72037203
}
72047204

7205-
.select-contain {
7206-
user-select: contain;
7207-
}
7208-
72097205
.select-auto {
72107206
user-select: auto;
72117207
}
@@ -14107,10 +14103,6 @@ video {
1410714103
user-select: all;
1410814104
}
1410914105

14110-
.sm\:select-contain {
14111-
user-select: contain;
14112-
}
14113-
1411414106
.sm\:select-auto {
1411514107
user-select: auto;
1411614108
}
@@ -21013,10 +21005,6 @@ video {
2101321005
user-select: all;
2101421006
}
2101521007

21016-
.md\:select-contain {
21017-
user-select: contain;
21018-
}
21019-
2102021008
.md\:select-auto {
2102121009
user-select: auto;
2102221010
}
@@ -27919,10 +27907,6 @@ video {
2791927907
user-select: all;
2792027908
}
2792127909

27922-
.lg\:select-contain {
27923-
user-select: contain;
27924-
}
27925-
2792627910
.lg\:select-auto {
2792727911
user-select: auto;
2792827912
}
@@ -34825,10 +34809,6 @@ video {
3482534809
user-select: all;
3482634810
}
3482734811

34828-
.xl\:select-contain {
34829-
user-select: contain;
34830-
}
34831-
3483234812
.xl\:select-auto {
3483334813
user-select: auto;
3483434814
}

src/plugins/userSelect.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export default function() {
55
'.select-none': { 'user-select': 'none' },
66
'.select-text': { 'user-select': 'text' },
77
'.select-all': { 'user-select': 'all' },
8-
'.select-contain': { 'user-select': 'contain' },
98
'.select-auto': { 'user-select': 'auto' },
109
},
1110
variants('userSelect')

0 commit comments

Comments
 (0)