Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
ca2c31fb
Commit
ca2c31fb
authored
9 years ago
by
Tom Robinson
Browse files
Options
Downloads
Patches
Plain Diff
Use existing spinner icon
parent
7914efdf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
resources/frontend_client/app/admin/metadata/components/MetadataHeader.react.js
+2
-1
2 additions, 1 deletion
...ent/app/admin/metadata/components/MetadataHeader.react.js
resources/frontend_client/app/css/admin.css
+0
-17
0 additions, 17 deletions
resources/frontend_client/app/css/admin.css
with
2 additions
and
18 deletions
resources/frontend_client/app/admin/metadata/components/MetadataHeader.react.js
+
2
−
1
View file @
ca2c31fb
...
...
@@ -3,6 +3,7 @@
import
PopoverWithTrigger
from
'
../../../query_builder/popover_with_trigger.react
'
;
import
ColumnarSelector
from
'
../../../query_builder/columnar_selector.react
'
;
import
Icon
from
'
../../../query_builder/icon.react
'
;
import
LoadingIcon
from
'
../../../components/icons/loading.react
'
;
export
default
React
.
createClass
({
displayName
:
"
MetadataHeader
"
,
...
...
@@ -75,7 +76,7 @@ export default React.createClass({
renderSaveWidget
:
function
()
{
if
(
this
.
state
.
saving
)
{
return
(
<
div
className
=
"
mx2 px2 border-right
"
><
div
className
=
"
Spinner
"
><
/div
></
div
>
);
return
(
<
div
className
=
"
mx2 px2 border-right
"
><
LoadingIcon
width
=
"
24
"
height
=
"
24
"
/
><
/div>
)
;
}
else
if
(
this
.
state
.
error
)
{
return
(
<
div
className
=
"
mx2 px2 border-right text-error
"
>
Error
:
{
this
.
state
.
error
}
<
/div>
)
}
else
if
(
this
.
state
.
recentlySavedTimeout
!=
null
)
{
...
...
This diff is collapsed.
Click to expand it.
resources/frontend_client/app/css/admin.css
+
0
−
17
View file @
ca2c31fb
...
...
@@ -348,23 +348,6 @@
color
:
white
!important
;
}
.Spinner
{
width
:
24px
;
height
:
24px
;
border-radius
:
99px
;
border
:
3px
solid
rgba
(
111
,
122
,
139
,
0.25
);
border-left
:
3px
solid
rgba
(
111
,
122
,
139
,
1.0
);
animation-name
:
spin
;
animation-duration
:
1s
;
animation-iteration-count
:
infinite
;
animation-timing-function
:
linear
;
}
@keyframes
spin
{
from
{
transform
:
rotate
(
0deg
);
}
to
{
transform
:
rotate
(
360deg
);
}
}
.Toggle
{
margin
:
0.5em
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment