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

Commit 651aaf6

Browse files
author
Fraser J. Gordon
committed
Update to r1270 from the SVN
1 parent c5350ea commit 651aaf6

600 files changed

Lines changed: 103656 additions & 101 deletions

File tree

Some content is hidden

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

Documentation/guides/Extending LiveCode.md

Lines changed: 411 additions & 0 deletions

Documentation/guides/LiveCode Script.md

Lines changed: 9990 additions & 0 deletions

Documentation/guides/guides.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
LiveCode
2+
Extending LiveCode

Documentation/html_viewer/css/bootstrap.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
/* LiveCode dictionary code theme */
2+
.hljs-comment {
3+
color: #15901F;
4+
font-weight: bold;
5+
}
6+
7+
.hljs-attribute,
8+
.hljs-tag,
9+
.hljs-regexp {
10+
color: #cc6666;
11+
}
12+
13+
.hljs-preprocessor,
14+
.hljs-pragma,
15+
.hljs-params,
16+
.hljs-constant,
17+
.hljs-function,
18+
.hljs-operator,
19+
.hljs-keyword {
20+
color: #932192;
21+
}
22+
23+
.hljs-literal,
24+
.hljs-string,
25+
.hljs-number,
26+
.hljs-value,
27+
.hljs-inheritance,
28+
.hljs-header,
29+
.ruby .hljs-symbol,
30+
.xml .hljs-cdata {
31+
color: #011892;
32+
}
33+
34+
.hljs-command {
35+
color: #918F00;
36+
font-weight: bold;
37+
}
38+
39+
.hljs-control_st {
40+
color: #000000;
41+
font-weight: bold;
42+
}
43+
44+
.hljs-property {
45+
color: #009092;
46+
}
47+
48+
.hljs-variable {
49+
color: #000000;
50+
}
51+
52+
.hljs {
53+
display: block;
54+
overflow-x: auto;
55+
color: #000000;
56+
padding: 0.5em;
57+
-webkit-text-size-adjust: none;
58+
}
59+
60+
.coffeescript .javascript,
61+
.javascript .xml,
62+
.tex .hljs-formula,
63+
.xml .javascript,
64+
.xml .vbscript,
65+
.xml .css,
66+
.xml .hljs-cdata {
67+
opacity: 0.5;
68+
}
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
@charset "UTF-8";
2+
/* CSS Document */
3+
4+
.lcdoc_parameterValue{ font-weight:bold}
5+
6+
#table_list {
7+
width: 100%;
8+
}
9+
10+
#table_list thead, #table_list tbody, #table_list tr, #table_list td, #table_list th { display: block; }
11+
12+
#table_list tr:after {
13+
content: ' ';
14+
display: block;
15+
visibility: hidden;
16+
clear: both;
17+
}
18+
19+
#table_list thead th {
20+
height: 30px;
21+
22+
/*text-align: left;*/
23+
}
24+
25+
#table_list tbody {
26+
height: 180px;
27+
overflow-y: auto;
28+
}
29+
30+
#table_list thead {
31+
/* fallback */
32+
}
33+
34+
35+
#table_list tbody td, #table_list thead th {
36+
37+
}
38+
39+
#table_list .active{ background-color:#00ff00}
40+
41+
#header_panel_holder{ background-color:#00ff88}
42+
43+
44+
#lcdoc_body{
45+
margin-top:270px
46+
}
47+
48+
#lcdoc_list.affix{
49+
width:848px;
50+
z-index:100;
51+
}
52+
53+
.lcdoc_section_title{ font-weight:bold; text-transform:capitalize}
54+
55+
.lcdoc_infocus{
56+
border:1px solid #ff0055
57+
box-shadow:10px 10px 5px #ff0055;
58+
}
59+
60+
.lcdoc_entry_name{
61+
font-weight:bold;
62+
}
63+
64+
.lcdoc_entry_param{
65+
font-style:italic;
66+
}
67+
68+
#lcdoc_body table{ border: 1px solid #cccccc; width:100%; margin-bottom:10px}
69+
#lcdoc_body table thead{ border-bottom: 2px solid #cccccc;}
70+
#lcdoc_body table td{ border: 1px solid #cccccc; padding:5px;}
71+
72+
#lcdoc_body .lcdoc_glossary_table td{width:37%}
73+
#lcdoc_body .lcdoc_glossary_table td:first-of-type{width:26%}
74+
75+
76+
77+
@media (min-width: 768px) {
78+
#lcdoc_list.affix{
79+
width:90%;
80+
margin-left:auto;
81+
margin-right:auto;
82+
}
83+
}
84+
85+
@media (min-width: 992px) {
86+
#lcdoc_list.affix{
87+
width:697px;
88+
}
89+
}
90+
91+
@media (min-width: 1200px) {
92+
#lcdoc_list.affix{
93+
width:848px;
94+
}
95+
}
96+
97+
.bs-sidebar.affix {
98+
width: 260px;
99+
top: 25px;
100+
display:none;
101+
}
102+
103+
@media (min-width: 768px) {
104+
.bs-sidebar.affix {
105+
display:none;
106+
}
107+
}
108+
109+
@media (min-width: 992px) {
110+
.bs-sidebar.affix {
111+
width: 213px;
112+
position: fixed;
113+
top: 25px;
114+
display:block;
115+
}
116+
}
117+
118+
@media (min-width: 1200px) {
119+
.bs-sidebar.affix {
120+
width: 263px;
121+
display:block;
122+
}
123+
}

Documentation/html_viewer/css/stackedit.css

Lines changed: 1229 additions & 0 deletions
Large diffs are not rendered by default.

Documentation/html_viewer/css/userguide.css

Lines changed: 154 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
12.1 KB
Binary file not shown.
19.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)