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
43de46e2
Commit
43de46e2
authored
Apr 13, 2018
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[skip ci] convert label-gray and label-inverse to badge-gray and badge-inverse
parent
1968191c
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
32 additions
and
14 deletions
+32
-14
app/assets/stylesheets/bootstrap_migration.scss
app/assets/stylesheets/bootstrap_migration.scss
+18
-0
app/helpers/commits_helper.rb
app/helpers/commits_helper.rb
+2
-2
app/views/admin/hook_logs/_index.html.haml
app/views/admin/hook_logs/_index.html.haml
+1
-1
app/views/admin/hooks/index.html.haml
app/views/admin/hooks/index.html.haml
+2
-2
app/views/projects/commit/branches.html.haml
app/views/projects/commit/branches.html.haml
+1
-1
app/views/projects/hook_logs/_index.html.haml
app/views/projects/hook_logs/_index.html.haml
+1
-1
app/views/projects/merge_requests/invalid.html.haml
app/views/projects/merge_requests/invalid.html.haml
+2
-2
app/views/projects/pages/_list.html.haml
app/views/projects/pages/_list.html.haml
+1
-1
app/views/projects/settings/integrations/_project_hook.html.haml
...ws/projects/settings/integrations/_project_hook.html.haml
+1
-1
app/views/search/results/_snippet_title.html.haml
app/views/search/results/_snippet_title.html.haml
+1
-1
app/views/shared/hook_logs/_content.html.haml
app/views/shared/hook_logs/_content.html.haml
+1
-1
app/views/shared/milestones/_milestone.html.haml
app/views/shared/milestones/_milestone.html.haml
+1
-1
No files found.
app/assets/stylesheets/bootstrap_migration.scss
View file @
43de46e2
...
...
@@ -50,3 +50,21 @@ button, html [type="button"], [type="reset"], [type="submit"] {
// Remove bootstrap's dropdown caret
display
:
none
;
}
.badge
{
padding
:
4px
5px
;
font-size
:
12px
;
font-style
:
normal
;
font-weight
:
$gl-font-weight-normal
;
display
:
inline-block
;
&
.badge-gray
{
background-color
:
$label-gray-bg
;
color
:
$gl-text-color
;
text-shadow
:
none
;
}
&
.badge-inverse
{
background-color
:
$label-inverse-bg
;
}
}
app/helpers/commits_helper.rb
View file @
43de46e2
...
...
@@ -62,7 +62,7 @@ module CommitsHelper
# Returns a link formatted as a commit branch link
def
commit_branch_link
(
url
,
text
)
link_to
(
url
,
class:
'
label label
-gray ref-name branch-link'
)
do
link_to
(
url
,
class:
'
badge badge
-gray ref-name branch-link'
)
do
sprite_icon
(
'fork'
,
size:
16
,
css_class:
'fork-svg'
)
+
"
#{
text
}
"
end
end
...
...
@@ -76,7 +76,7 @@ module CommitsHelper
# Returns a link formatted as a commit tag link
def
commit_tag_link
(
url
,
text
)
link_to
(
url
,
class:
'
label label
-gray ref-name'
)
do
link_to
(
url
,
class:
'
badge badge
-gray ref-name'
)
do
icon
(
'tag'
,
class:
'append-right-5'
)
+
"
#{
text
}
"
end
end
...
...
app/views/admin/hook_logs/_index.html.haml
View file @
43de46e2
...
...
@@ -19,7 +19,7 @@
%td
=
render
partial:
'shared/hook_logs/status_label'
,
locals:
{
hook_log:
hook_log
}
%td
.d-none.d-sm-block
%span
.badge.
label
-gray.deploy-project-label
%span
.badge.
badge
-gray.deploy-project-label
=
hook_log
.
trigger
.
singularize
.
titleize
%td
=
truncate
(
hook_log
.
url
,
length:
50
)
...
...
app/views/admin/hooks/index.html.haml
View file @
43de46e2
...
...
@@ -29,7 +29,7 @@
%div
-
SystemHook
.
triggers
.
each_value
do
|
event
|
-
if
hook
.
public_send
(
event
)
%span
.badge.
label
-gray
=
event
.
to_s
.
titleize
%span
.badge.
label
-gray
SSL Verification:
#{
hook
.
enable_ssl_verification
?
'enabled'
:
'disabled'
}
%span
.badge.
badge
-gray
=
event
.
to_s
.
titleize
%span
.badge.
badge
-gray
SSL Verification:
#{
hook
.
enable_ssl_verification
?
'enabled'
:
'disabled'
}
=
render
'shared/plugins/index'
app/views/projects/commit/branches.html.haml
View file @
43de46e2
...
...
@@ -6,7 +6,7 @@
-
if
@branches
.
any?
||
@tags
.
any?
||
@tags_limit_exceeded
%span
=
link_to
"…"
,
"#"
,
class:
"js-details-expand label
label
-gray"
=
link_to
"…"
,
"#"
,
class:
"js-details-expand label
badge
-gray"
%span
.js-details-content.d-none
=
commit_branches_links
(
@project
,
@branches
)
-
if
@tags_limit_exceeded
...
...
app/views/projects/hook_logs/_index.html.haml
View file @
43de46e2
...
...
@@ -19,7 +19,7 @@
%td
=
render
partial:
'shared/hook_logs/status_label'
,
locals:
{
hook_log:
hook_log
}
%td
.d-none.d-sm-block
%span
.badge.
label
-gray.deploy-project-label
%span
.badge.
badge
-gray.deploy-project-label
=
hook_log
.
trigger
.
singularize
.
titleize
%td
=
truncate
(
hook_log
.
url
,
length:
50
)
...
...
app/views/projects/merge_requests/invalid.html.haml
View file @
43de46e2
...
...
@@ -10,11 +10,11 @@
-
if
@merge_request
.
for_fork?
&&
!
@merge_request
.
source_project
fork project was removed
-
elsif
!
@merge_request
.
source_branch_exists?
%span
.badge.
label
-inverse
=
@merge_request
.
source_branch
%span
.badge.
badge
-inverse
=
@merge_request
.
source_branch
does not exist in
%span
.badge.badge-info
=
@merge_request
.
source_project_path
-
elsif
!
@merge_request
.
target_branch_exists?
%span
.badge.
label
-inverse
=
@merge_request
.
target_branch
%span
.badge.
badge
-inverse
=
@merge_request
.
target_branch
does not exist in
%span
.badge.badge-info
=
@merge_request
.
target_project_path
-
else
...
...
app/views/projects/pages/_list.html.haml
View file @
43de46e2
...
...
@@ -17,7 +17,7 @@
=
icon
(
'external-link'
)
-
if
domain
.
subject
%p
%span
.badge.
label
-gray
Certificate:
#{
domain
.
subject
}
%span
.badge.
badge
-gray
Certificate:
#{
domain
.
subject
}
-
if
domain
.
expired?
%span
.badge.badge-danger
Expired
%div
...
...
app/views/projects/settings/integrations/_project_hook.html.haml
View file @
43de46e2
...
...
@@ -5,7 +5,7 @@
%div
-
ProjectHook
.
triggers
.
each_value
do
|
event
|
-
if
hook
.
public_send
(
event
)
%span
.badge.
label
-gray.deploy-project-label
=
event
.
to_s
.
titleize
%span
.badge.
badge
-gray.deploy-project-label
=
event
.
to_s
.
titleize
.col-md-4.col-lg-5.text-right-lg.prepend-top-5
%span
.append-right-10.inline
SSL Verification:
#{
hook
.
enable_ssl_verification
?
'enabled'
:
'disabled'
}
...
...
app/views/search/results/_snippet_title.html.haml
View file @
43de46e2
...
...
@@ -3,7 +3,7 @@
=
link_to
reliable_snippet_path
(
snippet_title
)
do
=
truncate
(
snippet_title
.
title
,
length:
60
)
-
if
snippet_title
.
private?
%span
.badge.
label
-gray
%span
.badge.
badge
-gray
%i
.fa.fa-lock
private
%span
.cgray.monospace.tiny.float-right.term
...
...
app/views/shared/hook_logs/_content.html.haml
View file @
43de46e2
...
...
@@ -7,7 +7,7 @@
%p
%strong
Trigger:
%td
.d-none.d-sm-block
%span
.badge.
label
-gray.deploy-project-label
%span
.badge.
badge
-gray.deploy-project-label
=
hook_log
.
trigger
.
singularize
.
titleize
%p
%strong
Elapsed time:
...
...
app/views/shared/milestones/_milestone.html.haml
View file @
43de46e2
...
...
@@ -26,7 +26,7 @@
.projects
-
milestone
.
milestones
.
each
do
|
milestone
|
=
link_to
milestone_path
(
milestone
)
do
%span
.badge.
label
-gray
%span
.badge.
badge
-gray
=
dashboard
?
milestone
.
project
.
full_name
:
milestone
.
project
.
name
-
if
@group
.col-sm-6.milestone-actions
...
...
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