Skip to content

Instantly share code, notes, and snippets.

@jasonlemay
Created November 3, 2015 19:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonlemay/dd6d5d7f4f79334c2fd0 to your computer and use it in GitHub Desktop.
Save jasonlemay/dd6d5d7f4f79334c2fd0 to your computer and use it in GitHub Desktop.
Chosen Styling - CustomResources.java
package com.arcbees.chosenstyling.client.resources;
import com.arcbees.chosen.client.resources.ChosenCss;
import com.arcbees.chosen.client.resources.Resources;
public interface CustomResources extends Resources {
interface CustomChosenCss extends ChosenCss {
}
@Override
@Source({"com/arcbees/gsss/mixin/client/mixins.gss",
"com/arcbees/chosen/client/resources/icons/icons.gss",
"com/arcbees/chosen/client/resources/css/chosen.gss",
"css/customChosen.gss",
"com/arcbees/chosen/client/resources/css/mobile.gss"})
CustomChosenCss css();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment