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

github.com/nextcloud/deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-05-11 22:39:54 +0300
committerJulius Härtl <jus@bitgrid.net>2022-07-22 12:39:16 +0300
commit9de6a61ea5c1c0394c3f12644111d1eec06edce9 (patch)
tree0a69863980cb4808cc71319969095e03c8a267c0 /css
parentcb27f36f66bda761ed198835d1982d9585ee6c88 (diff)
Move to vue-material-design-iconsbugfix/noid/icon-css
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'css')
-rw-r--r--css/deck.css9
-rw-r--r--css/globalstyles.scss28
-rw-r--r--css/icons.scss41
3 files changed, 9 insertions, 69 deletions
diff --git a/css/deck.css b/css/deck.css
index b1a48d88..601eb98f 100644
--- a/css/deck.css
+++ b/css/deck.css
@@ -5,3 +5,12 @@
.icon-deck-white, .icon-deck.icon-white {
background-image: url(../img/deck.svg);
}
+
+body[data-theme-dark] .icon-deck {
+ background-image: url(../img/deck.svg);
+}
+
+body[data-theme-dark] .icon-deck-white,
+body[data-theme-dark] .icon-deck.icon-white {
+ background-image: url(../img/deck-dark.svg);
+}
diff --git a/css/globalstyles.scss b/css/globalstyles.scss
deleted file mode 100644
index 9fd0a5d9..00000000
--- a/css/globalstyles.scss
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * @copyright Copyright (c) 2016 Julius Härtl <jus@bitgrid.net>
- *
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Artem Anufrij <artem.anufrij@live.de>
- * @author Marin Treselj <marin@pixelipo.com>
- * @author Oskar Kurz <oskar.kurz@gmail.com>
- * @author Ryan Fletcher <ryan.fletcher@codepassion.ca>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-@import 'icons';
-@import 'print';
diff --git a/css/icons.scss b/css/icons.scss
deleted file mode 100644
index 6f2f3516..00000000
--- a/css/icons.scss
+++ /dev/null
@@ -1,41 +0,0 @@
-/**
- * Custom icons
- */
-@include icon-black-white('deck', 'deck', 1);
-@include icon-black-white('archive', 'deck', 1);
-@include icon-black-white('circles', 'deck', 1);
-@include icon-black-white('clone', 'deck', 1);
-@include icon-black-white('filter', 'deck', 1);
-@include icon-black-white('filter_set', 'deck', 1);
-@include icon-black-white('attach', 'deck', 1);
-@include icon-black-white('reply', 'deck', 1);
-@include icon-black-white('notifications-dark', 'deck', 1);
-@include icon-black-white('description', 'deck', 1);
-
-.icon-toggle-compact-collapsed {
- @include icon-color('toggle-view-expand', 'deck', $color-black);
-}
-
-.icon-toggle-compact-expanded {
- @include icon-color('toggle-view-collapse', 'deck', $color-black);
-}
-.icon-activity {
- @include icon-color('activity-dark', 'activity', $color-black);
-}
-.icon-comment--unread {
- @include icon-color('comment', 'actions', $color-primary, 1, true);
-}
-
-.avatardiv.circles {
- background: var(--color-primary);
-}
-
-.icon-circles {
- opacity: 1;
- background-size: 20px;
- background-position: center center;
-}
-
-.icon-colorpicker {
- background-image: url('../img/color_picker.svg');
-}