mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-12 19:49:59 +05:00
Merge remote-tracking branch 'origin/opein-context-issues' into staging
This commit is contained in:
commit
9afe9d09d1
@ -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 {
|
||||
|
||||
@ -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 = {};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user