linaro-jekyll-theme 0.1.2.15 → 0.1.2.16
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/nav.scss +0 -69
- data/assets/js/app/main.js +0 -13
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4306cb7daf31408ff89865722adfdbc43f762f2d
|
4
|
+
data.tar.gz: 8097771d5d1a0437283b6020c83af5820c21afd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90027ce9a7fabaab69c65d2d8c4b314f402f91b170b7ce9e5e32f2215044d692630894920a03601dc32ba077f3c6308f82323509ebf546f41f545867ef228032
|
7
|
+
data.tar.gz: b3241265d18fc33331c0b1d3716c66366cdc5838b95961e950113cdc97a6bb0040a0ecbe55be681c4cff2a28cc545aa0ef0b154dfd39017f72e749cd0a29528c
|
data/_sass/core/nav.scss
CHANGED
@@ -410,72 +410,3 @@ ul#navbar-buttons > li {
|
|
410
410
|
i.glyphicon.glyphicon-search {
|
411
411
|
font-size: 16px;
|
412
412
|
}
|
413
|
-
|
414
|
-
|
415
|
-
#search {
|
416
|
-
position: fixed;
|
417
|
-
z-index: 10000;
|
418
|
-
top: 0px;
|
419
|
-
left: 0px;
|
420
|
-
width: 100%;
|
421
|
-
height: 100%;
|
422
|
-
background-color: rgba(0, 0, 0, 0.9);
|
423
|
-
|
424
|
-
-webkit-transition: all 0.5s ease-in-out;
|
425
|
-
-moz-transition: all 0.5s ease-in-out;
|
426
|
-
-o-transition: all 0.5s ease-in-out;
|
427
|
-
-ms-transition: all 0.5s ease-in-out;
|
428
|
-
transition: all 0.5s ease-in-out;
|
429
|
-
|
430
|
-
-webkit-transform: translate(0px, -100%) scale(0, 0);
|
431
|
-
-moz-transform: translate(0px, -100%) scale(0, 0);
|
432
|
-
-o-transform: translate(0px, -100%) scale(0, 0);
|
433
|
-
-ms-transform: translate(0px, -100%) scale(0, 0);
|
434
|
-
transform: translate(0px, -100%) scale(0, 0);
|
435
|
-
|
436
|
-
opacity: 0;
|
437
|
-
}
|
438
|
-
|
439
|
-
#search.open {
|
440
|
-
-webkit-transform: translate(0px, 0px) scale(1, 1);
|
441
|
-
-moz-transform: translate(0px, 0px) scale(1, 1);
|
442
|
-
-o-transform: translate(0px, 0px) scale(1, 1);
|
443
|
-
-ms-transform: translate(0px, 0px) scale(1, 1);
|
444
|
-
transform: translate(0px, 0px) scale(1, 1);
|
445
|
-
opacity: 1;
|
446
|
-
}
|
447
|
-
|
448
|
-
#search input[type="search"] {
|
449
|
-
position: absolute;
|
450
|
-
top: 50%;
|
451
|
-
width: 100%;
|
452
|
-
color: rgb(255, 255, 255);
|
453
|
-
background: rgba(0, 0, 0, 0);
|
454
|
-
font-size: 60px;
|
455
|
-
font-weight: 300;
|
456
|
-
text-align: center;
|
457
|
-
border: 0px;
|
458
|
-
margin: 0px auto;
|
459
|
-
margin-top: -51px;
|
460
|
-
padding-left: 30px;
|
461
|
-
padding-right: 30px;
|
462
|
-
outline: none;
|
463
|
-
}
|
464
|
-
#search .btn {
|
465
|
-
position: absolute;
|
466
|
-
top: 50%;
|
467
|
-
left: 50%;
|
468
|
-
margin-top: 61px;
|
469
|
-
margin-left: -45px;
|
470
|
-
}
|
471
|
-
#search .close {
|
472
|
-
position: fixed;
|
473
|
-
top: 15px;
|
474
|
-
right: 15px;
|
475
|
-
color: #fff;
|
476
|
-
background-color: #428bca;
|
477
|
-
border-color: #357ebd;
|
478
|
-
opacity: 1;
|
479
|
-
padding: 10px 17px;
|
480
|
-
font-size: 27px;
|
481
|
-
}
|
data/assets/js/app/main.js
CHANGED
@@ -3,19 +3,6 @@
|
|
3
3
|
|
4
4
|
$(document).ready(function () {
|
5
5
|
|
6
|
-
$('a[href="#search"]').on('click', function(event) {
|
7
|
-
event.preventDefault();
|
8
|
-
$('#search').addClass('open');
|
9
|
-
$('#search > form > input[type="search"]').focus();
|
10
|
-
});
|
11
|
-
|
12
|
-
$('#search, #search button.close').on('click keyup', function(event) {
|
13
|
-
if (event.target == this || event.target.className == 'close' || event.keyCode == 27) {
|
14
|
-
$(this).removeClass('open');
|
15
|
-
}
|
16
|
-
});
|
17
|
-
|
18
|
-
|
19
6
|
//Scrolling sticking on IOS7
|
20
7
|
if (navigator.userAgent.match(/.*CPU.*OS 7_\d/i)){$('html').addClass('ios7');}
|
21
8
|
|