Skip to content

Commit 520ef4d

Browse files
authored
[update] v0.2 (#35)
1 parent 6f69f31 commit 520ef4d

File tree

135 files changed

+45850
-4
lines changed

Some content is hidden

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

135 files changed

+45850
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The fastest open-source web component of data table.
2121
[![npm](https://img.shields.io/npm/v/cheetah-grid.svg)](https://www.npmjs.com/package/cheetah-grid)
2222

2323
```html
24-
<script src="https://unpkg.com/cheetah-grid@0.1.x"></script>
24+
<script src="https://unpkg.com/cheetah-grid@0.2.x"></script>
2525
```
2626

2727
### Downloading Cheetah Grid using npm
@@ -38,10 +38,10 @@ const cheetahGrid = require("cheetah-grid")
3838
### Downloading Cheetah Grid source code
3939
[![npm](https://img.shields.io/npm/v/cheetah-grid.svg)](https://www.npmjs.com/package/cheetah-grid)
4040

41-
[cheetahGrid.es5.min.js](https://unpkg.com/cheetah-grid@0.1.x/dist/cheetahGrid.es5.min.js)
41+
[cheetahGrid.es5.min.js](https://unpkg.com/cheetah-grid@0.2.x/dist/cheetahGrid.es5.min.js)
4242

4343
SourceMap
44-
[cheetahGrid.es5.min.js.map](https://unpkg.com/cheetah-grid@0.1.x/dist/cheetahGrid.es5.min.js.map)
44+
[cheetahGrid.es5.min.js.map](https://unpkg.com/cheetah-grid@0.2.x/dist/cheetahGrid.es5.min.js.map)
4545

4646

4747
### Downloading Cheetah Grid using GitHub

docs/0.2/css/highlightjs.css

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
/*
2+
Name: Kimbie (dark)
3+
Author: Jan T. Sott
4+
License: Creative Commons Attribution-ShareAlike 4.0 Unported License
5+
URL: https://github.com/idleberg/Kimbie-highlight.js
6+
*/
7+
8+
/* Kimbie Comment */
9+
.hljs-comment,
10+
.hljs-quote {
11+
color: #d6baad;
12+
}
13+
14+
/* Kimbie Red */
15+
.hljs-variable,
16+
.hljs-template-variable,
17+
.hljs-tag,
18+
.hljs-name,
19+
.hljs-selector-id,
20+
.hljs-selector-class,
21+
.hljs-regexp,
22+
.hljs-meta {
23+
color: #dc3958;
24+
}
25+
26+
/* Kimbie Orange */
27+
.hljs-number,
28+
.hljs-built_in,
29+
.hljs-builtin-name,
30+
.hljs-literal,
31+
.hljs-type,
32+
.hljs-params,
33+
.hljs-deletion,
34+
.hljs-link {
35+
color: #f79a32;
36+
}
37+
38+
/* Kimbie Yellow */
39+
.hljs-title,
40+
.hljs-section,
41+
.hljs-attribute {
42+
color: #f06431;
43+
}
44+
45+
/* Kimbie Green */
46+
.hljs-string,
47+
.hljs-symbol,
48+
.hljs-bullet,
49+
.hljs-addition {
50+
color: #889b4a;
51+
}
52+
53+
/* Kimbie Purple */
54+
.hljs-keyword,
55+
.hljs-selector-tag,
56+
.hljs-function {
57+
color: #98676a;
58+
}
59+
60+
.hljs {
61+
display: block;
62+
overflow-x: auto;
63+
background: #221a0f;
64+
color: #d3af86;
65+
padding: 0.5em;
66+
}
67+
68+
.hljs-emphasis {
69+
font-style: italic;
70+
}
71+
72+
.hljs-strong {
73+
font-weight: bold;
74+
}

docs/0.2/css/style.css

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
.primary {
2+
background-color: #284060;
3+
color: #fff;
4+
}
5+
6+
.primary.light,.primary .light {
7+
background-color: #556b8e;
8+
color: #fff;
9+
}
10+
11+
.primary.dark,.primary .dark {
12+
background-color: #001a36;
13+
color: #fff;
14+
}
15+
16+
.warn {
17+
background-color: #fcf8e3;
18+
border-color: #faf2cc;
19+
color: #8a6d3b;
20+
font-weight: bolder;
21+
padding: 5px;
22+
}
23+
24+
nav {
25+
line-height: 80px;
26+
height: 80px;
27+
}
28+
nav ul {
29+
padding-left: 0;
30+
list-style-type: none;
31+
margin: 0;
32+
}
33+
nav ul li {
34+
float: left;
35+
padding: 0;
36+
}
37+
nav ul a {
38+
font-size: 1rem;
39+
display: block;
40+
padding: 0 15px;
41+
cursor: pointer;
42+
text-decoration: none;
43+
}
44+
nav ul li a:hover {
45+
background-color: rgba(0,0,0,0.1);
46+
}
47+
48+
table {
49+
border-collapse: collapse;
50+
margin-bottom: 30px;
51+
}
52+
th {
53+
border-top: solid 1.5px #aaa;
54+
border-bottom: solid 1.5px #aaa;
55+
padding: 5px 10px;
56+
}
57+
td {
58+
border-bottom: solid 1px #aaa;
59+
padding: 5px 10px;
60+
}
61+
62+
code {
63+
border: .1rem solid #E5E5E5;
64+
margin: 0 .3rem;
65+
padding: .2rem .4rem;
66+
background-color: #F4F9F9;
67+
}
68+
69+
.contents h1, .contents h2 {
70+
border-bottom: 1px solid #ddd;
71+
padding-bottom: .1em;
72+
}
73+
74+
.right {
75+
float: right !important;
76+
}
77+
78+
.share-buttons>* {
79+
line-height: 20px;
80+
}
81+
82+
.share-buttons>*>* {
83+
vertical-align: bottom;
84+
}
85+
86+
.share-buttons {
87+
text-align: right;
88+
padding: 5px;
89+
}
90+
91+
.icon-arrow {
92+
display: inline-block;
93+
background: -moz-linear-gradient(-45deg, transparent 0%, transparent 50%, #DDD 51%, #DDD 100%); /* FF3.6-15 */
94+
background: -webkit-linear-gradient(-45deg, transparent 0%, transparent 50%, #DDD 51%, #DDD 100%); /* Chrome10-25,Safari5.1-6 */
95+
background: linear-gradient(135deg, transparent 0%, transparent 50%, #DDD 51%, #DDD 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
96+
width: 10px;
97+
height: 10px;
98+
transform: rotate(45deg) translateY(-5px);
99+
vertical-align: middle;
100+
}
101+
102+
.nav-dropdown-container {
103+
position: relative;
104+
}
105+
106+
@media screen and (min-width: 500px) {
107+
.mobile-only {
108+
display: none;
109+
}
110+
111+
.nav-dropdown {
112+
display: none;
113+
position: absolute;
114+
background-color: #f9f9f9;
115+
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
116+
z-index: 1;
117+
}
118+
119+
.nav-dropdown.show {
120+
display:block;
121+
}
122+
123+
.nav-dropdown.right-dropdown {
124+
right: 0;
125+
}
126+
127+
nav ul.nav-dropdown li {
128+
float: none;
129+
line-height: 50px;
130+
white-space: nowrap;
131+
}
132+
133+
}
134+
@media screen and (max-width: 499px) {
135+
.mobile-only {
136+
}
137+
138+
.mobile-nav-dropdown {
139+
display: none;
140+
position: absolute;
141+
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
142+
z-index: 1;
143+
}
144+
145+
.mobile-nav-dropdown.show {
146+
display:block;
147+
}
148+
149+
.mobile-nav-dropdown.right-dropdown {
150+
right: 0;
151+
}
152+
153+
nav ul.mobile-nav-dropdown li {
154+
float: none;
155+
line-height: 50px;
156+
white-space: nowrap;
157+
}
158+
nav ul.mobile-nav-dropdown ul {
159+
padding-left: 5px;
160+
}
161+
162+
}
163+

0 commit comments

Comments
 (0)