mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 10:18:41 +02:00 
			
		
		
		
	This patch adds a new dialog for disabling a backup's password protection. Steps to test this feature: 1. First ensure that the following prefs are enabled: browser.backup.enabled and browser.backup.preferences.ui.enabled 2. Then ensure that the existing backup for the current profile has encryption enabled (should have enc-state.json) 3. Else, access the debug page (chrome://browser/content/backup/debug.html) to enable encryption 4. Once encryption is enabled, the sensitive data checkbox should be checked in about:settings / about:preferences 5. Clicking the checked checkbox should now show the new dialog for removing password protection 6. If the dialog is confirmed, the checkbox should be unchecked in both the settings/preferences page and the debug page Other notes: - If the checkbox is *not* checked, nothing will happen. This is because the dialog for enabling password protection is not yet implemented - Added tests and Storybook entries as well Figma: https://www.figma.com/design/vNbX4c0ws0L1qr0mxpKvsW/Fx-Backup?node-id=147-4568&t=9NNUojWMeOLwe3rD-0 Differential Revision: https://phabricator.services.mozilla.com/D213171
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			792 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			792 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* This Source Code Form is subject to the terms of the Mozilla Public
 | 
						|
* License, v. 2.0. If a copy of the MPL was not distributed with this
 | 
						|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
 | 
						|
 | 
						|
@import url("chrome://global/skin/in-content/common.css");
 | 
						|
 | 
						|
#backup-disable-encryption-wrapper {
 | 
						|
  display: grid;
 | 
						|
  grid-template-areas:
 | 
						|
    "header"
 | 
						|
    "content"
 | 
						|
    "button-group";
 | 
						|
  grid-template-rows: auto auto auto;
 | 
						|
}
 | 
						|
 | 
						|
#backup-disable-encryption-header {
 | 
						|
  grid-area: header;
 | 
						|
  margin: 0;
 | 
						|
}
 | 
						|
 | 
						|
#backup-disable-encryption-content {
 | 
						|
  display: flex;
 | 
						|
  flex-direction: column;
 | 
						|
  grid-area: content;
 | 
						|
  margin-block-start: var(--space-small);
 | 
						|
  margin-block-end: var(--space-large);
 | 
						|
  row-gap: var(--space-large);
 | 
						|
}
 | 
						|
 | 
						|
#backup-disable-encryption-button-group {
 | 
						|
  grid-area: button-group;
 | 
						|
}
 |