Skip to content
Snippets Groups Projects
Commit 8ca0b75d authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Tables refactored

parent c7cfe3d8
No related branches found
No related tags found
No related merge requests found
Showing
with 95 additions and 91 deletions
table {
@extend .table;
@extend .table-striped;
@include solid_shade;
border:1px solid #bbb;
width:100%;
th {
padding-top: 9px;
font-weight: bold;
vertical-align: middle;
border-bottom: 1px solid #bbb;
text-shadow: 0 1px 1px #fff;
@include bg-dark-gray-gradient;
}
th, td {
padding: 10px 10px 9px;
padding: 8px;
line-height: 18px;
text-align: left;
}
 
&.bordered-table {
border: 1px solid #DDD;
border-collapse: separate;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
td {
border-color:#f1f1f1;
&:first-child {
border-left:1px solid #bbb;
}
 
&.zebra-striped {
@extend .table-striped;
&:last-child {
border-right:1px solid #bbb;
}
}
}
 
table.admin-table {
@extend .table-bordered;
@extend .zebra-striped;
@include solid_shade;
th {
border-color: #CCC;
border-bottom: 1px solid #bbb;
@include bg-gray-gradient;
&.bordered {
@extend .table-bordered;
}
}
 
table.no-borders {
border:none;
tr, td { border:none }
&.lite {
border:none;
box-shadow:none;
tr, td {
border:none;
background:none !important;
}
}
}
#tree-holder {
#tree-holder {
#tree-content-holder {
float:left;
width:100%;
Loading
Loading
@@ -11,40 +11,44 @@
padding:12px;
background: #F7F7F7;
 
pre {
pre {
overflow: auto;
}
}
}
 
.tree_progress {
.tree_progress {
display:none;
margin:20px;
&.loading {
&.loading {
display:block;
}
}
 
#tree-slider {
@include border-radius(0);
.tree-item {
&:hover {
td { background: $hover; }
.tree-item {
&:hover {
td {
background: $hover;
border-top:1px solid #FEA;
border-bottom:1px solid #FEA;
}
cursor:pointer;
}
}
}
 
.tree-item {
.tree-item-file-name {
.tree-item {
.tree-item-file-name {
vertical-align:middle;
a {
&:hover {
a {
&:hover {
color:$blue_link;
}
}
 
img {
img {
position: relative;
top:-1px;
}
Loading
Loading
@@ -52,37 +56,19 @@
}
 
 
#tree-slider {
@include solid_shade;
width:100%;
border-color:#ccc;
td {
padding:8px;
border-color:#f1f1f1;
#tree-slider {
td {
background:#fafafa;
}
tr:first-child td:first-child,
tr:first-child td:last-child {
border-radius:0;
}
th {
border-color: #CCC;
border-bottom: 1px solid #bbb;
@include bg-gray-gradient;
}
}
 
.tree-commit-link {
.tree-commit-link {
color:#333;
}
 
a.tree-commit-link {
a.tree-commit-link {
color: #666;
&:hover {
&:hover {
text-decoration: underline;
}
}
Loading
Loading
Loading
Loading
@@ -23,7 +23,7 @@
Hooks
%small (#{@hooks.count})
%br
%table.admin-table
%table
%tr
%th URL
%th Method
Loading
Loading
Loading
Loading
@@ -6,7 +6,7 @@
= text_field_tag :name, params[:name], class: "xlarge"
= submit_tag "Search", class: "btn submit primary"
 
%table.admin-table
%table
%thead
%th Name
%th Path
Loading
Loading
Loading
Loading
@@ -3,7 +3,11 @@
= link_to 'Edit', edit_admin_project_path(@admin_project), class: "btn right small"
 
%br
%table.zebra-striped.table-bordered
%table.zebra-striped
%thead
%tr
%th Project
%th
%tr
%td
%b
Loading
Loading
@@ -40,7 +44,7 @@
%small
(#{@admin_project.users_projects.count})
%br
%table.zebra-striped.table-bordered
%table.zebra-striped
%thead
%tr
%th Name
Loading
Loading
@@ -60,7 +64,7 @@
%h3 Add new team member
%br
= form_tag team_update_admin_project_path(@admin_project), class: "bulk_import", method: :put do
%table.zebra-striped.table-bordered
%table.zebra-striped
%thead
%tr
%th Users
Loading
Loading
Loading
Loading
@@ -19,7 +19,7 @@
= link_to admin_users_path(filter: "wop") do
Without projects
 
%table.admin-table
%table
%thead
%th Admin
%th Name
Loading
Loading
Loading
Loading
@@ -8,7 +8,11 @@
 
%br
 
%table.zebra-striped.table-bordered
%table.zebra-striped
%thead
%tr
%th Profile
%th
%tr
%td
%b
Loading
Loading
@@ -57,7 +61,7 @@
%h3 Add User to Projects
%br
= form_tag team_update_admin_user_path(@admin_user), class: "bulk_import", method: :put do
%table.table-bordered
%table
%thead
%tr
%th Projects
Loading
Loading
@@ -78,9 +82,9 @@
%h3 Projects
%br
 
%table.zebra-striped.table-bordered
%tr
%thead
%table.zebra-striped
%thead
%tr
%th Name
%th Project Access
%th
Loading
Loading
Loading
Loading
@@ -26,11 +26,12 @@
Hooks
%small (#{@hooks.count})
%br
%table.admin-table
%tr
%th URL
%th Method
%th
%table
%thead
%tr
%th URL
%th Method
%th
- @hooks.each do |hook|
%tr
%td
Loading
Loading
Loading
Loading
@@ -7,7 +7,7 @@
SSH key allows you to establish a secure connection between your computer and Gitlab
 
 
%table#keys-table.admin-table
%table#keys-table
%thead
%tr
%th Name
Loading
Loading
Loading
Loading
@@ -42,7 +42,7 @@
 
.row
.span6
%table.admin-table
%table
%thead
%th Open Issues
- @issues.each do |issue|
Loading
Loading
@@ -56,7 +56,7 @@
= paginate @issues, theme: "gitlab"
 
.span6
%table.admin-table
%table
%thead
%th Participants
- @users.each do |user|
Loading
Loading
%table.admin-table
%table
%thead
%tr
%th User
Loading
Loading
= render "project_head"
- unless @notes.empty?
%table.zebra-striped.borders
%table
%thead
%tr
%th File name
%th
- @notes.each do |note|
%tr
%td
Loading
Loading
Loading
Loading
@@ -24,7 +24,7 @@
= f.submit 'Protect', class: "primary btn"
 
- unless @branches.empty?
%table.admin-table
%table
%thead
%tr
%th Name
Loading
Loading
Loading
Loading
@@ -13,7 +13,7 @@
= render partial: "refs/tree_file", locals: { name: tree.name, content: tree.data, file: tree }
- else
- contents = tree.contents
%table#tree-slider.bordered-table.table{class: "table_#{@hex_path}" }
%table#tree-slider{class: "table_#{@hex_path}" }
%thead
%th Name
%th Last Update
Loading
Loading
= render "repositories/branches_head"
- unless @branches.empty?
%table.admin-table
%table
%thead
%tr
%th Name
Loading
Loading
= render "branches_head"
 
%table.admin-table
%table
%thead
%tr
%th Name
Loading
Loading
= render "commits/head"
- unless @tags.empty?
%table.admin-table
%table
%thead
%tr
%th Name
Loading
Loading
Loading
Loading
@@ -14,7 +14,7 @@
.search_results
.row
.span6
%table.admin-table
%table
%tr
%th Projects
%tbody
Loading
Loading
@@ -31,7 +31,7 @@
%td
%h4.nothing_here_message No Projects
%br
%table.admin-table
%table
%tr
%th Merge Requests
%tbody
Loading
Loading
@@ -49,7 +49,7 @@
%td
%h4.nothing_here_message No Merge Requests
.span6
%table.admin-table
%table
%tr
%th Issues
%tbody
Loading
Loading
Loading
Loading
@@ -8,7 +8,7 @@
%br
To add new snippet - click on button.
 
%table.admin-table
%table
%thead
%tr
%th Title
Loading
Loading
Loading
Loading
@@ -19,7 +19,7 @@
%br
.row
.span6
%table.no-borders
%table.lite
%tr
%td Email
%td= mail_to user.email
Loading
Loading
@@ -39,7 +39,7 @@
%td Bio
%td= user.bio
.span6
%table.no-borders
%table.lite
%tr
%td Member since
%td= @team_member.created_at.stamp("Aug 21, 2011")
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment