Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--css/icons.scss9
-rw-r--r--src/components/TopBar/TopBar.vue4
2 files changed, 8 insertions, 5 deletions
diff --git a/css/icons.scss b/css/icons.scss
index 9f308b92a..8740330e5 100644
--- a/css/icons.scss
+++ b/css/icons.scss
@@ -50,6 +50,12 @@
&.icon-fullscreen {
background-image: url(icon-color-path('fullscreen', 'actions', 'fff', 1, true));
}
+ &.icon-promoted-view {
+ background-image: url(icon-color-path('promoted-view', 'spreed', 'fff', 1));
+ }
+ &.icon-grid-view {
+ background-image: url(icon-color-path('toggle-pictures', 'actions', 'fff', 1, true));
+ }
&.icon-audio {
background-image: url(icon-color-path('audio', 'actions', 'fff', 1, true));
}
@@ -68,9 +74,6 @@
&.icon-screen-off {
background-image: url(icon-color-path('screen-off', 'actions', 'fff', 1, true));
}
- &.icon-promoted-view{
- background-image: url(icon-color-path('promoted-view', 'actions', 'fff', 1, true));
- }
}
.icon-favorite {
diff --git a/src/components/TopBar/TopBar.vue b/src/components/TopBar/TopBar.vue
index b2df31d06..774a8bc85 100644
--- a/src/components/TopBar/TopBar.vue
+++ b/src/components/TopBar/TopBar.vue
@@ -146,9 +146,9 @@ export default {
},
changeViewIconClass() {
if (this.isGrid) {
- return 'icon-promoted-view-white'
+ return 'forced-white icon-promoted-view'
} else {
- return 'icon-toggle-pictures-white'
+ return 'forced-white icon-grid-view'
}
},