mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #47106 from nextcloud/fix/files-padding
This commit is contained in:
commit
a46e0a7405
4 changed files with 6 additions and 5 deletions
|
|
@ -61,7 +61,7 @@ export default defineComponent({
|
|||
<style scoped lang="scss">
|
||||
.files-list__column-sort-button {
|
||||
// Compensate for cells margin
|
||||
margin: 0 calc(var(--cell-margin) * -1);
|
||||
margin: 0 calc(var(--button-padding, var(--cell-margin)) * -1);
|
||||
min-width: calc(100% - 3 * var(--cell-margin))!important;
|
||||
|
||||
&-text {
|
||||
|
|
|
|||
|
|
@ -610,6 +610,7 @@ export default defineComponent({
|
|||
// Necessary for flex grow to work
|
||||
min-width: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
// Already added to the inner text, see rule below
|
||||
&:focus-visible {
|
||||
|
|
@ -630,7 +631,7 @@ export default defineComponent({
|
|||
color: var(--color-main-text);
|
||||
// Make some space for the outline
|
||||
padding: var(--default-grid-baseline) calc(2 * var(--default-grid-baseline));
|
||||
margin-left: -10px;
|
||||
padding-left: 0;
|
||||
// Align two name and ext
|
||||
display: inline-flex;
|
||||
}
|
||||
|
|
|
|||
4
dist/files-main.js
vendored
4
dist/files-main.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files-main.js.map
vendored
2
dist/files-main.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue