Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
pve-manager
Commits
f6beef43
Commit
f6beef43
authored
Jan 04, 2013
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use better icon for open console
parent
43fee421
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
changelog.Debian
debian/changelog.Debian
+2
-0
ext-pve.css
www/css/ext-pve.css
+6
-0
Tasks.js
www/manager/dc/Tasks.js
+8
-2
No files found.
debian/changelog.Debian
View file @
f6beef43
pve-manager (2.3-3) unstable; urgency=low
* GUI: tasks - use better icon for open console
* implement auto-ballooning
-- Proxmox Support Team <support@proxmox.com> Thu, 20 Dec 2012 13:44:53 +0100
...
...
www/css/ext-pve.css
View file @
f6beef43
...
...
@@ -9,6 +9,12 @@
background-image
:
url(../ext4/resources/themes/images/default/shared/loading-balls.gif)
;
}
.x-grid-row-console
{
background-color
:
#fff
;
background
:
no-repeat
center
center
;
background-image
:
url(../images/display.png)
;
}
.x-selectable
,
.x-selectable
*
{
-moz-user-select
:
text
!important
;
-khtml-user-select
:
text
!important
;
...
...
www/manager/dc/Tasks.js
View file @
f6beef43
...
...
@@ -71,7 +71,11 @@ Ext.define('PVE.dc.Tasks', {
width
:
100
,
renderer
:
function
(
value
,
metaData
,
record
)
{
if
(
record
.
data
.
pid
)
{
metaData
.
tdCls
=
"
x-grid-row-loading
"
;
if
(
record
.
data
.
type
==
"
vncproxy
"
)
{
metaData
.
tdCls
=
"
x-grid-row-console
"
;
}
else
{
metaData
.
tdCls
=
"
x-grid-row-loading
"
;
}
return
""
;
}
return
Ext
.
Date
.
format
(
value
,
"
M d H:i:s
"
);
...
...
@@ -99,7 +103,9 @@ Ext.define('PVE.dc.Tasks', {
width
:
200
,
renderer
:
function
(
value
,
metaData
,
record
)
{
if
(
record
.
data
.
pid
)
{
metaData
.
tdCls
=
"
x-grid-row-loading
"
;
if
(
record
.
data
.
type
!=
"
vncproxy
"
)
{
metaData
.
tdCls
=
"
x-grid-row-loading
"
;
}
return
""
;
}
if
(
value
==
'
OK
'
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment