Skip to content

Commit 6e04656

Browse files
authored
Merge pull request #234 from ndelangen/ndelangen/update-docs
CHANGE docs for 0.6 release
2 parents 9aaf7a3 + 2f2cf9e commit 6e04656

File tree

153 files changed

+1826
-1674
lines changed

Some content is hidden

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

153 files changed

+1826
-1674
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ All inquiries should be forwarded to [Robert Haritonov](mailto:[email protected]).
2626
Core contributors and maintainers:
2727
* [Robert Haritonov](https://github.com/operatino)
2828
* [Ilya Mikhailov](https://github.com/cheshirsky)
29+
* [Norbert de Langen](https://github.com/ndelangen)

app.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -216,18 +216,18 @@ app.use(express.static(userPath));
216216

217217
// Page 404
218218
app.use(function(req, res){
219-
if (req.accepts('html')) {
219+
if (req.accepts('html')) {
220220
if (req.url === '/') {
221221
res.redirect('/docs');
222222
return;
223223
}
224224

225225
var headerFooterHTML = headerFooter.getHeaderAndFooter();
226-
res.status(404).render(path.join(__dirname, '/core/views/404.ejs'), {
226+
res.status(404).render(path.join(__dirname, '/core/views/404.ejs'), {
227227
header: headerFooterHTML.header,
228228
footer: headerFooterHTML.footer
229-
});
230-
}
229+
});
230+
}
231231
});
232232
/* /Serving content */
233233

assets/css/base/buttons.less

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@
33

44
/* TODO: cosmetic changes needed */
55
.source_btn {
6-
position:relative;
6+
position:relative;
77

8-
display: inline-block;
9-
padding: 4px 17px;
8+
display: inline-block;
9+
padding: 4px 17px;
1010

11-
background-color:#65A7D6;
12-
border: #5B9ECB solid 1px;
13-
border-radius:3px;
11+
background-color:#65A7D6;
12+
border: #5B9ECB solid 1px;
13+
border-radius:3px;
1414

15-
color:#fff;
16-
font-weight:normal;
17-
text-decoration:none;
18-
font-size: 12px;
15+
color:#fff;
16+
font-weight:normal;
17+
text-decoration:none;
18+
font-size: 12px;
1919

2020
&:hover {
2121
background-color: #5B9ECB;
2222
}
2323
&:active {
2424
top:1px;
2525
}
26-
}
26+
}
2727

2828
/* /Buttons
29-
---------------------------------------------------------------------------------- */
29+
---------------------------------------------------------------------------------- */

assets/css/base/navigation.less

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -2,56 +2,56 @@
22
---------------------------------------------------------------------------------- */
33

44
.source_nav {
5-
white-space: nowrap;
6-
display: none;
5+
white-space: nowrap;
6+
display: none;
77

8-
font-family: @font-family-main;
9-
color: @color-main;
8+
font-family: @font-family-main;
9+
color: @color-main;
1010

11-
&.__loaded {
12-
display: block;
13-
}
11+
&.__loaded {
12+
display: block;
13+
}
1414

1515
&:empty {
16-
display: none;
17-
}
18-
}
19-
20-
@media all and (min-width: 990px) {
21-
.source_nav:before {
22-
content: '';
23-
display: inline-block;
24-
vertical-align: middle;
25-
height: 100%;
26-
}
27-
}
16+
display: none;
17+
}
18+
}
19+
20+
@media all and (min-width: 990px) {
21+
.source_nav:before {
22+
content: '';
23+
display: inline-block;
24+
vertical-align: middle;
25+
height: 100%;
26+
}
27+
}
2828

2929
.source_nav_c {
30-
display: inline-block;
31-
vertical-align: top;
32-
border-radius: 10px;
33-
width: 100%;
30+
display: inline-block;
31+
vertical-align: top;
32+
border-radius: 10px;
33+
width: 100%;
3434

35-
box-sizing: border-box;
35+
box-sizing: border-box;
3636

37-
padding: 20px 21px 10px;
38-
background-color: @light-gray;
39-
}
37+
padding: 20px 21px 10px;
38+
background-color: @light-gray;
39+
}
4040

4141
.source_nav_ul {
42-
list-style: none;
43-
margin: 0;
44-
padding: 0;
42+
list-style: none;
43+
margin: 0;
44+
padding: 0;
4545

4646
li:first-child {
47-
margin-top: 0;
48-
}
47+
margin-top: 0;
48+
}
4949

5050
a {
51-
display: block;
51+
display: block;
5252
line-height: inherit;
53-
}
54-
}
53+
}
54+
}
5555

5656
.source_main_nav_ul2 {
5757
margin: 0;

assets/css/base/ntf.less

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
.source_ntf {
2-
position: fixed; z-index: 50;
3-
top: 50px; /* toolbar height */
2+
position: fixed; z-index: 50;
3+
top: 50px; /* toolbar height */
44
left: 0; right: 0;
55

6-
font-size: @fz-size-m;
7-
font-family: @font-family-main;
8-
color: #333;
9-
text-align: center;
6+
font-size: @fz-size-m;
7+
font-family: @font-family-main;
8+
color: #333;
9+
text-align: center;
1010

11-
height: 50px;
12-
line-height: 48px;
13-
white-space: nowrap;
14-
overflow: hidden;
11+
height: 50px;
12+
line-height: 48px;
13+
white-space: nowrap;
14+
overflow: hidden;
1515

16-
background: #FFF6DD;
17-
border-bottom: 1px solid #ccc;
18-
box-shadow: 0 0 6px -2px rgba(0, 0, 0, .3);
16+
background: #FFF6DD;
17+
border-bottom: 1px solid #ccc;
18+
box-shadow: 0 0 6px -2px rgba(0, 0, 0, .3);
1919

20-
opacity: 0;
21-
visibility: hidden;
20+
opacity: 0;
21+
visibility: hidden;
2222

23-
transition: opacity .2s, visibility .2s;
24-
}
23+
transition: opacity .2s, visibility .2s;
24+
}
2525

26-
.source_ntf.__active {
27-
opacity: 1;
28-
visibility: visible;
29-
}
26+
.source_ntf.__active {
27+
opacity: 1;
28+
visibility: visible;
29+
}

assets/css/base/togglers.less

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -2,53 +2,53 @@
22
---------------------------------------------------------------------------------- */
33

44
.source_slider_frame {
5-
position: absolute;
6-
right: 0;
7-
top: 0;
8-
display: block;
9-
margin: 0 auto;
10-
width: 50px;
11-
height: 20px;
12-
13-
background-color: rgb(246, 249, 251);
14-
border-radius: 4px;
15-
box-shadow: inset 0px 0px 4px 0 rgba(0, 0, 0, 0.25);
5+
position: absolute;
6+
right: 0;
7+
top: 0;
8+
display: block;
9+
margin: 0 auto;
10+
width: 50px;
11+
height: 20px;
12+
13+
background-color: rgb(246, 249, 251);
14+
border-radius: 4px;
15+
box-shadow: inset 0px 0px 4px 0 rgba(0, 0, 0, 0.25);
1616
-webkit-touch-callout: none;
17-
user-select: none;
18-
}
17+
user-select: none;
18+
}
1919

2020
.source_slider_button {
21-
display: block;
22-
width: 30px;
23-
height: 20px;
24-
line-height: 20px;
25-
26-
background: #EDF2F7;
27-
border-radius: 4px;
28-
transition: all 0.25s ease-in-out;
29-
color: #000;
30-
font-family: sans-serif;
31-
font-size: 9px;
32-
text-align: center;
33-
cursor: pointer;
34-
box-shadow: inset 0px 0px 4px 0 rgba(0, 0, 0, 0.25);
35-
}
21+
display: block;
22+
width: 30px;
23+
height: 20px;
24+
line-height: 20px;
25+
26+
background: #EDF2F7;
27+
border-radius: 4px;
28+
transition: all 0.25s ease-in-out;
29+
color: #000;
30+
font-family: sans-serif;
31+
font-size: 9px;
32+
text-align: center;
33+
cursor: pointer;
34+
box-shadow: inset 0px 0px 4px 0 rgba(0, 0, 0, 0.25);
35+
}
3636

3737
.source_slider_frame__on .source_slider_button {
38-
margin-left: 20px;
39-
background: #EDF2F7;
40-
}
38+
margin-left: 20px;
39+
background: #EDF2F7;
40+
}
4141

4242
.source_slider_frame .source_slider_text_on { display: none; }
4343

44-
.source_slider_frame__on .source_slider_text_off { display: none; }
44+
.source_slider_frame__on .source_slider_text_off { display: none; }
4545

46-
.source_slider_frame__on .source_slider_text_on { display: block; }
46+
.source_slider_frame__on .source_slider_text_on { display: block; }
4747

48-
.source_slider_frame__on .source_slider_button {
49-
background: #73c051;
50-
color: #fff;
51-
}
48+
.source_slider_frame__on .source_slider_button {
49+
background: #73c051;
50+
color: #fff;
51+
}
5252

5353
/* /Togglers
5454
---------------------------------------------------------------------------------- */

assets/css/cosmetic/helpers.less

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,38 @@
22
---------------------------------------------------------------------------------- */
33

44
.source_delim {
5-
background: none;
6-
border: 0 none;
7-
border-top: 1px dotted @black;
8-
height: 0; padding: 0;
9-
margin: 20px 0;
10-
}
5+
background: none;
6+
border: 0 none;
7+
border-top: 1px dotted @black;
8+
height: 0; padding: 0;
9+
margin: 20px 0;
10+
}
1111

1212
.source_clear {
13-
width: 100%;
14-
clear: both;
15-
height: 0;
16-
font-size:0;
17-
line-height:0;
18-
}
13+
width: 100%;
14+
clear: both;
15+
height: 0;
16+
font-size:0;
17+
line-height:0;
18+
}
1919

2020
.source_tx {
21-
margin: 5px 0 20px;
22-
}
21+
margin: 5px 0 20px;
22+
}
2323

2424
.source_huge {
25-
font-size: 1.2em;
26-
}
25+
font-size: 1.2em;
26+
}
2727

2828
.source_ul {
29-
margin: 0; padding: 0;
30-
margin-left: 18px;
29+
margin: 0; padding: 0;
30+
margin-left: 18px;
3131

32-
list-style: outside disc;
33-
}
34-
.source_ul li {
35-
margin: 5px 0;
36-
}
32+
list-style: outside disc;
33+
}
34+
.source_ul li {
35+
margin: 5px 0;
36+
}
3737

3838
/* /Helpers
39-
---------------------------------------------------------------------------------- */
39+
---------------------------------------------------------------------------------- */

0 commit comments

Comments
 (0)