mirror of
https://github.com/nextcloud/server.git
synced 2026-02-18 18:28:50 -05:00
fix(files): Revert CSS causing the file name to have no bounding box
Instead add the direction only to the filename wrapper not the button. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
8fdae44816
commit
cce34c591e
2 changed files with 3 additions and 4 deletions
|
|
@ -26,10 +26,9 @@
|
|||
:aria-hidden="isRenaming"
|
||||
class="files-list__row-name-link"
|
||||
data-cy-files-list-row-name-link
|
||||
v-bind="linkTo.params"
|
||||
dir="auto">
|
||||
v-bind="linkTo.params">
|
||||
<!-- Filename -->
|
||||
<span class="files-list__row-name-text">
|
||||
<span class="files-list__row-name-text" dir="auto">
|
||||
<!-- Keep the filename stuck to the extension to avoid whitespace rendering issues-->
|
||||
<span class="files-list__row-name-" v-text="basename" />
|
||||
<span class="files-list__row-name-ext" v-text="extension" />
|
||||
|
|
|
|||
|
|
@ -641,7 +641,7 @@ export default defineComponent({
|
|||
flex: 1 1 auto;
|
||||
|
||||
button.files-list__row-name-link {
|
||||
display: contents;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-align: start;
|
||||
// Fill cell height and width
|
||||
|
|
|
|||
Loading…
Reference in a new issue