Skip to content

Commit 0151ae3

Browse files
authored
Merge pull request #31176 from tienifr/fix/31101
fix: 31101 Eye icon to show password on password protected PDF file is not working
2 parents 8872311 + 8423ebb commit 0151ae3

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
diff --git a/node_modules/react-native-web/dist/exports/StyleSheet/compiler/index.js b/node_modules/react-native-web/dist/exports/StyleSheet/compiler/index.js
2+
index bdcecc2..63f1364 100644
3+
--- a/node_modules/react-native-web/dist/exports/StyleSheet/compiler/index.js
4+
+++ b/node_modules/react-native-web/dist/exports/StyleSheet/compiler/index.js
5+
@@ -353,7 +353,7 @@ function createAtomicRules(identifier, property, value) {
6+
var _block2 = createDeclarationBlock({
7+
pointerEvents: 'none'
8+
});
9+
- rules.push(selector + ">*" + _block2);
10+
+ rules.push(selector + " *" + _block2);
11+
}
12+
} else if (value === 'none' || value === 'box-none') {
13+
finalValue = 'none!important';
14+
@@ -361,7 +361,7 @@ function createAtomicRules(identifier, property, value) {
15+
var _block3 = createDeclarationBlock({
16+
pointerEvents: 'auto'
17+
});
18+
- rules.push(selector + ">*" + _block3);
19+
+ rules.push(selector + " *" + _block3);
20+
}
21+
}
22+
var _block4 = createDeclarationBlock({

0 commit comments

Comments
 (0)