We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dee391 commit 6262f49Copy full SHA for 6262f49
pkg/web_css/lib/src/_search.scss
@@ -47,6 +47,12 @@
47
&:focus {
48
outline: none;
49
}
50
+
51
+ // This is a non-standard feature, supported only by webkit browsers
52
+ // https://developer.mozilla.org/en-US/docs/Web/CSS/::-webkit-search-cancel-button
53
+ &::-webkit-search-cancel-button {
54
+ display: none;
55
+ }
56
57
58
>.icon {
pkg/web_css/test/expression_test.dart
@@ -42,6 +42,7 @@ void main() {
42
'keyframes',
43
'last-child',
44
'nth-child',
45
+ '-webkit-search-cancel-button',
46
]);
// composite patterns
expressions.removeWhere((e) => e.startsWith('home-block-'));
0 commit comments