Toggle navigation
Toggle navigation
This project
Loading...
Sign in
万朱浩
/
Venue-Ops
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
马一丁
2025-12-20 11:25:24 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fe6bc9c5433f880ad3ecf172edab4eb87602c6ae
fe6bc9c5
1 parent
9d8c2f95
Update button style
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
templates/index.html
templates/index.html
View file @
fe6bc9c
...
...
@@ -1545,11 +1545,24 @@
transition
:
background-color
0.2s
ease
,
color
0.2s
ease
;
}
.graph-panel-button
:disabled
{
opacity
:
0.5
;
cursor
:
not-allowed
;
}
.graph-panel-button
:hover
{
background-color
:
#000000
;
color
:
#ffffff
;
}
#graphFullBtn
{
min-width
:
96px
;
height
:
32px
;
display
:
inline-flex
;
align-items
:
center
;
justify-content
:
center
;
}
.graph-status-chip
{
display
:
inline-flex
;
align-items
:
center
;
...
...
@@ -5289,6 +5302,12 @@ function getConsoleContainer() {
}
else
{
chip
.
textContent
=
textMap
[
state
]
||
state
;
}
const
fullBtn
=
document
.
getElementById
(
'graphFullBtn'
);
if
(
fullBtn
)
{
const
ready
=
state
===
'ready'
;
fullBtn
.
disabled
=
!
ready
;
fullBtn
.
title
=
ready
?
'在新标签页查看'
:
'知识图谱生成后可查看'
;
}
if
(
message
)
{
setGraphPanelPlaceholder
(
message
,
state
===
'error'
?
'error'
:
''
);
}
...
...
Please
register
or
login
to post a comment