mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	Merge pull request #1624 from maltejur/master
Truncate long title in stream container
This commit is contained in:
		
						commit
						59b5f8cbbe
					
				@ -1,12 +1,12 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div v-if="streamLibraryItem" id="streamContainer" class="w-full fixed bottom-0 left-0 right-0 h-48 sm:h-44 md:h-40 z-50 bg-primary px-2 md:px-4 pb-1 md:pb-4 pt-2">
 | 
			
		||||
  <div v-if="streamLibraryItem" id="streamContainer" class="w-full fixed bottom-0 left-0 right-0 h-48 md:h-40 z-50 bg-primary px-2 md:px-4 pb-1 md:pb-4 pt-2">
 | 
			
		||||
    <div id="videoDock" />
 | 
			
		||||
    <nuxt-link v-if="!playerHandler.isVideo" :to="`/item/${streamLibraryItem.id}`" class="absolute left-2 top-2 md:left-4 cursor-pointer">
 | 
			
		||||
      <covers-book-cover :library-item="streamLibraryItem" :width="bookCoverWidth" :book-cover-aspect-ratio="coverAspectRatio" />
 | 
			
		||||
    </nuxt-link>
 | 
			
		||||
    <div class="flex items-start mb-6 md:mb-0" :class="playerHandler.isVideo ? 'ml-4 pl-96' : isSquareCover ? 'pl-18 sm:pl-24' : 'pl-12 sm:pl-16'">
 | 
			
		||||
      <div>
 | 
			
		||||
        <nuxt-link :to="`/item/${streamLibraryItem.id}`" class="hover:underline cursor-pointer text-sm sm:text-lg">
 | 
			
		||||
      <div class="min-w-0">
 | 
			
		||||
        <nuxt-link :to="`/item/${streamLibraryItem.id}`" class="hover:underline cursor-pointer text-sm sm:text-lg block truncate">
 | 
			
		||||
          {{ title }}
 | 
			
		||||
        </nuxt-link>
 | 
			
		||||
        <div v-if="!playerHandler.isVideo" class="text-gray-400 flex items-center">
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user