2017-01-11 16:16:05 +03:00
|
|
|
/**
|
2018-06-29 17:10:53 +03:00
|
|
|
* @copyright Copyright (c) 2018, John Molakvoæ (skjnldsv@protonmail.com)
|
|
|
|
*
|
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
* @author Vincent Chan <plus.vincchan@gmail.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Hendrik Leppelsack <hendrik@leppelsack.de>
|
|
|
|
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
|
2017-01-11 16:16:05 +03:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
2018-06-29 17:10:53 +03:00
|
|
|
* 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/>.
|
|
|
|
*
|
2017-01-11 16:16:05 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* GLOBAL ------------------------------------------------------------------- */
|
2016-12-22 13:17:06 +03:00
|
|
|
[class^='icon-'], [class*=' icon-'] {
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
min-width: 16px;
|
|
|
|
min-height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-breadcrumb {
|
|
|
|
background-image: url('../img/breadcrumb.svg?v=1');
|
|
|
|
}
|
|
|
|
|
2017-01-11 16:16:05 +03:00
|
|
|
/* LOADING ------------------------------------------------------------------ */
|
2018-06-14 10:25:19 +03:00
|
|
|
.loading,
|
|
|
|
.loading-small,
|
|
|
|
.icon-loading,
|
|
|
|
.icon-loading-dark,
|
|
|
|
.icon-loading-small,
|
|
|
|
.icon-loading-small-dark {
|
2016-12-22 13:17:06 +03:00
|
|
|
position: relative;
|
2017-01-11 16:12:39 +03:00
|
|
|
&:after {
|
|
|
|
z-index: 2;
|
|
|
|
content: '';
|
2017-09-14 12:07:51 +03:00
|
|
|
height: 28px;
|
|
|
|
width: 28px;
|
2017-01-11 16:12:39 +03:00
|
|
|
margin: -16px 0 0 -16px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
border-radius: 100%;
|
|
|
|
-webkit-animation: rotate .8s infinite linear;
|
|
|
|
animation: rotate .8s infinite linear;
|
|
|
|
-webkit-transform-origin: center;
|
|
|
|
-ms-transform-origin: center;
|
|
|
|
transform-origin: center;
|
2018-06-14 10:25:19 +03:00
|
|
|
border: 2px solid var(--color-loading-light);
|
|
|
|
border-top-color: var(--color-loading-dark);
|
2017-01-11 16:12:39 +03:00
|
|
|
}
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2017-01-11 16:12:39 +03:00
|
|
|
.icon-loading-dark:after,
|
|
|
|
.icon-loading-small-dark:after {
|
2018-06-14 10:25:19 +03:00
|
|
|
border: 2px solid var(--color-loading-dark);
|
|
|
|
border-top-color: var(--color-loading-light);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2017-01-11 16:12:39 +03:00
|
|
|
.icon-loading-small:after,
|
|
|
|
.icon-loading-small-dark:after {
|
2017-09-14 12:07:51 +03:00
|
|
|
height: 12px;
|
|
|
|
width: 12px;
|
2016-12-22 13:17:06 +03:00
|
|
|
margin: -8px 0 0 -8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Css replaced elements don't have ::after nor ::before */
|
2020-02-27 12:35:54 +03:00
|
|
|
audio, canvas, embed, iframe, img, input, object, video {
|
2020-02-27 12:25:58 +03:00
|
|
|
&.icon-loading {
|
2017-01-11 16:12:39 +03:00
|
|
|
background-image: url('../img/loading.gif');
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
2020-02-27 12:25:58 +03:00
|
|
|
&.icon-loading-dark {
|
2017-01-11 16:12:39 +03:00
|
|
|
background-image: url('../img/loading-dark.gif');
|
|
|
|
}
|
2020-02-27 12:25:58 +03:00
|
|
|
&.icon-loading-small {
|
2017-01-11 16:12:39 +03:00
|
|
|
background-image: url('../img/loading-small.gif');
|
|
|
|
}
|
2020-02-27 12:25:58 +03:00
|
|
|
&.icon-loading-small-dark {
|
2017-01-11 16:12:39 +03:00
|
|
|
background-image: url('../img/loading-small-dark.gif');
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotate {
|
|
|
|
from {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-32 {
|
|
|
|
background-size: 32px !important;
|
|
|
|
}
|
|
|
|
|
2017-11-28 12:56:28 +03:00
|
|
|
.icon-white {
|
2017-11-30 20:26:26 +03:00
|
|
|
&.icon-shadow {
|
2018-07-20 13:49:16 +03:00
|
|
|
filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
|
2017-12-05 00:39:06 +03:00
|
|
|
}
|
2017-11-22 16:16:39 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
/* ICONS -------------------------------------------------------------------
|
|
|
|
* These icon classes are generated automatically with the following pattern
|
|
|
|
* for icon-black-white('close', ...)
|
|
|
|
* .icon-close (black icon)
|
|
|
|
* .icon-close-white (white icon)
|
|
|
|
* .icon-close.icon-white (white icon)
|
2019-06-18 18:59:00 +03:00
|
|
|
*
|
2018-07-20 18:44:35 +03:00
|
|
|
* Some class definitions are kept as before, since they don't follow the pattern
|
|
|
|
* or have some additional styling like drop shadows
|
|
|
|
*/
|
2017-10-31 23:37:13 +03:00
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('add', 'actions', 1, true);
|
|
|
|
@include icon-black-white('address', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('audio', 'actions', 2, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-audio-white {
|
2018-06-29 17:10:53 +03:00
|
|
|
filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('audio-off', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-audio-off-white {
|
2018-06-29 17:10:53 +03:00
|
|
|
filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-06-29 17:10:53 +03:00
|
|
|
.icon-caret-white,
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-caret {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('caret', 'actions', $color-white, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-caret-dark {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('caret', 'actions', $color-black, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('checkmark', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-checkmark-color {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('checkmark', 'actions', $color-success, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('clippy', 'actions', 2, true);
|
|
|
|
@include icon-black-white('close', 'actions', 1, true);
|
|
|
|
@include icon-black-white('comment', 'actions', 1, true);
|
|
|
|
@include icon-black-white('confirm', 'actions', 2, true);
|
|
|
|
@include icon-black-white('download', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
|
2018-03-06 12:21:35 +03:00
|
|
|
.icon-confirm-fade {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('confirm-fade', 'actions', $color-black, 2, true);
|
2018-03-06 12:21:35 +03:00
|
|
|
}
|
|
|
|
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-delete {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('delete', 'actions', $color-black, 1, true);
|
2019-10-05 10:53:07 +03:00
|
|
|
&.no-permission,
|
|
|
|
&.no-hover {
|
2018-06-14 10:25:19 +03:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('delete', 'actions', $color-black, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
}
|
2018-06-14 10:25:19 +03:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('delete', 'actions', $color-error, 1, true);
|
2017-11-28 12:56:28 +03:00
|
|
|
filter: initial;
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
2018-07-20 18:44:35 +03:00
|
|
|
|
|
|
|
&.icon-white {
|
|
|
|
@include icon-color('delete', 'actions', $color-white, 1, true);
|
|
|
|
}
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-delete-white {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('delete', 'actions', $color-white, 1, true);
|
2017-01-11 16:16:05 +03:00
|
|
|
&.no-permission {
|
2018-06-14 10:25:19 +03:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('delete', 'actions', $color-white, 1, true);
|
2017-01-11 16:16:05 +03:00
|
|
|
}
|
|
|
|
}
|
2018-06-14 10:25:19 +03:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('delete', 'actions', $color-error, 1, true);
|
2017-01-11 16:16:05 +03:00
|
|
|
}
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('details', 'actions', 1, true);
|
|
|
|
@include icon-black-white('edit', 'actions', 1, true);
|
|
|
|
@include icon-black-white('error', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
|
|
|
|
.icon-error-color {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('error', 'actions', $color-error, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('external', 'actions', 1, true);
|
|
|
|
@include icon-black-white('fullscreen', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
|
|
|
|
.icon-fullscreen-white {
|
2018-06-29 17:10:53 +03:00
|
|
|
filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-09-28 13:07:04 +03:00
|
|
|
@include icon-black-white('history', 'actions', 2, true);
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('info', 'actions', 1, true);
|
|
|
|
@include icon-black-white('logout', 'actions', 1, true);
|
|
|
|
@include icon-black-white('mail', 'actions', 1, true);
|
|
|
|
@include icon-black-white('menu', 'actions', 1, true);
|
2019-06-18 18:59:00 +03:00
|
|
|
@include icon-black-white('menu-sidebar', 'actions', 1, true);
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('more', 'actions', 1, true);
|
|
|
|
@include icon-black-white('password', 'actions', 1, true);
|
|
|
|
@include icon-black-white('pause', 'actions', 1, true);
|
|
|
|
@include icon-black-white('play', 'actions', 1, true);
|
|
|
|
@include icon-black-white('play-add', 'actions', 1, true);
|
|
|
|
@include icon-black-white('play-next', 'actions', 1, true);
|
|
|
|
@include icon-black-white('play-previous', 'actions', 1, true);
|
2019-04-08 13:51:46 +03:00
|
|
|
@include icon-black-white('projects', 'actions', 1, true);
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('public', 'actions', 1, true);
|
|
|
|
@include icon-black-white('quota', 'actions', 1, true);
|
|
|
|
@include icon-black-white('rename', 'actions', 1, true);
|
|
|
|
@include icon-black-white('screen', 'actions', 1, true);
|
2017-02-14 22:58:49 +03:00
|
|
|
|
|
|
|
.icon-screen-white {
|
2018-06-29 17:10:53 +03:00
|
|
|
filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
|
2017-02-14 22:58:49 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('screen-off', 'actions', 1, true);
|
2017-02-14 22:58:49 +03:00
|
|
|
.icon-screen-off-white {
|
2018-06-29 17:10:53 +03:00
|
|
|
filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
|
2017-02-14 22:58:49 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('search', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
|
2018-06-29 17:10:53 +03:00
|
|
|
/* default icon have a .5 opacity */
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-settings {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('settings', 'actions', $color-black, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2017-03-26 18:57:05 +03:00
|
|
|
.icon-settings-dark {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('settings-dark', 'actions', $color-black, 1, true);
|
2017-03-26 18:57:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-settings-white {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('settings-dark', 'actions', $color-white, 1, true);
|
2017-03-26 18:57:05 +03:00
|
|
|
}
|
|
|
|
|
2017-04-12 16:04:12 +03:00
|
|
|
/* always use icon-shared, AdBlock blocks icon-share */
|
|
|
|
.icon-shared,
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-share {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('share', 'actions', $color-black, 1, true);
|
2018-07-20 18:44:35 +03:00
|
|
|
&.icon-white {
|
|
|
|
@include icon-color('share', 'actions', $color-white, 1, true);
|
|
|
|
}
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
2018-07-20 18:44:35 +03:00
|
|
|
.icon-shared-white,
|
|
|
|
.icon-share-white {
|
|
|
|
@include icon-color('share', 'actions', $color-white, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('sound', 'actions', 1, true);
|
|
|
|
@include icon-black-white('sound-off', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
|
|
|
|
.icon-favorite {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('star-dark', 'actions', $color-black, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('star', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
|
2017-10-30 20:17:59 +03:00
|
|
|
.icon-star-dark {
|
2018-07-18 20:05:32 +03:00
|
|
|
@include icon-color('star', 'actions', $color-black, 1, true);
|
2017-10-30 20:17:59 +03:00
|
|
|
}
|
|
|
|
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-starred {
|
2018-06-14 10:25:19 +03:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('star', 'actions', $color-black, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
2018-12-07 20:33:05 +03:00
|
|
|
@include icon-color('star-dark', 'actions', $color-yellow, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-star {
|
2018-06-14 10:25:19 +03:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-12-07 20:33:05 +03:00
|
|
|
@include icon-color('star-dark', 'actions', $color-yellow, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-25 18:31:46 +03:00
|
|
|
@include icon-black-white('tag', 'actions', 2, true);
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('timezone', 'actions', 1, true);
|
|
|
|
@include icon-black-white('toggle', 'actions', 1, true);
|
|
|
|
@include icon-black-white('toggle-background', 'actions', 1, true);
|
|
|
|
@include icon-black-white('toggle-pictures', 'actions', 1, true);
|
2018-10-04 16:14:15 +03:00
|
|
|
@include icon-black-white('toggle-filelist', 'actions', 1, true);
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('triangle-e', 'actions', 1, true);
|
|
|
|
@include icon-black-white('triangle-n', 'actions', 1, true);
|
|
|
|
@include icon-black-white('triangle-s', 'actions', 1, true);
|
|
|
|
@include icon-black-white('upload', 'actions', 1, true);
|
|
|
|
@include icon-black-white('user', 'actions', 1, true);
|
2018-07-24 19:48:25 +03:00
|
|
|
@include icon-black-white('group', 'actions', 1, true);
|
2020-08-05 15:42:08 +03:00
|
|
|
@include icon-black-white('filter', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('video', 'actions', 2, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-video-white {
|
2018-06-29 17:10:53 +03:00
|
|
|
filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('video-off', 'actions', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-video-off-white {
|
2018-06-29 17:10:53 +03:00
|
|
|
filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('video-switch', 'actions', 1, true);
|
2019-01-24 14:08:43 +03:00
|
|
|
|
|
|
|
/* SHADOW WHITE ICONS: white version only ----------------------------------- */
|
|
|
|
.icon-view-close,
|
|
|
|
.icon-view-close-white {
|
|
|
|
@include icon-color('view-close', 'actions', $color-white, 1, true);
|
|
|
|
}
|
|
|
|
.icon-view-download,
|
|
|
|
.icon-view-download-white {
|
|
|
|
@include icon-color('view-download', 'actions', $color-white, 1, true);
|
|
|
|
}
|
|
|
|
.icon-view-pause,
|
|
|
|
.icon-view-pause-white {
|
|
|
|
@include icon-color('view-pause', 'actions', $color-white, 1, true);
|
|
|
|
}
|
|
|
|
.icon-view-play,
|
|
|
|
.icon-view-play-white {
|
|
|
|
@include icon-color('view-play', 'actions', $color-white, 1, true);
|
|
|
|
}
|
2016-12-22 13:17:06 +03:00
|
|
|
|
|
|
|
.icon-view-next {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('arrow-right', 'actions', $color-black, 1, true);
|
2018-07-20 18:44:35 +03:00
|
|
|
&.icon-white {
|
|
|
|
@include icon-color('arrow-right', 'actions', $color-white, 1, true);
|
|
|
|
}
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.icon-view-previous {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('arrow-left', 'actions', $color-black, 1, true);
|
2018-07-20 18:44:35 +03:00
|
|
|
&.icon-white {
|
|
|
|
@include icon-color('arrow-left', 'actions', $color-white, 1, true);
|
|
|
|
}
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-06-22 10:48:00 +03:00
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('disabled-user', 'actions', 1, true);
|
|
|
|
@include icon-black-white('disabled-users', 'actions', 1, true);
|
|
|
|
@include icon-black-white('user-admin', 'actions', 1, true);
|
2018-06-22 10:48:00 +03:00
|
|
|
|
2017-01-11 16:16:05 +03:00
|
|
|
/* PLACES ------------------------------------------------------------------- */
|
2017-06-17 13:27:05 +03:00
|
|
|
.icon-calendar {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('calendar', 'places', $color-white, 1, true);
|
2017-06-17 13:27:05 +03:00
|
|
|
}
|
2017-11-28 12:56:28 +03:00
|
|
|
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-calendar-dark {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('calendar', 'places', $color-black, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2017-08-03 18:27:24 +03:00
|
|
|
.icon-contacts {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('contacts', 'places', $color-white, 1, true);
|
2017-08-03 18:27:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-contacts-dark {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('contacts', 'places', $color-black, 1, true);
|
2017-08-03 18:27:24 +03:00
|
|
|
}
|
|
|
|
|
2016-12-22 13:17:06 +03:00
|
|
|
.icon-files {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('files', 'places', $color-white, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-files-dark {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('files', 'places', $color-black, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2018-06-14 10:25:19 +03:00
|
|
|
.icon-file,
|
|
|
|
.icon-filetype-text {
|
2020-08-03 13:54:37 +03:00
|
|
|
@include icon-color('text', 'filetypes', #969696, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
2019-01-31 13:22:46 +03:00
|
|
|
.icon-filetype-file {
|
2020-08-03 13:54:37 +03:00
|
|
|
@include icon-color('file', 'filetypes', #969696, 1, true);
|
2019-01-31 13:22:46 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('folder', 'filetypes', 1, true);
|
2018-06-14 10:25:19 +03:00
|
|
|
.icon-filetype-folder {
|
2020-08-03 13:54:37 +03:00
|
|
|
@include icon-color('folder', 'filetypes', $color-primary, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-filetype-folder-drag-accept {
|
2020-08-03 13:54:37 +03:00
|
|
|
@include icon-color('folder-drag-accept', 'filetypes', $color-primary, 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('home', 'places', 1, true);
|
|
|
|
@include icon-black-white('link', 'places', 1, true);
|
|
|
|
@include icon-black-white('music', 'places', 1, true);
|
|
|
|
@include icon-black-white('picture', 'places', 1, true);
|
2016-12-22 13:17:06 +03:00
|
|
|
|
2017-09-23 19:12:59 +03:00
|
|
|
|
2018-01-09 16:21:27 +03:00
|
|
|
/* CLIENTS ------------------------------------------------------------------- */
|
|
|
|
|
2018-07-20 18:44:35 +03:00
|
|
|
@include icon-black-white('desktop', 'clients', 1, true);
|
|
|
|
@include icon-black-white('phone', 'clients', 1, true);
|
|
|
|
@include icon-black-white('tablet', 'clients', 1, true);
|
2018-01-09 16:21:27 +03:00
|
|
|
|
2017-09-23 19:12:59 +03:00
|
|
|
/* APP CATEGORIES ------------------------------------------------------------------- */
|
|
|
|
.icon-category-installed {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('user', 'actions', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
2017-10-03 15:56:41 +03:00
|
|
|
|
2017-09-23 19:12:59 +03:00
|
|
|
.icon-category-enabled {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('checkmark', 'actions', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
2017-10-03 15:56:41 +03:00
|
|
|
|
2017-09-23 19:12:59 +03:00
|
|
|
.icon-category-disabled {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('close', 'actions', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
2017-10-03 15:56:41 +03:00
|
|
|
|
2017-09-23 19:12:59 +03:00
|
|
|
.icon-category-app-bundles {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('bundles', 'categories', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
|
|
|
|
2017-10-03 15:56:41 +03:00
|
|
|
.icon-category-updates {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('download', 'actions', $color-black, 1, true);
|
2017-10-03 15:56:41 +03:00
|
|
|
}
|
|
|
|
|
2017-09-23 19:12:59 +03:00
|
|
|
.icon-category-files {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('files', 'categories', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-category-social {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('social', 'categories', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-category-office {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('office', 'categories', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-category-auth {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('auth', 'categories', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-category-monitoring {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('monitoring', 'categories', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-category-multimedia {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('multimedia', 'categories', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-category-organization {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('organization', 'categories', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-category-customization {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('customization', 'categories', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-category-integration {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('integration', 'categories', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-category-tools {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('settings-dark', 'actions', $color-black, 1, true);
|
2017-09-23 19:12:59 +03:00
|
|
|
}
|
2017-11-15 18:47:23 +03:00
|
|
|
|
|
|
|
.icon-category-games {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('games', 'categories', $color-black, 1, true);
|
2017-11-15 18:47:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-category-security {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('password', 'actions', $color-black, 1, true);
|
2017-11-15 18:47:23 +03:00
|
|
|
}
|
2018-05-24 08:18:44 +03:00
|
|
|
|
|
|
|
.icon-category-search {
|
2018-07-09 12:34:48 +03:00
|
|
|
@include icon-color('search', 'actions', $color-black, 1, true);
|
2018-05-24 08:18:44 +03:00
|
|
|
}
|
2018-07-03 14:23:22 +03:00
|
|
|
|
2019-12-19 14:55:59 +03:00
|
|
|
.icon-category-workflow {
|
|
|
|
@include icon-color('workflow', 'categories', $color-black, 1, true);
|
|
|
|
}
|
|
|
|
|
2020-09-07 11:17:54 +03:00
|
|
|
.icon-category-dashboard {
|
|
|
|
@include icon-color('dashboard', 'categories', $color-black, 1, true);
|
|
|
|
}
|
|
|
|
|
2018-10-18 13:37:54 +03:00
|
|
|
.icon-talk {
|
|
|
|
@include icon-color('app-dark', 'spreed', $color-black, 1);
|
|
|
|
}
|
2019-02-14 00:48:20 +03:00
|
|
|
|
|
|
|
.nav-icon-systemtagsfilter {
|
|
|
|
@include icon-color('tag', 'actions', $color-black, 1, true);
|
|
|
|
}
|