Skip to content

Commit 604dd86

Browse files
committed
initial checkin with webpack approache
1 parent 8115881 commit 604dd86

File tree

1,725 files changed

+308619
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,725 files changed

+308619
-0
lines changed

.babelrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"presets": ["env"],
3+
"plugins": ["babel-plugin-add-module-exports"]
4+
}

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = LF
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.eslintrc

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
3+
"env": {
4+
"browser": true,
5+
"es6": true,
6+
"node": true
7+
},
8+
9+
"globals": {
10+
"document": false,
11+
"escape": false,
12+
"navigator": false,
13+
"unescape": false,
14+
"window": false,
15+
"describe": true,
16+
"before": true,
17+
"it": true,
18+
"expect": true,
19+
"sinon": true
20+
},
21+
22+
"parser": "babel-eslint",
23+
24+
"plugins": [
25+
26+
],
27+
28+
"rules": {
29+
}
30+
}

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Directory for instrumented libs generated by jscoverage/JSCover
11+
lib-cov
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage
15+
16+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17+
.grunt
18+
19+
# node-waf configuration
20+
.lock-wscript
21+
22+
# Compiled binary addons (http://nodejs.org/api/addons.html)
23+
build/Release
24+
25+
# Dependency directory
26+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
27+
node_modules
28+
29+
# Remove some common IDE working directories
30+
.idea
31+
.vscode
32+
33+
.DS_Store

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v6.10
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
// Global settings
2+
body{
3+
font-family:Helvetica, Arial, Verdana, sans-serif;
4+
color:#6b6b6b;
5+
}
6+
7+
input{
8+
background: none repeat scroll 0 0 #f8f8f8;
9+
border-color: #C6C6C6 #DADADA #EAEAEA;
10+
border-radius: 4px 4px 4px 4px;
11+
-moz-box-sizing: border-box;
12+
padding-left:7px;
13+
border-style: solid ;
14+
border-width: 1px;
15+
vertical-align: middle;
16+
height:25px;
17+
font-size:14px;
18+
line-height:25px;
19+
}
20+
21+
22+
#container{
23+
padding:0px;
24+
margin:0px;
25+
}
26+
27+
#canvas {
28+
padding:0px;
29+
margin:0px;
30+
background-color:#FAFAFA;
31+
}
32+
33+
#navigation{
34+
padding:0px;
35+
margin:0px;
36+
background : transparent url(background_drak.jpg);
37+
text-align: center;
38+
}
39+
40+
#toolbar{
41+
background: #cecece; /* Old browsers */
42+
background: -moz-linear-gradient(top, #cecece 0%, #a8a8a8 100%); /* FF3.6+ */
43+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cecece), color-stop(100%,#a8a8a8)); /* Chrome,Safari4+ */
44+
background: -webkit-linear-gradient(top, #cecece 0%,#a8a8a8 100%); /* Chrome10+,Safari5.1+ */
45+
background: -o-linear-gradient(top, #cecece 0%,#a8a8a8 100%); /* Opera 11.10+ */
46+
background: -ms-linear-gradient(top, #cecece 0%,#a8a8a8 100%); /* IE10+ */
47+
background: linear-gradient(to bottom, #cecece 0%,#a8a8a8 100%); /* W3C */
48+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cecece', endColorstr='#a8a8a8',GradientType=0 ); /* IE6-9 */
49+
padding:8px;
50+
margin:0px;
51+
height:50px;
52+
border-bottom: 1px solid #515151;
53+
overflow:hidden;
54+
}
55+
56+
57+
/******************************************************************
58+
* Einstellungen der PropertyViews im Editmodus der "Form".
59+
******************************************************************/
60+
#propertypane {
61+
padding:0px;
62+
margin:0px;
63+
width:150px;
64+
background-color:#7D7D7D;
65+
border-top:0px;
66+
}
67+
68+
/*container of a single property entry*/
69+
.property_container {
70+
padding:5px;
71+
padding-bottom:15px;
72+
}
73+
74+
.toolbar_delimiter {
75+
margin-left:40px;
76+
}
77+
78+
#content {
79+
padding:0px;
80+
margin:0px;
81+
}
82+
83+
84+
85+
.palette_node_element{
86+
border:1px solid gray;
87+
background-color: #f3f3f3;
88+
padding:10px;
89+
cursor:move;
90+
width:80px;
91+
margin: 30px auto 30px auto;
92+
text-align:center;
93+
align:center;
94+
border-radius: 5px;
95+
}
96+
97+
.shadow {
98+
-moz-box-shadow: 3px 3px 4px #000;
99+
-webkit-box-shadow: 3px 3px 4px #000;
100+
box-shadow: 3px 3px 4px #000;
101+
/* For IE 8 */
102+
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
103+
/* For IE 5.5 - 7 */
104+
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
105+
}
Loading
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)