Skip to content

Commit

Permalink
minor fixes for V29 (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
memurats authored Nov 29, 2024
1 parent 566a70b commit 85cc14f
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 19 deletions.
6 changes: 6 additions & 0 deletions css/apps/files-right-click.scss
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@
background-image: var(--icon-shared-dark);
}
}

&[data-cy-files-list-row-action="restore"] {
span.icon-vue {
background-image: var(--icon-restore-dark);
}
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion css/apps/rich-workspace.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import '../_mixins.scss';

#rich-workspace {
padding: 0 2rem !important;
padding: 0 0 0 2rem !important;

#editor-container {

Expand Down
2 changes: 1 addition & 1 deletion css/components/ncbuttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,5 @@
}

:focus {
outline: var(--telekom-color-primary-standard) auto 2px;
outline-color: var(--telekom-color-primary-standard);
}
47 changes: 31 additions & 16 deletions css/layouts/login.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
background-repeat: no-repeat;

.wrapper {

border-top: 0px;
margin-top: 0px;

Expand All @@ -48,26 +47,42 @@
background-size: 120%;
}

.v-align {
top: 0;
header {
display: none;
}

header {
display: none;
}
header .brand .title {
visibility: hidden;
}

header .brand .title {
visibility: hidden;
}
header .brand .logo {
visibility: hidden;
background-image: unset;
}

main .update {
background-color: var(--telekom-color-background-surface);
border-radius: 1rem;
margin: 0 auto;
padding: 1rem;

header .brand .logo {
visibility: hidden;
background-image: unset;
h2, p {
color: var(--color-text-light);
margin-bottom: 1rem;
}

main .update {
background-color: white;
border-radius: 10px;
padding-bottom: 1rem;
.buttons .primary {
border: 0;
border-radius: var(--telekom-radius-standard);
background-color: var(--telekom-color-primary-standard);
color: var(--telekom-color-text-and-icon-white-standard);
font: var(--telekom-text-style-body);
font-weight: var(--telekom-typography-font-weight-bold);
line-height: 1.125rem;
min-height: var(--telekom-spacing-composition-space-13);
min-width: var(--telekom-spacing-composition-space-13);
padding-left: var(--telekom-spacing-composition-space-07);
padding-right: var(--telekom-spacing-composition-space-07);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/js/shareicons.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const generateSharedWithMe = (action, owner) => {
}

window.addEventListener('DOMContentLoaded', function() {
if (!OCA.Sharing) return
if (!OCA.Sharing.Util) return
OCA.Sharing.Util._markFileAsShared = function($tr, hasShares, hasLink) {
const action = $tr.find('.fileactions .action[data-action="Share"]')
const type = $tr.data('type')
Expand Down

0 comments on commit 85cc14f

Please sign in to comment.