fix(ui): email без синего фона; версия v1.3.21 в подвале Help
This commit is contained in:
@@ -52,7 +52,7 @@ spec:
|
|||||||
serviceAccountName: fission-console
|
serviceAccountName: fission-console
|
||||||
containers:
|
containers:
|
||||||
- name: console
|
- name: console
|
||||||
image: naeel/fission-console:v1.3.20
|
image: naeel/fission-console:v1.3.21
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8090
|
- containerPort: 8090
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -379,7 +379,8 @@
|
|||||||
<div class="help-code">export TOKEN="<вставьте сюда токен из личного кабинета>"</div>
|
<div class="help-code">export TOKEN="<вставьте сюда токен из личного кабинета>"</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="actions">
|
<div class="actions" style="justify-content:space-between; align-items:center;">
|
||||||
|
<span style="font-size:0.75rem; color:var(--text-secondary);">v1.3.21</span>
|
||||||
<button class="btn ghost" onclick="closeHelp()">Закрыть</button>
|
<button class="btn ghost" onclick="closeHelp()">Закрыть</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+11
-6
@@ -62,15 +62,20 @@ function setUserAvatar(token) {
|
|||||||
if (email) {
|
if (email) {
|
||||||
el.textContent = email;
|
el.textContent = email;
|
||||||
el.title = email;
|
el.title = email;
|
||||||
el.style.fontSize = '0.7rem';
|
el.style.fontSize = '0.75rem';
|
||||||
el.style.minWidth = '60px';
|
el.style.minWidth = 'auto';
|
||||||
el.style.padding = '0 8px';
|
el.style.padding = '0 10px';
|
||||||
|
el.style.background = 'none';
|
||||||
|
el.style.border = '1px solid var(--border)';
|
||||||
|
el.style.borderRadius = '6px';
|
||||||
|
el.style.color = 'var(--text-primary)';
|
||||||
|
el.style.fontWeight = '400';
|
||||||
|
el.style.width = 'auto';
|
||||||
|
el.style.height = '30px';
|
||||||
} else {
|
} else {
|
||||||
el.textContent = 'N';
|
el.textContent = 'N';
|
||||||
el.title = '';
|
el.title = '';
|
||||||
el.style.fontSize = '';
|
el.style.cssText = '';
|
||||||
el.style.minWidth = '';
|
|
||||||
el.style.padding = '';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user