Commit 68a0c1dc authored by Jerome Chauveau's avatar Jerome Chauveau
Browse files

debug affichage nom resources/collection : text-truncate

parent 6f267e8b
Loading
Loading
Loading
Loading
+2 −9
Original line number Diff line number Diff line
<template>
  <v-sheet class="no-border d-flex flex-grow-1">
  <v-sheet class="no-border d-flex flex-grow-1" style="width: inherit">
    <v-card
      class="ma-0 no-border rounded-0 flex-grow-1"
      :elevation="0"
@@ -96,11 +96,9 @@

        <v-toolbar-title
          :title="collection.title"
          class="ml-2 d-flex"
          class="ml-2 text-truncate"
        >
          <span class="text-truncate collection-title">
            {{ $t('collection.label') }} {{ collection.title }}
          </span>
        </v-toolbar-title>
      </v-toolbar>

@@ -316,11 +314,6 @@ export default {
</script>

<style lang="scss" scoped>
.collection-title{
  display: inline-block;
  max-width:18vw !important;
}


</style>
<i18n>
+3 −10
Original line number Diff line number Diff line
<template>
  <v-sheet
    light
    class="no-border rounded-0 d-flex flex-grow-1"
    class="no-border rounded-0 d-flex flex-grow-1" style="width: inherit;"
  >
    <v-card
      :loading="isReplacing"
@@ -145,12 +145,10 @@
          </v-list>
        </v-menu>
        <v-toolbar-title
          class="white--text ml-2 d-flex"
          class="white--text ml-2 text-truncate"
          :title="resource.title + (resource.title!=resource.original_name ? ' (' + resource.original_name +')' : '')"
        >
          <span class="text-truncate resource-title">{{
            resource.title
          }}</span>
            {{resource.title}}
        </v-toolbar-title>
      </v-toolbar>

@@ -530,11 +528,6 @@ export default {
  text-decoration: none;
}

.resource-title{
  display: inline-block;
  max-width:18vw !important;
}

</style>

<i18n>