bootstrap-bookingsync-sass 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f6fd69124dc0cdbc83503b4bb3a40a3b32d053a3
4
- data.tar.gz: f4234da338ccefb2f7930d98cb0ff13af065882d
3
+ metadata.gz: 68feb69e8f7597d7304c07dc748fcb918fd9d5b8
4
+ data.tar.gz: 2efb79ef565f5083d30e70e27226d9d30f7ab741
5
5
  SHA512:
6
- metadata.gz: 7abab7783dde9ca13724b31f3b3fe302a25984c90e723faf7843a3a5a0ee8e33d85ffec149b130777134da5cfdad6c1fb09e5c56d62e9150e94436457c1f7b03
7
- data.tar.gz: 698da6f9d86670e1cd00a3ba79bc99df4fa5be6d620e241df8bfdcdb7db899ab95b407950c66fa78969e638daa79f10e86c01878fab981e0d718b9d8d2fba02a
6
+ metadata.gz: 49b5047feed3d3b3cbafeb250f041faa181f7af8886183dc86ab810a866097b3483d6f7a705b27a5fd11645ee4adcb937d0d7a16721e88a85258dfdf1f03eb5f
7
+ data.tar.gz: 680dd601f9df9e914332e11120bc2005c4329291b315e9a1d4e97cec128abbb2baf955134903f8bf15bdebebff8295d55ea3bf3c5f1d7822eab54ab40a6c3c2f
data/.gitignore CHANGED
@@ -21,3 +21,5 @@ docs/crash.log
21
21
  /libpeerconnection.log
22
22
  npm-debug.log
23
23
  testem.log
24
+ /bootstrap-bookingsync-sass.iml
25
+ /.idea/
@@ -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
 
@@ -90,7 +90,7 @@ body > .footer {
90
90
  display: block;
91
91
  }
92
92
 
93
- @media (max-width: $grid-float-breakpoint) {
93
+ @media (max-width: $grid-float-breakpoint-max) {
94
94
  // .menu, // Already set
95
95
  .menu-submenu,
96
96
  .sided-content,
@@ -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: 9000;
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: 1000;
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: 1000;
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: 8000;
299
+ z-index: $zindex-navbar;
300
300
 
301
301
  .menu-header {
302
302
  color: $menu-submenu-header-color;
@@ -35,7 +35,7 @@
35
35
  }
36
36
  }
37
37
 
38
- @media (max-width: $grid-float-breakpoint) {
38
+ @media (max-width: $grid-float-breakpoint-max) {
39
39
  .navbar-breadcrumb-brand-logo {
40
40
  position: relative;
41
41
  display: inline-block;
@@ -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 {
@@ -45,3 +45,9 @@
45
45
  margin-top: auto;
46
46
  margin-bottom: auto;
47
47
  }
48
+
49
+ // text utilities
50
+
51
+ .text-nowrap {
52
+ white-space: nowrap;
53
+ }
@@ -58,19 +58,19 @@
58
58
 
59
59
  .bs-example-iframe-container-mobile {
60
60
  margin: 0 auto;
61
- width: 320px;
62
- height: 568px;
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: 768px;
68
- height: 1024px;
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: 568px;
73
+ height: 570px; // including borders
74
74
  }
75
75
 
76
76
  .bs-example-iframe {
@@ -1,5 +1,5 @@
1
1
  module Bootstrap
2
2
  module BookingSync
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-cli-bootstrap-bookingsync-sass",
3
- "version": "1.0.0-beta.12",
3
+ "version": "1.0.1",
4
4
  "description": "Sass-powered version of Bootstrap with BookingSync theme.",
5
5
  "directories": {
6
6
  "doc": "doc",
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.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: 2016-12-25 00:00:00.000000000 Z
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: