9cad7ae975
Currently there is no indication that an extension had an error except for the sensitivity of the switch (which may have a different cause). This is useful information to users, so add a small error indicator alongside the updates icon and show the actual error in the details. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2337
13 lines
297 B
CSS
13 lines
297 B
CSS
.details-button image {
|
|
transition: 250ms;
|
|
}
|
|
.details-button.expanded:dir(ltr) image {
|
|
-gtk-icon-transform: rotate(0.25turn);
|
|
}
|
|
.details-button.expanded:dir(rtl) image {
|
|
-gtk-icon-transform: rotate(-0.25turn);
|
|
}
|
|
|
|
image.error { color: @error_color; }
|
|
image.warning { color: @warning_color; }
|