bootstrap-bookingsync-sass 1.0.0 → 1.0.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/.gitignore +2 -0
- data/CHANGELOG.md +8 -1
- data/assets/stylesheets/bookingsync/_layout.scss +1 -1
- data/assets/stylesheets/bookingsync/_menu.scss +4 -4
- data/assets/stylesheets/bookingsync/_navbar.scss +1 -1
- data/assets/stylesheets/bookingsync/_navs.scss +7 -3
- data/assets/stylesheets/bookingsync/_utilities.scss +6 -0
- data/docs/content/assets/stylesheets/_override.scss +5 -5
- data/lib/bootstrap/bookingsync/version.rb +1 -1
- data/package.json +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68feb69e8f7597d7304c07dc748fcb918fd9d5b8
|
4
|
+
data.tar.gz: 2efb79ef565f5083d30e70e27226d9d30f7ab741
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49b5047feed3d3b3cbafeb250f041faa181f7af8886183dc86ab810a866097b3483d6f7a705b27a5fd11645ee4adcb937d0d7a16721e88a85258dfdf1f03eb5f
|
7
|
+
data.tar.gz: 680dd601f9df9e914332e11120bc2005c4329291b315e9a1d4e97cec128abbb2baf955134903f8bf15bdebebff8295d55ea3bf3c5f1d7822eab54ab40a6c3c2f
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,16 @@
|
|
1
1
|
### master
|
2
2
|
|
3
|
+
### 1.0.1 - 2017-02-12
|
4
|
+
|
5
|
+
* bug fixes
|
6
|
+
* fix menu and navigation on tablet (768px width) devices.
|
7
|
+
* fix menu z-index.
|
8
|
+
* fix tabs styling when active tab is also focused.
|
9
|
+
|
3
10
|
### 1.0.0 - 2016-12-25
|
4
11
|
|
5
12
|
* improvements
|
6
|
-
* update layout when using top level container and footer
|
13
|
+
* update layout when using top level container and footer.
|
7
14
|
|
8
15
|
### 1.0.0.beta12 - 2016-12-24
|
9
16
|
|
@@ -21,7 +21,7 @@ $menu-submenu-width: $menu-width - $menu-collapsed-width;
|
|
21
21
|
overflow-x: hidden;
|
22
22
|
overflow-y: auto;
|
23
23
|
-webkit-overflow-scrolling: touch;
|
24
|
-
z-index:
|
24
|
+
z-index: $zindex-navbar;
|
25
25
|
transition: width 0.2s cubic-bezier(.4,0,.2,1), transform 0.2s cubic-bezier(.4,0,.2,1);
|
26
26
|
|
27
27
|
ol {
|
@@ -142,7 +142,7 @@ $menu-submenu-width: $menu-width - $menu-collapsed-width;
|
|
142
142
|
.menu-header {
|
143
143
|
background-color: $menu-header-bg;
|
144
144
|
color: $menu-header-color;
|
145
|
-
z-index:
|
145
|
+
z-index: $zindex-navbar;
|
146
146
|
position: static;
|
147
147
|
border-bottom: 1px solid $menu-header-border-color;
|
148
148
|
|
@@ -227,7 +227,7 @@ $menu-submenu-width: $menu-width - $menu-collapsed-width;
|
|
227
227
|
.menu-footer {
|
228
228
|
background-color: $menu-footer-bg;
|
229
229
|
color: $menu-footer-color;
|
230
|
-
z-index:
|
230
|
+
z-index: $zindex-navbar;
|
231
231
|
position: static;
|
232
232
|
|
233
233
|
a {
|
@@ -296,7 +296,7 @@ $menu-submenu-width: $menu-width - $menu-collapsed-width;
|
|
296
296
|
margin-left: $menu-collapsed-width;
|
297
297
|
color: $menu-submenu-color;
|
298
298
|
background-color: $menu-submenu-bg;
|
299
|
-
z-index:
|
299
|
+
z-index: $zindex-navbar;
|
300
300
|
|
301
301
|
.menu-header {
|
302
302
|
color: $menu-submenu-header-color;
|
@@ -20,16 +20,21 @@
|
|
20
20
|
}
|
21
21
|
}
|
22
22
|
|
23
|
-
> li.active a {
|
23
|
+
> li.active > a {
|
24
24
|
color: $brand-primary;
|
25
25
|
background-color: $sheet-bg;
|
26
26
|
|
27
|
+
&:focus,
|
27
28
|
&:hover {
|
28
29
|
color: $brand-primary;
|
29
|
-
background-color: $sheet-navbar-tabs-bg-hover;
|
30
30
|
border-top: 0;
|
31
31
|
border-left: 1px solid $gray-lightest;
|
32
32
|
border-right: 1px solid $gray-lightest;
|
33
|
+
border-bottom: 1px solid $sheet-bg;
|
34
|
+
}
|
35
|
+
|
36
|
+
&:hover {
|
37
|
+
background-color: $sheet-navbar-tabs-bg-hover;
|
33
38
|
}
|
34
39
|
}
|
35
40
|
|
@@ -39,7 +44,6 @@
|
|
39
44
|
}
|
40
45
|
|
41
46
|
// Dropdown
|
42
|
-
&.nav > li > a:focus,
|
43
47
|
.open > a,
|
44
48
|
.open > a:hover,
|
45
49
|
.open > a:focus {
|
@@ -58,19 +58,19 @@
|
|
58
58
|
|
59
59
|
.bs-example-iframe-container-mobile {
|
60
60
|
margin: 0 auto;
|
61
|
-
width:
|
62
|
-
height:
|
61
|
+
width: 322px; // including borders
|
62
|
+
height: 570px; // including borders
|
63
63
|
}
|
64
64
|
|
65
65
|
.bs-example-iframe-container-tablet {
|
66
66
|
margin: 0 auto;
|
67
|
-
width:
|
68
|
-
height:
|
67
|
+
width: 770px; // including borders
|
68
|
+
height: 1026px; // including borders
|
69
69
|
}
|
70
70
|
|
71
71
|
.bs-example-iframe-container-desktop {
|
72
72
|
width: 100%;
|
73
|
-
height:
|
73
|
+
height: 570px; // including borders
|
74
74
|
}
|
75
75
|
|
76
76
|
.bs-example-iframe {
|
data/package.json
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap-bookingsync-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sebastien Grosjean
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bootstrap-sass
|
@@ -344,3 +344,4 @@ signing_key:
|
|
344
344
|
specification_version: 4
|
345
345
|
summary: Twitter's Bootstrap with BookingSync Theme, ready to drop into Rails
|
346
346
|
test_files: []
|
347
|
+
has_rdoc:
|