File: gui.css

package info (click to toggle)
elektroid 3.2.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,956 kB
  • sloc: ansic: 25,469; sh: 461; makefile: 292; xml: 72
file content (56 lines) | stat: -rw-r--r-- 1,169 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@define-color local_color #3584e4;
@define-color local_color_dark #255c9f;
@define-color remote_color #e01b24;
@define-color remote_color_dark #9d1319;
@define-color disabled_color #7f7f7f;

.local {
	color: @local_color;
}

.remote {
	color: @remote_color;
}

.local_switch {
	background-color: @local_color_dark;
}

.local_switch:checked, .local_switch:checked slider {
	border-color: @local_color_dark;
	background-color: @local_color;
}

.remote_switch {
	background-color: @remote_color_dark;
}

.remote_switch:checked, .remote_switch:checked slider {
	border-color: @remote_color_dark;
	background-color: @remote_color;
}

#local_up_button, #local_add_dir_button, #local_refresh_button, #local_search_button, #upload_button {
	color: @local_color;
}

#remote_up_button, #remote_add_dir_button, #remote_refresh_button, #remote_search_button, #download_button, #refresh_devices_button {
	color: @remote_color
}

*:disabled {
	color: @disabled_color;
}

#local_tree_view:selected {
	background-color: @local_color;
}

#remote_tree_view:selected {
	background-color: @remote_color;
}

#local_name_entry {
	border-color: transparent;
	background-color: transparent;
}