- adjust main font size - adjust margins and border radii - drop borders from keys - put more items in common.css - update dark and light style definitions - use mixing of fg color wherever possible
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* Keyboard style */
 | 
						|
sq_view {
 | 
						|
    background-color: mix(@theme_base_color, @theme_fg_color, 0.1);
 | 
						|
    box-shadow:inset 0 1px 0 0 mix(@borders, @theme_base_color, 0.8);
 | 
						|
}
 | 
						|
 | 
						|
sq_button {
 | 
						|
    color: @theme_fg_color;
 | 
						|
    background: alpha(@theme_fg_color, 0.07); 
 | 
						|
    box-shadow: 0 1px 0 0 rgba(0,0,0,0.2); 
 | 
						|
}
 | 
						|
 | 
						|
sq_button:active {
 | 
						|
    background: alpha(@theme_fg_color, 0.11);
 | 
						|
}
 | 
						|
 | 
						|
sq_button.altline,
 | 
						|
sq_button.special {
 | 
						|
    background: alpha(@theme_fg_color, 0.15); 
 | 
						|
}
 | 
						|
 | 
						|
sq_button.altline:active,
 | 
						|
sq_button.special:active {
 | 
						|
    background: alpha(@theme_fg_color, 0.2);
 | 
						|
}
 | 
						|
 | 
						|
sq_button.latched {
 | 
						|
    background: alpha(@theme_fg_color, 0.2); 
 | 
						|
    color: alpha(@theme_fg_color, 0.8);
 | 
						|
}
 | 
						|
 | 
						|
sq_button.locked {
 | 
						|
    background: alpha(@theme_fg_color, 0.5);
 | 
						|
    color: @theme_base_color;
 | 
						|
}
 | 
						|
 | 
						|
#Return {
 | 
						|
    background: @theme_selected_bg_color;
 | 
						|
    color: @theme_selected_fg_color;
 | 
						|
}
 | 
						|
 | 
						|
#Return:active {
 | 
						|
    background: mix(@theme_selected_bg_color, black, 0.2);
 | 
						|
    color: mix(@theme_selected_fg_color, black, 0.2);
 | 
						|
}
 | 
						|
 | 
						|
@import url("resource:///sm/puri/squeekboard/common.css");
 |