Skip to content

Commit

Permalink
Slightly imrpoved usability of noVNC console
Browse files Browse the repository at this point in the history
  * Sort of fixes bug 926338 :/
  * Removed iframe border, it doesn't fit with the rest of the design decisions in horizon.
  * Added a notice above the vnc console about getting console to recognize keyboard input.

Change-Id: I75da0d01cc00ca207940972fbcdf492f3d642b9c
  • Loading branch information
jakedahn committed Feb 3, 2012
1 parent 7eb1096 commit a5d73d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Expand Up @@ -99,7 +99,8 @@ <h4>{% trans "Volumes" %}</h4>

{% if show_tab == "vnc" %}
<div id="vnc" class="tab_wrapper">
<iframe src="{{vnc_url}}" width="720" height="420"></iframe>
<p class='alert alert-info'>If VNC console is not responding to keyboard input: click the grey status bar below.</p>
<iframe src="{{vnc_url}}" width="720" height="430"></iframe>
</div>
{% endif %}

Expand Down
5 changes: 5 additions & 0 deletions openstack-dashboard/dashboard/static/dashboard/css/style.css
Expand Up @@ -964,3 +964,8 @@ form div.clearfix.error {
.fluid-container {
min-width: 760px;
}

iframe {
border: none;
}

0 comments on commit a5d73d9

Please sign in to comment.