jumbo-jekyll-theme 3.8.0 → 3.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_sass/core/tables.scss +30 -0
- data/assets/js/app/main.js +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: adcd9cb643a8d5a7c418945510fea7002fae92571579f9657be69209285a7e3d
|
4
|
+
data.tar.gz: f25c1215f2fc416da61a728bf519212e7a2aff77eb35f4c6430fc913d59f89e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ca97df0b5c716c54d7118a2a67ad75aad816aeace3e2fb1830dfc71d6665b823da4a769e006075c5e534bafd007573b22f366004a8f565ee678481e75920ee8
|
7
|
+
data.tar.gz: 45abf3ef62acf90b5fb4b54c069e71336020c33720894adc6aaf03620e09c673d25206e10ef55ed3ab2164de7f75ba20fce976040edb7006eae1c46bcc2896b6
|
data/_sass/core/tables.scss
CHANGED
@@ -143,3 +143,33 @@ td {
|
|
143
143
|
td:last-child {
|
144
144
|
border-right: 0px;
|
145
145
|
}
|
146
|
+
|
147
|
+
// doubleScroll
|
148
|
+
.doubleScroll-scroll-wrapper::-webkit-scrollbar {
|
149
|
+
width: 1em;
|
150
|
+
}
|
151
|
+
.doubleScroll-scroll-wrapper::-webkit-scrollbar-track {
|
152
|
+
box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
153
|
+
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
154
|
+
background-color: darken($body-bg, 80%);
|
155
|
+
}
|
156
|
+
.doubleScroll-scroll-wrapper::-webkit-scrollbar-thumb {
|
157
|
+
background-color: lighten($brand-primary, 20%);
|
158
|
+
outline: 1px solid lighten($body-bg, 90%);
|
159
|
+
}
|
160
|
+
|
161
|
+
.double-scroll::-webkit-scrollbar {
|
162
|
+
width: 1em;
|
163
|
+
}
|
164
|
+
.double-scroll::-webkit-scrollbar-track {
|
165
|
+
box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
166
|
+
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
167
|
+
background-color: darken($body-bg, 80%);
|
168
|
+
}
|
169
|
+
.double-scroll::-webkit-scrollbar-thumb {
|
170
|
+
background-color: lighten($brand-primary, 20%);
|
171
|
+
outline: 1px solid lighten($body-bg, 90%);
|
172
|
+
}
|
173
|
+
.double-scroll table.table {
|
174
|
+
margin-bottom: 0px;
|
175
|
+
}
|
data/assets/js/app/main.js
CHANGED