File tree Expand file tree Collapse file tree 4 files changed +15
-27
lines changed 
src/renderer/extensions/vueNodes/widgets/components Expand file tree Collapse file tree 4 files changed +15
-27
lines changed Original file line number Diff line number Diff line change 2929        >
3030          <i 
3131            v-if =" !isPlaying" 
32-             class =" icon-[lucide--play] size-4 text-secondary" 
33-           />
34-           <i 
35-             v-else 
36-             class =" icon-[lucide--pause] size-4 text-secondary" 
32+             class =" text-secondary icon-[lucide--play] size-4" 
3733          />
34+           <i  v-else  class =" text-secondary icon-[lucide--pause] size-4" 
3835        </div >
3936
4037        <!--  Time Display --> 
41-         <div 
42-           class =" text-sm font-normal text-nowrap text-primary" 
43-         >
38+         <div  class =" text-sm font-normal text-nowrap text-primary" 
4439          {{ formatTime(currentTime) }} / {{ formatTime(duration) }}
4540        </div >
4641      </div >
4742
4843      <!--  Progress Bar --> 
49-       <div 
50-         class =" relative h-0.5 flex-1 rounded-full bg-interface-stroke" 
51-       >
44+       <div  class =" relative h-0.5 flex-1 rounded-full bg-interface-stroke" 
5245        <div 
5346          class =" absolute top-0 left-0 h-full rounded-full bg-button-icon transition-all" 
5447          :style =" { width: `${progressPercentage}%` }" 
7770        >
7871          <i 
7972            v-if =" showVolumeTwo" 
80-             class =" icon-[lucide--volume-2] size-4 text-secondary " 
73+             class =" text-secondary  icon-[lucide--volume-2] size-4" 
8174          />
8275          <i 
8376            v-else-if =" showVolumeOne" 
84-             class =" icon-[lucide--volume-1] size-4 text-secondary" 
85-           />
86-           <i 
87-             v-else 
88-             class =" icon-[lucide--volume-x] size-4 text-secondary" 
77+             class =" text-secondary icon-[lucide--volume-1] size-4" 
8978          />
79+           <i  v-else  class =" text-secondary icon-[lucide--volume-x] size-4" 
9080        </div >
9181
9282        <!--  Options Button --> 
9989          class =" flex size-6 cursor-pointer items-center justify-center rounded hover:bg-interface-menu-component-surface-hovered" 
10090          @click =" toggleOptionsMenu" 
10191        >
102-           <i 
103-             class =" icon-[lucide--more-vertical] size-4 text-secondary" 
104-           />
92+           <i  class =" text-secondary icon-[lucide--more-vertical] size-4" 
10593        </div >
10694      </div >
10795
Original file line number Diff line number Diff line change 1616          'bg-transparent border-none', 
1717          'text-center text-xs font-normal', 
1818          { 
19-             'bg-interface-menu-component-surface-selected': isSelected(option) && !disabled, 
20-             'hover:bg-interface-menu-component-surface-hovered': !isSelected(option) && !disabled, 
19+             'bg-interface-menu-component-surface-selected': 
20+               isSelected(option) && !disabled, 
21+             'hover:bg-interface-menu-component-surface-hovered': 
22+               !isSelected(option) && !disabled, 
2123            'opacity-50 cursor-not-allowed': disabled, 
2224            'cursor-pointer': !disabled 
2325          }, 
24-           isSelected(option) && !disabled 
25-             ? 'text-primary' 
26-             : 'text-secondary' 
26+           isSelected(option) && !disabled ? 'text-primary' : 'text-secondary' 
2727        ) 
2828      "  
2929      :disabled =" disabled" 
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const filterSelected = defineModel<OptionId>('filterSelected')
1111script >
1212
1313<template >
14-   <div  class =" mb-4 flex gap-1 px-4 text-secondary " 
14+   <div  class =" text-secondary  mb-4 flex gap-1 px-4" 
1515    <div 
1616      v-for =" option in filterOptions" 
1717      :key =" option.id" 
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ function handleVideoLoad(event: Event) {
142142        {{ name }}
143143      </span >
144144      <!--  Meta Data --> 
145-       <span  class =" block  text-xs  text-secondary " 
145+       <span  class =" text-secondary block  text-xs " 
146146        metadata || actualDimensions
147147      }}</span >
148148    </div >
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments