Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Fukász Rómeó Ervin
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
0765a6e5
authored
Mar 28, 2013
by
Bence Dányi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webui: trim vm names only if necessary
fixes #102
parent
bc677046
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
3 deletions
+19
-3
one/static/style/box.less
+18
-2
one/templates/box/vm/summary.html
+1
-1
No files found.
one/static/style/box.less
View file @
0765a6e5
...
@@ -168,11 +168,18 @@
...
@@ -168,11 +168,18 @@
.actions {
.actions {
display: block;
display: block;
}
}
.name .details {
.name {
display: inline;
width: calc(~"100% - 200px");
span {
width: calc(~"60% + 95px");
max-width: calc(~"100% - 95px");
}
.details {
display: block;
border: none;
border: none;
}
}
}
}
}
.id {
.id {
float: right;
float: right;
...
@@ -186,11 +193,20 @@
...
@@ -186,11 +193,20 @@
z-index: 2;
z-index: 2;
position: relative;
position: relative;
height: 24px;
height: 24px;
width: calc(~"100% - 90px");
span {
float: left;
text-overflow: ellipsis;
display: block;
white-space: nowrap;
overflow: hidden;
}
&.filetype-new-folder {
&.filetype-new-folder {
float: left;
float: left;
}
}
.details {
.details {
display: none;
display: none;
float: right;
}
}
}
}
.status {
.status {
...
...
one/templates/box/vm/summary.html
View file @
0765a6e5
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
{% block name %}
{% block name %}
<div
class=
"name {% if vm.state == 'ACTIVE' %}vm-on{% else %}vm-off{% endif %}"
>
<div
class=
"name {% if vm.state == 'ACTIVE' %}vm-on{% else %}vm-off{% endif %}"
>
<span
id=
"vm-{{vm.id}}-name"
>
{{vm.name
|truncatechars:20
}}
</span>
<span
id=
"vm-{{vm.id}}-name"
>
{{vm.name}}
</span>
<small
id=
"vm-{{vm.id}}-name-details"
class=
"details"
>
<small
id=
"vm-{{vm.id}}-name-details"
class=
"details"
>
(
<a
href=
"{{ vm.get_absolute_url }}"
title=
"{{vm.name}}"
>
{% trans "More details" %}
</a>
)
(
<a
href=
"{{ vm.get_absolute_url }}"
title=
"{{vm.name}}"
>
{% trans "More details" %}
</a>
)
</small>
</small>
...
...
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