mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat: External Secrets storage for credentials (#6477)
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Romain Minaud <romain.minaud@gmail.com> Co-authored-by: Valya Bullions <valya@n8n.io> Co-authored-by: Csaba Tuncsik <csaba@n8n.io> Co-authored-by: Giulio Andreini <g.andreini@gmail.com> Co-authored-by: Omar Ajoue <krynble@gmail.com>
This commit is contained in:
@@ -24,7 +24,7 @@ const CALLOUT_DEFAULT_ICONS: { [key: string]: string } = {
|
||||
info: 'info-circle',
|
||||
success: 'check-circle',
|
||||
warning: 'exclamation-triangle',
|
||||
danger: 'times-circle',
|
||||
danger: 'exclamation-triangle',
|
||||
};
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -27,7 +27,7 @@ exports[`components > N8nCallout > should render danger theme correctly 1`] = `
|
||||
"<div class=\\"n8n-callout callout danger round\\" role=\\"alert\\">
|
||||
<div class=\\"messageSection\\">
|
||||
<div class=\\"icon\\">
|
||||
<n8n-icon-stub icon=\\"times-circle\\" size=\\"medium\\" spin=\\"false\\"></n8n-icon-stub>
|
||||
<n8n-icon-stub icon=\\"exclamation-triangle\\" size=\\"medium\\" spin=\\"false\\"></n8n-icon-stub>
|
||||
</div>
|
||||
<n8n-text-stub bold=\\"false\\" size=\\"small\\" compact=\\"false\\" tag=\\"span\\"></n8n-text-stub>
|
||||
</div>
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
position: fixed;
|
||||
|
||||
.el-loading-spinner {
|
||||
margin-top: #{- var.$loading-fullscreen-spinner-size * 0.5};
|
||||
transform: translateY(-50%);
|
||||
|
||||
.circular {
|
||||
height: var.$loading-fullscreen-spinner-size;
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
@include mixins.b(loading-spinner) {
|
||||
top: 50%;
|
||||
margin-top: #{- var.$loading-spinner-size * 0.5};
|
||||
transform: translateY(-50%);
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
|
||||
10
packages/design-system/src/css/utilities/_link.scss
Normal file
10
packages/design-system/src/css/utilities/_link.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
.overlay-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
pointer-events: auto;
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
@import 'float';
|
||||
@import 'link';
|
||||
@import 'list';
|
||||
@import 'spacing';
|
||||
@import 'typography';
|
||||
|
||||
Reference in New Issue
Block a user