mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			858 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			858 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
const path = require("path");
 | 
						|
 | 
						|
const {media_breakpoints} = require("./src/css_variables");
 | 
						|
 | 
						|
module.exports = ({file}) => ({
 | 
						|
    plugins: [
 | 
						|
        (file.basename ?? path.basename(file)) === "dark_theme.css" &&
 | 
						|
            // Add postcss-import plugin with postcss-prefixwrap to handle
 | 
						|
            // the flatpickr dark theme. We do this because flatpickr themes
 | 
						|
            // are not scoped. See https://github.com/flatpickr/flatpickr/issues/2168.
 | 
						|
            require("postcss-import")({
 | 
						|
                plugins: [require("postcss-prefixwrap")("%dark-theme")],
 | 
						|
            }),
 | 
						|
        require("postcss-nested"),
 | 
						|
        require("postcss-extend-rule"),
 | 
						|
        require("postcss-simple-vars")({variables: media_breakpoints}),
 | 
						|
        require("postcss-calc"),
 | 
						|
        require("postcss-media-minmax"),
 | 
						|
        require("autoprefixer"),
 | 
						|
    ],
 | 
						|
});
 |