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
63902979
Commit
63902979
authored
May 25, 2017
by
Mike Greiling
Committed by
Annabel Dunstone Gray
May 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing UX for "License features applied to Groups or individuals"
parent
01a18396
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
76 additions
and
6 deletions
+76
-6
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+9
-0
app/assets/stylesheets/pages/groups.scss
app/assets/stylesheets/pages/groups.scss
+35
-0
app/views/admin/_namespace_plan_badge.html.haml
app/views/admin/_namespace_plan_badge.html.haml
+4
-0
app/views/admin/_namespace_plan_info.html.haml
app/views/admin/_namespace_plan_info.html.haml
+12
-0
app/views/admin/groups/_group.html.haml
app/views/admin/groups/_group.html.haml
+2
-0
app/views/admin/groups/show.html.haml
app/views/admin/groups/show.html.haml
+2
-0
app/views/admin/users/_form.html.haml
app/views/admin/users/_form.html.haml
+6
-6
app/views/admin/users/_user.html.haml
app/views/admin/users/_user.html.haml
+3
-0
app/views/admin/users/show.html.haml
app/views/admin/users/show.html.haml
+2
-0
app/views/shared/icons/_icon_premium.svg
app/views/shared/icons/_icon_premium.svg
+1
-0
No files found.
app/assets/stylesheets/framework/variables.scss
View file @
63902979
...
...
@@ -573,3 +573,12 @@ $filter-value-selected-color: #d7d7d7;
Animation Functions
*/
$dropdown-animation-timing
:
cubic-bezier
(
0
.23
,
1
,
0
.32
,
1
);
/*
GitLab Plans
*/
$gl-gold-plan
:
#d4af37
;
$gl-silver-plan
:
#91a1ab
;
$gl-bronze-plan
:
#cd7f32
;
$gl-no-plan
:
$gl-gray-light
;
app/assets/stylesheets/pages/groups.scss
View file @
63902979
...
...
@@ -159,3 +159,38 @@ table.pipeline-project-metrics tr td {
height
:
50px
;
}
}
.plan-badge
{
margin-right
:
15px
;
svg
{
position
:
relative
;
top
:
3px
;
height
:
16px
;
width
:
16px
;
}
&
.inline
{
display
:
inline-block
;
margin
:
0
4px
;
}
&
[
data-plan
=
"gold"
]
{
color
:
darken
(
$gl-gold-plan
,
20%
);
svg
g
{
fill
:
$gl-gold-plan
;
}
}
&
[
data-plan
=
"silver"
]
{
color
:
darken
(
$gl-silver-plan
,
20%
);
svg
g
{
fill
:
$gl-silver-plan
;
}
}
&
[
data-plan
=
"bronze"
]
{
color
:
darken
(
$gl-bronze-plan
,
20%
);
svg
g
{
fill
:
$gl-bronze-plan
;
}
}
&
:not
([
data-plan
])
{
svg
g
{
fill
:
$gl-no-plan
;
}
}
}
app/views/admin/_namespace_plan_badge.html.haml
0 → 100644
View file @
63902979
-
namespace
=
local_assigns
[
:namespace
]
-
if
current_application_settings
.
should_check_namespace_plan?
&&
namespace
&&
namespace
.
plan
.
present?
%span
.plan-badge.has-tooltip
{
data:
{
plan:
namespace
.
plan
},
title:
"#{namespace.plan.titleize} Plan"
}
=
custom_icon
(
'icon_premium'
)
app/views/admin/_namespace_plan_info.html.haml
0 → 100644
View file @
63902979
-
namespace
=
local_assigns
[
:namespace
]
-
if
current_application_settings
.
should_check_namespace_plan?
&&
namespace
%li
%span
.light
Plan:
-
if
namespace
.
plan
.
present?
%strong
.plan-badge.inline
{
data:
{
plan:
namespace
.
plan
}
}
=
custom_icon
(
'icon_premium'
)
=
namespace
.
plan
.
titleize
-
else
%strong
.plan-badge.inline
=
custom_icon
(
'icon_premium'
)
No Plan
app/views/admin/groups/_group.html.haml
View file @
63902979
...
...
@@ -8,6 +8,8 @@
%span
.badge
=
storage_counter
(
group
.
storage_size
)
=
render
'admin/namespace_plan_badge'
,
namespace:
group
%span
=
icon
(
'bookmark'
)
=
number_with_delimiter
(
group
.
projects
.
count
)
...
...
app/views/admin/groups/show.html.haml
View file @
63902979
...
...
@@ -38,6 +38,8 @@
%strong
=
@group
.
created_at
.
to_s
(
:medium
)
=
render
'admin/namespace_plan_info'
,
namespace:
@group
%li
%span
.light
Storage:
%strong
=
storage_counter
(
@group
.
storage_size
)
...
...
app/views/admin/users/_form.html.haml
View file @
63902979
...
...
@@ -42,6 +42,12 @@
=
render
partial:
'access_levels'
,
locals:
{
f:
f
}
-
if
current_application_settings
.
should_check_namespace_plan?
=
f
.
fields_for
:namespace
do
|
namespace_form
|
%fieldset
%legend
Licensed Features
=
render
'admin/namespace_plan'
,
f:
namespace_form
=
render
partial:
'limits'
,
locals:
{
f:
f
}
%fieldset
...
...
@@ -70,12 +76,6 @@
=
f
.
label
:note
,
'Note'
,
class:
'control-label'
.col-sm-10
=
f
.
text_area
:note
,
class:
'form-control'
-
if
current_application_settings
.
should_check_namespace_plan?
=
f
.
fields_for
:namespace
do
|
namespace_form
|
%fieldset
%legend
Plan
=
render
'admin/namespace_plan'
,
f:
namespace_form
.form-actions
-
if
@user
.
new_record?
=
f
.
submit
'Create user'
,
class:
"btn btn-create"
...
...
app/views/admin/users/_user.html.haml
View file @
63902979
...
...
@@ -18,6 +18,9 @@
.row-second-line.str-truncated-100
=
mail_to
user
.
email
,
user
.
email
.controls
=
render
'admin/namespace_plan_badge'
,
namespace:
user
.
namespace
=
link_to
'Edit'
,
edit_admin_user_path
(
user
),
id:
"edit_
#{
dom_id
(
user
)
}
"
,
class:
'btn'
-
unless
user
==
current_user
.dropdown.inline
...
...
app/views/admin/users/show.html.haml
View file @
63902979
...
...
@@ -47,6 +47,8 @@
-
else
Disabled
=
render
'admin/namespace_plan_info'
,
namespace:
@user
.
namespace
%li
%span
.light
External User:
%strong
...
...
app/views/shared/icons/_icon_premium.svg
0 → 100644
View file @
63902979
<svg
xmlns=
"http://www.w3.org/2000/svg"
viewBox=
"0 0 16 16"
><g
fill=
"#262626"
fill-rule=
"evenodd"
><path
d=
"m8 10c-2.761 0-5-2.239-5-5 0-2.761 2.239-5 5-5 2.761 0 5 2.239 5 5 0 2.761-2.239 5-5 5m0-2.5c1.381 0 2.5-1.119 2.5-2.5 0-1.381-1.119-2.5-2.5-2.5-1.381 0-2.5 1.119-2.5 2.5 0 1.381 1.119 2.5 2.5 2.5m0-1c-.828 0-1.5-.672-1.5-1.5 0-.828.672-1.5 1.5-1.5.828 0 1.5.672 1.5 1.5 0 .828-.672 1.5-1.5 1.5m4.893 1.974l2.321 4.02c.138.239.028.447-.245.463l-1.737.104-.959 1.452c-.151.229-.389.214-.524-.019l-2.143-3.712c1.344-.373 2.498-1.201 3.286-2.308m-6.444 2.324l-2.135 3.697c-.135.234-.373.248-.524.019l-.959-1.452-1.737-.104c-.273-.016-.383-.224-.245-.463l2.293-3.971c.798 1.098 1.958 1.914 3.306 2.274"
transform=
"translate(0 1)"
/></g></svg>
\ No newline at end of file
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