@brftech/filex-core 0.20.1 → 0.20.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/filex-core.js.map +1 -1
- package/dist/filex-core.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/ConnectionsPanel.vue +10 -1
- package/src/components/S3KeysPanel.vue +18 -11
- package/src/components/SSHKeysPanel.vue +1 -1
- package/src/modals/PermissionsModal.vue +1 -1
- package/src/styles/base.css +3 -3
- package/src/styles/variables.css +5 -0
|
@@ -206,7 +206,7 @@ function fingerprintOf(k: SSHPublicKey): string {
|
|
|
206
206
|
}
|
|
207
207
|
.fe-sshkeys__paste {
|
|
208
208
|
width: 100%;
|
|
209
|
-
font-family: var(--fe-mono
|
|
209
|
+
font-family: var(--fe-font-mono);
|
|
210
210
|
font-size: 12px;
|
|
211
211
|
resize: vertical;
|
|
212
212
|
overflow-wrap: anywhere;
|
|
@@ -860,7 +860,7 @@ async function nativeShare(body: { title: string; text: string }) {
|
|
|
860
860
|
.fx-perm-body { flex: 1 1 auto; overflow-y: auto; padding: 14px 18px 18px; }
|
|
861
861
|
|
|
862
862
|
.fx-perm-addcard {
|
|
863
|
-
padding: 12px; border-radius: var(--fe-radius-md
|
|
863
|
+
padding: 12px; border-radius: var(--fe-radius-md);
|
|
864
864
|
background: var(--fe-bg-elev); border: 1px solid var(--fe-border);
|
|
865
865
|
}
|
|
866
866
|
.fx-perm-section { margin-top: 16px; }
|
package/src/styles/base.css
CHANGED
|
@@ -395,10 +395,10 @@ filex-explorer {
|
|
|
395
395
|
flex: 1;
|
|
396
396
|
background: var(--fe-bg);
|
|
397
397
|
color: var(--fe-text);
|
|
398
|
-
border: 1px solid var(--fe-
|
|
398
|
+
border: 1px solid var(--fe-primary);
|
|
399
399
|
border-radius: 4px;
|
|
400
400
|
padding: 4px 8px;
|
|
401
|
-
font-family: var(--fe-mono
|
|
401
|
+
font-family: var(--fe-font-mono);
|
|
402
402
|
font-size: 13px;
|
|
403
403
|
outline: none;
|
|
404
404
|
}
|
|
@@ -3736,7 +3736,7 @@ filex-explorer {
|
|
|
3736
3736
|
}
|
|
3737
3737
|
.fe-inspector__comment-input:focus {
|
|
3738
3738
|
outline: none;
|
|
3739
|
-
border-color: var(--fe-
|
|
3739
|
+
border-color: var(--fe-primary);
|
|
3740
3740
|
}
|
|
3741
3741
|
.fe-inspector__comment-input:disabled {
|
|
3742
3742
|
opacity: 0.6;
|
package/src/styles/variables.css
CHANGED
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
--fe-shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.08);
|
|
22
22
|
--fe-radius: 8px;
|
|
23
23
|
--fe-radius-sm: 4px;
|
|
24
|
+
--fe-radius-md: 10px;
|
|
24
25
|
--fe-radius-lg: 12px;
|
|
25
26
|
--fe-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
|
|
26
27
|
--fe-font-mono: ui-monospace, "SF Mono", Consolas, Menlo, monospace;
|
|
@@ -157,4 +158,8 @@
|
|
|
157
158
|
:root.dark,
|
|
158
159
|
.dark {
|
|
159
160
|
--fe-warning: #f59e0b;
|
|
161
|
+
/* Green status accent (sync "ok" states, the connections test result). Same
|
|
162
|
+
value the inline fallbacks carried, identical in light + dark — declaring
|
|
163
|
+
it changes nothing visually, it only makes the token real. */
|
|
164
|
+
--fe-ok: #16a34a;
|
|
160
165
|
}
|