]> Joshua Wise's Git repositories - patchfork.git/blame - theme/thexy/theme.js
Add support for view-only mode.
[patchfork.git] / theme / thexy / theme.js
CommitLineData
964dd0bc
JW
1
2/* number of "windows" on the directory browser */
3var BROWSER_NUM = 3;
4
5/* the border around the playing item in the playlist */
6var PLAYLIST_PLAYING_STYLE = "1px solid #33BBCC";
7
8/* this is the color thing that you add blink in */
9var DEFAULT_BLINK_COLOR = "#C1DAD6";
10
11var BASE_IMG_DIR = "../theme/thexy/images/";
12
13var IMAGE = new Object();
14
15IMAGE.BUTTON_PLAY = BASE_IMG_DIR + "play_light.jpg";
16IMAGE.BUTTON_STOP = BASE_IMG_DIR + "stop_light.jpg";
17IMAGE.BUTTON_PAUSE = BASE_IMG_DIR + "pause_light.jpg";
18IMAGE.BUTTON_PREVIOUS = BASE_IMG_DIR + "previous_light.jpg";
19IMAGE.BUTTON_NEXT = BASE_IMG_DIR + "next_light.jpg";
20
21IMAGE.BROWSER_PLAYLIST_REMOVE = BASE_IMG_DIR + "disabled.png";
22
23IMAGE.SERVER_SETTINGS_ENABLED = BASE_IMG_DIR + "enabled.png";
24IMAGE.SERVER_SETTINGS_DISABLED = BASE_IMG_DIR + "disabled.png";
25IMAGE.SERVER_SETTINGS_XFADE_DOWN= BASE_IMG_DIR + "back.png";
26IMAGE.SERVER_SETTINGS_XFADE_UP = BASE_IMG_DIR + "forward.png";
27
28IMAGE.CLOSE = BASE_IMG_DIR + "fileclose.png";
29IMAGE.WORKING = BASE_IMG_DIR + "activity.gif";
30
31IMAGE.MENU_ITEM_CROP = BASE_IMG_DIR + "crop_selection.png";
32IMAGE.MENU_ITEM_REMOVE = BASE_IMG_DIR + "remove_selection.png";
33IMAGE.MENU_ITEM_DIRECTORY = BASE_IMG_DIR + "browse_media.png";
34
35IMAGE.PAGINATION_FOLLOW = BASE_IMG_DIR + "enabled.png";
36IMAGE.PAGINATION_NOFOLLOW = BASE_IMG_DIR + "disabled.png";
37
38IMAGE.JUMP_CURRENT = BASE_IMG_DIR + "jump.png";
39
40IMAGE.STREAM_BGCOLOR = "1118481";
This page took 0.025749 seconds and 4 git commands to generate.