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 060af95 commit 9199825Copy full SHA for 9199825
packages/base/src/features/OpenUI5Support.ts
@@ -226,7 +226,8 @@ class OpenUI5Support {
226
return false;
227
}
228
229
- return !!link.href.match(/\/css(-|_)variables\.css/);
+ // The file name is "css_variables.css" until 1.127 and "library.css" from 1.127 onwards
230
+ return !!link.href.match(/\/css(-|_)variables\.css/) || !!link.href.match(/\/library\.css/);
231
232
233
static addOpenedPopup(popup: object) {
packages/main/test/pages/Kitchen.openui5.html
@@ -20,7 +20,7 @@
20
src='https://sdk.openui5.org/resources/sap-ui-core.js'
21
id='sap-ui-bootstrap'
22
data-sap-ui-libs="sap.m"
23
- data-sap-ui-theme="sap_horizon"
+ data-sap-ui-theme="sap_horizon_dark"
24
></script>
25
<script>
26
sap.ui.getCore().attachInit(function () {
0 commit comments