Merge remote-tracking branch 'origin/opein-context-issues' into staging

This commit is contained in:
yflory 2026-05-06 13:17:57 +02:00
commit 9afe9d09d1
2 changed files with 13 additions and 2 deletions

View File

@ -33,6 +33,16 @@
li {
padding: 0;
font-size: @colortheme_app-font-size;
a.cp-app-drive-context-openincode,
a.cp-app-drive-context-openinsheet,
a.cp-app-drive-context-openindoc,
a.cp-app-drive-context-openinpresentation {
& > svg.lucide {
margin: 0 0.25rem;
vector-effect: non-scaling-stroke;
stroke-width: 1.7;
}
}
&.dropdown-submenu {
position: relative;
&> a {

View File

@ -369,8 +369,9 @@ define([
APP.premiumPlan = priv.plan;
var getOpenIn = function (app) {
var icon = AppConfig.applicationsIcon[app];
var html = '<i data-lucide="'+icon+'"></i>' + Messages.type[app];
var icon = AppConfig.applicationsIcon[app] || app;
var iconHtml = Icons.get(icon).outerHTML;
var html = iconHtml + Messages.type[app];
return Messages._getKey('fc_openIn', [html]);
};
var restricted = {};