Skip to content

Commit

Permalink
Fix rebasing issues and improve profile settings page a bit more
Browse files Browse the repository at this point in the history
Signed-off-by: Carl Schwan <[email protected]>
  • Loading branch information
CarlSchwan committed Aug 25, 2022
1 parent 4f1001a commit d2d9ddb
Show file tree
Hide file tree
Showing 30 changed files with 57 additions and 58 deletions.
4 changes: 2 additions & 2 deletions apps/files_sharing/src/components/SharingEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@
{{ t('files_sharing', 'Allow resharing') }}
</NcActionCheckbox>

<NcActionCheckbox v-if="isSetDownloadButtonVisible"
ref="canDownload"
<NcActionCheckbox ref="canDownload"
:checked.sync="canDownload"
v-if="isSetDownloadButtonVisible"
:disabled="saving || !canSetDownload">
{{ allowDownloadText }}
</NcActionCheckbox>
Expand Down
8 changes: 6 additions & 2 deletions apps/settings/css/settings.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/settings/css/settings.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions apps/settings/css/settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ input {

#locale {
h3 {
height: 32px;
height: 44px;
display: flex;
align-items: center;
}
}
}
Expand Down Expand Up @@ -300,6 +302,8 @@ select {
flex-wrap: nowrap;
justify-content: flex-start;
width: 100%;
align-items: center;
gap: 8px;

> label {
white-space: nowrap;
Expand Down Expand Up @@ -391,7 +395,7 @@ select {
width: 44px;
height: 44px;
padding: 10px;
margin: -12px 0 0 8px;
margin: 0;
background: none;
border: none;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ export default {
display: inline-flex;
width: 100%;
margin: 12px 0 0 0;
gap: 8px;
align-items: center;
font-size: 16px;
color: var(--color-text-light);
Expand All @@ -132,7 +134,7 @@ export default {
}
&.setting-property {
height: 32px;
height: 44px;
}
label {
Expand All @@ -141,7 +143,7 @@ export default {
}
.federation-control {
margin: -12px 0 0 8px;
margin: 0;
}
.button-vue {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
<div class="input-control">
<label for="pass1"><?php p($l->t('Current password')); ?>: </label>
<input type="password" id="pass1" name="oldpassword"
placeholder="<?php p($l->t('Current password'));?>"
placeholder="<?php p($l->t('Your current password'));?>"
autocomplete="current-password" autocapitalize="none" autocorrect="off" />
</div>

<div class="personal-show-container">
<label for="pass2" ><?php p($l->t('New password'));?>: </label>
<input type="password" id="pass2" name="newpassword"
maxlength="469"
placeholder="<?php p($l->t('New password')); ?>"
placeholder="<?php p($l->t('Your new password')); ?>"
data-typetoggle="#personal-show"
autocomplete="new-password" autocapitalize="none" autocorrect="off" />
<input type="checkbox" id="personal-show" class="hidden-visually" name="show" />
Expand Down
10 changes: 7 additions & 3 deletions apps/user_status/src/components/CustomMessageInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@
{{ visibleIcon }}
</NcButton>
</NcEmojiPicker>
<label class="hidden-visually" for="user_status_message">
{{ t('user_status', 'What is your status?') }}
</label>
<input ref="input"
id="user_status_message"
maxlength="80"
:disabled="disabled"
:placeholder="$t('user_status', 'What is your status?')"
Expand All @@ -39,8 +43,8 @@
</template>

<script>
import NcButton from '@nextcloud/vue/dist/Components/NcButton.vue'
import NcEmojiPicker from '@nextcloud/vue/dist/Components/NcEmojiPicker.vue'
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import NcEmojiPicker from '@nextcloud/vue/dist/Components/NcEmojiPicker.js'
export default {
name: 'CustomMessageInput',
Expand Down Expand Up @@ -104,7 +108,7 @@ export default {
flex-grow: 1;
position: relative;
.v-popover {
.v-popper {
position: absolute;
}
Expand Down
18 changes: 0 additions & 18 deletions apps/user_status/src/components/SetStatusModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,8 @@

<script>
import { showError } from '@nextcloud/dialogs'
<<<<<<< HEAD
import NcEmojiPicker from '@nextcloud/vue/dist/Components/NcEmojiPicker'
import NcModal from '@nextcloud/vue/dist/Components/NcModal'
import NcButton from '@nextcloud/vue/dist/Components/NcButton'
||||||| parent of f456d3bb0f (Various fixes)
import EmojiPicker from '@nextcloud/vue/dist/Components/EmojiPicker'
import Modal from '@nextcloud/vue/dist/Components/Modal'
import ButtonVue from '@nextcloud/vue/dist/Components/Button'
=======
import Modal from '@nextcloud/vue/dist/Components/Modal'
import ButtonVue from '@nextcloud/vue/dist/Components/Button'
>>>>>>> f456d3bb0f (Various fixes)
import { getAllStatusOptions } from '../services/statusOptionsService'
import OnlineStatusMixin from '../mixins/OnlineStatusMixin'
import PredefinedStatusesList from './PredefinedStatusesList'
Expand All @@ -97,15 +87,7 @@ export default {
components: {
ClearAtSelect,
CustomMessageInput,
<<<<<<< HEAD
NcEmojiPicker,
NcModal,
||||||| parent of f456d3bb0f (Various fixes)
EmojiPicker,
Modal,
=======
Modal,
>>>>>>> f456d3bb0f (Various fixes)
OnlineStatusSelect,
PredefinedStatusesList,
NcButton,
Expand Down
2 changes: 1 addition & 1 deletion apps/workflowengine/src/components/Check.vue
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,6 @@ export default {
margin-bottom: -5px;
}
.invalid {
border: 1px solid var(--color-error) !important;
border-color: var(--color-error) !important;
}
</style>
1 change: 1 addition & 0 deletions core/css/inputs.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d2d9ddb

Please sign in to comment.