Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 77b49ea

Browse files
committed
GH-202: Add insertion anomalies transitions
1 parent b4a4e30 commit 77b49ea

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

src/_static/scss/presentation-normalization.scss

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,37 @@
3939
}
4040
}
4141

42+
#insertion-anomalies.future {
43+
.invalid-data {
44+
opacity: 0.0;
45+
}
46+
}
47+
48+
#insertion-anomalies.present {
49+
.invalid-data {
50+
border: 1px solid $invalid-data;
51+
opacity: 1.0;
52+
transition: $transition;
53+
transition-delay: $transition-delay + $transition;
54+
}
55+
56+
.lost-data {
57+
color: $lost-data;
58+
transition: $transition;
59+
transition-delay: $transition-delay + $transition;
60+
}
61+
}
62+
63+
#insertion-anomalies.past {
64+
.invalid-data {
65+
border: 1px solid $invalid-data;
66+
}
67+
68+
.lost-data {
69+
color: $lost-data;
70+
}
71+
}
72+
4273
#update-anomalies.present {
4374
span.fade-out {
4475
opacity: 0.0;

0 commit comments

Comments
 (0)