Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit 9cdca68

Browse files
author
DEWITTE Pierre-Alban
committed
[STYLE]Adapting to the new deportal color and reducing the default stroke width
1 parent 6ad1ed6 commit 9cdca68

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dist/myscript.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,11 @@ MyScript = {
290290
* @constructor
291291
*/
292292
function PenParameters(obj) {
293-
this.color = 'rgba(0, 0, 0, 0.9)';
293+
this.color = '#1580CD';
294294
this.rectColor = 'rgba(0, 0, 0, 0.2)';
295295
this.font = 'Times New Roman';
296296
this.decoration = 'normal';
297-
this.width = 4;
297+
this.width = 3;
298298
this.pressureType = 'SIMULATED';
299299
this.alpha = '1.0';
300300
if (obj) {

dist/myscript.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/myscript.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/common/penParameters.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
* @constructor
99
*/
1010
function PenParameters(obj) {
11-
this.color = 'rgba(0, 0, 0, 0.9)';
11+
this.color = '#1580CD';
1212
this.rectColor = 'rgba(0, 0, 0, 0.2)';
1313
this.font = 'Times New Roman';
1414
this.decoration = 'normal';
15-
this.width = 4;
15+
this.width = 3;
1616
this.pressureType = 'SIMULATED';
1717
this.alpha = '1.0';
1818
if (obj) {

0 commit comments

Comments
 (0)