39e6375aff
The Extensions app code is now independent enough from the rest of the code base to move it to its own subprojects, like we did for the extensions-tool. This allows for stand-alone builds of the app, which we are about to use for distributing it as flatpak. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1133
12 lines
260 B
CSS
12 lines
260 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.warning { color: @warning_color; }
|