Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
6be50c95
Unverified
Commit
6be50c95
authored
Feb 13, 2019
by
Torkel Ödegaard
Committed by
GitHub
Feb 13, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #15400 from grafana/removed-icons-in-buttons
Removed some icons in action button
parents
960fa560
f195459b
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
21 additions
and
46 deletions
+21
-46
public/app/features/admin/partials/orgs.html
+1
-2
public/app/features/admin/partials/users.html
+1
-2
public/app/features/alerting/partials/notifications_list.html
+1
-1
public/app/features/api-keys/ApiKeysPage.tsx
+1
-1
public/app/features/dashboard/components/DashboardSettings/template.html
+2
-4
public/app/features/folders/FolderSettingsPage.tsx
+2
-2
public/app/features/folders/__snapshots__/FolderSettingsPage.test.tsx.snap
+4
-16
public/app/features/playlist/partials/playlists.html
+1
-1
public/app/features/teams/TeamMembers.tsx
+2
-2
public/app/features/teams/__snapshots__/TeamMembers.test.tsx.snap
+6
-15
No files found.
public/app/features/admin/partials/orgs.html
View file @
6be50c95
...
...
@@ -4,8 +4,7 @@
<div
class=
"page-action-bar"
>
<div
class=
"page-action-bar__spacer"
></div>
<a
class=
"page-header__cta btn btn-primary"
href=
"org/new"
>
<i
class=
"fa fa-plus"
></i>
New Org
New org
</a>
</div>
...
...
public/app/features/admin/partials/users.html
View file @
6be50c95
...
...
@@ -8,8 +8,7 @@
</label>
<div
class=
"page-action-bar__spacer"
></div>
<a
class=
"btn btn-primary"
href=
"admin/users/create"
>
<i
class=
"fa fa-plus"
></i>
Add new user
New user
</a>
</div>
...
...
public/app/features/alerting/partials/notifications_list.html
View file @
6be50c95
...
...
@@ -8,7 +8,7 @@
</div>
<a
href=
"alerting/notification/new"
class=
"btn btn-primary"
>
New
C
hannel
New
c
hannel
</a>
</div>
...
...
public/app/features/api-keys/ApiKeysPage.tsx
View file @
6be50c95
...
...
@@ -198,7 +198,7 @@ export class ApiKeysPage extends PureComponent<Props, any> {
<
div
className=
"page-action-bar__spacer"
/>
<
button
className=
"btn btn-primary pull-right"
onClick=
{
this
.
onToggleAdding
}
disabled=
{
isAdding
}
>
Add API
K
ey
Add API
k
ey
</
button
>
</
div
>
...
...
public/app/features/dashboard/components/DashboardSettings/template.html
View file @
6be50c95
...
...
@@ -11,14 +11,12 @@
<div
class=
"dashboard-settings__aside-actions"
>
<button
class=
"btn btn-primary"
ng-click=
"ctrl.saveDashboard()"
ng-show=
"ctrl.canSave"
>
<i
class=
"fa fa-save"
></i>
Save
Save
</button>
<button
class=
"btn btn-inverse"
ng-click=
"ctrl.openSaveAsModal()"
ng-show=
"ctrl.canSaveAs"
>
<i
class=
"fa fa-copy"
></i>
Save As...
</button>
<button
class=
"btn btn-danger"
ng-click=
"ctrl.deleteDashboard()"
ng-show=
"ctrl.canDelete"
>
<i
class=
"fa fa-trash"
></i>
Delete
</button>
</div>
...
...
@@ -101,7 +99,7 @@
<div
class=
"gf-form-button-row"
>
<button
class=
"btn btn-primary"
ng-click=
"ctrl.saveDashboardJson()"
ng-show=
"ctrl.canSave"
>
<i
class=
"fa fa-save"
></i>
Save Changes
Save Changes
</button>
</div>
</div>
...
...
public/app/features/folders/FolderSettingsPage.tsx
View file @
6be50c95
...
...
@@ -82,10 +82,10 @@ export class FolderSettingsPage extends PureComponent<Props, State> {
</
div
>
<
div
className=
"gf-form-button-row"
>
<
button
type=
"submit"
className=
"btn btn-primary"
disabled=
{
!
folder
.
canSave
||
!
folder
.
hasChanged
}
>
<
i
className=
"fa fa-save"
/>
Save
Save
</
button
>
<
button
className=
"btn btn-danger"
onClick=
{
this
.
onDelete
}
disabled=
{
!
folder
.
canSave
}
>
<
i
className=
"fa fa-trash"
/>
Delete
Delete
</
button
>
</
div
>
</
form
>
...
...
public/app/features/folders/__snapshots__/FolderSettingsPage.test.tsx.snap
View file @
6be50c95
...
...
@@ -42,20 +42,14 @@ exports[`Render should enable save button 1`] = `
disabled={false}
type="submit"
>
<i
className="fa fa-save"
/>
Save
Save
</button>
<button
className="btn btn-danger"
disabled={false}
onClick={[Function]}
>
<i
className="fa fa-trash"
/>
Delete
Delete
</button>
</div>
</form>
...
...
@@ -106,20 +100,14 @@ exports[`Render should render component 1`] = `
disabled={true}
type="submit"
>
<i
className="fa fa-save"
/>
Save
Save
</button>
<button
className="btn btn-danger"
disabled={false}
onClick={[Function]}
>
<i
className="fa fa-trash"
/>
Delete
Delete
</button>
</div>
</form>
...
...
public/app/features/playlist/partials/playlists.html
View file @
6be50c95
...
...
@@ -5,7 +5,7 @@
<div
class=
"page-action-bar"
>
<div
class=
"page-action-bar__spacer"
></div>
<a
class=
"btn btn-primary pull-right"
href=
"playlists/create"
>
New
P
laylist
New
p
laylist
</a>
</div>
...
...
public/app/features/teams/TeamMembers.tsx
View file @
6be50c95
...
...
@@ -102,7 +102,7 @@ export class TeamMembers extends PureComponent<Props, State> {
<
div
className=
"page-action-bar__spacer"
/>
<
button
className=
"btn btn-primary pull-right"
onClick=
{
this
.
onToggleAdding
}
disabled=
{
isAdding
}
>
<
i
className=
"fa fa-plus"
/>
Add a
member
Add
member
</
button
>
</
div
>
...
...
@@ -111,7 +111,7 @@ export class TeamMembers extends PureComponent<Props, State> {
<
button
className=
"cta-form__close btn btn-transparent"
onClick=
{
this
.
onToggleAdding
}
>
<
i
className=
"fa fa-close"
/>
</
button
>
<
h5
>
Add
Team M
ember
</
h5
>
<
h5
>
Add
team m
ember
</
h5
>
<
div
className=
"gf-form-inline"
>
<
UserPicker
onSelected=
{
this
.
onUserSelected
}
className=
"min-width-30"
/>
{
this
.
state
.
newTeamMember
&&
(
...
...
public/app/features/teams/__snapshots__/TeamMembers.test.tsx.snap
View file @
6be50c95
...
...
@@ -24,10 +24,7 @@ exports[`Render should render component 1`] = `
disabled={false}
onClick={[Function]}
>
<i
className="fa fa-plus"
/>
Add a member
Add member
</button>
</div>
<Component
...
...
@@ -45,7 +42,7 @@ exports[`Render should render component 1`] = `
/>
</button>
<h5>
Add
Team M
ember
Add
team m
ember
</h5>
<div
className="gf-form-inline"
...
...
@@ -111,10 +108,7 @@ exports[`Render should render team members 1`] = `
disabled={false}
onClick={[Function]}
>
<i
className="fa fa-plus"
/>
Add a member
Add member
</button>
</div>
<Component
...
...
@@ -132,7 +126,7 @@ exports[`Render should render team members 1`] = `
/>
</button>
<h5>
Add
Team M
ember
Add
team m
ember
</h5>
<div
className="gf-form-inline"
...
...
@@ -324,10 +318,7 @@ exports[`Render should render team members when sync enabled 1`] = `
disabled={false}
onClick={[Function]}
>
<i
className="fa fa-plus"
/>
Add a member
Add member
</button>
</div>
<Component
...
...
@@ -345,7 +336,7 @@ exports[`Render should render team members when sync enabled 1`] = `
/>
</button>
<h5>
Add
Team M
ember
Add
team m
ember
</h5>
<div
className="gf-form-inline"
...
...
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