fix some icon colors. move text-color styles to common.scss
This commit is contained in:
parent
e548c61334
commit
8ccce94ee8
6 changed files with 54 additions and 52 deletions
|
@ -88,17 +88,6 @@
|
|||
border-color: $border-dark;
|
||||
color: $color;
|
||||
}
|
||||
|
||||
svg {
|
||||
|
||||
path {
|
||||
fill: $color;
|
||||
}
|
||||
|
||||
use {
|
||||
stroke: $color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin btn-green {
|
||||
|
|
|
@ -2,14 +2,37 @@
|
|||
.cgray { color: $common-gray; }
|
||||
.clgray { color: $common-gray-light; }
|
||||
.cred { color: $common-red; }
|
||||
svg.cred { fill: $common-red; }
|
||||
.cgreen { color: $common-green; }
|
||||
svg.cgreen { fill: $common-green; }
|
||||
.cdark { color: $common-gray-dark; }
|
||||
|
||||
.text-plain,
|
||||
.text-plain:hover {
|
||||
color: $gl-text-color;
|
||||
}
|
||||
.text-secondary {
|
||||
color: $gl-text-color-secondary;
|
||||
}
|
||||
|
||||
.text-success,
|
||||
.text-success:hover {
|
||||
color: $brand-success;
|
||||
}
|
||||
|
||||
.text-danger,
|
||||
.text-danger:hover {
|
||||
color: $brand-danger;
|
||||
}
|
||||
|
||||
.text-warning,
|
||||
.text-warning:hover {
|
||||
color: $brand-warning;
|
||||
}
|
||||
|
||||
.text-info,
|
||||
.text-info:hover {
|
||||
color: $brand-info;
|
||||
}
|
||||
|
||||
.underlined-link { text-decoration: underline; }
|
||||
.hint { font-style: italic; color: $hint-color; }
|
||||
.light { color: $common-gray; }
|
||||
|
|
|
@ -1,35 +1,56 @@
|
|||
.ci-status-icon-success,
|
||||
.ci-status-icon-passed {
|
||||
&,
|
||||
&:hover {
|
||||
color: $green-500;
|
||||
}
|
||||
}
|
||||
|
||||
.ci-status-icon-failed {
|
||||
&,
|
||||
&:hover {
|
||||
color: $gl-danger;
|
||||
}
|
||||
}
|
||||
|
||||
.ci-status-icon-pending,
|
||||
.ci-status-icon-failed_with_warnings,
|
||||
.ci-status-icon-success_with_warnings {
|
||||
&,
|
||||
&:hover {
|
||||
color: $orange-500;
|
||||
}
|
||||
}
|
||||
|
||||
.ci-status-icon-running {
|
||||
&,
|
||||
&:hover {
|
||||
color: $blue-400;
|
||||
}
|
||||
}
|
||||
|
||||
.ci-status-icon-canceled,
|
||||
.ci-status-icon-disabled,
|
||||
.ci-status-icon-not-found {
|
||||
&,
|
||||
&:hover {
|
||||
color: $gl-text-color;
|
||||
}
|
||||
}
|
||||
|
||||
.ci-status-icon-created,
|
||||
.ci-status-icon-skipped {
|
||||
&,
|
||||
&:hover {
|
||||
color: $gray-darkest;
|
||||
}
|
||||
}
|
||||
|
||||
.ci-status-icon-manual {
|
||||
&,
|
||||
&:hover {
|
||||
color: $gl-text-color;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-link {
|
||||
|
|
|
@ -195,33 +195,6 @@ summary {
|
|||
}
|
||||
}
|
||||
|
||||
// Typography =================================================================
|
||||
|
||||
.text-primary,
|
||||
.text-primary:hover {
|
||||
color: $brand-primary;
|
||||
}
|
||||
|
||||
.text-success,
|
||||
.text-success:hover {
|
||||
color: $brand-success;
|
||||
}
|
||||
|
||||
.text-danger,
|
||||
.text-danger:hover {
|
||||
color: $brand-danger;
|
||||
}
|
||||
|
||||
.text-warning,
|
||||
.text-warning:hover {
|
||||
color: $brand-warning;
|
||||
}
|
||||
|
||||
.text-info,
|
||||
.text-info:hover {
|
||||
color: $brand-info;
|
||||
}
|
||||
|
||||
// Prevent datetimes on tooltips to break into two lines
|
||||
.local-timeago {
|
||||
white-space: nowrap;
|
||||
|
|
|
@ -886,10 +886,6 @@ pre.light-well {
|
|||
font-size: $gl-font-size;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $gl-text-color;
|
||||
}
|
||||
|
||||
.avatar-container,
|
||||
.controls {
|
||||
flex: 0 0 auto;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
= project_icon(project, alt: '', class: 'avatar project-avatar s40')
|
||||
.project-details
|
||||
%h3.prepend-top-0.append-bottom-0
|
||||
= link_to project_path(project), class: dom_class(project) do
|
||||
= link_to project_path(project), class: 'text-plain' do
|
||||
%span.project-full-name
|
||||
%span.namespace-name
|
||||
- if project.namespace && !skip_namespace
|
||||
|
|
Loading…
Reference in a new issue