Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
scc-net
netvs
netvs-core
Commits
effebcce
Commit
effebcce
authored
Jan 28, 2021
by
Janis Streib
🦉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ADD: fade-in for transaction elements
parent
d1dd3bf7
Pipeline
#130284
passed with stages
in 4 minutes and 27 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
frontend/src/assets/css/net-suite.css
frontend/src/assets/css/net-suite.css
+10
-0
frontend/src/components/TransactionList.vue
frontend/src/components/TransactionList.vue
+1
-1
No files found.
frontend/src/assets/css/net-suite.css
View file @
effebcce
...
...
@@ -292,3 +292,13 @@ table.collapse.in {
.bg-prod
{
background
:
#f8f9fa
;
}
.fade-in
{
animation
:
fadein
.5s
;
}
@keyframes
fadein
{
from
{
opacity
:
0
;
}
to
{
opacity
:
1
;
}
}
frontend/src/components/TransactionList.vue
View file @
effebcce
...
...
@@ -27,7 +27,7 @@
<Draggable
v-else
@
change=
"drag_change"
:value=
"$store.state.ta_list"
@
start=
"drag=true"
@
end=
"drag=false"
handle=
".handle"
>
<b-card
v-for=
"(element, index) in $store.state.ta_list"
:key=
"element.id"
:border-variant=
"function2variant(element.object_function)"
class=
"mb-3 shadow"
no-body
>
:border-variant=
"function2variant(element.object_function)"
class=
"mb-3 shadow
fade-in
"
no-body
>
<div
class=
"element-number handle"
:class=
"`badge badge-$
{function2variant(element.object_function)}`">
{{
index
+
1
}}
...
...
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