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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
272337e8
Commit
272337e8
authored
Jan 27, 2017
by
Fatih Acet
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ui-updates' into 'master'
UI updates See merge request !8669
parents
2b78774a
ca40ef95
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
8 deletions
+6
-8
app/assets/stylesheets/framework/header.scss
app/assets/stylesheets/framework/header.scss
+1
-1
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+1
-1
app/assets/stylesheets/pages/projects.scss
app/assets/stylesheets/pages/projects.scss
+2
-2
app/views/projects/issues/index.html.haml
app/views/projects/issues/index.html.haml
+1
-3
spec/features/issues/filtered_search/filter_issues_spec.rb
spec/features/issues/filtered_search/filter_issues_spec.rb
+1
-1
No files found.
app/assets/stylesheets/framework/header.scss
View file @
272337e8
...
...
@@ -71,7 +71,7 @@ header {
&
:focus
,
&
:active
{
background-color
:
$gray-light
;
color
:
darken
(
$gl-text-color-secondary
,
30%
)
;
color
:
$gl-text-color
;
.todos-pending-count
{
background
:
darken
(
$todo-alert-blue
,
10%
);
...
...
app/assets/stylesheets/framework/variables.scss
View file @
272337e8
...
...
@@ -178,7 +178,7 @@ $count-arrow-border: #dce0e5;
$save-project-loader-color
:
#555
;
$divergence-graph-bar-bg
:
#ccc
;
$divergence-graph-separator-bg
:
#ccc
;
$general-hover-transition-duration
:
1
5
0ms
;
$general-hover-transition-duration
:
1
0
0ms
;
$general-hover-transition-curve
:
linear
;
...
...
app/assets/stylesheets/pages/projects.scss
View file @
272337e8
...
...
@@ -198,7 +198,7 @@
margin
:
15px
5px
0
0
;
input
{
height
:
2
7
px
;
height
:
2
8
px
;
}
}
...
...
@@ -523,7 +523,7 @@ a.deploy-project-label {
&
:hover
,
&
:focus
{
color
:
darken
(
$notes-light-color
,
15%
)
;
color
:
$gl-text-color
;
}
}
...
...
app/views/projects/issues/index.html.haml
View file @
272337e8
...
...
@@ -19,10 +19,8 @@
=
render
'shared/issuable/nav'
,
type: :issues
.nav-controls
-
if
current_user
=
link_to
url_for
(
params
.
merge
(
format: :atom
,
private_token:
current_user
.
private_token
)),
class:
'btn append-right-10'
do
=
link_to
url_for
(
params
.
merge
(
format: :atom
,
private_token:
current_user
.
private_token
)),
class:
'btn append-right-10
has-tooltip'
,
title:
'Subscribe
'
do
=
icon
(
'rss'
)
%span
.icon-label
Subscribe
-
if
can?
current_user
,
:create_issue
,
@project
=
link_to
new_namespace_project_issue_path
(
@project
.
namespace
,
@project
,
...
...
spec/features/issues/filtered_search/filter_issues_spec.rb
View file @
272337e8
...
...
@@ -773,7 +773,7 @@ describe 'Filter issues', js: true, feature: true do
describe
'RSS feeds'
do
it
'updates atom feed link for project issues'
do
visit
namespace_project_issues_path
(
project
.
namespace
,
project
,
milestone_title:
milestone
.
title
,
assignee_id:
user
.
id
)
link
=
find
(
'.nav-controls a'
,
text:
'Subscribe'
)
link
=
find
_link
(
'Subscribe'
)
params
=
CGI
.
parse
(
URI
.
parse
(
link
[
:href
]).
query
)
auto_discovery_link
=
find
(
'link[type="application/atom+xml"]'
,
visible:
false
)
auto_discovery_params
=
CGI
.
parse
(
URI
.
parse
(
auto_discovery_link
[
:href
]).
query
)
...
...
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