Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
8983e84a
Commit
8983e84a
authored
Oct 13, 2020
by
Florie Guibert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix dark mode for milestones
parent
071aea87
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
app/assets/stylesheets/page_bundles/milestone.scss
app/assets/stylesheets/page_bundles/milestone.scss
+7
-7
changelogs/unreleased/257764-milestones-page-broken-on-dark-mode.yml
...unreleased/257764-milestones-page-broken-on-dark-mode.yml
+5
-0
No files found.
app/assets/stylesheets/page_bundles/milestone.scss
View file @
8983e84a
...
...
@@ -10,13 +10,13 @@ $status-box-line-height: 26px;
padding
:
$gl-padding-8
;
margin-top
:
$gl-padding-8
;
border-radius
:
$border-radius-default
;
background-color
:
$gray-100
;
background-color
:
var
(
--
gray-100
,
$gray-100
)
;
.milestone
{
border
:
0
;
padding
:
$gl-padding-top
$gl-padding
;
border-radius
:
$border-radius-default
;
background-color
:
$white
;
background-color
:
var
(
--
white
,
$white
)
;
&
:not
(
:last-child
)
{
margin-bottom
:
$gl-padding-4
;
...
...
@@ -35,7 +35,7 @@ $status-box-line-height: 26px;
.milestone-progress
,
.milestone-release-links
{
a
{
color
:
$blue-600
;
color
:
var
(
--
blue-600
,
$blue-600
)
;
}
}
...
...
@@ -63,7 +63,7 @@ $status-box-line-height: 26px;
.issuable-row
{
span
{
a
{
color
:
$gl-text-color
;
color
:
var
(
--
gray-900
,
$gray-900
)
;
word-wrap
:
break-word
;
}
...
...
@@ -164,7 +164,7 @@ $status-box-line-height: 26px;
}
.issuable-number
{
color
:
$gl-text-color-secondary
;
color
:
var
(
--
gray-500
,
$gray-500
)
;
margin-right
:
5px
;
}
...
...
@@ -179,7 +179,7 @@ $status-box-line-height: 26px;
}
.milestone-detail
{
border-bottom
:
1px
solid
$border-color
;
border-bottom
:
1px
solid
var
(
--
border-color
,
$border-color
)
;
}
@include
media-breakpoint-down
(
xs
)
{
...
...
@@ -235,7 +235,7 @@ $status-box-line-height: 26px;
}
.issuable-row
{
background-color
:
$white
;
background-color
:
var
(
--
white
,
$white
)
;
}
.milestone-popover-instructions-list
{
...
...
changelogs/unreleased/257764-milestones-page-broken-on-dark-mode.yml
0 → 100644
View file @
8983e84a
---
title
:
Fix dark mode for milestones
merge_request
:
44952
author
:
type
:
fixed
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment