@appscode/design-system 2.6.25 → 2.6.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "2.6.25",
3
+ "version": "2.6.26",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -41,7 +41,15 @@
41
41
  border-bottom: 1px solid $color-border;
42
42
 
43
43
  &.is-unread {
44
+ background-color: $secondary-light-gray;
45
+ }
46
+ &.is-active {
44
47
  background-color: $primary-light-gray;
48
+ border: 1px solid $ac-primary;
49
+
50
+ h6 {
51
+ color: $ac-primary;
52
+ }
45
53
  }
46
54
  &:hover {
47
55
  background-color: hsla(var(--secondary-hue), 12%, 95%);
@@ -136,3 +144,15 @@ body:has(.message-details) {
136
144
  max-height: 300px;
137
145
  }
138
146
  }
147
+
148
+ // transition css
149
+ /* we will explain what these classes do next! */
150
+ .v-enter-active,
151
+ .v-leave-active {
152
+ transition: opacity 0.5s ease;
153
+ }
154
+
155
+ .v-enter-from,
156
+ .v-leave-to {
157
+ opacity: 0;
158
+ }