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
7e04380b
Commit
7e04380b
authored
Jun 08, 2018
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve conflicts in favicon related files
parent
a9fa115f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
13 deletions
+0
-13
app/views/admin/appearances/_form.html.haml
app/views/admin/appearances/_form.html.haml
+0
-3
lib/gitlab/favicon.rb
lib/gitlab/favicon.rb
+0
-4
spec/lib/gitlab/favicon_spec.rb
spec/lib/gitlab/favicon_spec.rb
+0
-6
No files found.
app/views/admin/appearances/_form.html.haml
View file @
7e04380b
...
...
@@ -37,11 +37,8 @@
%br
The resulting favicons will be cropped to be square and scaled down to a size of 32x32 px.
<
<<<<<<
HEAD
=
render
partial:
'admin/appearances/system_header_footer_form'
,
locals:
{
form:
f
}
==
=====
>
>>>>>> upstream/master
%fieldset
.sign-in
%legend
Sign in/Sign up pages:
...
...
lib/gitlab/favicon.rb
View file @
7e04380b
...
...
@@ -8,11 +8,7 @@ module Gitlab
if
Gitlab
::
Utils
.
to_boolean
(
ENV
[
'CANARY'
])
'favicon-yellow.png'
elsif
Rails
.
env
.
development?
<<<<<<<
HEAD
'favicon-green.png'
=======
'favicon-blue.png'
>>>>>>>
upstream
/
master
else
'favicon.png'
end
...
...
spec/lib/gitlab/favicon_spec.rb
View file @
7e04380b
...
...
@@ -7,15 +7,9 @@ RSpec.describe Gitlab::Favicon, :request_store do
expect
(
described_class
.
main
).
to
match_asset_path
'/assets/favicon.png'
end
<<<<<<<
HEAD
it
'has green favicon for development'
do
allow
(
Rails
).
to
receive
(
:env
).
and_return
(
ActiveSupport
::
StringInquirer
.
new
(
'development'
))
expect
(
described_class
.
main
).
to
match_asset_path
'favicon-green.png'
=======
it
'has blue favicon for development'
do
allow
(
Rails
).
to
receive
(
:env
).
and_return
(
ActiveSupport
::
StringInquirer
.
new
(
'development'
))
expect
(
described_class
.
main
).
to
match_asset_path
'/assets/favicon-blue.png'
>>>>>>>
upstream
/
master
end
it
'has yellow favicon for canary'
do
...
...
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