annotate popoto_dev/src/css/popotojs-svg.css @ 39:88c5232f9d48 default tip

fix click on author name.
author casties
date Thu, 04 Feb 2016 18:56:48 +0100
parents d67c5ad47709
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
1 /*
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
2 * Copyright (C) 2014 Frederic Ciminera
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
3 *
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
4 * Popoto.js is free software: you can redistribute it and/or modify
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
5 * it under the terms of the GNU General Public License as published by
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
6 * the Free Software Foundation, either version 3 of the License, or
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
7 * (at your option) any later version.
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
8 *
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
9 * Popoto.js is distributed in the hope that it will be useful,
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
12 * GNU General Public License for more details.
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
13 *
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
14 * You should have received a copy of the GNU General Public License
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
16 *
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
17 * contact@popotojs.com
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
18 */
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
19
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
20 .ppt-svg-graph {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
21 cursor: move;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
22 min-height: 100px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
23 width: 100%;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
24 height: 100%;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
25 pointer-events: all;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
26 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
27
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
28 /******************Node Styles*************************/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
29 .ppt-node-ellipse {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
30 stroke: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
31 stroke-width: 4px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
32 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
33
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
34 .ppt-node-ellipse.root {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
35 fill: #2aa1d3;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
36 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
37
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
38 .ppt-node-ellipse.root.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
39 fill: #2e3138;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
40 stroke: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
41 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
42
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
43 .ppt-node-ellipse.choose {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
44 fill: #8bb71a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
45 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
46
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
47 .ppt-node-ellipse.choose.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
48 fill: #2e3138;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
49 stroke: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
50 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
51
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
52 .ppt-node-ellipse.value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
53 fill: #f0b017;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
54 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
55
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
56 .ppt-node-ellipse.selected-value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
57 fill: #ee4e10;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
58 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
59
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
60 .ppt-node-ellipse.selected-root-value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
61 fill: #8F5BCC;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
62 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
63
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
64 .ppt-node-ellipse.group {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
65 fill: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
66 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
67
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
68 .ppt-node-ellipse.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
69 fill: #2e3138;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
70 stroke: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
71 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
72
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
73 /* Node background*/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
74 .ppt-g-node-background {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
75 cursor: pointer;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
76 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
77
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
78 .ppt-node-background-circle {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
79 fill-opacity: 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
80 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
81
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
82 .ppt-node-background-circle.root {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
83 fill: #233E7E;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
84 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
85
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
86 .ppt-node-background-circle.choose {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
87 fill: #628b1a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
88 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
89
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
90 .ppt-node-background-circle.value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
91 fill: #c28a17;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
92 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
93
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
94 .ppt-node-background-circle.selected-value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
95 fill: #c24b30;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
96 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
97
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
98 .ppt-node-background-circle.selected-root-value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
99 fill: #765ab4;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
100 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
101
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
102 .ppt-node-background-circle.group {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
103 fill: #3f4450;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
104 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
105
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
106 .ppt-node-background-circle.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
107 fill: #3f4450;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
108 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
109
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
110 /* Node middleground */
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
111 .ppt-g-node-middleground {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
112 cursor: pointer;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
113 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
114
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
115 /* Node foreground */
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
116 .ppt-g-node-foreground {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
117 cursor: pointer;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
118 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
119
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
120 .ppt-count-box.value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
121 fill: #8bb71a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
122 stroke: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
123 stroke-width: 2px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
124 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
125
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
126 .ppt-count-box.root {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
127 fill: #ee4e10;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
128 stroke: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
129 stroke-width: 2px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
130 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
131
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
132 .ppt-count-box.root.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
133 fill: #2e3138;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
134 stroke: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
135 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
136
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
137 .ppt-count-box.value.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
138 fill: #2e3138;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
139 stroke: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
140 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
141
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
142 .ppt-count-text {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
143 fill: white;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
144 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
145
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
146 .ppt-count-text.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
147 fill: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
148 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
149
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
150 .ppt-rel-plus-icon {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
151 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
152
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
153 .ppt-rel-plus-icon.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
154 display: none;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
155 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
156
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
157 .ppt-rel-plus-background {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
158 fill: #f0b017;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
159 fill-opacity: 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
160 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
161
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
162 .ppt-rel-plus-path {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
163 fill: #ff0000;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
164 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
165
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
166 .ppt-rel-minus-icon {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
167 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
168
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
169 .ppt-rel-minus-icon.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
170 display: none;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
171 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
172
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
173 .ppt-rel-minus-path {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
174 fill: #ff0000;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
175 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
176
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
177 .ppt-rel-minus-background {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
178 fill: #f0b017;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
179 fill-opacity: 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
180 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
181
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
182 /******************Tool Styles*************************/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
183 .ppt-node-foreground-g-arrows {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
184 display: none;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
185 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
186
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
187 .ppt-node-foreground-g-arrows.active {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
188 display: block;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
189 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
190
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
191 .ppt-arrow {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
192 fill: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
193 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
194
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
195 .ppt-larrow {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
196 stroke: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
197 stroke-width: 4px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
198 fill: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
199 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
200
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
201 .ppt-rarrow {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
202 stroke: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
203 stroke-width: 4px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
204 fill: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
205 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
206
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
207 .ppt-larrow.enabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
208 fill: #2aa1d3;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
209 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
210
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
211 .ppt-rarrow.enabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
212 fill: #2aa1d3;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
213 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
214
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
215 /******************Link Styles*************************/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
216
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
217 /* Links */
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
218 .ppt-link-relation {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
219 stroke: #2aa1d3;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
220 stroke-width: 2px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
221 stroke-dasharray: 9, 5;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
222 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
223
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
224 .ppt-link-relation.value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
225 stroke: #ee4e10;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
226 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
227
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
228 .ppt-link-relation.value.ppt-link-hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
229 stroke: #ee4e10;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
230 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
231
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
232 .ppt-link-relation.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
233 stroke: #2e3138;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
234 stroke-width: 2px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
235 stroke-dasharray: 9, 5;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
236 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
237
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
238 .ppt-link-value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
239 stroke: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
240 stroke-width: 2px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
241 stroke-dasharray: 9, 5;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
242 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
243
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
244 .ppt-link-hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
245 stroke: #ee4e10;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
246 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
247
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
248 .ppt-link-text-relation {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
249 fill: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
250 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
251
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
252 .ppt-link-text-relation.value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
253 fill: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
254 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
255
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
256 .ppt-link-text-relation.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
257 fill: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
258 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
259
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
260 .ppt-link-text-value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
261 fill: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
262 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
263
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
264 /* text in nodes*/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
265 .ppt-node-text-root {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
266 fill: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
267 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
268
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
269 .ppt-node-text-root.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
270 fill: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
271 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
272
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
273 .ppt-node-text-choose {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
274 fill: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
275 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
276
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
277 .ppt-node-text-choose.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
278 fill: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
279 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
280
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
281 .ppt-node-text-value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
282 fill: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
283 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
284
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
285 .ppt-node-text-group {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
286 fill: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
287 }