Skip to content

Commit

Permalink
Fixes #22519 - add hover effect to tables
Browse files Browse the repository at this point in the history
  • Loading branch information
ares authored and iNecas committed Feb 7, 2018
1 parent 5240ea7 commit a221dd8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/views/job_invocations/_tab_hosts.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<% end %>
<br>

<table class="table table-bordered table-striped table-condensed">
<table class="<%= table_css_classes('table-condensed') %>">
<thead>
<tr>
<th><%= sort :name, :as => _('Host') %></th>
Expand Down
2 changes: 1 addition & 1 deletion app/views/job_invocations/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<% title_actions(job_invocations_buttons) %>

<table class="table table-bordered table-striped table-condensed table-fixed">
<table class="<%= table_css_classes('table-condensed table-fixed') %>">
<thead>
<tr>
<th><%= sort :description, :as => _('Description') %></th>
Expand Down
2 changes: 1 addition & 1 deletion app/views/job_templates/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
link_to_function(_('Import'), 'show_import_job_template_modal();', :class => 'btn btn-default'),
new_link(_("New Job Template"))) %>

<table class="table table-bordered table-striped table-two-pane table-fixed">
<table class="<%= table_css_classes('table-two-pane table-fixed') %>">
<thead>
<tr>
<th class="col-md-6"><%= sort :name, :as => s_("JobTemplate|Name") %></th>
Expand Down
2 changes: 1 addition & 1 deletion app/views/remote_execution_features/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<% title _('Remote Execution Features') %>

<table class="table table-bordered table-striped table-condensed">
<table class="<%= table_css_classes('table-condensed') %>">
<thead>
<tr>
<th><%= sort :label, :as => _('Label') %></th>
Expand Down

0 comments on commit a221dd8

Please sign in to comment.