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
9e795fd9
Commit
9e795fd9
authored
Mar 11, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
2796beaa
a89df585
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
82 additions
and
2 deletions
+82
-2
app/assets/stylesheets/components/dashboard_skeleton.scss
app/assets/stylesheets/components/dashboard_skeleton.scss
+80
-0
doc/development/fe_guide/vuex.md
doc/development/fe_guide/vuex.md
+2
-2
No files found.
app/assets/stylesheets/components/dashboard_skeleton.scss
0 → 100644
View file @
9e795fd9
.dashboard-cards
{
margin-right
:
-
$gl-padding-8
;
margin-left
:
-
$gl-padding-8
;
}
.dashboard-card
{
&
-header
{
&
-warning
{
background-color
:
$orange-100
;
}
&
-failed
{
background-color
:
$red-100
;
}
}
&
-body
{
height
:
120px
;
&
-warning
{
background-color
:
$orange-50
;
}
&
-failed
{
background-color
:
$red-50
;
}
}
&
-time-ago
{
&
-icon
{
color
:
$gray-500
;
}
}
&
-footer
{
border-radius
:
$gl-padding
;
height
:
$gl-padding-32
;
&
-failed
{
background-color
:
$red-100
;
}
&
-arrow
{
color
:
$gray-300
;
}
&
-downstream
{
margin-right
:
-
$gl-padding-8
;
}
&
-extra
{
background-color
:
$gray-400
;
font-size
:
10px
;
line-height
:
$gl-line-height
;
width
:
$gl-padding
;
}
}
&
-skeleton-info
{
border-radius
:
$gl-padding
;
height
:
$gl-padding
;
overflow
:
hidden
;
&
:
:
after
{
content
:
' '
;
display
:
block
;
animation
:
blockTextShine
1s
linear
infinite
forwards
;
background-repeat
:
no-repeat
;
background-size
:
cover
;
background-image
:
linear-gradient
(
to
right
,
$gray-100
0%
,
$gray-50
20%
,
$gray-100
40%
,
$gray-100
100%
);
border-radius
:
$gl-padding
;
height
:
$gl-padding
;
margin-top
:
-
$gl-padding-8
;
}
}
}
doc/development/fe_guide/vuex.md
View file @
9e795fd9
...
...
@@ -52,7 +52,7 @@ The first thing you should do before writing any code is to design the state.
Often we need to provide data from haml to our Vue application. Let's store it in the state for better access.
```
javascript
export
default
{
export
default
()
=>
(
{
endpoint
:
null
,
isLoading
:
false
,
...
...
@@ -62,7 +62,7 @@ Often we need to provide data from haml to our Vue application. Let's store it i
errorAddingUser
:
false
,
users
:
[],
};
}
)
;
```
#### Access `state` properties
...
...
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