-
Notifications
You must be signed in to change notification settings - Fork 0
/
notebook.css
85 lines (69 loc) · 1.08 KB
/
notebook.css
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
74
75
76
77
78
79
80
81
82
83
84
85
#notebook-dialog.dialog {
top: 100px;
left: 100px;
}
#notebook-dialog.dialog .dialog-body {
height: 280px;
width: 500px;
}
.custom-dialog.dialog button.custom-button {
margin: 5px;
}
.custom-dialog.dialog button.custom-button.rbutton {
float: right;
}
#notebook-button {
float: left;
margin-left: 5px;
}
#notebook-chooser {
float: left;
height: 100%;
width: 205px;
}
#notebook-search {
width: 98%;
}
ul#notebook-list {
background-color: white;
overflow-y: scroll;
height: 80%;
width: 100%;
}
ul#notebook-list li {
font-size: 12px;
padding: 3px;
white-space: nowrap;
cursor: hand;
cursor: pointer;
}
ul#notebook-list li:hover {
background-color: lightblue;
}
ul#notebook-list li.note-selected {
font-weight: bold;
}
#notebook-editor {
float: right;
height: 100%;
width: 280px;
}
#notebook-title {
width: 99%;
}
#notebook-body {
height: 80%;
width: 100%;
}
#library-dialog.dialog {
top: 100px;
left: 100px;
}
#library-dialog.dialog .dialog-body {
height: 280px;
width: 500px;
}
#library-data {
height: 90%;
width: 100%;
}