@nextcloud/vue
Version:
Nextcloud vue components
413 lines • 11.1 kB
CSS
/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
* Ensure proper alignment of the vue material icons
*/
.material-design-icon[data-v-b293f5d9] {
display: flex;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.widget-custom[data-v-b293f5d9] {
width: 100%;
margin: auto;
margin-bottom: calc(var(--default-grid-baseline, 4px) * 3);
margin-top: calc(var(--default-grid-baseline, 4px) * 3);
overflow: hidden;
border: 2px solid var(--color-border);
border-radius: var(--border-radius-large);
background-color: transparent;
display: flex;
}
.widget-custom.full-width[data-v-b293f5d9] {
width: var(--widget-full-width, 100%) ;
left: calc((var(--widget-full-width, 100%) - 100%) / 2 * -1);
position: relative;
}
.widget-access[data-v-b293f5d9] {
width: 100%;
margin: auto;
margin-bottom: calc(var(--default-grid-baseline, 4px) * 3);
margin-top: calc(var(--default-grid-baseline, 4px) * 3);
overflow: hidden;
border: 2px solid var(--color-border);
border-radius: var(--border-radius-large);
background-color: transparent;
display: flex;
padding: calc(var(--default-grid-baseline, 4px) * 3);
}
.widget-default[data-v-b293f5d9] {
width: 100%;
margin: auto;
margin-bottom: calc(var(--default-grid-baseline, 4px) * 3);
margin-top: calc(var(--default-grid-baseline, 4px) * 3);
overflow: hidden;
border: 2px solid var(--color-border);
border-radius: var(--border-radius-large);
background-color: transparent;
display: flex;
}
.widget-default--compact[data-v-b293f5d9] {
flex-direction: column;
}
.widget-default--compact .widget-default--image[data-v-b293f5d9] {
width: 100%;
height: 150px;
}
.widget-default--compact .widget-default--details[data-v-b293f5d9] {
width: 100%;
padding-top: calc(var(--default-grid-baseline, 4px) * 2);
padding-bottom: calc(var(--default-grid-baseline, 4px) * 2);
}
.widget-default--compact .widget-default--description[data-v-b293f5d9] {
display: none;
}
.widget-default--image[data-v-b293f5d9] {
width: 40%;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.widget-default--name[data-v-b293f5d9] {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: bold;
}
.widget-default--details[data-v-b293f5d9] {
padding: calc(var(--default-grid-baseline, 4px) * 3);
width: 60%;
}
.widget-default--details p[data-v-b293f5d9] {
margin: 0;
padding: 0;
}
.widget-default--description[data-v-b293f5d9] {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
}
.widget-default--link[data-v-b293f5d9] {
color: var(--color-text-maxcontrast);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.toggle-interactive[data-v-b293f5d9] {
position: relative;
}
.toggle-interactive .toggle-interactive--button[data-v-b293f5d9] {
position: absolute;
top: 50%;
z-index: 10000;
left: 50%;
transform: translateX(-50%) translateY(-50%);
opacity: 0;
}
.toggle-interactive:focus-within .toggle-interactive--button[data-v-b293f5d9], .toggle-interactive:hover .toggle-interactive--button[data-v-b293f5d9] {
opacity: 1;
}/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
* Ensure proper alignment of the vue material icons
*/
.material-design-icon[data-v-de9850e4] {
display: flex;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
* Ensure proper alignment of the vue material icons
*/
.material-design-icon[data-v-e54e09d6] {
display: flex;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.provider-list[data-v-e54e09d6] {
width: 100%;
min-height: 400px;
padding: 0 16px 16px 16px;
display: flex;
flex-direction: column;
}
.provider-list--select[data-v-e54e09d6] {
width: 100%;
}
.provider-list--select .provider[data-v-e54e09d6] {
display: flex;
align-items: center;
height: 28px;
overflow: hidden;
}
.provider-list--select .provider .link-icon[data-v-e54e09d6] {
margin-right: 8px;
}
.provider-list--select .provider .provider-icon[data-v-e54e09d6] {
width: 20px;
height: 20px;
object-fit: contain;
margin-right: 8px;
filter: var(--background-invert-if-dark);
}
.provider-list--select .provider .option-text[data-v-e54e09d6] {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
* Ensure proper alignment of the vue material icons
*/
.material-design-icon[data-v-3c1803b5] {
display: flex;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.raw-link[data-v-3c1803b5] {
width: 100%;
min-height: 350px;
display: flex;
flex-direction: column;
overflow-y: auto;
padding: 0 16px 16px 16px;
}
.raw-link .input-wrapper[data-v-3c1803b5] {
width: 100%;
}
.raw-link .reference-widget[data-v-3c1803b5] {
display: flex;
}
.raw-link--empty-content .provider-icon[data-v-3c1803b5] {
width: 150px;
height: 150px;
object-fit: contain;
filter: var(--background-invert-if-dark);
}
.raw-link--input[data-v-3c1803b5] {
width: 99%;
}/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
* Ensure proper alignment of the vue material icons
*/
.material-design-icon[data-v-8571023b] {
display: flex;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.result[data-v-8571023b] {
display: flex;
align-items: center;
height: var(--default-clickable-area);
overflow: hidden;
}
.result--icon-class[data-v-8571023b], .result--image[data-v-8571023b] {
width: 40px;
min-width: 40px;
height: 40px;
object-fit: contain;
}
.result--icon-class.rounded[data-v-8571023b], .result--image.rounded[data-v-8571023b] {
border-radius: 50%;
}
.result--content[data-v-8571023b] {
display: flex;
flex-direction: column;
padding-left: 10px;
overflow: hidden;
}
.result--content--name[data-v-8571023b], .result--content--subline[data-v-8571023b] {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
* Ensure proper alignment of the vue material icons
*/
.material-design-icon[data-v-05fef988] {
display: flex;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.smart-picker-search[data-v-05fef988] {
width: 100%;
display: flex;
flex-direction: column;
padding: 0 16px 16px 16px;
}
.smart-picker-search.with-empty-content[data-v-05fef988] {
min-height: 400px;
}
.smart-picker-search .provider-icon[data-v-05fef988] {
width: 150px;
height: 150px;
object-fit: contain;
filter: var(--background-invert-if-dark);
}
.smart-picker-search--select[data-v-05fef988] {
width: 100%;
}
.smart-picker-search--select .search-result[data-v-05fef988] {
width: 100%;
}
.smart-picker-search--select .group-name-icon[data-v-05fef988],
.smart-picker-search--select .option-simple-icon[data-v-05fef988] {
width: 20px;
height: 20px;
margin: 0 20px 0 10px;
}
.smart-picker-search--select .custom-option[data-v-05fef988] {
height: var(--default-clickable-area);
display: flex;
align-items: center;
overflow: hidden;
}
.smart-picker-search--select .option-text[data-v-05fef988] {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
* Ensure proper alignment of the vue material icons
*/
.material-design-icon[data-v-f3f0de17] {
display: flex;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.reference-picker[data-v-f3f0de17] {
display: flex;
overflow-y: auto;
width: 100%;
}
.reference-picker .custom-element-wrapper[data-v-f3f0de17] {
display: flex;
overflow-y: auto;
width: 100%;
}/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
* Ensure proper alignment of the vue material icons
*/
.material-design-icon {
display: flex;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.reference-picker-modal .modal-container {
display: flex ;
}/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
* Ensure proper alignment of the vue material icons
*/
.material-design-icon[data-v-19d3f57d] {
display: flex;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
.reference-picker-modal--content[data-v-19d3f57d] {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow-y: auto;
}
.reference-picker-modal--content .close-button[data-v-19d3f57d],
.reference-picker-modal--content .back-button[data-v-19d3f57d] {
position: absolute;
top: 4px;
}
.reference-picker-modal--content .back-button[data-v-19d3f57d] {
left: 4px;
}
.reference-picker-modal--content .close-button[data-v-19d3f57d] {
right: 4px;
}
.reference-picker-modal--content > h2[data-v-19d3f57d] {
display: flex;
margin: 12px 0 20px 0;
}
.reference-picker-modal--content > h2 .icon[data-v-19d3f57d] {
margin-right: 8px;
}