Adds CSS to match the mockups and makes table responsive
This commit is contained in:
parent
f726dfba62
commit
ce867db6b8
2 changed files with 46 additions and 31 deletions
|
@ -166,3 +166,17 @@
|
||||||
min-width: 120px;
|
min-width: 120px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.deploy-keys-list {
|
||||||
|
width: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
table {
|
||||||
|
border: 1px solid $table-border-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.deploy-keys-title {
|
||||||
|
padding-bottom: 2px;
|
||||||
|
line-height: 2;
|
||||||
|
}
|
||||||
|
|
|
@ -1,19 +1,20 @@
|
||||||
- page_title "Deploy Keys"
|
- page_title "Deploy Keys"
|
||||||
.panel.panel-default.prepend-top-default
|
|
||||||
.panel-heading
|
%h3.page-title.deploy-keys-title
|
||||||
Public deploy keys (#{@deploy_keys.count})
|
Public deploy keys (#{@deploy_keys.count})
|
||||||
.controls
|
.pull-right
|
||||||
= link_to 'New Deploy Key', new_admin_deploy_key_path, class: "btn btn-new btn-sm btn-inverted"
|
= link_to 'New Deploy Key', new_admin_deploy_key_path, class: 'btn btn-new btn-sm btn-inverted'
|
||||||
|
|
||||||
- if @deploy_keys.any?
|
- if @deploy_keys.any?
|
||||||
.table-holder
|
.table-holder.deploy-keys-list
|
||||||
%table.table
|
%table.table
|
||||||
%thead.panel-heading
|
%thead
|
||||||
%tr
|
%tr
|
||||||
%th Title
|
%th.col-sm-2 Title
|
||||||
%th Fingerprint
|
%th.col-sm-4 Fingerprint
|
||||||
%th Write access allowed
|
%th.col-sm-2 Write access allowed
|
||||||
%th Added at
|
%th.col-sm-2 Added at
|
||||||
%th
|
%th.col-sm-2
|
||||||
%tbody
|
%tbody
|
||||||
- @deploy_keys.each do |deploy_key|
|
- @deploy_keys.each do |deploy_key|
|
||||||
%tr
|
%tr
|
||||||
|
@ -30,4 +31,4 @@
|
||||||
%span.cgray
|
%span.cgray
|
||||||
added #{time_ago_with_tooltip(deploy_key.created_at)}
|
added #{time_ago_with_tooltip(deploy_key.created_at)}
|
||||||
%td
|
%td
|
||||||
= link_to 'Remove', admin_deploy_key_path(deploy_key), data: { confirm: 'Are you sure?'}, method: :delete, class: "btn btn-sm btn-remove delete-key pull-right"
|
= link_to 'Remove', admin_deploy_key_path(deploy_key), data: { confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-sm btn-remove delete-key pull-right'
|
||||||
|
|
Loading…
Reference in a new issue