Skip to content

Instantly share code, notes, and snippets.

@jasonlemay
Created November 3, 2015 16:30
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/d11b98139a9af9a77c62 to your computer and use it in GitHub Desktop.
Save jasonlemay/d11b98139a9af9a77c62 to your computer and use it in GitHub Desktop.
Chosen Styling - ChosenDarkResources.java
package com.arcbees.chosenstyling.client.resources;
import com.arcbees.chosen.client.resources.ChosenCss;
import com.arcbees.chosen.client.resources.Resources;
public interface ChosenDarkResources extends Resources {
interface CustomChosenCss extends ChosenCss {
}
@Override
@Source({"com/arcbees/gsss/mixin/client/mixins.gss",
"com/arcbees/chosen/client/resources/icons/icons.gss",
"css/chosenDarkColors.gss",
"com/arcbees/chosen/client/resources/css/chosen.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