Skip to content

Commit

Permalink
Background color of private list-items updated (go-gitea#20630)
Browse files Browse the repository at this point in the history
A minor color update on the dashboard. This PR simply changes the background from hard-coded light yellow to the theme colors (var).
  • Loading branch information
lukeawyatt authored and Sysoev, Vladimir committed Aug 10, 2022
1 parent 949a714 commit bbeb66f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions web_src/less/_base.less
Expand Up @@ -123,6 +123,7 @@
--color-text-light-3: #a0a0a0;
--color-box-header: #f7f7f7;
--color-box-body: #ffffff;
--color-box-body-highlight: #f8f8f8;
--color-footer: #ffffff;
--color-timeline: #ececec;
--color-input-text: #212121;
Expand Down
2 changes: 1 addition & 1 deletion web_src/less/_dashboard.less
Expand Up @@ -165,7 +165,7 @@
}

&.private {
background-color: #fcf8e9;
background-color: var(--color-box-body-highlight);
}

.repo-list-link {
Expand Down
5 changes: 1 addition & 4 deletions web_src/less/themes/theme-arc-green.less
Expand Up @@ -95,6 +95,7 @@
--color-body: #383c4a;
--color-box-header: #404652;
--color-box-body: #303440;
--color-box-body-highlight: #353945;
--color-text-dark: #dbe0ea;
--color-text: #bbc0ca;
--color-text-light: #a6aab5;
Expand Down Expand Up @@ -150,10 +151,6 @@
color: #fff;
}

.feeds .list ul li.private {
background: #353945;
}

.ui.red.label,
.ui.red.labels .label {
background-color: #7d3434 !important;
Expand Down

0 comments on commit bbeb66f

Please sign in to comment.