Skip to content
Snippets Groups Projects
Commit d2608ce0 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray
Browse files

Merge branch '25701-standardize-text-colors' into 'master'

25701 standardize text colors

Closes #25701

See merge request !8383
parents 8acf1ce3 86b1dfc7
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -292,7 +292,7 @@
.option-title {
font-weight: normal;
display: inline-block;
color: $gl-gray-dark;
color: $gl-text-color;
}
 
.option-descr {
Loading
Loading
@@ -331,7 +331,7 @@
a.deploy-project-label {
padding: 5px;
margin-right: 5px;
color: $gl-gray;
color: $gl-text-color;
background-color: $row-hover;
 
&:hover {
Loading
Loading
@@ -372,7 +372,7 @@ a.deploy-project-label {
}
 
a {
color: $gl-dark-link-color;
color: $gl-text-color;
}
 
.dropdown-menu {
Loading
Loading
@@ -426,7 +426,7 @@ a.deploy-project-label {
width: 100%;
height: 100%;
padding-top: $gl-padding;
color: $gl-gray;
color: $gl-text-color;
 
.caption {
min-height: 30px;
Loading
Loading
@@ -552,7 +552,7 @@ pre.light-well {
margin: 0 7px 7px;
 
h5 {
color: $gl-text-color-dark;
color: $gl-text-color;
}
 
.light-well {
Loading
Loading
@@ -662,7 +662,7 @@ pre.light-well {
}
 
.commit-row-message {
color: $gl-gray;
color: $gl-text-color;
}
 
.commit_short_id {
Loading
Loading
@@ -750,7 +750,7 @@ pre.light-well {
 
.protected-branches-list {
a {
color: $gl-gray;
color: $gl-text-color;
 
&:hover {
color: $gl-link-color;
Loading
Loading
.settings-list-icon {
color: $gl-gray-light;
color: $gl-text-color-secondary;
font-size: $settings-icon-size;
line-height: 42px;
}
Loading
Loading
Loading
Loading
@@ -61,15 +61,15 @@
 
&.ci-canceled,
&.ci-disabled {
color: $gl-gray;
border-color: $gl-gray;
color: $gl-text-color;
border-color: $gl-text-color;
 
&:not(span):hover {
background-color: rgba($gl-gray, .07);
background-color: rgba($gl-text-color, .07);
}
 
svg {
fill: $gl-gray;
fill: $gl-text-color;
}
}
 
Loading
Loading
@@ -101,15 +101,15 @@
 
&.ci-created,
&.ci-skipped {
color: $gl-gray-light;
border-color: $gl-gray-light;
color: $gl-text-color-secondary;
border-color: $gl-text-color-secondary;
 
&:not(span):hover {
background-color: rgba($gl-gray-light, .07);
background-color: rgba($gl-text-color-secondary, .07);
}
 
svg {
fill: $gl-gray-light;
fill: $gl-text-color-secondary;
}
}
 
Loading
Loading
Loading
Loading
@@ -90,7 +90,7 @@
}
 
p {
color: $gl-text-color-dark;
color: $gl-text-color;
}
}
 
Loading
Loading
Loading
Loading
@@ -78,7 +78,7 @@
 
i,
a {
color: $gl-dark-link-color;
color: $gl-text-color;
}
 
img {
Loading
Loading
@@ -104,21 +104,21 @@
padding-right: 8px;
 
.commit-author-name {
color: $gl-gray;
color: $gl-text-color;
}
}
 
.tree-time-ago {
min-width: 135px;
color: $gl-gray-light;
color: $gl-text-color-secondary;
}
 
.tree-commit {
max-width: 320px;
color: $gl-gray-light;
color: $gl-text-color-secondary;
 
.tree-commit-link {
color: $gl-gray-light;
color: $gl-text-color-secondary;
 
&:hover {
text-decoration: underline;
Loading
Loading
Loading
Loading
@@ -15,7 +15,7 @@
}
 
.wiki-last-edit-by {
color: $gl-gray-light;
color: $gl-text-color-secondary;
 
strong {
color: $gl-text-color;
Loading
Loading
@@ -24,7 +24,7 @@
 
.light {
font-weight: normal;
color: $gl-gray-light;
color: $gl-text-color-secondary;
}
 
.git-access-header {
Loading
Loading
Loading
Loading
@@ -31,7 +31,7 @@
= link_to admin_abuse_reports_path, title: "Abuse Reports" do
%span
Abuse Reports
%span.badge.badge-dark.count= number_with_delimiter(AbuseReport.count(:all))
%span.badge.count= number_with_delimiter(AbuseReport.count(:all))
 
- if askimet_enabled?
= nav_link(controller: :spam_logs) do
Loading
Loading
Loading
Loading
@@ -26,13 +26,13 @@
%span
Issues
- issues = IssuesFinder.new(current_user, group_id: @group.id, state: 'opened').execute
%span.badge.badge-dark.count= number_with_delimiter(issues.count)
%span.badge.count= number_with_delimiter(issues.count)
= nav_link(path: 'groups#merge_requests') do
= link_to merge_requests_group_path(@group), title: 'Merge Requests' do
%span
Merge Requests
- merge_requests = MergeRequestsFinder.new(current_user, group_id: @group.id, state: 'opened', non_archived: true).execute
%span.badge.badge-dark.count= number_with_delimiter(merge_requests.count)
%span.badge.count= number_with_delimiter(merge_requests.count)
= nav_link(controller: [:group_members]) do
= link_to group_group_members_path(@group), title: 'Members' do
%span
Loading
Loading
Loading
Loading
@@ -61,14 +61,14 @@
%span
Issues
- if @project.default_issues_tracker?
%span.badge.badge-dark.count.issue_counter= number_with_delimiter(IssuesFinder.new(current_user, project_id: @project.id).execute.opened.count)
%span.badge.count.issue_counter= number_with_delimiter(IssuesFinder.new(current_user, project_id: @project.id).execute.opened.count)
 
- if project_nav_tab? :merge_requests
= nav_link(controller: :merge_requests) do
= link_to namespace_project_merge_requests_path(@project.namespace, @project), title: 'Merge Requests', class: 'shortcuts-merge_requests' do
%span
Merge Requests
%span.badge.badge-dark.count.merge_counter= number_with_delimiter(MergeRequestsFinder.new(current_user, project_id: @project.id).execute.opened.count)
%span.badge.count.merge_counter= number_with_delimiter(MergeRequestsFinder.new(current_user, project_id: @project.id).execute.opened.count)
 
- if project_nav_tab? :wiki
= nav_link(controller: :wikis) do
Loading
Loading
---
title: 25701 standardize text colors
merge_request:
author:
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