mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	chore: Refactor button styles (#2259)
This commit is contained in:
		 Nithin David Thomas
					Nithin David Thomas
				
			
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			 GitHub
						GitHub
					
				
			
						parent
						
							af8e681f2a
						
					
				
				
					commit
					c681e8a01b
				
			| @@ -7,30 +7,42 @@ | ||||
|     > | ||||
|       <woot-dropdown-menu> | ||||
|         <woot-dropdown-item v-if="showChangeAccountOption"> | ||||
|           <button | ||||
|             class="button clear change-accounts--button" | ||||
|           <woot-button | ||||
|             variant="clear" | ||||
|             size="small" | ||||
|             class=" change-accounts--button" | ||||
|             @click="$emit('toggle-accounts')" | ||||
|           > | ||||
|             {{ $t('SIDEBAR_ITEMS.CHANGE_ACCOUNTS') }} | ||||
|           </button> | ||||
|           </woot-button> | ||||
|         </woot-dropdown-item> | ||||
|         <woot-dropdown-item v-if="globalConfig.chatwootInboxToken"> | ||||
|           <button | ||||
|             class="button clear change-accounts--button" | ||||
|           <woot-button | ||||
|             variant="clear" | ||||
|             size="small" | ||||
|             class=" change-accounts--button" | ||||
|             @click="$emit('show-support-chat-window')" | ||||
|           > | ||||
|             Contact Support | ||||
|           </button> | ||||
|           </woot-button> | ||||
|         </woot-dropdown-item> | ||||
|         <woot-dropdown-item> | ||||
|           <router-link :to="`/app/accounts/${accountId}/profile/settings`"> | ||||
|           <router-link | ||||
|             :to="`/app/accounts/${accountId}/profile/settings`" | ||||
|             class="button clear small change-accounts--button" | ||||
|           > | ||||
|             {{ $t('SIDEBAR_ITEMS.PROFILE_SETTINGS') }} | ||||
|           </router-link> | ||||
|         </woot-dropdown-item> | ||||
|         <woot-dropdown-item> | ||||
|           <a href="#" @click.prevent="logout"> | ||||
|           <woot-button | ||||
|             variant="clear" | ||||
|             size="small" | ||||
|             class=" change-accounts--button" | ||||
|             @click="logout" | ||||
|           > | ||||
|             {{ $t('SIDEBAR_ITEMS.LOGOUT') }} | ||||
|           </a> | ||||
|           </woot-button> | ||||
|         </woot-dropdown-item> | ||||
|       </woot-dropdown-menu> | ||||
|     </div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user