mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Merge pull request #49342 from nextcloud/chore/force-style-lint
This commit is contained in:
commit
fb75e2de78
161 changed files with 755 additions and 576 deletions
51
.github/workflows/lint-stylelint.yml
vendored
Normal file
51
.github/workflows/lint-stylelint.yml
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# This workflow is provided via the organization template repository
|
||||
#
|
||||
# https://github.com/nextcloud/.github
|
||||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
name: Lint stylelint
|
||||
|
||||
on: pull_request
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: lint-stylelint-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
name: stylelint
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
||||
|
||||
- name: Read package.json node and npm engines version
|
||||
uses: skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3
|
||||
id: versions
|
||||
with:
|
||||
fallbackNode: '^20'
|
||||
fallbackNpm: '^10'
|
||||
|
||||
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
|
||||
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
|
||||
with:
|
||||
node-version: ${{ steps.versions.outputs.nodeVersion }}
|
||||
|
||||
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
|
||||
run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}'
|
||||
|
||||
- name: Install dependencies
|
||||
env:
|
||||
CYPRESS_INSTALL_BINARY: 0
|
||||
run: npm ci
|
||||
|
||||
- name: Lint
|
||||
run: npm run stylelint
|
||||
|
|
@ -507,7 +507,6 @@ export default {
|
|||
.panel, .panels > div {
|
||||
// Ensure the maxcontrast color is set for the background
|
||||
--color-text-maxcontrast: var(--color-text-maxcontrast-background-blur, var(--color-main-text));
|
||||
|
||||
width: 320px;
|
||||
max-width: 100%;
|
||||
margin: 16px;
|
||||
|
|
@ -532,7 +531,8 @@ export default {
|
|||
padding: 16px;
|
||||
cursor: grab;
|
||||
|
||||
&, ::v-deep * {
|
||||
&,
|
||||
:deep(*) {
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
|
|
@ -618,11 +618,10 @@ export default {
|
|||
.button,
|
||||
.button-vue,
|
||||
.edit-panels,
|
||||
.statuses ::v-deep .action-item .action-item__menutoggle,
|
||||
.statuses ::v-deep .action-item.action-item--open .action-item__menutoggle {
|
||||
.statuses :deep(.action-item .action-item__menutoggle),
|
||||
.statuses :deep(.action-item.action-item--open .action-item__menutoggle) {
|
||||
// Ensure the maxcontrast color is set for the background
|
||||
--color-text-maxcontrast: var(--color-text-maxcontrast-background-blur, var(--color-main-text));
|
||||
|
||||
background-color: var(--color-main-background-blur);
|
||||
-webkit-backdrop-filter: var(--filter-background-blur);
|
||||
backdrop-filter: var(--filter-background-blur);
|
||||
|
|
|
|||
|
|
@ -117,6 +117,3 @@ export default {
|
|||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -261,7 +261,7 @@ export default {
|
|||
&__picker {
|
||||
flex: 1 auto;
|
||||
|
||||
::v-deep .native-datetime-picker--input {
|
||||
:deep(.native-datetime-picker--input) {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -139,30 +139,37 @@ export default {
|
|||
padding: 0 10px 0 10px;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
:deep(.availability-slots) {
|
||||
display: flex;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
:deep(.availability-slot) {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
:deep(.availability-slot-group) {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
:deep(.mx-input-wrapper) {
|
||||
width: 85px;
|
||||
}
|
||||
|
||||
:deep(.mx-datepicker) {
|
||||
width: 97px;
|
||||
}
|
||||
|
||||
:deep(.multiselect) {
|
||||
border: 1px solid var(--color-border-dark);
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.time-zone {
|
||||
padding-block: 32px 12px;
|
||||
padding-inline: 0 12px;
|
||||
|
|
@ -175,6 +182,7 @@ export default {
|
|||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.grid-table {
|
||||
display: grid;
|
||||
margin-bottom: 32px;
|
||||
|
|
@ -183,9 +191,11 @@ export default {
|
|||
grid-template-columns: min-content auto min-content;
|
||||
max-width: 500px;
|
||||
}
|
||||
|
||||
.button {
|
||||
align-self: flex-end;
|
||||
}
|
||||
|
||||
:deep(.label-weekday) {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
|
|
|
|||
|
|
@ -156,6 +156,7 @@ export default {
|
|||
* :deep(a) {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.settings-hint {
|
||||
margin-top: -.2em;
|
||||
margin-bottom: 1em;
|
||||
|
|
|
|||
|
|
@ -350,7 +350,6 @@ export default defineComponent({
|
|||
--icon-preview-size: 32px;
|
||||
|
||||
--fixed-block-start-position: var(--default-clickable-area);
|
||||
|
||||
overflow: auto;
|
||||
height: 100%;
|
||||
will-change: scroll-position;
|
||||
|
|
@ -453,7 +452,6 @@ export default defineComponent({
|
|||
display: flex;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
user-select: none;
|
||||
border-block-end: 1px solid var(--color-border);
|
||||
box-sizing: border-box;
|
||||
user-select: none;
|
||||
|
|
@ -764,7 +762,6 @@ tbody.files-list__tbody.files-list__tbody--grid {
|
|||
--row-width: calc(var(--icon-preview-size) + var(--item-padding) * 2);
|
||||
--row-height: calc(var(--icon-preview-size) + var(--name-height) + var(--mtime-height) + var(--item-padding) * 2);
|
||||
--checkbox-padding: 0px;
|
||||
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, var(--row-width));
|
||||
|
||||
|
|
@ -787,8 +784,8 @@ tbody.files-list__tbody.files-list__tbody--grid {
|
|||
.files-list__row-checkbox {
|
||||
position: absolute;
|
||||
z-index: 9;
|
||||
top: calc(var(--item-padding)/2);
|
||||
inset-inline-start: calc(var(--item-padding)/2);
|
||||
top: calc(var(--item-padding) / 2);
|
||||
inset-inline-start: calc(var(--item-padding) / 2);
|
||||
overflow: hidden;
|
||||
--checkbox-container-size: 44px;
|
||||
width: var(--checkbox-container-size);
|
||||
|
|
|
|||
|
|
@ -38,5 +38,3 @@ export default {
|
|||
},
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -198,7 +198,7 @@ export default {
|
|||
&__title {
|
||||
overflow: hidden;
|
||||
// also count preview border
|
||||
max-width: calc(var(--width) + 2*2px);
|
||||
max-width: calc(var(--width) + 2 * 2px);
|
||||
padding: var(--margin);
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
|
|
|
|||
|
|
@ -206,10 +206,12 @@ export default {
|
|||
.middle-align {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.new-owner-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
|
@ -229,6 +231,7 @@ p {
|
|||
max-width: 280px;
|
||||
}
|
||||
}
|
||||
|
||||
.transfer-select-row {
|
||||
span {
|
||||
margin-inline-end: 8px;
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ export const useFilesStore = function(...args) {
|
|||
*
|
||||
* @param service The service (files view)
|
||||
* @param path The path relative within the service
|
||||
* @returns Array of cached nodes within the path
|
||||
* @return Array of cached nodes within the path
|
||||
*/
|
||||
getNodesByPath(service: string, path?: string): Node[] {
|
||||
const pathsStore = usePathsStore()
|
||||
|
|
|
|||
|
|
@ -201,19 +201,15 @@ export default defineComponent({
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in
|
||||
.app-navigation::v-deep .app-navigation-entry-icon {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
.app-navigation {
|
||||
:deep(.app-navigation-entry.active .button-vue.icon-collapse:not(:hover)) {
|
||||
color: var(--color-primary-element-text);
|
||||
}
|
||||
|
||||
.app-navigation::v-deep .app-navigation-entry.active .button-vue.icon-collapse:not(:hover) {
|
||||
color: var(--color-primary-element-text);
|
||||
}
|
||||
|
||||
.app-navigation > ul.app-navigation__list {
|
||||
// Use flex gap value for more elegant spacing
|
||||
padding-bottom: var(--default-grid-baseline, 4px);
|
||||
> ul.app-navigation__list {
|
||||
// Use flex gap value for more elegant spacing
|
||||
padding-bottom: var(--default-grid-baseline, 4px);
|
||||
}
|
||||
}
|
||||
|
||||
.app-navigation-entry__settings {
|
||||
|
|
|
|||
|
|
@ -612,7 +612,7 @@ export default {
|
|||
}
|
||||
|
||||
.svg-icon {
|
||||
::v-deep svg {
|
||||
:deep(svg) {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
fill: currentColor;
|
||||
|
|
|
|||
|
|
@ -313,7 +313,7 @@ export default defineComponent({
|
|||
padding: calc(var(--margin) * 2) var(--margin);
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
background-image: linear-gradient(0, var(--gradient-main-background));
|
||||
background-image: linear-gradient(0deg, var(--gradient-main-background));
|
||||
|
||||
button, input[type='submit'] {
|
||||
height: 44px;
|
||||
|
|
@ -321,7 +321,7 @@ export default defineComponent({
|
|||
}
|
||||
|
||||
// Make sure we're relative for the loading emptycontent on top
|
||||
::v-deep .modal-container {
|
||||
:deep(.modal-container) {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*!
|
||||
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/#files_external{margin-bottom:0px}#externalStorage{margin:15px 0 20px 0}#externalStorage tr.externalStorageLoading>td{text-align:center}#externalStorage td>input:not(.applicableToAllUsers),#externalStorage td>select{width:100%}#externalStorage .popovermenu li>.menuitem{width:fit-content !important}#externalStorage td.status{display:table-cell;vertical-align:middle;width:43px}#externalStorage td.status>span{display:inline-block;height:28px;width:28px;vertical-align:text-bottom;border-radius:50%;cursor:pointer}#externalStorage td.mountPoint,#externalStorage td.backend,#externalStorage td.authentication,#externalStorage td.configuration{min-width:160px;width:15%}#externalStorage td>img{padding-top:7px;opacity:.5}#externalStorage td>img:hover{padding-top:7px;cursor:pointer;opacity:1}#addMountPoint>td{border:none}#addMountPoint>td.applicable{visibility:hidden}#addMountPoint>td.hidden{visibility:hidden}#externalStorage td{height:50px}#externalStorage td.mountOptionsToggle,#externalStorage td.remove,#externalStorage td.save{position:relative;padding:0 !important;width:44px}#externalStorage td.mountOptionsToggle [class^=icon-],#externalStorage td.mountOptionsToggle [class*=" icon-"],#externalStorage td.remove [class^=icon-],#externalStorage td.remove [class*=" icon-"],#externalStorage td.save [class^=icon-],#externalStorage td.save [class*=" icon-"]{width:44px;height:44px;margin:3px;opacity:.5;padding:14px;vertical-align:text-bottom;cursor:pointer}#externalStorage td.mountOptionsToggle [class^=icon-]:hover,#externalStorage td.mountOptionsToggle [class*=" icon-"]:hover,#externalStorage td.remove [class^=icon-]:hover,#externalStorage td.remove [class*=" icon-"]:hover,#externalStorage td.save [class^=icon-]:hover,#externalStorage td.save [class*=" icon-"]:hover{opacity:1}#selectBackend{margin-inline-start:-10px;width:150px}#externalStorage td.configuration,#externalStorage td.backend{white-space:normal}#externalStorage td.configuration>*{white-space:nowrap}#externalStorage td.configuration input.added{margin-inline-end:6px}#externalStorage label>input[type=checkbox]{margin-inline-end:3px}#externalStorage td.configuration label{width:100%;display:inline-flex;align-items:center}#externalStorage td.configuration input.disabled-success{background-color:rgba(134,255,110,.9)}#externalStorage td.applicable label{display:inline-flex;align-items:center}#externalStorage td.applicable div.chzn-container{position:relative;top:3px}#externalStorage .select2-container.applicableUsers{width:100% !important}#userMountingBackends{padding-inline-start:25px}.files-external-select2 .select2-results .select2-result-label{height:32px;padding:3px}.files-external-select2 .select2-results .select2-result-label>span{display:block;position:relative}.files-external-select2 .select2-results .select2-result-label .avatardiv{display:inline-block}.files-external-select2 .select2-results .select2-result-label .avatardiv+span{position:absolute;top:5px;margin-inline-start:10px}.files-external-select2 .select2-results .select2-result-label .avatardiv[data-type=group]+span{vertical-align:top;top:6px;position:absolute;max-width:80%;inset-inline-start:30px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#externalStorage .select2-container .select2-search-choice{display:flex}#externalStorage .select2-container .select2-search-choice .select2-search-choice-close{display:block;inset-inline-start:auto;position:relative;width:20px}#externalStorage .mountOptionsToggle .dropdown{width:auto}.nav-icon-external-storage{background-image:var(--icon-external-dark)}.global_credentials__personal{margin:10px auto;text-align:center;width:min(400px,100vw)}/*# sourceMappingURL=settings.css.map */
|
||||
*/#files_external{margin-bottom:0px}#externalStorage{margin:15px 0 20px 0}#externalStorage tr.externalStorageLoading>td{text-align:center}#externalStorage td{height:50px}#externalStorage td.mountOptionsToggle,#externalStorage td.remove,#externalStorage td.save{position:relative;padding:0 !important;width:44px}#externalStorage td.mountOptionsToggle [class^=icon-],#externalStorage td.mountOptionsToggle [class*=" icon-"],#externalStorage td.remove [class^=icon-],#externalStorage td.remove [class*=" icon-"],#externalStorage td.save [class^=icon-],#externalStorage td.save [class*=" icon-"]{width:44px;height:44px;margin:3px;opacity:.5;padding:14px;vertical-align:text-bottom;cursor:pointer}#externalStorage td.mountOptionsToggle [class^=icon-]:hover,#externalStorage td.mountOptionsToggle [class*=" icon-"]:hover,#externalStorage td.remove [class^=icon-]:hover,#externalStorage td.remove [class*=" icon-"]:hover,#externalStorage td.save [class^=icon-]:hover,#externalStorage td.save [class*=" icon-"]:hover{opacity:1}#externalStorage td.mountPoint,#externalStorage td.backend,#externalStorage td.authentication,#externalStorage td.configuration{min-width:160px;width:15%}#externalStorage td.status{display:table-cell;vertical-align:middle;width:43px}#externalStorage td.status>span{display:inline-block;height:28px;width:28px;vertical-align:text-bottom;border-radius:50%;cursor:pointer}#externalStorage td>input:not(.applicableToAllUsers),#externalStorage td>select{width:100%}#externalStorage td>img{padding-top:7px;opacity:.5}#externalStorage td>img:hover{cursor:pointer;opacity:1}#externalStorage .popovermenu li>.menuitem{width:fit-content !important}#addMountPoint>td{border:none}#addMountPoint>td.applicable{visibility:hidden}#addMountPoint>td.hidden{visibility:hidden}#selectBackend{margin-inline-start:-10px;width:150px}#externalStorage td.configuration,#externalStorage td.backend{white-space:normal}#externalStorage td.configuration>*{white-space:nowrap}#externalStorage td.configuration input.added{margin-inline-end:6px}#externalStorage label>input[type=checkbox]{margin-inline-end:3px}#externalStorage td.configuration label{width:100%;display:inline-flex;align-items:center}#externalStorage td.configuration input.disabled-success{background-color:rgba(134,255,110,.9)}#externalStorage td.applicable label{display:inline-flex;align-items:center}#externalStorage td.applicable div.chzn-container{position:relative;top:3px}#externalStorage .select2-container.applicableUsers{width:100% !important}#userMountingBackends{padding-inline-start:25px}.files-external-select2 .select2-results .select2-result-label{height:32px;padding:3px}.files-external-select2 .select2-results .select2-result-label>span{display:block;position:relative}.files-external-select2 .select2-results .select2-result-label .avatardiv{display:inline-block}.files-external-select2 .select2-results .select2-result-label .avatardiv+span{position:absolute;top:5px;margin-inline-start:10px}.files-external-select2 .select2-results .select2-result-label .avatardiv[data-type=group]+span{vertical-align:top;top:6px;position:absolute;max-width:80%;inset-inline-start:30px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#externalStorage .select2-container .select2-search-choice{display:flex}#externalStorage .select2-container .select2-search-choice .select2-search-choice-close{display:block;inset-inline-start:auto;position:relative;width:20px}#externalStorage .mountOptionsToggle .dropdown{width:auto}.nav-icon-external-storage{background-image:var(--icon-external-dark)}.global_credentials__personal{margin:10px auto;text-align:center;width:min(400px,100vw)}/*# sourceMappingURL=settings.css.map */
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["settings.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA,GAIA,gBACC,kBAGD,iBACC,qBAEA,8CACC,kBAKD,gFACC,WAIF,2CACI,6BAGJ,2BAEC,mBACA,sBAEA,WAGD,gCACC,qBACA,YACA,WACA,2BACA,kBACA,eAGA,gIACC,gBACA,UAGF,mDACA,uEACA,8BACA,+CACA,2CAEA,oBACC,YACA,2FAGC,kBACA,qBACA,WACA,yRAEC,WACA,YACA,WACA,WACA,aACA,2BACA,eACA,6TACC,UAMJ,eACC,0BACA,YAGD,8DAEC,mBAED,oCACC,mBAGD,8CACC,sBAGD,4CACC,sBAGD,wCACC,WACA,oBACA,mBAGD,yDACC,sCAGD,qCACC,oBACA,mBAGD,kDACC,kBACA,QAGD,oDACC,sBAGD,sBACC,0BAGD,+DACC,YACA,YAED,oEACC,cACA,kBAED,0EACC,qBAED,+EACC,kBACA,QACA,yBAED,gGACC,mBACA,QACA,kBACA,cACA,wBACA,uBACA,mBACA,gBAGD,2DACC,aACA,wFACC,cACA,wBACA,kBACA,WAIF,+CACC,WAGD,2BACC,2CAGD,8BACI,iBACA,kBACA","file":"settings.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["settings.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA,GAIA,gBACC,kBAGD,iBACC,qBAEA,8CACC,kBAGD,oBACC,YAEA,2FAGC,kBACA,qBACA,WACA,yRAEC,WACA,YACA,WACA,WACA,aACA,2BACA,eACA,6TACC,UAKH,gIAIC,gBACA,UAGD,2BAEC,mBACA,sBAEA,WAEA,gCACC,qBACA,YACA,WACA,2BACA,kBACA,eAIF,gFACC,WAGD,wBACC,gBACA,WAEA,8BACC,eACA,UAKH,2CACC,6BAIF,8BAEA,+CAEA,2CAEA,eACC,0BACA,YAGD,8DAEC,mBAGD,oCACC,mBAGD,8CACC,sBAGD,4CACC,sBAGD,wCACC,WACA,oBACA,mBAGD,yDACC,sCAGD,qCACC,oBACA,mBAGD,kDACC,kBACA,QAGD,oDACC,sBAGD,sBACC,0BAGD,+DACC,YACA,YAGD,oEACC,cACA,kBAGD,0EACC,qBAGD,+EACC,kBACA,QACA,yBAGD,gGACC,mBACA,QACA,kBACA,cACA,wBACA,uBACA,mBACA,gBAGD,2DACC,aACA,wFACC,cACA,wBACA,kBACA,WAIF,+CACC,WAGD,2BACC,2CAGD,8BACI,iBACA,kBACA","file":"settings.css"}
|
||||
|
|
@ -12,70 +12,82 @@
|
|||
tr.externalStorageLoading > td {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
#externalStorage td {
|
||||
& > input:not(.applicableToAllUsers), & > select {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
td {
|
||||
height: 50px;
|
||||
|
||||
#externalStorage .popovermenu li > .menuitem {
|
||||
width: fit-content !important;
|
||||
}
|
||||
|
||||
#externalStorage td.status {
|
||||
/* overwrite conflicting core styles */
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
/* ensure width does not change even if internal span is not displayed */
|
||||
width: 43px;
|
||||
}
|
||||
|
||||
#externalStorage td.status > span {
|
||||
display: inline-block;
|
||||
height: 28px;
|
||||
width: 28px;
|
||||
vertical-align: text-bottom;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
}
|
||||
#externalStorage {
|
||||
td.mountPoint, td.backend, td.authentication, td.configuration {
|
||||
min-width: 160px;
|
||||
width: 15%;
|
||||
}
|
||||
}
|
||||
#externalStorage td>img { padding-top:7px; opacity: 0.5; }
|
||||
#externalStorage td>img:hover { padding-top:7px; cursor:pointer; opacity: 1; }
|
||||
#addMountPoint>td { border:none; }
|
||||
#addMountPoint>td.applicable { visibility:hidden; }
|
||||
#addMountPoint>td.hidden { visibility:hidden; }
|
||||
|
||||
#externalStorage td {
|
||||
height: 50px;
|
||||
&.mountOptionsToggle,
|
||||
&.remove,
|
||||
&.save {
|
||||
position: relative;
|
||||
padding: 0 !important;
|
||||
width: 44px;
|
||||
[class^='icon-'],
|
||||
[class*=' icon-'] {
|
||||
&.mountOptionsToggle,
|
||||
&.remove,
|
||||
&.save {
|
||||
position: relative;
|
||||
padding: 0 !important;
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
margin: 3px;
|
||||
[class^='icon-'],
|
||||
[class*=' icon-'] {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
margin: 3px;
|
||||
opacity: 0.5;
|
||||
padding: 14px;
|
||||
vertical-align: text-bottom;
|
||||
cursor: pointer;
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.mountPoint,
|
||||
&.backend,
|
||||
&.authentication,
|
||||
&.configuration {
|
||||
min-width: 160px;
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
&.status {
|
||||
/* overwrite conflicting core styles */
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
/* ensure width does not change even if internal span is not displayed */
|
||||
width: 43px;
|
||||
|
||||
> span {
|
||||
display: inline-block;
|
||||
height: 28px;
|
||||
width: 28px;
|
||||
vertical-align: text-bottom;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
> input:not(.applicableToAllUsers), & > select {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
> img {
|
||||
padding-top: 7px;
|
||||
opacity: 0.5;
|
||||
padding: 14px;
|
||||
vertical-align: text-bottom;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
cursor:pointer;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.popovermenu li > .menuitem {
|
||||
width: fit-content !important;
|
||||
}
|
||||
}
|
||||
|
||||
#addMountPoint>td { border:none; }
|
||||
|
||||
#addMountPoint>td.applicable { visibility:hidden; }
|
||||
|
||||
#addMountPoint>td.hidden { visibility:hidden; }
|
||||
|
||||
#selectBackend {
|
||||
margin-inline-start: -10px;
|
||||
width: 150px;
|
||||
|
|
@ -85,6 +97,7 @@
|
|||
#externalStorage td.backend {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
#externalStorage td.configuration > * {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
|
@ -129,18 +142,22 @@
|
|||
height: 32px;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.files-external-select2 .select2-results .select2-result-label > span {
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.files-external-select2 .select2-results .select2-result-label .avatardiv {
|
||||
display:inline-block;
|
||||
}
|
||||
|
||||
.files-external-select2 .select2-results .select2-result-label .avatardiv + span {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
margin-inline-start: 10px;
|
||||
}
|
||||
|
||||
.files-external-select2 .select2-results .select2-result-label .avatardiv[data-type="group"] + span {
|
||||
vertical-align: top;
|
||||
top: 6px;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["icons.scss","../../../core/css/variables.scss","../../../core/css/functions.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GCFA;AAAA;AAAA;AAAA,GFQA,WACC,uCAED,aACC,0CAED,aACC","file":"icons.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["icons.scss","../../../core/css/variables.scss","../../../core/css/functions.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GCFA;AAAA;AAAA;AAAA,GFQA,WACC,uCAGD,aACC,0CAGD,aACC","file":"icons.css"}
|
||||
|
|
@ -9,9 +9,11 @@
|
|||
.icon-room {
|
||||
background-image: var(--icon-talk-dark);
|
||||
}
|
||||
|
||||
.icon-circle {
|
||||
background-image: var(--icon-circles-dark);
|
||||
}
|
||||
|
||||
.icon-guests {
|
||||
background-image: var(--icon-user-dark);
|
||||
}
|
||||
|
|
@ -5,4 +5,4 @@
|
|||
*//*!
|
||||
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/#preview{text-align:center}#preview .notCreatable{display:none}#noPreview{display:none;padding-top:80px}#imgframe{height:75%;padding-bottom:32px;padding-top:32px;width:80%;margin:0 auto}#imgframe #viewer{height:100%;width:100%}#imgframe img{max-height:calc(100vh - var(--header-height) - 65px - 200px - 16px) !important;max-width:100% !important;width:unset !important}#imgframe :not(#viewer) img{min-width:100px}#imgframe video{max-height:calc(100vh - var(--header-height) - 65px - 200px - 16px)}#imgframe .plyr:fullscreen video{max-height:unset}#imgframe audio{display:block;margin-inline:auto}#imgframe #viewer[data-handler=audios]{margin-top:400px}#imgframe .plyr{top:0px !important}#imgframe .text-preview{display:inline-block;position:relative;text-align:start;white-space:pre-wrap;overflow-y:scroll;height:auto;min-height:200px;max-height:800px}#imgframe .ellipsis{font-size:1.2em}#imgframe .viewer__file{height:100%;width:100%}#imgframe .plyr{max-height:100%}.app-files_sharing #app-content footer{position:sticky !important}thead{inset-inline-start:0 !important}#data-upload-form{position:relative;inset-inline-end:0;height:32px;overflow:hidden;padding:0;float:right;display:inline;margin:0}.directDownload #downloadFile{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:90%;display:inline-block;margin-inline:auto;margin-top:16px}.download-size{opacity:.5}#details{display:inline-flex}#details button,#details input,#details .button{margin:0 5px;line-height:normal}#details button:hover,#details input:hover,#details .button:hover{border-color:rgba(0,0,0,.3) !important}#public-upload .avatardiv{margin:0 auto}.emptycontent.has-note{margin-top:5vh}#public-upload .emptycontent h2{margin:10px 0 5px 0}#public-upload .emptycontent h2+p{margin-bottom:30px}#public-upload .emptycontent .icon-folder{height:16px;width:16px;background-size:16px;display:inline-block;vertical-align:text-top;margin-bottom:0;margin-inline-end:5px;opacity:1}#public-upload .emptycontent #displayavatar .icon-folder{height:48px;width:48px;background-size:48px}#public-upload .emptycontent .button{display:inline-block;height:auto;width:auto;background-size:16px;background-position:16px;opacity:.7;font-size:20px;line-height:initial;margin:20px;padding:10px 20px;padding-inline-start:42px}#public-upload .emptycontent ul{width:230px;margin:5px auto 5vh;text-align:start}#public-upload .emptycontent li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:7px 0}#public-upload .emptycontent li img{margin-inline-end:5px;position:relative;top:2px}#drop-upload-progress-indicator span.icon-loading-small{padding-inline-start:18px;margin-inline-end:7px}#drop-uploaded-files li #drop-upload-name{float:left;max-width:180px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#drop-uploaded-files li #drop-upload-status{float:right}.disclaimer,.note{margin:0 auto 30px;max-width:400px;text-align:start}#note-content{padding:5px;display:inline-block;width:350px}#note-content .content{overflow:auto;max-height:200px}#show-terms-dialog{cursor:pointer;font-weight:bold}/*# sourceMappingURL=public.css.map */
|
||||
*/#preview{text-align:center}#preview .notCreatable{display:none}#noPreview{display:none;padding-top:80px}#imgframe{height:75%;padding-bottom:32px;padding-top:32px;width:80%;margin:0 auto}#imgframe #viewer{height:100%;width:100%}#imgframe img{max-height:calc(100vh - var(--header-height) - 65px - 200px - 16px) !important;max-width:100% !important;width:unset !important}#imgframe :not(#viewer) img{min-width:100px}#imgframe video{max-height:calc(100vh - var(--header-height) - 65px - 200px - 16px)}#imgframe .plyr:fullscreen video{max-height:unset}#imgframe audio{display:block;margin-inline:auto}#imgframe #viewer[data-handler=audios]{margin-top:400px}#imgframe .text-preview{display:inline-block;position:relative;text-align:start;white-space:pre-wrap;overflow-y:scroll;height:auto;min-height:200px;max-height:800px}#imgframe .ellipsis{font-size:1.2em}#imgframe .viewer__file{height:100%;width:100%}#imgframe .plyr{top:0px !important;max-height:100%}.app-files_sharing #app-content footer{position:sticky !important}thead{inset-inline-start:0 !important}#data-upload-form{position:relative;inset-inline-end:0;height:32px;overflow:hidden;padding:0;float:right;display:inline;margin:0}.directDownload #downloadFile{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:90%;display:inline-block;margin-inline:auto;margin-top:16px}.download-size{opacity:.5}#details{display:inline-flex}#details button,#details input,#details .button{margin:0 5px;line-height:normal}#details button:hover,#details input:hover,#details .button:hover{border-color:rgba(0,0,0,.3) !important}#public-upload .avatardiv{margin:0 auto}.emptycontent.has-note{margin-top:5vh}#public-upload .emptycontent h2{margin:10px 0 5px 0}#public-upload .emptycontent h2+p{margin-bottom:30px}#public-upload .emptycontent .icon-folder{height:16px;width:16px;background-size:16px;display:inline-block;vertical-align:text-top;margin-bottom:0;margin-inline-end:5px;opacity:1}#public-upload .emptycontent #displayavatar .icon-folder{height:48px;width:48px;background-size:48px}#public-upload .emptycontent .button{display:inline-block;height:auto;width:auto;background-size:16px;background-position:16px;opacity:.7;font-size:20px;line-height:initial;margin:20px;padding:10px 20px;padding-inline-start:42px}#public-upload .emptycontent ul{width:230px;margin:5px auto 5vh;text-align:start}#public-upload .emptycontent li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:7px 0}#public-upload .emptycontent li img{margin-inline-end:5px;position:relative;top:2px}#drop-upload-progress-indicator span.icon-loading-small{padding-inline-start:18px;margin-inline-end:7px}#drop-uploaded-files li #drop-upload-name{float:left;max-width:180px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#drop-uploaded-files li #drop-upload-status{float:right}.disclaimer,.note{margin:0 auto 30px;max-width:400px;text-align:start}#note-content{padding:5px;display:inline-block;width:350px}#note-content .content{overflow:auto;max-height:200px}#show-terms-dialog{cursor:pointer;font-weight:bold}/*# sourceMappingURL=public.css.map */
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["public.scss","../../../core/css/variables.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GDSA,SACC,kBAGD,uBACC,aAGD,WACC,aACA,iBAGD,UACC,WACA,oBACA,iBACA,UACA,cAGD,kBACC,YACA,WAGD,cACC,+EACA,0BACA,uBAGD,4BACI,gBAGJ,gBACC,oEAGD,iCACI,iBAGJ,gBACC,cACA,mBAGD,uCAEI,iBAGJ,gBACI,mBAGJ,wBACC,qBACA,kBACA,iBACA,qBACA,kBACA,YACA,iBACA,iBAGD,oBACC,gBAGD,wBACC,YACA,WAGD,gBACC,gBAID,uCACC,2BAID,MACC,gCAGD,kBACC,kBACA,mBACA,YACA,gBACA,UACA,YACA,eACA,SAID,8BACC,mBACA,gBACA,uBACA,cACA,qBACA,mBACA,gBAGD,eACC,WAID,SACC,oBAED,gDAGC,aACA,mBAED,kEAIC,uCAGD,0BACC,cAIA,uBACC,eAIF,gCACC,oBAGD,kCACC,mBAGD,0CACC,YACA,WACA,qBACA,qBACA,wBACA,gBACA,sBACA,UAGD,yDACC,YACA,WACA,qBAGD,qCACC,qBACA,YACA,WACA,qBACA,yBACA,WACA,eACA,oBACA,YACA,kBACA,0BAGD,gCACC,YACA,oBACA,iBAGD,gCACC,gBACA,uBACA,mBACA,cAGD,oCACC,sBACA,kBACA,QAGD,wDACC,0BACA,sBAGD,0CACC,WACA,gBACA,uBACA,mBACA,gBAGD,4CACC,YAGD,kBAEC,mBACA,gBACA,iBAGD,cACC,YACA,qBACA,YACA,uBACC,cACA,iBAIF,mBACC,eACA","file":"public.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["public.scss","../../../core/css/variables.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GDSA,SACC,kBAGD,uBACC,aAGD,WACC,aACA,iBAGD,UACC,WACA,oBACA,iBACA,UACA,cAGD,kBACC,YACA,WAGD,cACC,+EACA,0BACA,uBAGD,4BACI,gBAGJ,gBACC,oEAGD,iCACI,iBAGJ,gBACC,cACA,mBAGD,uCAEI,iBAGJ,wBACC,qBACA,kBACA,iBACA,qBACA,kBACA,YACA,iBACA,iBAGD,oBACC,gBAGD,wBACC,YACA,WAGD,gBACC,mBACA,gBAGD,uCACC,2BAID,MACC,gCAGD,kBACC,kBACA,mBACA,YACA,gBACA,UACA,YACA,eACA,SAID,8BACC,mBACA,gBACA,uBACA,cACA,qBACA,mBACA,gBAGD,eACC,WAID,SACC,oBAGD,gDAGC,aACA,mBAGD,kEAIC,uCAGD,0BACC,cAIA,uBACC,eAIF,gCACC,oBAGD,kCACC,mBAGD,0CACC,YACA,WACA,qBACA,qBACA,wBACA,gBACA,sBACA,UAGD,yDACC,YACA,WACA,qBAGD,qCACC,qBACA,YACA,WACA,qBACA,yBACA,WACA,eACA,oBACA,YACA,kBACA,0BAGD,gCACC,YACA,oBACA,iBAGD,gCACC,gBACA,uBACA,mBACA,cAGD,oCACC,sBACA,kBACA,QAGD,wDACC,0BACA,sBAGD,0CACC,WACA,gBACA,uBACA,mBACA,gBAGD,4CACC,YAGD,kBAEC,mBACA,gBACA,iBAGD,cACC,YACA,qBACA,YACA,uBACC,cACA,iBAIF,mBACC,eACA","file":"public.css"}
|
||||
|
|
@ -63,10 +63,6 @@ $download-button-section-height: 200px;
|
|||
margin-top: 400px;
|
||||
}
|
||||
|
||||
#imgframe .plyr {
|
||||
top: 0px !important;
|
||||
}
|
||||
|
||||
#imgframe .text-preview {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
|
|
@ -88,10 +84,10 @@ $download-button-section-height: 200px;
|
|||
}
|
||||
|
||||
#imgframe .plyr {
|
||||
top: 0px !important;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
|
||||
.app-files_sharing #app-content footer {
|
||||
position: sticky !important;
|
||||
}
|
||||
|
|
@ -131,12 +127,14 @@ thead {
|
|||
#details {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
#details button,
|
||||
#details input,
|
||||
#details .button {
|
||||
margin: 0 5px;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
#details button:hover,
|
||||
#details input:hover,
|
||||
#details .button:hover {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
*//*!
|
||||
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/#preview{text-align:center}#preview .notCreatable{display:none}#noPreview{display:none;padding-top:80px}#imgframe{height:75%;padding-bottom:32px;padding-top:32px;width:80%;margin:0 auto}#imgframe #viewer{height:100%;width:100%}#imgframe img{max-height:calc(100vh - var(--header-height) - 65px - 200px - 16px) !important;max-width:100% !important;width:unset !important}#imgframe :not(#viewer) img{min-width:100px}#imgframe video{max-height:calc(100vh - var(--header-height) - 65px - 200px - 16px)}#imgframe .plyr:fullscreen video{max-height:unset}#imgframe audio{display:block;margin-inline:auto}#imgframe #viewer[data-handler=audios]{margin-top:400px}#imgframe .plyr{top:0px !important}#imgframe .text-preview{display:inline-block;position:relative;text-align:start;white-space:pre-wrap;overflow-y:scroll;height:auto;min-height:200px;max-height:800px}#imgframe .ellipsis{font-size:1.2em}#imgframe .viewer__file{height:100%;width:100%}#imgframe .plyr{max-height:100%}.app-files_sharing #app-content footer{position:sticky !important}thead{inset-inline-start:0 !important}#data-upload-form{position:relative;inset-inline-end:0;height:32px;overflow:hidden;padding:0;float:right;display:inline;margin:0}.directDownload #downloadFile{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:90%;display:inline-block;margin-inline:auto;margin-top:16px}.download-size{opacity:.5}#details{display:inline-flex}#details button,#details input,#details .button{margin:0 5px;line-height:normal}#details button:hover,#details input:hover,#details .button:hover{border-color:rgba(0,0,0,.3) !important}#public-upload .avatardiv{margin:0 auto}.emptycontent.has-note{margin-top:5vh}#public-upload .emptycontent h2{margin:10px 0 5px 0}#public-upload .emptycontent h2+p{margin-bottom:30px}#public-upload .emptycontent .icon-folder{height:16px;width:16px;background-size:16px;display:inline-block;vertical-align:text-top;margin-bottom:0;margin-inline-end:5px;opacity:1}#public-upload .emptycontent #displayavatar .icon-folder{height:48px;width:48px;background-size:48px}#public-upload .emptycontent .button{display:inline-block;height:auto;width:auto;background-size:16px;background-position:16px;opacity:.7;font-size:20px;line-height:initial;margin:20px;padding:10px 20px;padding-inline-start:42px}#public-upload .emptycontent ul{width:230px;margin:5px auto 5vh;text-align:start}#public-upload .emptycontent li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:7px 0}#public-upload .emptycontent li img{margin-inline-end:5px;position:relative;top:2px}#drop-upload-progress-indicator span.icon-loading-small{padding-inline-start:18px;margin-inline-end:7px}#drop-uploaded-files li #drop-upload-name{float:left;max-width:180px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#drop-uploaded-files li #drop-upload-status{float:right}.disclaimer,.note{margin:0 auto 30px;max-width:400px;text-align:start}#note-content{padding:5px;display:inline-block;width:350px}#note-content .content{overflow:auto;max-height:200px}#show-terms-dialog{cursor:pointer;font-weight:bold}/*!
|
||||
*/#preview{text-align:center}#preview .notCreatable{display:none}#noPreview{display:none;padding-top:80px}#imgframe{height:75%;padding-bottom:32px;padding-top:32px;width:80%;margin:0 auto}#imgframe #viewer{height:100%;width:100%}#imgframe img{max-height:calc(100vh - var(--header-height) - 65px - 200px - 16px) !important;max-width:100% !important;width:unset !important}#imgframe :not(#viewer) img{min-width:100px}#imgframe video{max-height:calc(100vh - var(--header-height) - 65px - 200px - 16px)}#imgframe .plyr:fullscreen video{max-height:unset}#imgframe audio{display:block;margin-inline:auto}#imgframe #viewer[data-handler=audios]{margin-top:400px}#imgframe .text-preview{display:inline-block;position:relative;text-align:start;white-space:pre-wrap;overflow-y:scroll;height:auto;min-height:200px;max-height:800px}#imgframe .ellipsis{font-size:1.2em}#imgframe .viewer__file{height:100%;width:100%}#imgframe .plyr{top:0px !important;max-height:100%}.app-files_sharing #app-content footer{position:sticky !important}thead{inset-inline-start:0 !important}#data-upload-form{position:relative;inset-inline-end:0;height:32px;overflow:hidden;padding:0;float:right;display:inline;margin:0}.directDownload #downloadFile{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:90%;display:inline-block;margin-inline:auto;margin-top:16px}.download-size{opacity:.5}#details{display:inline-flex}#details button,#details input,#details .button{margin:0 5px;line-height:normal}#details button:hover,#details input:hover,#details .button:hover{border-color:rgba(0,0,0,.3) !important}#public-upload .avatardiv{margin:0 auto}.emptycontent.has-note{margin-top:5vh}#public-upload .emptycontent h2{margin:10px 0 5px 0}#public-upload .emptycontent h2+p{margin-bottom:30px}#public-upload .emptycontent .icon-folder{height:16px;width:16px;background-size:16px;display:inline-block;vertical-align:text-top;margin-bottom:0;margin-inline-end:5px;opacity:1}#public-upload .emptycontent #displayavatar .icon-folder{height:48px;width:48px;background-size:48px}#public-upload .emptycontent .button{display:inline-block;height:auto;width:auto;background-size:16px;background-position:16px;opacity:.7;font-size:20px;line-height:initial;margin:20px;padding:10px 20px;padding-inline-start:42px}#public-upload .emptycontent ul{width:230px;margin:5px auto 5vh;text-align:start}#public-upload .emptycontent li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:7px 0}#public-upload .emptycontent li img{margin-inline-end:5px;position:relative;top:2px}#drop-upload-progress-indicator span.icon-loading-small{padding-inline-start:18px;margin-inline-end:7px}#drop-uploaded-files li #drop-upload-name{float:left;max-width:180px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#drop-uploaded-files li #drop-upload-status{float:right}.disclaimer,.note{margin:0 auto 30px;max-width:400px;text-align:start}#note-content{padding:5px;display:inline-block;width:350px}#note-content .content{overflow:auto;max-height:200px}#show-terms-dialog{cursor:pointer;font-weight:bold}/*!
|
||||
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-FileCopyrightText: 2014 ownCloud, Inc.
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["publicView.scss","../../../core/css/variables.scss","public.scss","mobile.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GCSA,SACC,kBAGD,uBACC,aAGD,WACC,aACA,iBAGD,UACC,WACA,oBACA,iBACA,UACA,cAGD,kBACC,YACA,WAGD,cACC,+EACA,0BACA,uBAGD,4BACI,gBAGJ,gBACC,oEAGD,iCACI,iBAGJ,gBACC,cACA,mBAGD,uCAEI,iBAGJ,gBACI,mBAGJ,wBACC,qBACA,kBACA,iBACA,qBACA,kBACA,YACA,iBACA,iBAGD,oBACC,gBAGD,wBACC,YACA,WAGD,gBACC,gBAID,uCACC,2BAID,MACC,gCAGD,kBACC,kBACA,mBACA,YACA,gBACA,UACA,YACA,eACA,SAID,8BACC,mBACA,gBACA,uBACA,cACA,qBACA,mBACA,gBAGD,eACC,WAID,SACC,oBAED,gDAGC,aACA,mBAED,kEAIC,uCAGD,0BACC,cAIA,uBACC,eAIF,gCACC,oBAGD,kCACC,mBAGD,0CACC,YACA,WACA,qBACA,qBACA,wBACA,gBACA,sBACA,UAGD,yDACC,YACA,WACA,qBAGD,qCACC,qBACA,YACA,WACA,qBACA,yBACA,WACA,eACA,oBACA,YACA,kBACA,0BAGD,gCACC,YACA,oBACA,iBAGD,gCACC,gBACA,uBACA,mBACA,cAGD,oCACC,sBACA,kBACA,QAGD,wDACC,0BACA,sBAGD,0CACC,WACA,gBACA,uBACA,mBACA,gBAGD,4CACC,YAGD,kBAEC,mBACA,gBACA,iBAGD,cACC,YACA,qBACA,YACA,uBACC,cACA,iBAIF,mBACC,eACA,iBC1PD;AAAA;AAAA;AAAA;AAAA,GAOA,2CAGA,mBACC,6BAID,2EAIC,aAID,4BACC,yBAID,UACC,WACA,UAGD,yBACC,gBAID,6BACC,gBACA,wBAGD,6CACC,aAID,UACC,UACA,mBACA,gBACA,uBAGD,oBACI,wBACA,2BAEJ,MACC,eAGD,cACC","file":"publicView.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["publicView.scss","../../../core/css/variables.scss","public.scss","mobile.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GCSA,SACC,kBAGD,uBACC,aAGD,WACC,aACA,iBAGD,UACC,WACA,oBACA,iBACA,UACA,cAGD,kBACC,YACA,WAGD,cACC,+EACA,0BACA,uBAGD,4BACI,gBAGJ,gBACC,oEAGD,iCACI,iBAGJ,gBACC,cACA,mBAGD,uCAEI,iBAGJ,wBACC,qBACA,kBACA,iBACA,qBACA,kBACA,YACA,iBACA,iBAGD,oBACC,gBAGD,wBACC,YACA,WAGD,gBACC,mBACA,gBAGD,uCACC,2BAID,MACC,gCAGD,kBACC,kBACA,mBACA,YACA,gBACA,UACA,YACA,eACA,SAID,8BACC,mBACA,gBACA,uBACA,cACA,qBACA,mBACA,gBAGD,eACC,WAID,SACC,oBAGD,gDAGC,aACA,mBAGD,kEAIC,uCAGD,0BACC,cAIA,uBACC,eAIF,gCACC,oBAGD,kCACC,mBAGD,0CACC,YACA,WACA,qBACA,qBACA,wBACA,gBACA,sBACA,UAGD,yDACC,YACA,WACA,qBAGD,qCACC,qBACA,YACA,WACA,qBACA,yBACA,WACA,eACA,oBACA,YACA,kBACA,0BAGD,gCACC,YACA,oBACA,iBAGD,gCACC,gBACA,uBACA,mBACA,cAGD,oCACC,sBACA,kBACA,QAGD,wDACC,0BACA,sBAGD,0CACC,WACA,gBACA,uBACA,mBACA,gBAGD,4CACC,YAGD,kBAEC,mBACA,gBACA,iBAGD,cACC,YACA,qBACA,YACA,uBACC,cACA,iBAIF,mBACC,eACA,iBCxPD;AAAA;AAAA;AAAA;AAAA,GAOA,2CAGA,mBACC,6BAID,2EAIC,aAID,4BACC,yBAID,UACC,WACA,UAGD,yBACC,gBAID,6BACC,gBACA,wBAGD,6CACC,aAID,UACC,UACA,mBACA,gBACA,uBAGD,oBACI,wBACA,2BAEJ,MACC,eAGD,cACC","file":"publicView.css"}
|
||||
|
|
@ -2,5 +2,5 @@
|
|||
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
@use 'public.scss';
|
||||
@use 'mobile.scss';
|
||||
@use 'public';
|
||||
@use 'mobile';
|
||||
|
|
|
|||
|
|
@ -917,7 +917,7 @@ export default {
|
|||
}
|
||||
}
|
||||
|
||||
::v-deep .avatar-link-share {
|
||||
:deep(.avatar-link-share) {
|
||||
background-color: var(--color-primary-element);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -350,7 +350,7 @@ export default {
|
|||
case this.SHARE_TYPES.SHARE_TYPE_USER:
|
||||
return t('files_sharing', 'Share with {userName}', { userName: this.share.shareWithDisplayName })
|
||||
case this.SHARE_TYPES.SHARE_TYPE_EMAIL:
|
||||
return t('files_sharing', 'Share with email {email}', { email: this.share.shareWith })
|
||||
return t('files_sharing', 'Share with email {email}', { email: this.share.shareWith })
|
||||
case this.SHARE_TYPES.SHARE_TYPE_LINK:
|
||||
return t('files_sharing', 'Share link')
|
||||
case this.SHARE_TYPES.SHARE_TYPE_GROUP:
|
||||
|
|
@ -366,12 +366,12 @@ export default {
|
|||
case this.SHARE_TYPES.SHARE_TYPE_GUEST:
|
||||
return t('files_sharing', 'Share with guest')
|
||||
default: {
|
||||
if (this.share.id) {
|
||||
// Share already exists
|
||||
return t('files_sharing', 'Update share')
|
||||
} else {
|
||||
return t('files_sharing', 'Create share')
|
||||
}
|
||||
if (this.share.id) {
|
||||
// Share already exists
|
||||
return t('files_sharing', 'Update share')
|
||||
} else {
|
||||
return t('files_sharing', 'Create share')
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -1104,12 +1104,9 @@ export default {
|
|||
padding: 0.1em;
|
||||
}
|
||||
|
||||
::v-deep label {
|
||||
|
||||
span {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
:deep(label span) {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* Target component based style in NcCheckboxRadioSwitch slot content*/
|
||||
|
|
@ -1154,20 +1151,18 @@ export default {
|
|||
}
|
||||
|
||||
/*
|
||||
The following style is applied out of the component's scope
|
||||
to remove padding from the label.checkbox-radio-switch__label,
|
||||
which is used to group radio checkbox items. The use of ::v-deep
|
||||
ensures that the padding is modified without being affected by
|
||||
the component's scoping.
|
||||
Without this achieving left alignment for the checkboxes would not
|
||||
be possible.
|
||||
*/
|
||||
span {
|
||||
::v-deep label {
|
||||
padding-inline-start: 0 !important;
|
||||
background-color: initial !important;
|
||||
border: none !important;
|
||||
}
|
||||
The following style is applied out of the component's scope
|
||||
to remove padding from the label.checkbox-radio-switch__label,
|
||||
which is used to group radio checkbox items. The use of ::v-deep
|
||||
ensures that the padding is modified without being affected by
|
||||
the component's scoping.
|
||||
Without this achieving left alignment for the checkboxes would not
|
||||
be possible.
|
||||
*/
|
||||
span :deep(label) {
|
||||
padding-inline-start: 0 !important;
|
||||
background-color: initial !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
section.custom-permissions-group {
|
||||
|
|
@ -1177,7 +1172,7 @@ export default {
|
|||
}
|
||||
|
||||
&__delete {
|
||||
>button:first-child {
|
||||
> button:first-child {
|
||||
color: rgb(223, 7, 7);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -148,10 +148,12 @@ export default {
|
|||
min-height: 34px !important;
|
||||
display: inline-flex !important;
|
||||
}
|
||||
|
||||
.oauth2-form {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.oauth2-form--input {
|
||||
max-width: 200px;
|
||||
margin-inline-end: 10px;
|
||||
|
|
|
|||
|
|
@ -90,13 +90,16 @@ export default {
|
|||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.action-secret code {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
td code {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table.inline td {
|
||||
border: none;
|
||||
padding: 5px;
|
||||
|
|
|
|||
|
|
@ -343,16 +343,16 @@ export default {
|
|||
.sort((a, b) => a.name.localeCompare(b.name))
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
if (this.app.groups.length > 0) {
|
||||
this.groupCheckedAppsData = true
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
'app.id'() {
|
||||
this.removeData = false
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
if (this.app.groups.length > 0) {
|
||||
this.groupCheckedAppsData = true
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
toggleRemoveData() {
|
||||
this.removeData = !this.removeData
|
||||
|
|
@ -427,6 +427,7 @@ export default {
|
|||
border-color: var(--color-error);
|
||||
background: var(--color-main-background);
|
||||
}
|
||||
|
||||
.force:hover,
|
||||
.force:active {
|
||||
color: var(--color-main-background);
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@ export default {
|
|||
background-color: var(--color-error);
|
||||
width: initial;
|
||||
}
|
||||
|
||||
.warning {
|
||||
margin-top: 8px;
|
||||
padding: 5px;
|
||||
|
|
@ -193,6 +194,7 @@ export default {
|
|||
background-color: var(--color-warning);
|
||||
width: initial;
|
||||
}
|
||||
|
||||
.ajaxSwitch {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -80,6 +80,3 @@ export default {
|
|||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.settings-markdown::v-deep {
|
||||
.settings-markdown :deep {
|
||||
a {
|
||||
text-decoration: underline;
|
||||
&::after {
|
||||
|
|
|
|||
|
|
@ -257,6 +257,7 @@ section {
|
|||
grid-row: 1/3;
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
&__container {
|
||||
margin: calc(var(--default-grid-baseline) * 2) auto 0 auto;
|
||||
|
|
@ -296,7 +297,7 @@ section {
|
|||
justify-content: space-between;
|
||||
}
|
||||
|
||||
&::v-deep .cropper-view-box {
|
||||
:deep(.cropper-view-box) {
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -118,7 +118,7 @@ export default {
|
|||
section {
|
||||
padding: 10px 10px;
|
||||
|
||||
&::v-deep button:disabled {
|
||||
:deep(button:disabled) {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ export default {
|
|||
box-shadow: 0 0 3px var(--color-box-shadow);
|
||||
|
||||
& *,
|
||||
&::v-deep * {
|
||||
&:deep(*) {
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ export default {
|
|||
section {
|
||||
padding: 10px 10px;
|
||||
|
||||
&::v-deep button:disabled {
|
||||
&:deep(button:disabled) {
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -118,7 +118,7 @@ section {
|
|||
pointer-events: none;
|
||||
|
||||
& *,
|
||||
&::v-deep * {
|
||||
&:deep(*) {
|
||||
cursor: default;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ export default {
|
|||
pointer-events: none;
|
||||
|
||||
& *,
|
||||
&::v-deep * {
|
||||
&:deep(*) {
|
||||
cursor: default;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -398,7 +398,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './Users/shared/styles.scss';
|
||||
@use './Users/shared/styles' as *;
|
||||
|
||||
.empty {
|
||||
:deep {
|
||||
|
|
|
|||
|
|
@ -84,11 +84,11 @@ export default Vue.extend({
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './shared/styles.scss';
|
||||
@use './shared/styles';
|
||||
|
||||
.footer {
|
||||
@include row;
|
||||
@include cell;
|
||||
@include styles.row;
|
||||
@include styles.cell;
|
||||
|
||||
&__cell {
|
||||
position: sticky;
|
||||
|
|
|
|||
|
|
@ -140,12 +140,12 @@ export default Vue.extend({
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './shared/styles.scss';
|
||||
@use './shared/styles';
|
||||
|
||||
.header {
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
|
||||
@include row;
|
||||
@include cell;
|
||||
@include styles.row;
|
||||
@include styles.cell;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -907,10 +907,10 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './shared/styles.scss';
|
||||
@use './shared/styles';
|
||||
|
||||
.user-list__row {
|
||||
@include row;
|
||||
@include styles.row;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--color-background-hover);
|
||||
|
|
@ -927,7 +927,7 @@ export default {
|
|||
}
|
||||
|
||||
.row {
|
||||
@include cell;
|
||||
@include styles.cell;
|
||||
|
||||
&__cell {
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
|
|
|
|||
|
|
@ -12,6 +12,10 @@ import { t } from '@nextcloud/l10n'
|
|||
|
||||
import TagMultipleSvg from '@mdi/svg/svg/tag-multiple.svg?raw'
|
||||
|
||||
/**
|
||||
*
|
||||
* @param nodes
|
||||
*/
|
||||
async function execBatch(nodes: Node[]): Promise<(null|boolean)[]> {
|
||||
const response = await new Promise<null|boolean>((resolve) => {
|
||||
spawnDialog(defineAsyncComponent(() => import('../components/SystemTagPicker.vue')), {
|
||||
|
|
|
|||
|
|
@ -301,7 +301,7 @@ export default {
|
|||
}
|
||||
|
||||
// Proper highlight for links and focus feedback
|
||||
&::v-deep a {
|
||||
:deep(a) {
|
||||
font-weight: bold;
|
||||
|
||||
&:hover,
|
||||
|
|
@ -312,7 +312,6 @@ export default {
|
|||
|
||||
&__preview-list {
|
||||
--gap: 30px;
|
||||
|
||||
display: grid;
|
||||
margin-top: var(--gap);
|
||||
column-gap: var(--gap);
|
||||
|
|
|
|||
|
|
@ -339,7 +339,6 @@ export default {
|
|||
background-size: cover;
|
||||
|
||||
&__filepicker {
|
||||
background-color: var(--color-main-text);
|
||||
background-color: var(--color-background-dark);
|
||||
|
||||
&.background--active {
|
||||
|
|
|
|||
|
|
@ -117,7 +117,6 @@ export default {
|
|||
.theming__preview {
|
||||
// We make previews on 16/10 screens
|
||||
--ratio: 16;
|
||||
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
|
|
|
|||
|
|
@ -115,6 +115,7 @@ export default defineComponent({
|
|||
h3, h4 {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h4, h5 {
|
||||
margin-block-start: 12px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './shared/field.scss';
|
||||
@use './shared/field' as *;
|
||||
|
||||
.field {
|
||||
&__description {
|
||||
|
|
|
|||
|
|
@ -136,7 +136,8 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './shared/field.scss';
|
||||
@use './shared/field' as *;
|
||||
|
||||
.description {
|
||||
color: var(--color-text-maxcontrast);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './shared/field.scss';
|
||||
@use './shared/field' as *;
|
||||
|
||||
.field {
|
||||
&__loading-icon {
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@ export default {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.backup-status {
|
||||
&__reset-button {
|
||||
justify-content: flex-end;
|
||||
|
|
|
|||
|
|
@ -570,6 +570,7 @@ export default {
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.weather-image {
|
||||
width: calc(var(--default-clickable-area) - 2 * var(--default-grid-baseline));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -190,9 +190,11 @@ export default {
|
|||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
input[type=text] {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.invalid {
|
||||
border-color: var(--color-error) !important;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,3 @@ export default {
|
|||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ export default {
|
|||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.multiselect::v-deep .multiselect__tags:not(:hover):not(:focus):not(:active) {
|
||||
.multiselect:deep(.multiselect__tags:not(:hover):not(:focus):not(:active)) {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -117,6 +117,7 @@ export default {
|
|||
input[type='text'] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
input[type='text'] {
|
||||
min-height: 48px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -109,6 +109,7 @@ export default {
|
|||
input[type='text'] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
input[type='text'] {
|
||||
min-height: 48px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@ export default {
|
|||
max-width: 550px;
|
||||
}
|
||||
}
|
||||
|
||||
.isComplex {
|
||||
img {
|
||||
vertical-align: text-top;
|
||||
|
|
|
|||
|
|
@ -40,5 +40,5 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import "./../styles/operation";
|
||||
@use "./../styles/operation" as *;
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -233,6 +233,7 @@ export default {
|
|||
margin-inline-end: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.trigger p, .action p {
|
||||
min-height: 34px;
|
||||
display: flex;
|
||||
|
|
@ -249,9 +250,11 @@ export default {
|
|||
max-width: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
.trigger p:first-child span {
|
||||
padding-top: 3px;
|
||||
}
|
||||
|
||||
.trigger p:last-child {
|
||||
padding-top: 8px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -140,9 +140,12 @@ export default {
|
|||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@use "./../styles/operation";
|
||||
|
||||
#workflowengine {
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
}
|
||||
|
||||
.section {
|
||||
max-width: 100vw;
|
||||
|
||||
|
|
@ -151,6 +154,7 @@ export default {
|
|||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
|
@ -160,6 +164,7 @@ export default {
|
|||
flex-basis: 250px;
|
||||
}
|
||||
}
|
||||
|
||||
.actions__more {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
|
@ -198,8 +203,6 @@ export default {
|
|||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
@import "./../styles/operation";
|
||||
|
||||
.actions__item.more {
|
||||
background-color: var(--color-background-dark);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
margin-inline: -1px 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.actions__item .icon {
|
||||
display: block;
|
||||
width: 100%;
|
||||
|
|
@ -22,6 +23,7 @@
|
|||
margin-bottom: 10px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.actions__item__description {
|
||||
text-align: center;
|
||||
flex-grow: 1;
|
||||
|
|
@ -29,20 +31,24 @@
|
|||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.actions__item_options {
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
padding-inline-start: 60px;
|
||||
}
|
||||
|
||||
h3, small {
|
||||
padding: 6px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 10pt;
|
||||
flex-grow: 1;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -114,7 +114,6 @@ kbd {
|
|||
#app-navigation:not(.vue) {
|
||||
// Ensure the maxcontrast color is set for the background
|
||||
--color-text-maxcontrast: var(--color-text-maxcontrast-background-blur, var(--color-main-text));
|
||||
|
||||
width: variables.$navigation-width;
|
||||
z-index: 500;
|
||||
overflow-y: auto;
|
||||
|
|
@ -454,7 +453,6 @@ kbd {
|
|||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
outline: none !important;
|
||||
box-shadow: none;
|
||||
content: ' ';
|
||||
|
|
@ -677,6 +675,7 @@ body[dir='ltr'] {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
body[dir='rtl'] {
|
||||
.app-navigation-personal,
|
||||
.app-navigation-administration {
|
||||
|
|
@ -912,6 +911,7 @@ body[dir='ltr'] #app-settings-header .settings-button {
|
|||
background-position: left 12px center;
|
||||
}
|
||||
}
|
||||
|
||||
body[dir='rtl'] #app-settings-header .settings-button {
|
||||
&::before {
|
||||
background-position: right 14px center;
|
||||
|
|
@ -937,6 +937,7 @@ body[dir='rtl'] #app-settings-header .settings-button {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sub-section {
|
||||
position: relative;
|
||||
margin-top: 10px;
|
||||
|
|
@ -1016,6 +1017,7 @@ body[dir='rtl'] #app-settings-header .settings-button {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tabsContainer {
|
||||
.tab {
|
||||
padding: 0 15px 15px;
|
||||
|
|
@ -1026,6 +1028,7 @@ body[dir='rtl'] #app-settings-header .settings-button {
|
|||
body[dir='ltr'] .tabsContainer {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
body[dir='rtl'] .tabsContainer {
|
||||
clear: right;
|
||||
}
|
||||
|
|
@ -1486,6 +1489,7 @@ $outter-margin: math.div($popoveritem-height - $popovericon-size, 2);
|
|||
display: flex;
|
||||
}
|
||||
}
|
||||
|
||||
.button.primary.skip-navigation:focus-visible {
|
||||
box-shadow: 0 0 0 4px var(--color-main-background) !important;
|
||||
outline: 2px solid var(--color-main-text) !important;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["guest.scss","animations.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GCIA,0BACC,KACC,+BACA,uBAED,GACC,iCACA,0BAGF,kBACC,KACC,+BACA,uBAED,GACC,iCACA,0BDbF,wYACA,iBACA,2EACA,qBACA,mEACA,iDACA,kCACA,6DACA,6DACA,mBAEA,KACC,mBAEA,iBACA,kBACA,6NACA,kDACA,kBACA,wDAIA,2FACA,4BACA,sBACA,2BACA,gBACA,YACA,cACA,gBAKA,cACC,gBAGD,qBACC,wBAGD,kEAEC,0BACA,8BAIF,GACC,kBACA,WAID,SAGC,iBAGD,GACC,eACA,mBACA,iBAED,GACC,eACA,cAID,KACC,aACA,sBACA,uBACA,mBAIA,cACC,wEACA,4BACA,wBACA,2BACA,YACA,aACA,cACA,kBACA,yBAIF,SACC,WACA,gBACA,uBAID,KACC,kBACA,YACA,UAED,kBACC,gBAGD,4DAEC,WAED,uCACC,YACA,uBACA,uBACA,UAGD,wBACC,SAGD,wBACC,iBACA,mBAED,sCACC,mBACA,iBAED,2CAEC,mBAED,qBACC,WAED,2CACC,WAED,sBACC,cACA,SAED,0BACC,mBAID,cACC,aAED,kBACC,sBAID,gBACC,aACA,mBACA,uBACA,iBACA,kBAID,2CACC,SACC,cAMF,gBACC,cAEA,6BACC,kBACA,sBACA,8CACA,oBAKD,uMAGC,sBAGD,oCACC,kBACA,SACA,sBAIF,gDAEC,iBAGD,sCACC,2BAGD,qGAOC,qBACA,WACA,eACA,6CACA,8CACA,iBACA,6BACA,YACA,2CACA,eAGD,kCACC,kBACA,qBACA,QAGD,yBACC,6DAED,wEAIC,YACA,iBACA,gCACA,YACA,oBACA,mBACA,gBAED,gFACC,YACA,mCAED,YACC,YACA,YACA,sCAED,4FAIC,kBACA,gBACA,uBAID,iDAEC,SAGD,cACC,8CACA,wCAOC,4MAEC,oDACA,wCAMH,8BACC,kBACA,4BACA,SACA,UACA,WACA,gBAED,oCACC,iBAED,iGAEC,eAED,2CACC,WACA,qBACA,sBACA,WACA,eACA,sBACA,kBACA,YACA,WACA,2BAED,kDACC,kBAED,6IAEC,kBAED,0DACC,sBACA,kBAED,2DACC,iCACA,6BAED,mEACC,kBACA,sBAED,0DACC,0CACA,6BACA,+DAID,qBACC,qBACA,kBACA,UACA,YACA,4BACA,0BACA,0BACA,4BACA,gBACA,WAED,eACC,iBACA,gBACA,kBAID,yBACC,kBACA,qBACA,SACA,aACA,uBACA,WACA,qBACA,aAGD,2CACC,6BACA,UAED,qBACC,YACA,iBACA,yBACA,cAED,gBACC,yBAID,8GAKC,kBAGD,uIAGC,mDAGD,iCAEC,YACA,sBAED,qBACC,aACA,kBACA,cACA,+BACA,iBACA,mBACA,gCAEA,kFAGC,sBAED,yBACC,WACA,YACA,eAED,yBACC,cAED,wBACC,SAED,uBACC,mBAGF,iBACC,YACA,cACA,cAED,mBACC,WACA,aACA,iBACA,oBACA,eAED,oBAEC,wBACA,YAED,sBACC,qBACA,aAKD,gBACC,+BACA,kCAKD,uBACC,gBACA,mBAID,mBACC,kBACA,mBACA,SACA,aACA,yBACC,mBAED,yBACC,YACA,kBACA,eACA,yCACA,6BACA,eACA,qCACA,kBAED,iFAEC,mBACA,0CACA,6BAED,8BACC,aAMF,oCAGC,kBACA,iBAED,uBACC,6BAED,aACC,mBAED,gCACC,2BAED,4BACC,6BACA,wBAKD,sBACC,aACA,sBACA,iBACA,qBACA,mBACA,eACA,sBACA,yBACA,qBACA,iBAGA,gCACC,qBACA,YAGD,2BACC,cAGD,yCACC,mBAMF,WACC,aAED,sBACC,gBAED,OACC,iBACA,yBACA,sBACA,qBACA,iBAID,QACC,wBACA,kBAEA,iBACC,gBACA,iBACA,mBAGD,+BACC,sBAKF,wCACC,WAED,wCACC,YAGD,0BACC,iBACA,mBAED,sBACC,aACA,cACA,YAEA,wCACC,qBACA,sBAIF,sBACC,YACA,YACA,qBAKD,iBACC,0DAED,kBACC,2DAED,kBACC,2DAED,cACC,uDAED,oBACC,6DAED,sBACC,+DAKD,eACC,iBACA,iBACA,YACA,aAED,iCACC,4BACA,2BACA,eACA,gBAED,sGACC,kBACA,wCAED,0IACC,UACA,WACA,YACA,WACA,uBACA,kBACA,QACA,uBACA,mBACA,6CACA,qCACA,gCACA,4BACA,wBAED,wTACC,uCAED,0IACC,sCACA,yBAED,wDACC,sCACA,sBAED,yDACC,YACA,WACA,qBAGD,gLACC,2CAED,wNACC,gDAED,gOACC,iDAED,wQACC,sDAED,0BACC,KACA,+BACA,uBAEA,GACA,iCACA,0BAGD,kBACC,KACA,+BACA,uBAEA,GACA,iCACA,0BAMA,0BACC,iBAGD,iBACC,0EACA,mBAEA,uBACC,SAMH,+BAEC,kBACA,4BACA,aACA,UACA,WACA,gBAGD,QACC,kBAGD,UACC,8BACA,wCACA,gDACA,mCACA,cACA,aACA,iBAEA,kBACC,uDACA,mCAGD,gBACC,qDACA,iCAGD,kBACC,uDACA,mCAGD,qBACC,gBAGD,cACC,8CACA,gBACA,kBACA,mCAIF,iCAEC,gGAEA,6BACA,mDACA,6CACA,6CACA,4CACA,qBACA,sDACA,8CAIA,gBACC,cACA,iBACA,mDAGD,oBACC,aAGD,gBACC,kBAIF,uBACC,+BACA,eACA,YAID,YACC,2BAGD,WACC,4BAGD,QACC","file":"guest.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["guest.scss","animations.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GCIA,0BACC,KACC,+BACA,uBAED,GACC,iCACA,0BAGF,kBACC,KACC,+BACA,uBAED,GACC,iCACA,0BDbF,wYAEA,iBAEA,2EAEA,mEAEA,kDAEA,kCAEA,6DAEA,6DAEA,mBAEA,KAEC,aACA,sBACA,uBACA,mBAEA,iBACA,mBACA,kBACA,6NACA,kDACA,kBACA,wDAIA,2FACA,4BACA,sBACA,2BACA,gBACA,YACA,cACA,gBAKA,cACC,gBAGD,qBACC,wBAGD,kEAEC,0BACA,8BAIF,GACC,kBACA,WAID,SAGC,iBAGD,GACC,eACA,mBACA,iBAGD,GACC,eACA,cAKA,cACC,wEACA,4BACA,wBACA,2BACA,YACA,aACA,cACA,kBACA,yBAIF,SACC,WACA,gBACA,uBAID,KACC,kBACA,YACA,UAGD,kBACC,gBAGD,4DAEC,WAGD,uCACC,YACA,uBACA,uBACA,UAGD,wBACC,SAGD,wBACC,iBACA,mBAGD,sCACC,mBACA,iBAGD,2CAEC,mBAGD,qBACC,WAGD,2CACC,WAGD,sBACC,cACA,SAGD,0BACC,mBAID,cACC,aAGD,kBACC,sBAKD,2CACC,SACC,cAIF,gBACC,cACA,aACA,mBACA,uBACA,iBACA,kBAGA,6BACC,kBACA,sBACA,8CACA,oBAKD,uMAGC,sBAGD,oCACC,kBACA,SACA,sBAIF,gDAEC,iBAGD,sCACC,2BAGD,qGAOC,qBACA,WACA,eACA,6CACA,8CACA,iBACA,6BACA,YACA,2CACA,eAGD,kCACC,kBACA,qBACA,QAGD,yBACC,6DAGD,wEAIC,YACA,iBACA,gCACA,YACA,oBACA,mBACA,gBAGD,gFACC,YACA,mCAGD,YACC,YACA,YACA,sCAGD,4FAIC,kBACA,gBACA,uBAID,iDAEC,SAGD,cACC,8CACA,wCAOC,4MAEC,oDACA,wCAMH,8BACC,kBACA,4BACA,SACA,UACA,WACA,gBAGD,oCACC,iBAGD,iGAEC,eAGD,2CACC,WACA,qBACA,sBACA,WACA,eACA,sBACA,kBACA,YACA,WACA,2BAGD,kDACC,kBAGD,6IAEC,kBAGD,2DACC,iCACA,6BAGD,mEACC,kBACA,sBAGD,0DACC,0CACA,6BACA,+DAID,qBACC,qBACA,kBACA,UACA,YACA,4BACA,0BACA,0BACA,4BACA,gBACA,WAGD,eACC,iBACA,gBACA,kBAID,yBACC,kBACA,qBACA,SACA,aACA,uBACA,WACA,qBACA,aAGD,2CACC,6BACA,UAGD,qBACC,YACA,iBACA,yBACA,cAGD,gBACC,yBAID,8GAKC,kBAGD,uIAGC,mDAGD,iCAEC,YACA,sBAGD,qBACC,aACA,kBACA,cACA,+BACA,iBACA,mBACA,gCAEA,kFAGC,sBAED,yBACC,WACA,YACA,eAED,yBACC,cAED,wBACC,SAED,uBACC,mBAIF,iBACC,YACA,cACA,cAGD,mBACC,WACA,aACA,iBACA,oBACA,eAGD,oBAEC,wBACA,YAGD,sBACC,qBACA,aAKD,gBACC,+BACA,kCAKD,uBACC,gBACA,mBAID,mBACC,kBACA,mBACA,SACA,aACA,yBACC,mBAED,yBACC,YACA,kBACA,eACA,yCACA,6BACA,eACA,qCACA,kBAED,iFAEC,mBACA,0CACA,6BAED,8BACC,aAMF,oCAGC,kBACA,iBAGD,uBACC,6BAGD,aACC,mBAGD,gCACC,2BAGD,4BACC,6BACA,wBAKD,sBACC,aACA,sBACA,iBACA,qBACA,mBACA,eACA,sBACA,yBACA,qBACA,iBAGA,gCACC,qBACA,YAGD,2BACC,cAGD,yCACC,mBAMF,WACC,aAGD,sBACC,gBAGD,OACC,iBACA,yBACA,sBACA,qBACA,iBAID,QACC,wBACA,kBAEA,iBACC,gBACA,iBACA,mBAGD,+BACC,sBAKF,wCACC,WAGD,wCACC,YAGD,0BACC,iBACA,mBAGD,sBACC,aACA,cACA,YAEA,wCACC,qBACA,sBAIF,sBACC,YACA,YACA,qBAKD,iBACC,0DAGD,kBACC,2DAGD,kBACC,2DAGD,cACC,uDAGD,oBACC,6DAGD,sBACC,+DAKD,eACC,iBACA,iBACA,YACA,aAGD,iCACC,4BACA,2BACA,eACA,gBAGD,sGACC,kBACA,wCAGD,0IACC,sCACA,mBACA,yBAEA,UACA,WACA,YACA,WACA,uBACA,kBACA,QACA,uBACA,6CACA,qCACA,gCACA,4BACA,wBAGD,wTACC,uCAGD,wDACC,sCACA,sBAGD,yDACC,YACA,WACA,qBAGD,gLACC,2CAGD,wNACC,gDAGD,gOACC,iDAGD,wQACC,sDAED,0BACC,KACA,+BACA,uBAEA,GACA,iCACA,0BAGD,kBACC,KACA,+BACA,uBAEA,GACA,iCACA,0BAMA,0BACC,iBAGD,iBACC,0EACA,mBAEA,uBACC,SAMH,+BAEC,kBACA,4BACA,aACA,UACA,WACA,gBAGD,QACC,kBAGD,UACC,8BACA,wCACA,gDACA,mCACA,cACA,aACA,iBAEA,kBACC,uDACA,mCAGD,gBACC,qDACA,iCAGD,kBACC,uDACA,mCAGD,qBACC,gBAGD,cACC,8CACA,gBACA,kBACA,mCAIF,iCAEC,gGACA,6BACA,mDACA,6CACA,6CACA,4CACA,qBACA,sDACA,8CAIA,gBACC,cACA,iBACA,mDAGD,oBACC,aAGD,gBACC,kBAIF,uBACC,+BACA,eACA,YAID,YACC,2BAGD,WACC,4BAGD,QACC","file":"guest.css"}
|
||||
|
|
@ -3,24 +3,36 @@
|
|||
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
@use 'animations.scss';
|
||||
@use 'animations';
|
||||
|
||||
/* Default and reset */
|
||||
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section { margin:0; padding:0; border:0; outline:0; font-weight:inherit; font-size:100%; font-family:inherit; vertical-align:baseline; cursor:default; }
|
||||
|
||||
html { height:100%; }
|
||||
|
||||
article, aside, dialog, figure, footer, header, hgroup, nav, section { display:block; }
|
||||
body { line-height:1.5; }
|
||||
|
||||
table { border-collapse:separate; border-spacing:0; white-space:nowrap; }
|
||||
caption, th, td { text-align:left; font-weight:normal; }
|
||||
|
||||
caption, th, td { text-align:start; font-weight:normal; }
|
||||
|
||||
table, td, th { vertical-align:middle; }
|
||||
|
||||
a { border:0; color: var(--color-main-text); text-decoration:none;}
|
||||
|
||||
a, a *, input, input *, select, .button span, label { cursor:pointer; }
|
||||
|
||||
ul { list-style:none; }
|
||||
|
||||
body {
|
||||
font-weight: normal;
|
||||
/* Guest content uses flexbox */
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
/* bring the default font size up to 14px */
|
||||
font-size: .875em;
|
||||
font-weight: normal;
|
||||
line-height: 1.6em;
|
||||
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Cantarell, Ubuntu, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
color: var(--color-background-plain-text, #ffffff);
|
||||
|
|
@ -73,19 +85,13 @@ h2 {
|
|||
margin-bottom: 12px;
|
||||
line-height: 140%;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 15px;
|
||||
margin: 12px 0;
|
||||
}
|
||||
|
||||
/* Global content */
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#header {
|
||||
.logo {
|
||||
background-image: var(--image-logo, url('../../core/img/logo/logo.svg'));
|
||||
|
|
@ -112,6 +118,7 @@ form {
|
|||
margin: auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
form.install-form {
|
||||
max-width: 300px;
|
||||
}
|
||||
|
|
@ -120,6 +127,7 @@ form.install-form fieldset,
|
|||
form.install-form fieldset input {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
form.install-form .strengthify-wrapper {
|
||||
bottom: 17px;
|
||||
width: calc(100% - 8px);
|
||||
|
|
@ -135,24 +143,30 @@ form #sqliteInformation {
|
|||
margin-top: 0.5rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
form #adminaccount, form #use_other_db {
|
||||
margin-bottom: 15px;
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
form #adminaccount > legend,
|
||||
form #adminlogin {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
form #advancedHeader {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
form fieldset legend, #datadirContent label {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#datadirContent label {
|
||||
display: block;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
form #datadirField legend {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
|
@ -161,19 +175,12 @@ form #datadirField legend {
|
|||
#showAdvanced {
|
||||
padding: 13px; /* increase clickable area of Advanced dropdown */
|
||||
}
|
||||
|
||||
#showAdvanced img {
|
||||
vertical-align: middle; /* adjust position of Advanced dropdown arrow */
|
||||
}
|
||||
|
||||
/* Buttons and input */
|
||||
#submit-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 10px 5px;
|
||||
position: relative; /* Make the wrapper the containing block of its
|
||||
absolutely positioned descendant icons */
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1024px) {
|
||||
.wrapper {
|
||||
|
|
@ -181,10 +188,14 @@ form #datadirField legend {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
#submit-wrapper {
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 10px 5px;
|
||||
position: relative; /* Make the wrapper the containing block of its
|
||||
absolutely positioned descendant icons */
|
||||
|
||||
.submit-icon {
|
||||
position: absolute;
|
||||
|
|
@ -245,6 +256,7 @@ select {
|
|||
input[type='submit']:focus {
|
||||
box-shadow: 0 0 0 2px inset var(--color-main-text) !important;
|
||||
}
|
||||
|
||||
input[type='text'],
|
||||
input[type='tel'],
|
||||
input[type='password'],
|
||||
|
|
@ -257,15 +269,18 @@ input[type='email'] {
|
|||
font-weight: normal;
|
||||
margin-inline: 0;
|
||||
}
|
||||
|
||||
input[type='password'].password-with-toggle, input[type='text'].password-with-toggle {
|
||||
width: 238px;
|
||||
padding-inline-end: 40px !important;
|
||||
}
|
||||
|
||||
input.login {
|
||||
width: 260px;
|
||||
height: 50px;
|
||||
background-position: right 16px center;
|
||||
}
|
||||
|
||||
input[type='submit'],
|
||||
input[type='submit'].icon-confirm,
|
||||
input.updateButton,
|
||||
|
|
@ -307,13 +322,16 @@ input[type='checkbox'].checkbox {
|
|||
height: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
input[type='checkbox'].checkbox + label {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
input[type='checkbox'].checkbox:disabled + label,
|
||||
input[type='checkbox'].checkbox:disabled + label:before {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
input[type='checkbox'].checkbox + label:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
|
|
@ -326,25 +344,26 @@ input[type='checkbox'].checkbox + label:before {
|
|||
width: 10px;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
input[type='checkbox'].checkbox--white + label:before {
|
||||
border-color: #ddd;
|
||||
}
|
||||
|
||||
input[type='checkbox'].checkbox--white:not(:disabled):not(:checked) + label:hover:before,
|
||||
input[type='checkbox'].checkbox--white:focus + label:before {
|
||||
border-color: #fff;
|
||||
}
|
||||
input[type='checkbox'].checkbox--white:checked + label:before {
|
||||
background-color: #eee;
|
||||
border-color: #eee;
|
||||
}
|
||||
|
||||
input[type='checkbox'].checkbox--white:disabled + label:before {
|
||||
background-color: #666 !important;
|
||||
border-color: #999 !important;
|
||||
}
|
||||
|
||||
input[type='checkbox'].checkbox--white:checked:disabled + label:before {
|
||||
border-color: #666;
|
||||
background-color: #222;
|
||||
}
|
||||
|
||||
input[type='checkbox'].checkbox--white:checked + label:before {
|
||||
background-color: transparent !important;
|
||||
border-color: #fff !important;
|
||||
|
|
@ -364,6 +383,7 @@ input[type='checkbox'].checkbox--white:checked + label:before {
|
|||
overflow: hidden;
|
||||
height: 3px;
|
||||
}
|
||||
|
||||
.tooltip-inner {
|
||||
font-weight: bold;
|
||||
padding: 3px 6px;
|
||||
|
|
@ -386,12 +406,14 @@ input[type='checkbox'].checkbox--white:checked + label:before {
|
|||
padding: .6em 2.5em .4em .4em;
|
||||
width: 8em;
|
||||
}
|
||||
|
||||
#personal-show + label {
|
||||
height: 14px;
|
||||
margin-top: -25px;
|
||||
inset-inline-start: 295px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#passwordbutton {
|
||||
margin-inline-start: .5em;
|
||||
}
|
||||
|
|
@ -416,6 +438,7 @@ form .warning input[type='checkbox']+label {
|
|||
width: 320px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.two-factor-provider {
|
||||
display: flex;
|
||||
border-radius: 3px; /* --border-radius */
|
||||
|
|
@ -445,11 +468,13 @@ form .warning input[type='checkbox']+label {
|
|||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
|
||||
.two-factor-icon {
|
||||
width: 100px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.two-factor-submit {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
|
|
@ -457,11 +482,13 @@ form .warning input[type='checkbox']+label {
|
|||
border-radius: 100px; /* --border-radius-pill */
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.two-factor-primary {
|
||||
/* Fix for 'Use backup codes' button not taking correct styles */
|
||||
padding: 14px !important;
|
||||
width: 226px;
|
||||
}
|
||||
|
||||
.two-factor-secondary {
|
||||
display: inline-block;
|
||||
padding: 12px;
|
||||
|
|
@ -519,15 +546,19 @@ form #selectDbType {
|
|||
position: relative;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.grouptop, .groupmiddle {
|
||||
margin-bottom: 8px !important;
|
||||
}
|
||||
|
||||
.groupbottom {
|
||||
margin-bottom: 13px;
|
||||
}
|
||||
|
||||
.groupbottom input[type=submit] {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.grouptop.groupbottom input {
|
||||
border-radius: 3px !important;
|
||||
margin: 5px 0 !important;
|
||||
|
|
@ -567,9 +598,11 @@ form #selectDbType {
|
|||
.infogroup {
|
||||
margin: 8px 0;
|
||||
}
|
||||
|
||||
.infogroup:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
p.info {
|
||||
margin: 20px auto;
|
||||
-webkit-user-select: none;
|
||||
|
|
@ -598,6 +631,7 @@ p.info {
|
|||
body[dir='ltr'] .update img.float-spinner {
|
||||
float: left;
|
||||
}
|
||||
|
||||
body[dir='rtl'] .update img.float-spinner {
|
||||
float: right;
|
||||
}
|
||||
|
|
@ -606,6 +640,7 @@ body[dir='rtl'] .update img.float-spinner {
|
|||
text-align: start;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.update-show-detailed {
|
||||
padding: 12px;
|
||||
display: block;
|
||||
|
|
@ -628,18 +663,23 @@ body[dir='rtl'] .update img.float-spinner {
|
|||
.icon-info-white {
|
||||
background-image: url('../img/actions/info-white.svg?v=2');
|
||||
}
|
||||
|
||||
.icon-error-white {
|
||||
background-image: url('../img/actions/error-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-caret-white {
|
||||
background-image: url('../img/actions/caret-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-confirm {
|
||||
background-image: url('../img/actions/confirm.svg?v=2');
|
||||
}
|
||||
|
||||
.icon-confirm-white {
|
||||
background-image: url('../img/actions/confirm-white.svg?v=2');
|
||||
}
|
||||
|
||||
.icon-checkmark-white {
|
||||
background-image: url('../img/actions/checkmark-white.svg?v=1');
|
||||
}
|
||||
|
|
@ -652,17 +692,24 @@ body[dir='rtl'] .update img.float-spinner {
|
|||
height: 32px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
[class^='icon-'], [class*=' icon-'] {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
min-width: 16px;
|
||||
min-height: 16px;
|
||||
}
|
||||
|
||||
.loading, .loading-small, .icon-loading, .icon-loading-dark, .icon-loading-small, .icon-loading-small-dark {
|
||||
position: relative;
|
||||
filter: var(--background-invert-if-dark)
|
||||
}
|
||||
|
||||
.loading:after, .loading-small:after, .icon-loading:after, .icon-loading-dark:after, .icon-loading-small:after, .icon-loading-small-dark:after {
|
||||
border: 2px solid rgba(150, 150, 150, 0.5);
|
||||
border-radius: 100%;
|
||||
border-top-color: #646464;
|
||||
|
||||
z-index: 2;
|
||||
content: '';
|
||||
height: 32px;
|
||||
|
|
@ -671,24 +718,22 @@ body[dir='rtl'] .update img.float-spinner {
|
|||
position: absolute;
|
||||
top: 50%;
|
||||
inset-inline-start: 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;
|
||||
}
|
||||
|
||||
.primary .loading,.primary+.loading,.primary .loading-small,.primary+.loading-small,.primary .icon-loading,.primary+.icon-loading,.primary .icon-loading-dark,.primary+.icon-loading-dark,.primary .icon-loading-small,.primary+.icon-loading-small,.primary .icon-loading-small-dark,.primary+.icon-loading-small-dark {
|
||||
filter: var(--primary-invert-if-bright)
|
||||
}
|
||||
.loading:after, .loading-small:after, .icon-loading:after, .icon-loading-dark:after, .icon-loading-small:after, .icon-loading-small-dark:after {
|
||||
border: 2px solid rgba(150, 150, 150, 0.5);
|
||||
border-top-color: #646464;
|
||||
}
|
||||
|
||||
.icon-loading-dark:after, .icon-loading-small-dark:after {
|
||||
border: 2px solid rgba(187, 187, 187, 0.5);
|
||||
border-top-color: #bbb;
|
||||
}
|
||||
|
||||
.icon-loading-small:after, .icon-loading-small-dark:after {
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
|
|
@ -698,12 +743,15 @@ body[dir='rtl'] .update img.float-spinner {
|
|||
img.icon-loading, object.icon-loading, video.icon-loading, button.icon-loading, textarea.icon-loading, input.icon-loading, select.icon-loading, div[contenteditable=true].icon-loading {
|
||||
background-image: url('../img/loading.gif');
|
||||
}
|
||||
|
||||
img.icon-loading-dark, object.icon-loading-dark, video.icon-loading-dark, button.icon-loading-dark, textarea.icon-loading-dark, input.icon-loading-dark, select.icon-loading-dark, div[contenteditable=true].icon-loading-dark {
|
||||
background-image: url('../img/loading-dark.gif');
|
||||
}
|
||||
|
||||
img.icon-loading-small, object.icon-loading-small, video.icon-loading-small, button.icon-loading-small, textarea.icon-loading-small, input.icon-loading-small, select.icon-loading-small, div[contenteditable=true].icon-loading-small {
|
||||
background-image: url('../img/loading-small.gif');
|
||||
}
|
||||
|
||||
img.icon-loading-small-dark, object.icon-loading-small-dark, video.icon-loading-small-dark, button.icon-loading-small-dark, textarea.icon-loading-small-dark, input.icon-loading-small-dark, select.icon-loading-small-dark, div[contenteditable=true].icon-loading-small-dark {
|
||||
background-image: url('../img/loading-small-dark.gif');
|
||||
}
|
||||
|
|
@ -798,7 +846,6 @@ a.legal {
|
|||
.guest-box, .body-login-container {
|
||||
// Ensure the maxcontrast color is set for the background
|
||||
--color-text-maxcontrast: var(--color-text-maxcontrast-background-blur, var(--color-main-text));
|
||||
|
||||
color: var(--color-main-text);
|
||||
background-color: var(--color-main-background-blur);
|
||||
padding: calc(3 * var(--default-grid-baseline));
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/*!
|
||||
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/@import"../../dist/icons.css";/*!
|
||||
*/@import'../../dist/icons.css';/*!
|
||||
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*//*!
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["icons.scss","variables.scss","functions.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA,GAsHQ,8BCpHR;AAAA;AAAA;AAAA,GCFA;AAAA;AAAA;AAAA,GFQA,iCACC,4BACA,2BACA,eACA,gBAGD,iBACC,kDAID,sGAMC,kBACA,0IACC,UACA,WACA,YACA,WACA,uBACA,kBACA,QACA,uBACA,mBACA,6CACA,qCACA,gCACA,4BACA,wBACA,4CACA,2CAEA,wCAEA,gYAGC,uCAKH,wDAEC,2CACA,4CAGD,yDAEC,YACA,WACA,qBAKA,yJACC,2CAED,iMACC,gDAED,yMACC,iDAED,iPACC,sDAIF,kBACC,KACC,uBAED,GACC,0BAIF,SACC,gCAGD,yKAQC","file":"icons.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["icons.scss","variables.scss","functions.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA,GAwHQ,8BCtHR;AAAA;AAAA;AAAA,GCFA;AAAA;AAAA;AAAA,GFQA,iCACC,4BACA,2BACA,eACA,gBAGD,iBACC,kDAID,sGAMC,kBACA,0IACC,UACA,WACA,YACA,WACA,uBACA,kBACA,QACA,uBACA,mBACA,6CACA,qCACA,gCACA,4BACA,wBACA,4CACA,2CAEA,wCAEA,gYAGC,uCAKH,wDAEC,2CACA,4CAGD,yDAEC,YACA,WACA,qBAKA,yJACC,2CAED,iMACC,gDAED,yMACC,iDAED,iPACC,sDAIF,kBACC,KACC,uBAED,GACC,0BAIF,SACC,gCAGD,yKAQC","file":"icons.css"}
|
||||
|
|
@ -116,4 +116,6 @@ audio, canvas, embed, iframe, img, input, object, video {
|
|||
* or have some additional styling like drop shadows
|
||||
*/
|
||||
|
||||
@import url('../../dist/icons.css');
|
||||
// plain CSS import and not SCSS so disable the `@import` rule
|
||||
/* stylelint-disable-next-line no-invalid-position-at-import-rule */
|
||||
@import '../../dist/icons.css';
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["inputs.scss","variables.scss","functions.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GCFA;AAAA;AAAA;AAAA,GFUA,kFACC,6BAED,uGACC,wCAED,sDACC,kCAMD,iHAUC,YACA,yCACA,sBAYA,oFACC,eACA,oCACA,sCACA,QA/BiB,GAmCnB,wBACC,aAID,yJAUC,iBACA,eACA,8CACA,6BACA,0CACA,mCACA,aACA,mCACA,YACA,uYACC,WACA,sBAOC,kxDAIC,oCACA,aAED,gmBACC,aACA,8CACA,6BAGF,maACC,6DACA,oDAGF,wNACC,8CACA,6BACA,eACA,WAED,wNACC,gBAED,oPACC,mDAGD,iNACC,8CACA,0CACA,wCACA,eAGA,kvBAEC,+CAIA,mjCAGC,oDACA,gDAED,gwBAEC,4CAED,2WACC,6CAGF,gRAEC,8CACA,6CACA,eAKH,2BACC,WACA,sBACA,gBACA,eACA,8CACA,oCACA,gDACA,aACA,mCAEA,8CACA,oCACA,eACA,WAKA,4KACC,6BACA,0BACA,qBAEA,qCAED,0EAIC,YACA,WAID,kBACC,WACA,cACA,gBACA,WACA,eAED,mBACC,SACA,QAED,iBACC,cAKF,6GASC,2FACA,mCACA,WACA,yCACA,eACA,sBACA,8CACA,oDACA,YAEA,kSAEC,0DAGD,mKACC,eAIF,qMAcC,WACA,sBACA,eACA,mCACA,8CACA,6BACA,iDACA,YACA,aACA,yCACA,uBACA,eACA,+0BACC,8CACA,kDAED,yRACC,YAIF,mCACC,8CACA,6BAGD,mCACC,aACA,YAID,OACC,iDACA,gBACA,8CACA,mCAGD,qBACC,qCAGD,qBACC,oCASA,2DACC,eAIA,sFACC,eAMH,sGAQC,iBACA,2CAGA,gMACC,SAGD,oIACC,+CACA,2CACA,sBACA,kKACC,qDACA,+CAYD,4MAEC,qBACA,2BACA,WAUD,kGACC,qCACA,mDACA,mFACA,iBACA,4BAEA,yDACA,UACA,qCACA,oCACA,gBACA,eACA,oBACA,6HACC,eE1UH,+CFkVG,yOACC,gCAID,4qBAGC,qDACA,8CACA,6vBACC,uDAQH,+VACC,qDACA,mDAEA,UAQJ,uBAEC,eAED,2BAEC,mBAUC,4GAEC,kBACA,4BACA,SACA,UACA,WACA,gBACA,oIACC,iBAED,4WAEC,eAED,gKACC,WACA,qBACA,OAxBkB,KAyBlB,MAzBkB,KA0BlB,sBACA,kBACA,aACA,sBACA,+CAED,oeAEC,0CAED,4LACC,oBACA,qCACA,kBACA,mBAED,4bAIC,8DACA,8CACA,0CAED,oMACC,+CACA,0DAED,oOACC,+CAID,gJACC,qBACA,yBAED,oMACC,cAhEkB,KAoEnB,mFACC,kBACA,OAtEkB,KAuElB,MAvEkB,KAwElB,2BACA,2BAED,mGACC,yDAED,+GACC,0DAOD,gZAEC,2BAED,wUACC,aA1FyB,KA4F1B,4NACC,8DACA,+BACA,2BAED,gOACC,0CACA,2CAED,gQACC,8DACA,2CACA,+BAID,8OAEC,0CACA,6BACA,+DAED,6HACC,gEAED,mHACC,WAOJ,iBACC,gBACA,8CACA,qCACC,sCAED,yBACC,qBACA,sBACA,sBACA,6BACC,eAGF,uCACC,gBACA,wDACA,yCAED,kCACC,iBACA,SACA,UACA,wDACC,mBACA,gBACA,uBACA,6DACC,eACA,gEACC,eACA,iBAIH,6JAGC,kBACA,kBACA,aACA,+BACA,eACA,oCAGA,mEACC,8CAGF,uDACE,8CACA,6BAKJ,qDACC,4CAGD,qDACC,2CAKA,oGAEC,eAID,mHAEC,gBACA,mBACA,uBACA,wCACA,+CACA,uBACA,yCACA,0CACA,SACA,YACA,gBACA,6IACC,0CAED,iKACC,iBACA,yBACA,stBAIC,sBACA,8CACA,oCACA,0CAED,2NACC,aAGF,2KACC,iBACA,gBACA,gBACA,6BACA,yMACC,2BAKJ,sBACC,WACA,sBACA,+DACC,aACA,eACA,kEACC,WAGF,uCACC,gBACA,mBACA,uBACA,wCACA,+CACA,uBACA,yCACA,0CACA,SACA,iBACA,gBACA,oDACC,0CAED,8DACC,iBACA,yBACA,sBACA,8CACA,0CACA,2FACC,aAED,8JAEC,qCACA,iCAGF,sDACC,gBACA,gBACA,YACA,wDACC,mEACA,WAGF,2LAGC,WAED,mEACC,iBAMH,UACC,WACA,sBACA,qBACA,2BACC,wBACA,eACA,yCACC,iBACA,yBACA,sBACA,8CACA,oCACA,0CACA,oBACA,mBACA,gDACC,wBAIH,yBACC,UACA,4BACC,YACA,kBACA,kBACA,+BACA,eACA,oCACA,8BACC,mBACA,gBACA,uBACA,YACA,sBACA,uBACA,SACA,eACA,eACA,2BACA,yBACA,sBACA,qBACA,iBACA,oBACA,mBACA,0CACA,yBACA,sCACC,YACA,4CACA,4BACA,2BACA,eACA,gBACA,cACA,WACA,sBACA,kBAGF,sCACC,6BAED,qCACC,8CACA,6BACA,6CACC,mBAQL,mBACC,cACA,WACA,UACA,cACA,8CACA,mCACA,gBACA,WACA,gBAEC,2CACC,8BAED,gDACC,8BAGF,yCACC,yBAED,sCACC,mCACA,wCACA,iCAED,2CACC,mCACA,wCACA,iCAKF,iBACC,QAEC,0BAED,QAEC,yBAED,YAGC,0BAED,QAEC,0BAGF,OACC,qBACA,uBACA,mCAKD,cACC,kBACA,4BACA,aACA,UACA,WACA,gBAWD,cAJC,oCACA,mCAOD,wBARC,oCACA,mCAWD,4BAZC,oCACA","file":"inputs.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["inputs.scss","variables.scss","functions.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GCFA;AAAA;AAAA;AAAA,GFUA,kFACC,6BAGD,uGACC,wCAGD,sDACC,kCAMD,iHAUC,YACA,yCACA,sBAYA,oFACC,eACA,oCACA,sCACA,QA/BiB,GAmCnB,wBACC,aAID,yJAUC,iBACA,8CACA,6BACA,0CACA,mCACA,aACA,mCACA,YACA,uYACC,WACA,sBAOC,kxDAIC,oCACA,aAED,gmBACC,aACA,8CACA,6BAGF,maACC,6DACA,oDAGF,wNACC,8CACA,6BACA,eACA,WAED,wNACC,gBAED,oPACC,mDAGD,iNACC,8CACA,0CACA,wCACA,eAGA,kvBAEC,+CAIA,mjCAGC,oDACA,gDAED,gwBAEC,4CAED,2WACC,6CAGF,gRAEC,8CACA,6CACA,eAKH,2BACC,WACA,sBACA,gBACA,eACA,gDACA,aACA,mCAEA,8CACA,oCACA,eACA,WAKA,4KACC,6BACA,0BACA,qBAEA,qCAED,0EAIC,YACA,WAID,kBACC,WACA,cACA,gBACA,WACA,eAED,mBACC,SACA,QAED,iBACC,cAKF,6GASC,2FACA,mCACA,WACA,yCACA,eACA,sBACA,8CACA,oDACA,YAEA,kSAEC,0DAGD,mKACC,eAIF,qMAcC,WACA,sBACA,eACA,mCACA,8CACA,6BACA,iDACA,YACA,aACA,yCACA,uBACA,eACA,+0BACC,8CACA,kDAED,yRACC,YAIF,mCACC,8CACA,6BAGD,mCACC,aACA,YAID,OACC,iDACA,gBACA,8CACA,mCAGD,qBACC,qCAGD,qBACC,oCASA,2DACC,eAIA,sFACC,eAMH,sGAQC,iBACA,2CAGA,gMACC,SAGD,oIACC,+CACA,2CACA,sBACA,kKACC,qDACA,+CAaD,4MAEC,qBACA,2BACA,WASF,kGACC,qCACA,mDACA,mFACA,iBACA,4BAEA,yDACA,UACA,qCACA,oCACA,gBACA,eACA,oBACA,6HACC,eEzUF,+CFiVE,yOACC,gCAID,4qBAGC,qDACA,8CACA,6vBACC,uDAQH,+VACC,qDACA,mDAEA,UAOH,uBAEC,eAGD,2BAEC,mBASA,4GAEC,kBACA,4BACA,SACA,UACA,WACA,gBACA,oIACC,iBAED,4WAEC,eAED,gKACC,WACA,qBACA,OAvBmB,KAwBnB,MAxBmB,KAyBnB,sBACA,kBACA,aACA,sBACA,+CAED,oeAEC,0CAED,4LACC,oBACA,qCACA,kBACA,mBAED,4bAIC,8DACA,8CACA,0CAED,oMACC,+CACA,0DAED,oOACC,+CAID,gJACC,qBACA,yBAED,oMACC,cA/DmB,KAmEpB,mFACC,kBACA,OArEmB,KAsEnB,MAtEmB,KAuEnB,2BACA,2BAED,mGACC,yDAED,+GACC,0DAOD,gZAEC,2BAED,wUACC,aAzF0B,KA2F3B,4NACC,8DACA,+BACA,2BAED,gOACC,0CACA,2CAED,gQACC,8DACA,2CACA,+BAID,8OAEC,0CACA,6BACA,+DAED,6HACC,gEAED,mHACC,WAMH,iBACC,gBACA,8CACA,qCACC,sCAED,yBACC,qBACA,sBACA,sBACA,6BACC,eAGF,uCACC,gBACA,wDACA,yCAED,kCACC,iBACA,SACA,UACA,wDACC,mBACA,gBACA,uBACA,6DACC,eACA,gEACC,eACA,iBAIH,6JAGC,kBACA,kBACA,aACA,+BACA,eACA,oCAGA,mEACC,8CAGF,uDACE,8CACA,6BAKJ,qDACC,4CAGD,qDACC,2CAKA,oGAEC,eAKD,mHAEC,gBACA,mBACA,uBACA,wCACA,+CACA,uBACA,yCACA,0CACA,SACA,YACA,gBACA,6IACC,0CAED,iKACC,iBACA,yBACA,stBAIC,sBACA,8CACA,oCACA,0CAED,2NACC,aAGF,2KACC,iBACA,gBACA,gBACA,6BACA,yMACC,2BAMJ,sBACC,WACA,sBACA,+DACC,aACA,eACA,kEACC,WAGF,uCACC,gBACA,mBACA,uBACA,wCACA,+CACA,uBACA,yCACA,0CACA,SACA,iBACA,gBACA,oDACC,0CAED,8DACC,iBACA,yBACA,sBACA,8CACA,0CACA,2FACC,aAED,8JAEC,qCACA,iCAGF,sDACC,gBACA,gBACA,YACA,wDACC,mEACA,WAGF,2LAGC,WAED,mEACC,iBAMH,UACC,WACA,sBACA,qBACA,2BACC,wBACA,eACA,yCACC,iBACA,yBACA,sBACA,8CACA,oCACA,0CACA,oBACA,mBACA,gDACC,wBAIH,yBACC,UACA,4BACC,YACA,kBACA,kBACA,+BACA,eACA,oCACA,8BACC,mBACA,gBACA,uBACA,YACA,sBACA,uBACA,SACA,eACA,eACA,2BACA,yBACA,sBACA,qBACA,iBACA,oBACA,mBACA,0CACA,yBACA,sCACC,YACA,4CACA,4BACA,2BACA,eACA,gBACA,cACA,WACA,sBACA,kBAGF,sCACC,6BAED,qCACC,8CACA,6BACA,6CACC,mBAQL,mBACC,cACA,WACA,UACA,cACA,8CACA,mCACA,gBACA,WACA,gBAEC,2CACC,8BAED,gDACC,8BAGF,yCACC,yBAED,sCACC,mCACA,wCACA,iCAED,2CACC,mCACA,wCACA,iCAKF,iBACC,QAEC,0BAED,QAEC,yBAED,YAGC,0BAED,QAEC,0BAIF,OACC,qBACA,uBACA,mCAKD,cACC,kBACA,4BACA,aACA,UACA,WACA,gBAWD,cAJC,oCACA,mCAOD,wBARC,oCACA,mCAWD,4BAZC,oCACA","file":"inputs.css"}
|
||||
|
|
@ -11,9 +11,11 @@
|
|||
input, textarea, select, button, div[contenteditable=true], div[contenteditable=false] {
|
||||
font-family: var(--font-face);
|
||||
}
|
||||
|
||||
.select2-container-multi .select2-choices .select2-search-field input, .select2-search input, .ui-widget {
|
||||
font-family: var(--font-face) !important;
|
||||
}
|
||||
|
||||
.select2-container.select2-drop-above .select2-choice {
|
||||
background-image: unset !important;
|
||||
}
|
||||
|
|
@ -69,7 +71,6 @@ button:not(
|
|||
.button,
|
||||
.pager li a {
|
||||
padding: 7px 14px;
|
||||
font-size: 13px;
|
||||
background-color: var(--color-main-background);
|
||||
color: var(--color-main-text);
|
||||
border: 1px solid var(--color-border-dark);
|
||||
|
|
@ -158,8 +159,6 @@ div[contenteditable=false] {
|
|||
margin-inline-start: 0;
|
||||
padding: 7px 6px;
|
||||
font-size: 13px;
|
||||
background-color: var(--color-main-background);
|
||||
color: var(--color-text-maxcontrast);
|
||||
border: 1px solid var(--color-background-darker);
|
||||
outline: none;
|
||||
border-radius: var(--border-radius);
|
||||
|
|
@ -339,6 +338,7 @@ input[type='reset'] {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
button:not(
|
||||
.button-vue,
|
||||
.action-button,
|
||||
|
|
@ -357,58 +357,56 @@ button:not(
|
|||
}
|
||||
|
||||
/* Confirm inputs */
|
||||
input {
|
||||
&[type='text'],
|
||||
&[type='password'],
|
||||
&[type='email'] {
|
||||
+ .icon-confirm {
|
||||
margin-inline-start: -13px !important;
|
||||
border-inline-start-color: transparent !important;
|
||||
border-radius: 0 var(--border-radius-large) var(--border-radius-large) 0 !important;
|
||||
border-width: 2px;
|
||||
background-clip: padding-box;
|
||||
/* Avoid background under border */
|
||||
background-color: var(--color-main-background) !important;
|
||||
opacity: 1;
|
||||
height: var(--default-clickable-area);
|
||||
width: var(--default-clickable-area);
|
||||
padding: 7px 6px;
|
||||
cursor: pointer;
|
||||
margin-inline-end: 0;
|
||||
&:disabled {
|
||||
cursor: default;
|
||||
@include functions.icon-color('confirm-fade', 'actions', variables.$color-black, 2, true);
|
||||
}
|
||||
input[type='text'],
|
||||
input[type='password'],
|
||||
input[type='email'] {
|
||||
+ .icon-confirm {
|
||||
margin-inline-start: -13px !important;
|
||||
border-inline-start-color: transparent !important;
|
||||
border-radius: 0 var(--border-radius-large) var(--border-radius-large) 0 !important;
|
||||
border-width: 2px;
|
||||
background-clip: padding-box;
|
||||
/* Avoid background under border */
|
||||
background-color: var(--color-main-background) !important;
|
||||
opacity: 1;
|
||||
height: var(--default-clickable-area);
|
||||
width: var(--default-clickable-area);
|
||||
padding: 7px 6px;
|
||||
cursor: pointer;
|
||||
margin-inline-end: 0;
|
||||
&:disabled {
|
||||
cursor: default;
|
||||
@include functions.icon-color('confirm-fade', 'actions', variables.$color-black, 2, true);
|
||||
}
|
||||
}
|
||||
|
||||
/* only show confirm borders if input is not focused */
|
||||
&:not(:active):not(:hover):not(:focus){
|
||||
&:invalid {
|
||||
+ .icon-confirm {
|
||||
border-color: var(--color-error);
|
||||
}
|
||||
}
|
||||
/* only show confirm borders if input is not focused */
|
||||
&:not(:active):not(:hover):not(:focus){
|
||||
&:invalid {
|
||||
+ .icon-confirm {
|
||||
&:active,
|
||||
&:hover,
|
||||
&:focus {
|
||||
border-color: var(--color-primary-element) !important;
|
||||
border-radius: var(--border-radius) !important;
|
||||
&:disabled {
|
||||
border-color: var(--color-background-darker) !important;
|
||||
}
|
||||
border-color: var(--color-error);
|
||||
}
|
||||
}
|
||||
+ .icon-confirm {
|
||||
&:active,
|
||||
&:hover,
|
||||
&:focus {
|
||||
border-color: var(--color-primary-element) !important;
|
||||
border-radius: var(--border-radius) !important;
|
||||
&:disabled {
|
||||
border-color: var(--color-background-darker) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
&:active,
|
||||
&:hover,
|
||||
&:focus {
|
||||
+ .icon-confirm {
|
||||
border-color: var(--color-primary-element) !important;
|
||||
border-inline-start-color: transparent !important;
|
||||
/* above previous input */
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
&:active,
|
||||
&:hover,
|
||||
&:focus {
|
||||
+ .icon-confirm {
|
||||
border-color: var(--color-primary-element) !important;
|
||||
border-inline-start-color: transparent !important;
|
||||
/* above previous input */
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -419,6 +417,7 @@ button img,
|
|||
.button img {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
select,
|
||||
.button.multiselect {
|
||||
font-weight: normal;
|
||||
|
|
@ -428,124 +427,122 @@ select,
|
|||
$checkbox-radio-size: 14px;
|
||||
$color-checkbox-radio-white: #fff;
|
||||
|
||||
input {
|
||||
&[type='checkbox'],
|
||||
&[type='radio'] {
|
||||
&.radio,
|
||||
&.checkbox {
|
||||
position: absolute;
|
||||
inset-inline-start: -10000px;
|
||||
top: auto;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
+ label {
|
||||
user-select: none;
|
||||
}
|
||||
&:disabled + label,
|
||||
&:disabled + label:before {
|
||||
cursor: default;
|
||||
}
|
||||
+ label:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: $checkbox-radio-size;
|
||||
width: $checkbox-radio-size;
|
||||
vertical-align: middle;
|
||||
border-radius: 50%;
|
||||
margin: 0 3px;
|
||||
margin-inline: 3px 6px;
|
||||
border: 1px solid var(--color-text-maxcontrast);
|
||||
}
|
||||
&:not(:disabled):not(:checked) + label:hover:before,
|
||||
&:focus + label:before {
|
||||
border-color: var(--color-primary-element);
|
||||
}
|
||||
&:focus-visible + label {
|
||||
outline-style: solid;
|
||||
outline-color: var(--color-main-text);
|
||||
outline-width: 1px;
|
||||
outline-offset: 2px;
|
||||
}
|
||||
&:checked + label:before,
|
||||
&.checkbox:indeterminate + label:before {
|
||||
/* ^ :indeterminate have a strange behavior on radio,
|
||||
so we respecified the checkbox class again to be safe */
|
||||
box-shadow: inset 0px 0px 0px 2px var(--color-main-background);
|
||||
background-color: var(--color-primary-element);
|
||||
border-color: var(--color-primary-element);
|
||||
}
|
||||
&:disabled + label:before {
|
||||
border: 1px solid var(--color-text-maxcontrast);
|
||||
background-color: var(--color-text-maxcontrast) !important; /* override other status */
|
||||
}
|
||||
&:checked:disabled + label:before {
|
||||
background-color: var(--color-text-maxcontrast);
|
||||
}
|
||||
|
||||
// Detail description below label of checkbox or radio button
|
||||
& + label ~ em {
|
||||
display: inline-block;
|
||||
margin-inline-start: 25px;
|
||||
}
|
||||
& + label ~ em:last-of-type {
|
||||
margin-bottom: $checkbox-radio-size;
|
||||
}
|
||||
input[type='checkbox'],
|
||||
input[type='radio'] {
|
||||
&.radio,
|
||||
&.checkbox {
|
||||
position: absolute;
|
||||
inset-inline-start: -10000px;
|
||||
top: auto;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
+ label {
|
||||
user-select: none;
|
||||
}
|
||||
&.checkbox {
|
||||
+ label:before {
|
||||
border-radius: 1px;
|
||||
height: $checkbox-radio-size;
|
||||
width: $checkbox-radio-size;
|
||||
box-shadow: none !important;
|
||||
background-position: center;
|
||||
}
|
||||
&:checked + label:before {
|
||||
background-image: url('../img/actions/checkbox-mark.svg');
|
||||
}
|
||||
&:indeterminate + label:before {
|
||||
background-image: url('../img/actions/checkbox-mixed.svg');
|
||||
}
|
||||
&:disabled + label,
|
||||
&:disabled + label:before {
|
||||
cursor: default;
|
||||
}
|
||||
+ label:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: $checkbox-radio-size;
|
||||
width: $checkbox-radio-size;
|
||||
vertical-align: middle;
|
||||
border-radius: 50%;
|
||||
margin: 0 3px;
|
||||
margin-inline: 3px 6px;
|
||||
border: 1px solid var(--color-text-maxcontrast);
|
||||
}
|
||||
&:not(:disabled):not(:checked) + label:hover:before,
|
||||
&:focus + label:before {
|
||||
border-color: var(--color-primary-element);
|
||||
}
|
||||
&:focus-visible + label {
|
||||
outline-style: solid;
|
||||
outline-color: var(--color-main-text);
|
||||
outline-width: 1px;
|
||||
outline-offset: 2px;
|
||||
}
|
||||
&:checked + label:before,
|
||||
&.checkbox:indeterminate + label:before {
|
||||
/* ^ :indeterminate have a strange behavior on radio,
|
||||
so we respecified the checkbox class again to be safe */
|
||||
box-shadow: inset 0px 0px 0px 2px var(--color-main-background);
|
||||
background-color: var(--color-primary-element);
|
||||
border-color: var(--color-primary-element);
|
||||
}
|
||||
&:disabled + label:before {
|
||||
border: 1px solid var(--color-text-maxcontrast);
|
||||
background-color: var(--color-text-maxcontrast) !important; /* override other status */
|
||||
}
|
||||
&:checked:disabled + label:before {
|
||||
background-color: var(--color-text-maxcontrast);
|
||||
}
|
||||
|
||||
/* We do not use the variables as we keep the colours as white for this variant */
|
||||
&.radio--white,
|
||||
&.checkbox--white {
|
||||
+ label:before,
|
||||
&:focus + label:before {
|
||||
border-color: color.adjust($color-checkbox-radio-white, $lightness: -27%, $space: hsl);
|
||||
}
|
||||
&:not(:disabled):not(:checked) + label:hover:before {
|
||||
border-color: $color-checkbox-radio-white;
|
||||
}
|
||||
&:checked + label:before {
|
||||
box-shadow: inset 0px 0px 0px 2px var(--color-main-background);
|
||||
background-color: color.adjust($color-checkbox-radio-white, $lightness: -14%, $space: hsl);
|
||||
border-color: color.adjust($color-checkbox-radio-white, $lightness: -14%, $space: hsl);
|
||||
}
|
||||
&:disabled + label:before {
|
||||
background-color: color.adjust($color-checkbox-radio-white, $lightness: -27%, $space: hsl) !important; /* override other status */
|
||||
border-color: rgba($color-checkbox-radio-white, 0.4) !important; /* override other status */
|
||||
}
|
||||
&:checked:disabled + label:before {
|
||||
box-shadow: inset 0px 0px 0px 2px var(--color-main-background);
|
||||
border-color: rgba($color-checkbox-radio-white, 0.4) !important; /* override other status */
|
||||
background-color: color.adjust($color-checkbox-radio-white, $lightness: -27%, $space: hsl);
|
||||
}
|
||||
// Detail description below label of checkbox or radio button
|
||||
& + label ~ em {
|
||||
display: inline-block;
|
||||
margin-inline-start: 25px;
|
||||
}
|
||||
&.checkbox--white {
|
||||
&:checked + label:before,
|
||||
&:indeterminate + label:before {
|
||||
background-color: transparent !important; /* Override default checked */
|
||||
border-color: $color-checkbox-radio-white !important; /* Override default checked */
|
||||
background-image: url('../img/actions/checkbox-mark-white.svg');
|
||||
}
|
||||
&:indeterminate + label:before {
|
||||
background-image: url('../img/actions/checkbox-mixed-white.svg');
|
||||
}
|
||||
&:disabled + label:before {
|
||||
opacity: 0.7; /* No other choice for white background image */
|
||||
}
|
||||
& + label ~ em:last-of-type {
|
||||
margin-bottom: $checkbox-radio-size;
|
||||
}
|
||||
}
|
||||
&.checkbox {
|
||||
+ label:before {
|
||||
border-radius: 1px;
|
||||
height: $checkbox-radio-size;
|
||||
width: $checkbox-radio-size;
|
||||
box-shadow: none !important;
|
||||
background-position: center;
|
||||
}
|
||||
&:checked + label:before {
|
||||
background-image: url('../img/actions/checkbox-mark.svg');
|
||||
}
|
||||
&:indeterminate + label:before {
|
||||
background-image: url('../img/actions/checkbox-mixed.svg');
|
||||
}
|
||||
}
|
||||
|
||||
/* We do not use the variables as we keep the colours as white for this variant */
|
||||
&.radio--white,
|
||||
&.checkbox--white {
|
||||
+ label:before,
|
||||
&:focus + label:before {
|
||||
border-color: color.adjust($color-checkbox-radio-white, $lightness: -27%, $space: hsl);
|
||||
}
|
||||
&:not(:disabled):not(:checked) + label:hover:before {
|
||||
border-color: $color-checkbox-radio-white;
|
||||
}
|
||||
&:checked + label:before {
|
||||
box-shadow: inset 0px 0px 0px 2px var(--color-main-background);
|
||||
background-color: color.adjust($color-checkbox-radio-white, $lightness: -14%, $space: hsl);
|
||||
border-color: color.adjust($color-checkbox-radio-white, $lightness: -14%, $space: hsl);
|
||||
}
|
||||
&:disabled + label:before {
|
||||
background-color: color.adjust($color-checkbox-radio-white, $lightness: -27%, $space: hsl) !important; /* override other status */
|
||||
border-color: rgba($color-checkbox-radio-white, 0.4) !important; /* override other status */
|
||||
}
|
||||
&:checked:disabled + label:before {
|
||||
box-shadow: inset 0px 0px 0px 2px var(--color-main-background);
|
||||
border-color: rgba($color-checkbox-radio-white, 0.4) !important; /* override other status */
|
||||
background-color: color.adjust($color-checkbox-radio-white, $lightness: -27%, $space: hsl);
|
||||
}
|
||||
}
|
||||
&.checkbox--white {
|
||||
&:checked + label:before,
|
||||
&:indeterminate + label:before {
|
||||
background-color: transparent !important; /* Override default checked */
|
||||
border-color: $color-checkbox-radio-white !important; /* Override default checked */
|
||||
background-image: url('../img/actions/checkbox-mark-white.svg');
|
||||
}
|
||||
&:indeterminate + label:before {
|
||||
background-image: url('../img/actions/checkbox-mixed-white.svg');
|
||||
}
|
||||
&:disabled + label:before {
|
||||
opacity: 0.7; /* No other choice for white background image */
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -623,6 +620,7 @@ body[dir='rtl'] div.select2-drop .select2-search input {
|
|||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
div.select2-container-multi {
|
||||
.select2-choices,
|
||||
&.select2-container-active .select2-choices {
|
||||
|
|
@ -667,6 +665,7 @@ div.select2-container-multi {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
div.select2-container {
|
||||
margin: 3px;
|
||||
margin-inline-start: 0;
|
||||
|
|
@ -858,6 +857,7 @@ progress:not(.vue) {
|
|||
transform: translate(4px);
|
||||
}
|
||||
}
|
||||
|
||||
.shake {
|
||||
animation-name: shake;
|
||||
animation-duration: .7s;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
*/
|
||||
@use 'variables';
|
||||
|
||||
@media only screen and (width < variables.$breakpoint-mobile) {
|
||||
@media only screen and (width < #{variables.$breakpoint-mobile}) {
|
||||
|
||||
/* position share dropdown */
|
||||
#dropdown {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -2,15 +2,15 @@
|
|||
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
@use 'styles.scss';
|
||||
@use 'inputs.scss';
|
||||
@use 'header.scss';
|
||||
@use 'icons.scss';
|
||||
@use 'apps.scss';
|
||||
@use 'global.scss';
|
||||
@use 'fixes.scss';
|
||||
@use 'mobile.scss';
|
||||
@use 'tooltip.scss';
|
||||
@use 'styles';
|
||||
@use 'inputs';
|
||||
@use 'header';
|
||||
@use 'icons';
|
||||
@use 'apps';
|
||||
@use 'global';
|
||||
@use 'fixes';
|
||||
@use 'mobile';
|
||||
@use 'tooltip';
|
||||
// If you include .css, it will be imported as url
|
||||
@use '../../node_modules/@nextcloud/dialogs/dist/style';
|
||||
@use 'public.scss';
|
||||
@use 'public';
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["styles.scss","variables.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GDMA,MACC,mCACA,uCAGD,yQACC,SACA,UACA,SACA,oBACA,eACA,oBACA,wBACA,eACA,uCAGD,6CACC,aAID,0CACC,wDACA,aAGD,UACC,YAEA,8BAGD,6DACC,cAGD,KACC,gBAGD,MACC,yBACA,iBACA,mBAGD,cACC,iBACA,mBAGD,YACC,sBAGD,EACC,SACA,6BACA,qBACA,eACA,IACC,eAIF,WACC,aACA,0BAGD,MACC,eACA,QACC,eAIF,0BACC,eAGD,GACC,gBAGD,KACC,mBAEA,mCACA,uCACA,6BACA,6BAGD,mBACC,kBAGD,qBACC,kBACA,sBACA,qBACA,2BACA,2DACA,uBAGD,iBACC,qBACA,aACA,gCAGD,eACC,YACA,aAGD,cACC,eACA,MACA,SACA,qBACA,YACA,WACA,aACA,kBACA,gDACA,wCACA,iBACA,eACA,kBACC,cACA,kBACA,UACA,QACA,gBAED,gBACC,wCACA,sDACA,4CACC,6CAOH,oBACC,WACA,YAGD,2BACC,+BAGD,gCACC,+BAGD,0BACC,kCACA,yCACA,+BACA,4BAMD,YACC,8CACA,wCAMD,kBACC,sBAKD,4BAEC,oCACA,kBACA,gBACA,WACA,sDACC,gBAED,sEACC,gBAED,kCACC,mBAED,oHAEC,qBACA,YACA,WACA,mBACA,gcAEC,WAOH,sBACC,WASD,oCACC,kBACA,yBACA,sBACA,qBACA,iBAID,kBAEC,kBACA,qBACA,SAEA,YAGD,8CAGC,WAGD,8BACC,sBACA,oBACA,wBACA,wBAGD,2EACC,WAED,oGACC,kDACA,UACA,qBAGD,mDACC,6BACA,YACA,WACA,yCACA,4BACA,2BACA,WAOA,qEACC,UAED,qEACC,UAIF,wEACC,aAGD,2CACC,wBAGD,yBACC,kBACA,qBACA,sBAED,qBACC,cACA,mBACA,iBACA,uBACA,aAKD,4CACC,eACA,YACA,mCACA,6BACA,qDAIA,2BACC,4BAKD,wBACC,sBACA,4BACA,+BACC,2CACA,qBACA,kBAGF,0BACC,qBACA,iBAIF,YACC,YACA,sCACA,oBACC,sBAIF,eACC,2CAUD,mBACC,kBACA,cACA,2BACC,kBACA,cAIF,UACC,gBAGD,8CACC,UAIA,oGAGC,WAIF,mBACC,WACA,kBACA,QAEA,kDACC,UAIF,WACC,WACA,YAGD,eACC,WAIA,8CACC,UAKD,kDACC,UAKD,0CACC,UAKD,uGACC,8CAIF,KACC,mFAGD,OACC,gBACA,YACA,eACA,qBACA,UACC,qBAIF,2FACC,gBACA,uBAGD,2BACC,yDAGD,2BACC,6DAID,yBACC,gBACA,gBACA,WACA,mCACA,YACA,wBAEA,sKAGC,+BACA,mBAED,2CACC,YACA,eACA,YACA,8CACA,6BAEA,gEACC,cACA,mBAED,oDACC,WAEA,4JAEC,kCACA,4BAGF,oEACC,UAID,oDACC,mBACA,gCACA,WACA,WACA,YAED,0DACC,yBAGA,+FACC,gDAGD,wOAGC,8CACA,wCACA,iBAGD,yNAEC,gCACA,WAOH,4FACC,iDAED,4FACC,gDAKD,4FACC,gDAED,4FACC,iDAIF,wCACC,gCACA,wCAKD,yBACC,2BACA,sBACA,mCACA,wBAEA,4CACC,uBAGD,sKAGC,+BACA,mBAED,2CACC,YACA,eACA,YACA,8CACA,6BAEA,gEACC,cACA,mBAIF,qFACC,yBAGA,iDACC,mBACA,gCACA,WACA,yDACC,UACA,WACA,iBAGF,uDACC,yBAGA,0TAIC,8CACA,wCACA,iBAGD,4FACC,gCAGD,qEACC,gDASH,oGACC,aACA,iBACA,8BACA,0GACC,cACA,SACA,YACA,YACA,WACA,aACA,mBACA,uBACA,8GACC,kBACA,kBACA,mBACA,6BACA,cACA,iBACA,WACA,YACA,YACA,eAOJ,WACC,0BAGD,aACC,WACA,sBACA,oBAKD,YACC,kCAMA,qBACC,WACA,aAED,wBACC,cACA,gDACA,WACA,aAED,2BACC,WACA,YACA,6BACC,WAGF,wBACC,wCACA,kBACA,mBACA,gBACA,uBACA,0CACA,kCACA,6DACC,0CAGF,sBACC,UACA,WAKF,YACC,oBACA,YAED,SACC,oBACA,kDACA,4BACA,iCACA,YACA,0BACA,cACA,QACA,uBACA,mBACC,QACA,kBACA,qBACC,WAIA,wFACC,cAIF,gCACC,SACA,sBACA,mCACC,iBACA,gBACA,kBACA,uBACA,+DACC,+EAGF,+CACC,aAIH,gBACC,aACA,uBACC,QAGF,yBAEC,kBACA,aACA,WACA,uBACA,mBACA,gBACA,cAEA,gBAEA,8FAGC,oBAGF,yBACC,UACA,WAID,oBACC,iBACA,uBAEA,2BACC,uBAGF,+DACC,UAEA,0JAEC,WAOH,QACC,UACA,yCACA,sCACA,qCACA,oCACA,iCACA,oBACC,UAOD,+CACC,SACA,kBAED,mDACC,gBAKF,cACC,mBAMD,mBACC,aACA,QACA,SACA","file":"styles.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["styles.scss","variables.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GDMA,MACC,mCACA,uCAGD,yQACC,SACA,UACA,SACA,oBACA,eACA,oBACA,wBACA,eACA,uCAGD,6CACC,aAID,0CACC,wDACA,aAGD,UACC,YAEA,8BAGD,6DACC,cAGD,MACC,yBACA,iBACA,mBAGD,cACC,iBACA,mBAGD,YACC,sBAGD,EACC,SACA,6BACA,qBACA,eACA,IACC,eAIF,WACC,aACA,0BAGD,MACC,eACA,QACC,eAIF,0BACC,eAGD,GACC,gBAGD,KACC,mBAEA,mCACA,uCACA,6BACA,6BAGD,mBACC,kBAGD,qBACC,kBACA,sBACA,qBACA,2BACA,2DACA,uBAGD,iBACC,qBACA,aACA,gCAGD,eACC,YACA,aAGD,cACC,eACA,MACA,SACA,qBACA,YACA,WACA,aACA,kBACA,gDACA,wCACA,iBACA,eACA,kBACC,cACA,kBACA,UACA,QACA,gBAED,gBACC,wCACA,sDACA,4CACC,6CAOH,oBACC,WACA,YAGD,2BACC,+BAGD,gCACC,+BAGD,0BACC,kCACA,yCACA,+BACA,4BAMD,YACC,8CACA,wCAMD,kBACC,sBAKD,4BAEC,oCACA,kBACA,gBACA,WACA,sDACC,gBAED,sEACC,gBAED,kCACC,mBAED,oHAEC,qBACA,YACA,WACA,mBACA,gcAEC,WAOH,sBACC,WASD,oCACC,kBACA,yBACA,sBACA,qBACA,iBAID,kBAEC,kBACA,qBACA,SAEA,YAGD,8CAGC,WAGD,8BACC,sBACA,oBACA,wBACA,wBAGD,2EACC,WAGD,oGACC,kDACA,UACA,qBAGD,mDACC,6BACA,YACA,WACA,yCACA,4BACA,2BACA,WAOA,qEACC,UAED,qEACC,UAIF,wEACC,aAGD,2CACC,wBAGD,yBACC,kBACA,qBACA,sBAGD,qBACC,cACA,mBACA,iBACA,uBACA,aAKD,4CACC,eACA,YACA,mCACA,6BACA,qDAIA,2BACC,4BAKD,wBACC,sBACA,4BACA,+BACC,2CACA,qBACA,kBAGF,0BACC,qBACA,iBAIF,YACC,YACA,sCACA,oBACC,sBAIF,eACC,2CAUD,mBACC,kBACA,cACA,2BACC,kBACA,cAIF,UACC,gBAGD,8CACC,UAIA,WACC,WACA,YAGD,8CAEC,UAGD,oGAGC,WAIF,mBACC,WACA,kBACA,QAEA,kDACC,UAKD,kDACC,UAIF,eACC,WAEA,0CACC,UAKD,uGACC,8CAIF,KACC,mFAGD,OACC,gBACA,YACA,eACA,qBACA,UACC,qBAIF,2FACC,gBACA,uBAGD,2BACC,yDAGD,2BACC,6DAID,yBACC,gBACA,gBACA,WACA,mCACA,YACA,wBAEA,sKAGC,+BACA,mBAED,2CACC,YACA,eACA,YACA,8CACA,6BAEA,gEACC,cACA,mBAED,oDACC,WAEA,4JAEC,kCACA,4BAGF,oEACC,UAID,oDACC,mBACA,gCACA,WACA,WACA,YAED,0DACC,yBAGA,+FACC,gDAGD,wOAGC,8CACA,wCACA,iBAGD,yNAEC,gCACA,WAOH,4FACC,iDAED,4FACC,gDAKD,4FACC,gDAED,4FACC,iDAIF,wCACC,gCACA,wCAKD,yBACC,2BACA,sBACA,mCACA,wBAEA,4CACC,uBAGD,sKAGC,+BACA,mBAED,2CACC,YACA,eACA,YACA,8CACA,6BAEA,gEACC,cACA,mBAIF,qFACC,yBAGA,iDACC,mBACA,gCACA,WACA,yDACC,UACA,WACA,iBAGF,uDACC,yBAGA,0TAIC,8CACA,wCACA,iBAGD,4FACC,gCAGD,qEACC,gDASH,oGACC,aACA,iBACA,8BACA,0GACC,cACA,SACA,YACA,YACA,WACA,aACA,mBACA,uBACA,8GACC,kBACA,kBACA,mBACA,6BACA,cACA,iBACA,WACA,YACA,YACA,eAOJ,WACC,0BAGD,aACC,WACA,sBACA,oBAKD,YACC,kCAMA,qBACC,WACA,aAED,wBACC,cACA,gDACA,WACA,aAED,2BACC,WACA,YACA,6BACC,WAGF,wBACC,wCACA,kBACA,mBACA,gBACA,uBACA,0CACA,kCACA,6DACC,0CAGF,sBACC,UACA,WAKF,YACC,oBACA,YAGD,SACC,oBACA,kDACA,4BACA,iCACA,YACA,0BACA,cACA,QACA,uBACA,mBACC,QACA,kBACA,qBACC,WAIA,wFACC,cAIF,gCACC,SACA,sBACA,mCACC,iBACA,gBACA,kBACA,uBACA,+DACC,+EAGF,+CACC,aAIH,gBACC,aACA,uBACC,QAGF,yBAEC,kBACA,aACA,WACA,uBACA,mBACA,gBACA,cAEA,gBAEA,8FAGC,oBAGF,yBACC,UACA,WAGD,oBACC,iBACA,uBAEA,2BACC,uBAGF,+DACC,UAEA,0JAEC,WAOH,QACC,UACA,yCACA,sCACA,qCACA,oCACA,iCACA,oBACC,UAOD,+CACC,SACA,kBAED,mDACC,gBAKF,cACC,mBAMD,mBACC,aACA,QACA,SACA","file":"styles.css"}
|
||||
|
|
@ -43,10 +43,6 @@ article, aside, dialog, figure, footer, header, hgroup, nav, section {
|
|||
display: block;
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
|
|
@ -267,6 +263,7 @@ body[dir='rtl'] #dbpassword {
|
|||
#show:checked + label, #dbpassword:checked + label, #personal-show:checked + label {
|
||||
opacity: .8;
|
||||
}
|
||||
|
||||
#show:focus-visible + label, #dbpassword-toggle:focus-visible + label, #personal-show:focus-visible + label {
|
||||
box-shadow: var(--color-primary-element) 0 0 0 2px;
|
||||
opacity: 1;
|
||||
|
|
@ -308,6 +305,7 @@ body[dir='rtl'] #dbpassword {
|
|||
display: inline-block;
|
||||
margin-inline-end: 6px;
|
||||
}
|
||||
|
||||
#personal-show + label {
|
||||
display: block;
|
||||
inset-inline-end: 0;
|
||||
|
|
@ -385,6 +383,16 @@ tr .action:not(.permanent), .selectedActions > a {
|
|||
}
|
||||
|
||||
tr {
|
||||
.action {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
&:hover .action:hover,
|
||||
&:focus .action:focus {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&:hover .action:not(.menuitem),
|
||||
&:focus .action:not(.menuitem),
|
||||
.action.permanent:not(.menuitem) {
|
||||
|
|
@ -402,21 +410,6 @@ tr {
|
|||
}
|
||||
}
|
||||
|
||||
tr .action {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.header-action {
|
||||
opacity: .8;
|
||||
}
|
||||
|
||||
tr {
|
||||
&:hover .action:hover, &:focus .action:focus {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.selectedActions a {
|
||||
&:hover, &:focus {
|
||||
opacity: 1;
|
||||
|
|
@ -424,6 +417,8 @@ tr {
|
|||
}
|
||||
|
||||
.header-action {
|
||||
opacity: .8;
|
||||
|
||||
&:hover, &:focus {
|
||||
opacity: 1;
|
||||
}
|
||||
|
|
@ -718,6 +713,7 @@ span.ui-icon {
|
|||
display: inline-flex;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
li.crumb {
|
||||
display: inline-flex;
|
||||
background-image: url('../img/breadcrumb.svg?v=1');
|
||||
|
|
@ -786,8 +782,7 @@ li.crumb {
|
|||
padding: 0;
|
||||
width: 44px;
|
||||
}
|
||||
&:not(:first-child) a {
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
font-weight: bold;
|
||||
margin-inline-end: 10px;
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@
|
|||
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/.systemtags-select2-dropdown .select2-result-label .checkmark{visibility:hidden;margin-inline:-5px 5px;padding:4px}.systemtags-select2-dropdown .select2-result-label .new-item .systemtags-actions{display:none}.systemtags-select2-dropdown .select2-selected .select2-result-label .checkmark{visibility:visible}.systemtags-select2-dropdown .select2-result-label .icon{display:inline-block;opacity:.5}.systemtags-select2-dropdown .select2-result-label .icon.rename{padding:4px}.systemtags-select2-dropdown .systemtags-actions{position:absolute;inset-inline-end:5px}.systemtags-select2-dropdown .systemtags-rename-form{display:inline-block;width:calc(100% - 20px);top:-6px;position:relative}.systemtags-select2-dropdown .systemtags-rename-form input{display:inline-block;height:30px;width:calc(100% - 40px)}.systemtags-select2-dropdown .label{width:85%;display:inline-block;overflow:hidden;text-overflow:ellipsis}.systemtags-select2-dropdown .label.hidden{display:none}.systemtags-select2-dropdown span{line-height:25px}.systemtags-select2-dropdown .systemtags-item{display:inline-block;height:25px;width:100%}.systemtags-select2-dropdown .select2-result-label{height:25px}.systemtags-select2-container{width:100%}.systemtags-select2-container .select2-choices{flex-wrap:nowrap !important;max-height:44px}.systemtags-select2-container .select2-choices .select2-search-choice.select2-locked .label{opacity:.5}#select2-drop.systemtags-select2-dropdown .select2-results li.select2-result{padding:5px}/*# sourceMappingURL=systemtags.css.map */
|
||||
*/.systemtags-select2-dropdown .select2-result-label{height:25px}.systemtags-select2-dropdown .select2-result-label .checkmark{visibility:hidden;margin-inline:-5px 5px;padding:4px}.systemtags-select2-dropdown .select2-result-label .new-item .systemtags-actions{display:none}.systemtags-select2-dropdown .select2-selected .select2-result-label .checkmark{visibility:visible}.systemtags-select2-dropdown .select2-result-label .icon{display:inline-block;opacity:.5}.systemtags-select2-dropdown .select2-result-label .icon.rename{padding:4px}.systemtags-select2-dropdown .systemtags-actions{position:absolute;inset-inline-end:5px}.systemtags-select2-dropdown .systemtags-rename-form{display:inline-block;width:calc(100% - 20px);top:-6px;position:relative}.systemtags-select2-dropdown .systemtags-rename-form input{display:inline-block;height:30px;width:calc(100% - 40px)}.systemtags-select2-dropdown .label{width:85%;display:inline-block;overflow:hidden;text-overflow:ellipsis}.systemtags-select2-dropdown .label.hidden{display:none}.systemtags-select2-dropdown span{line-height:25px}.systemtags-select2-dropdown .systemtags-item{display:inline-block;height:25px;width:100%}.systemtags-select2-container{width:100%}.systemtags-select2-container .select2-choices{flex-wrap:nowrap !important;max-height:44px}.systemtags-select2-container .select2-choices .select2-search-choice.select2-locked .label{opacity:.5}#select2-drop.systemtags-select2-dropdown .select2-results li.select2-result{padding:5px}/*# sourceMappingURL=systemtags.css.map */
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["systemtags.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA,GAQE,8DACC,kBACA,uBACA,YAED,iFACC,aAGF,gFACC,mBAED,yDACC,qBACA,WACA,gEACC,YAGF,iDACC,kBACA,qBAED,qDACC,qBACA,wBACA,SACA,kBACA,2DACC,qBACA,YACA,wBAGF,oCACC,UACA,qBACA,gBACA,uBACA,2CACC,aAGF,kCACC,iBAED,8CACC,qBACA,YACA,WAED,mDACC,YAIF,8BACC,WAEA,+CACC,4BACA,gBAGD,4FACC,WAIF,6EACC","file":"systemtags.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["systemtags.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA,GAOC,mDACC,YAEA,8DACC,kBACA,uBACA,YAED,iFACC,aAGF,gFACC,mBAED,yDACC,qBACA,WACA,gEACC,YAGF,iDACC,kBACA,qBAED,qDACC,qBACA,wBACA,SACA,kBACA,2DACC,qBACA,YACA,wBAGF,oCACC,UACA,qBACA,gBACA,uBACA,2CACC,aAGF,kCACC,iBAED,8CACC,qBACA,YACA,WAIF,8BACC,WAEA,+CACC,4BACA,gBAGD,4FACC,WAIF,6EACC","file":"systemtags.css"}
|
||||
|
|
@ -6,6 +6,8 @@
|
|||
|
||||
.systemtags-select2-dropdown {
|
||||
.select2-result-label {
|
||||
height: 25px;
|
||||
|
||||
.checkmark {
|
||||
visibility: hidden;
|
||||
margin-inline: -5px 5px;
|
||||
|
|
@ -57,9 +59,6 @@
|
|||
height: 25px;
|
||||
width: 100%;
|
||||
}
|
||||
.select2-result-label {
|
||||
height: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
.systemtags-select2-container {
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["toast.scss","variables.scss","functions.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GCFA;AAAA;AAAA;AAAA,GFOA,gBACC,gBACA,gBACA,8CACA,6BACA,6CACA,aACA,wBACA,gBACA,eACA,aACA,mCAEA,6BACC,kBACA,MACA,mBACA,WACA,WACA,aEsBD,wCFpBC,2BACA,4BACA,iBACA,mBACA,gBAEA,0GACC,eACA,UAIH,uBACC,sBAGD,aACC,iDAED,YACC,2DAED,eACC,mDAED,eACC","file":"toast.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["toast.scss","variables.scss","functions.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA,GCEA;AAAA;AAAA;AAAA,GCFA;AAAA;AAAA;AAAA,GFOA,gBACC,gBACA,gBACA,8CACA,6BACA,6CACA,aACA,wBACA,gBACA,eACA,aACA,mCAEA,6BACC,kBACA,MACA,mBACA,WACA,WACA,aEsBD,wCFpBC,2BACA,4BACA,iBACA,mBACA,gBAEA,0GACC,eACA,UAKH,uBACC,sBAGD,aACC,iDAGD,YACC,2DAGD,eACC,mDAGD,eACC","file":"toast.css"}
|
||||
|
|
@ -38,6 +38,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.toastify.toastify-top {
|
||||
inset-inline-end: 10px;
|
||||
}
|
||||
|
|
@ -45,12 +46,15 @@
|
|||
.toast-error {
|
||||
border-inline-start: 3px solid var(--color-error);
|
||||
}
|
||||
|
||||
.toast-info {
|
||||
border-inline-start: 3px solid var(--color-primary-element);
|
||||
}
|
||||
|
||||
.toast-warning {
|
||||
border-inline-start: 3px solid var(--color-warning);
|
||||
}
|
||||
|
||||
.toast-success {
|
||||
border-inline-start: 3px solid var(--color-success);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
*/
|
||||
// SCSS darken/lighten function override
|
||||
@function nc-darken($color, $value) {
|
||||
@return color.adjust($color, $lightness: -$value, $space: hsl);
|
||||
@return color.adjust($color, $lightness: - $value, $space: hsl);
|
||||
}
|
||||
|
||||
@function nc-lighten($color, $value) {
|
||||
|
|
|
|||
|
|
@ -106,68 +106,67 @@ $clickable-area: 44px;
|
|||
$margin: 10px;
|
||||
|
||||
.result-items {
|
||||
&__item {
|
||||
&__item:deep {
|
||||
|
||||
::v-deep a {
|
||||
border-radius: 12px;
|
||||
border: 2px solid transparent;
|
||||
border-radius: var(--border-radius-large) !important;
|
||||
a {
|
||||
border: 2px solid transparent;
|
||||
border-radius: var(--border-radius-large) !important;
|
||||
|
||||
&--focused {
|
||||
background-color: var(--color-background-hover);
|
||||
}
|
||||
&--focused {
|
||||
background-color: var(--color-background-hover);
|
||||
}
|
||||
|
||||
&:active,
|
||||
&:hover,
|
||||
&:focus {
|
||||
background-color: var(--color-background-hover);
|
||||
border: 2px solid var(--color-border-maxcontrast);
|
||||
}
|
||||
&:active,
|
||||
&:hover,
|
||||
&:focus {
|
||||
background-color: var(--color-background-hover);
|
||||
border: 2px solid var(--color-border-maxcontrast);
|
||||
}
|
||||
|
||||
* {
|
||||
cursor: pointer;
|
||||
}
|
||||
* {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
&-icon {
|
||||
overflow: hidden;
|
||||
width: $clickable-area;
|
||||
height: $clickable-area;
|
||||
border-radius: var(--border-radius);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center center;
|
||||
background-size: 32px;
|
||||
&-icon {
|
||||
overflow: hidden;
|
||||
width: $clickable-area;
|
||||
height: $clickable-area;
|
||||
border-radius: var(--border-radius);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center center;
|
||||
background-size: 32px;
|
||||
|
||||
&--rounded {
|
||||
border-radius: math.div($clickable-area, 2);
|
||||
}
|
||||
&--rounded {
|
||||
border-radius: math.div($clickable-area, 2);
|
||||
}
|
||||
|
||||
&--no-preview {
|
||||
background-size: 32px;
|
||||
}
|
||||
&--no-preview {
|
||||
background-size: 32px;
|
||||
}
|
||||
|
||||
&--with-thumbnail {
|
||||
background-size: cover;
|
||||
}
|
||||
&--with-thumbnail {
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
&--with-thumbnail:not(&--rounded) {
|
||||
// compensate for border
|
||||
max-width: $clickable-area - 2px;
|
||||
max-height: $clickable-area - 2px;
|
||||
border: 1px solid var(--color-border);
|
||||
}
|
||||
&--with-thumbnail:not(&--rounded) {
|
||||
// compensate for border
|
||||
max-width: $clickable-area - 2px;
|
||||
max-height: $clickable-area - 2px;
|
||||
border: 1px solid var(--color-border);
|
||||
}
|
||||
|
||||
img {
|
||||
// Make sure to keep ratio
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
img {
|
||||
// Make sure to keep ratio
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
}
|
||||
}
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -93,7 +93,6 @@ function clearAndCloseSearch() {
|
|||
<style scoped lang="scss">
|
||||
.local-unified-search {
|
||||
--local-search-width: min(calc(250px + v-bind('searchGlobalButtonCSSWidth')), 95vw);
|
||||
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
height: var(--header-height);
|
||||
|
|
|
|||
|
|
@ -9,14 +9,17 @@
|
|||
background: var(--color-main-background) none;
|
||||
color: var(--color-main-text);
|
||||
}
|
||||
|
||||
.ui-widget-content a {
|
||||
color: var(--color-main-text);
|
||||
}
|
||||
|
||||
.ui-widget-header {
|
||||
border: none;
|
||||
color: var(--color-main-text);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.ui-widget-header a {
|
||||
color: var(--color-main-text);
|
||||
}
|
||||
|
|
@ -31,11 +34,13 @@
|
|||
font-weight: bold;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.ui-state-default a,
|
||||
.ui-state-default a:link,
|
||||
.ui-state-default a:visited {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.ui-state-hover,
|
||||
.ui-widget-content .ui-state-hover,
|
||||
.ui-widget-header .ui-state-hover,
|
||||
|
|
@ -47,12 +52,14 @@
|
|||
font-weight: bold;
|
||||
color: var(--color-main-text);
|
||||
}
|
||||
|
||||
.ui-state-hover a,
|
||||
.ui-state-hover a:hover,
|
||||
.ui-state-hover a:link,
|
||||
.ui-state-hover a:visited {
|
||||
color: var(--color-main-text);
|
||||
}
|
||||
|
||||
.ui-state-active,
|
||||
.ui-widget-content .ui-state-active,
|
||||
.ui-widget-header .ui-state-active {
|
||||
|
|
@ -61,6 +68,7 @@
|
|||
font-weight: bold;
|
||||
color: var(--color-main-text);
|
||||
}
|
||||
|
||||
.ui-state-active a,
|
||||
.ui-state-active a:link,
|
||||
.ui-state-active a:visited {
|
||||
|
|
@ -77,11 +85,13 @@
|
|||
color: var(--color-text-light);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.ui-state-highlight a,
|
||||
.ui-widget-content .ui-state-highlight a,
|
||||
.ui-widget-header .ui-state-highlight a {
|
||||
color: var(--color-text-lighter);
|
||||
}
|
||||
|
||||
.ui-state-error,
|
||||
.ui-widget-content .ui-state-error,
|
||||
.ui-widget-header .ui-state-error {
|
||||
|
|
@ -89,11 +99,13 @@
|
|||
background: var(--color-error) none;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.ui-state-error a,
|
||||
.ui-widget-content .ui-state-error a,
|
||||
.ui-widget-header .ui-state-error a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.ui-state-error-text,
|
||||
.ui-widget-content .ui-state-error-text,
|
||||
.ui-widget-header .ui-state-error-text {
|
||||
|
|
@ -105,20 +117,25 @@
|
|||
.ui-state-default .ui-icon {
|
||||
background-image: url('images/ui-icons_1d2d44_256x240.png');
|
||||
}
|
||||
|
||||
.ui-state-hover .ui-icon,
|
||||
.ui-state-focus .ui-icon {
|
||||
background-image: url('images/ui-icons_1d2d44_256x240.png');
|
||||
}
|
||||
|
||||
.ui-state-active .ui-icon {
|
||||
background-image: url('images/ui-icons_1d2d44_256x240.png');
|
||||
}
|
||||
|
||||
.ui-state-highlight .ui-icon {
|
||||
background-image: url('images/ui-icons_ffffff_256x240.png');
|
||||
}
|
||||
|
||||
.ui-state-error .ui-icon,
|
||||
.ui-state-error-text .ui-icon {
|
||||
background-image: url('images/ui-icons_ffd27a_256x240.png');
|
||||
}
|
||||
|
||||
.ui-icon.ui-icon-none {
|
||||
display: none;
|
||||
}
|
||||
|
|
@ -130,6 +147,7 @@
|
|||
background: #666666 url('images/ui-bg_diagonals-thick_20_666666_40x40.png') 50% 50% repeat;
|
||||
opacity: .5;
|
||||
}
|
||||
|
||||
.ui-widget-shadow {
|
||||
margin: -5px 0 0 -5px;
|
||||
padding: 5px;
|
||||
|
|
|
|||
|
|
@ -19,14 +19,16 @@
|
|||
max-width: calc(100% - 20px);
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.oc-dialog-title {
|
||||
background: var(--color-main-background);
|
||||
}
|
||||
|
||||
.oc-dialog-buttonrow {
|
||||
position: relative;
|
||||
display: flex;
|
||||
background: transparent;
|
||||
right: 0;
|
||||
inset-inline-end: 0;
|
||||
bottom: 0;
|
||||
padding: 0;
|
||||
padding-top: 10px;
|
||||
|
|
@ -57,7 +59,7 @@
|
|||
width: 44px !important;
|
||||
height: 44px !important;
|
||||
top: 4px;
|
||||
right: 4px;
|
||||
inset-inline-end: 4px;
|
||||
padding: 25px;
|
||||
background: var(--icon-close-dark) no-repeat center;
|
||||
opacity: .5;
|
||||
|
|
@ -76,7 +78,7 @@
|
|||
z-index: 100001;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
inset-inline-start: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -728,16 +728,6 @@ $input-padding: 10px;
|
|||
}
|
||||
}
|
||||
|
||||
&__form-input {
|
||||
margin: 0 !important;
|
||||
&:focus,
|
||||
&:focus-visible,
|
||||
&:active {
|
||||
border-color: 2px solid var(--color-main-text) !important;
|
||||
box-shadow: 0 0 0 2px var(--color-main-background) !important;
|
||||
}
|
||||
}
|
||||
|
||||
&__input-row {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
|
|
@ -774,6 +764,13 @@ $input-padding: 10px;
|
|||
height: $input-height;
|
||||
padding: $input-padding;
|
||||
|
||||
&:focus,
|
||||
&:focus-visible,
|
||||
&:active {
|
||||
border-color: 2px solid var(--color-main-text) !important;
|
||||
box-shadow: 0 0 0 2px var(--color-main-background) !important;
|
||||
}
|
||||
|
||||
&,
|
||||
&[placeholder],
|
||||
&::placeholder {
|
||||
|
|
@ -791,7 +788,8 @@ $input-padding: 10px;
|
|||
}
|
||||
}
|
||||
|
||||
&-reset, &-submit {
|
||||
&-reset,
|
||||
&-submit {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
inset-inline-end: 4px;
|
||||
|
|
@ -832,16 +830,16 @@ $input-padding: 10px;
|
|||
}
|
||||
}
|
||||
|
||||
.unified-search__result-more::v-deep {
|
||||
:deep(.unified-search__result-more) {
|
||||
color: var(--color-text-maxcontrast);
|
||||
}
|
||||
|
||||
.empty-content {
|
||||
margin: 10vh 0;
|
||||
|
||||
::v-deep .empty-content__title {
|
||||
:deep(.empty-content__title) {
|
||||
font-weight: normal;
|
||||
font-size: var(--default-font-size);
|
||||
font-size: var(--default-font-size);
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -196,6 +196,7 @@ body {
|
|||
.fade-enter-active, .fade-leave-active {
|
||||
transition: opacity .3s;
|
||||
}
|
||||
|
||||
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
||||
opacity: 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -164,7 +164,8 @@ $spacing: 30px;
|
|||
|
||||
.empty-content {
|
||||
margin: 0;
|
||||
&::v-deep .empty-content__icon {
|
||||
|
||||
:deep(.empty-content__icon) {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
2
dist/1652-1652.js
vendored
2
dist/1652-1652.js
vendored
File diff suppressed because one or more lines are too long
1
dist/1652-1652.js.map
vendored
1
dist/1652-1652.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/1652-1652.js.map.license
vendored
1
dist/1652-1652.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
1652-1652.js.license
|
||||
4
dist/5460-5460.js → dist/4242-4242.js
vendored
4
dist/5460-5460.js → dist/4242-4242.js
vendored
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue