Refactor colors
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
89df4a7922
commit
1c8ec154a9
7 changed files with 17 additions and 14 deletions
|
@ -1,6 +1,5 @@
|
|||
$style_color: #474D57;
|
||||
$hover: #FFFAF1;
|
||||
$gl-text-color: #7f8fa4;
|
||||
$gl-text-color: #54565b;
|
||||
$gl-header-color: #4c4e54;
|
||||
$gl-link-color: #333c48;
|
||||
$nprogress-color: #c0392b;
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
.light-well {
|
||||
background: #f9f9f9;
|
||||
background-color: #f8fafc;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.centered-light-block {
|
||||
text-align: center;
|
||||
color: #888;
|
||||
color: $gl-gray;
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.nothing-here-block {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
color: #666;
|
||||
color: $gl-gray;
|
||||
font-weight: normal;
|
||||
font-size: 16px;
|
||||
line-height: 36px;
|
||||
|
@ -25,4 +25,9 @@
|
|||
margin-bottom: 0px;
|
||||
border-top: 1px solid #e7e9ed;
|
||||
border-bottom: 1px solid #e7e9ed;
|
||||
color: $gl-gray;
|
||||
|
||||
.title {
|
||||
color: $gl-text-color;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -74,8 +74,6 @@ pre {
|
|||
color: $gl-link-color;
|
||||
}
|
||||
|
||||
.help li { color:$style_color; }
|
||||
|
||||
.back-link {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
|
|
@ -109,10 +109,16 @@ ul.content-list {
|
|||
padding: 18px;
|
||||
border-color: #f1f2f4;
|
||||
margin: 0 -18px;
|
||||
color: $gl-gray;
|
||||
|
||||
.avatar {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.controls {
|
||||
padding-top: 10px;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -61,10 +61,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
.file-stats a {
|
||||
color: $style_color;
|
||||
}
|
||||
|
||||
.file-stats {
|
||||
.new-file {
|
||||
a {
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
= link_to new_group_path, class: "btn btn-new" do
|
||||
%i.fa.fa-plus
|
||||
New Group
|
||||
Welcome to the groups!
|
||||
%br
|
||||
.title Welcome to the groups!
|
||||
Group members have access to all group projects.
|
||||
|
||||
%ul.content-list
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
- group_member = local_assigns[:group_member]
|
||||
%li
|
||||
- if group_member
|
||||
.pull-right.hidden-xs
|
||||
.controls.hidden-xs
|
||||
- if can?(current_user, :admin_group, group)
|
||||
= link_to edit_group_path(group), class: "btn-sm btn btn-grouped" do
|
||||
%i.fa.fa-cogs
|
||||
|
|
Loading…
Reference in a new issue