blob: 3a6690f40f16007dcfd2e203b5121c095e38f179 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
// Only when rendered inline, when not enough space, this is put in the menu
.action-items > .files-list__row-action-sharing-status {
// put icon at the end of the button
direction: rtl;
// align icons with text-less inline actions
padding-inline-end: 0 !important;
}
svg.sharing-status__avatar {
height: 32px !important;
width: 32px !important;
max-height: 32px !important;
max-width: 32px !important;
border-radius: 32px;
overflow: hidden;
}
.files-list__row-action-sharing-status {
.button-vue__text {
color: var(--color-primary-element);
}
.button-vue__icon {
color: var(--color-primary-element);
}
}
|