-
Notifications
You must be signed in to change notification settings - Fork 10
/
updates.txt
73 lines (55 loc) · 1.78 KB
/
updates.txt
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
add binary for surfaceMapInfo for right hemisphere
1) modify inflated_left to inflated_right for right hemisphere output
2) modify var surfaceMapInfo to contain both left and right encodings
var surfaceMapInfo = {"inflated_left":* ,"inflated_right":*}
reveal option for viewing left or right
change
$("#select-hemisphere").hide();
$("#select-kind").hide();
to
$("#select-hemisphere").change(addPlot);
$("#select-kind").hide();
updates to python html output for displaying edits
- plot on individual not fsaverage
- add css definition in head
- update width of view
let height = Math.min($(window).outerHeight() * .8,
$(window).width() * 2 / 3);
let width = Math.min($(window).outerWidth());
- update colors
from: paper_bgcolor: blackBg ? '#000': '#fff',
to: paper_bgcolor: blackBg ? '#000': '#9893b8',
- remove colorbar
// addColorbar(surfaceMapInfo["colorscale"],
// surfaceMapInfo["cmin"],
// surfaceMapInfo["cmax"],
// divId, layout, config);
updates to css.main
- change background color to #0f111c
line 1625:
body {
background: #0f111c;
}
line 1953
background: #0f111c;
- make width half as long
line 1961
width: 50%;
- add a resize none
line 1962
resize:none;
- set font sizes based on screen width
@media screen and (max-width: 1680px) {
body, input, select, textarea {
font-size: 18pt; }
}
@media screen and (max-width: 1280px) {
body, input, select, textarea {
font-size: 14pt;
}
}
@media screen and (max-width: 360px) {
body, input, select, textarea {
font-size: 12pt;
}
}