active_frontend 10.2.6 → 10.2.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 91449214b86d5b43735ba429ba987e833fb04f52
4
- data.tar.gz: a03d3f76c4f0ad71a670b3171dec424294dcc1f3
3
+ metadata.gz: 6c7344fbe1b9f8afa1a9ae3fcff436ad2e806b87
4
+ data.tar.gz: 4f6d89800f90f33464a588553b77b8ce425a1e5c
5
5
  SHA512:
6
- metadata.gz: 4c7bba64655d3a9ec738536ac046a664bd6bcd4f1a0fcde4aaae0681b755cc157ba9446fd21cfd82242adfc7fa12f12d8a0742283d9c2fbfec7dd81679a93cd3
7
- data.tar.gz: 4e8da6f342b6903776502efb2ee371ec95cb1fc69428414c7cdf53c8bf012d3144e9c45e8fcd4d343f8aa417a395d761b17a2264baa9ed0c80ae3b65ffa844b3
6
+ metadata.gz: fe84c9ed427b37b80709f214aa6270aa58664582f65d18e500fab80983c32e7ddc09fac1860aae36446d72fb4d91cc283b68b6bf0f71ca659351b860ffea021e
7
+ data.tar.gz: fcbfaa00cad5f0d58ba33694cf115435ff8bdc0f117d6e7800898901f23ac3acf9d8e05b9b6c0bb9eff6054bde2bb09aa27717c107cd3fbd00bd1d4d17bd6e65
@@ -1,3 +1,3 @@
1
1
  module ActiveFrontend
2
- VERSION = "10.2.6"
2
+ VERSION = "10.2.7"
3
3
  end
@@ -31,8 +31,8 @@
31
31
  position: absolute;
32
32
  text-align: left;
33
33
  text-transform: none;
34
- -webkit-transition: all 0.1s ease-in-out;
35
- transition: all 0.1s ease-in-out;
34
+ -webkit-transition: all 0.09s ease-in-out;
35
+ transition: all 0.09s ease-in-out;
36
36
  top: 100%;
37
37
  visibility: hidden;
38
38
  z-index: 1000;
@@ -288,9 +288,10 @@ select.form-input-initial-width {
288
288
  padding-top: 14px;
289
289
  }
290
290
  .form-help-block {
291
- color: $color-gray;
291
+ color: $color-gray-light;
292
292
  display: block;
293
293
  font-size: 12px;
294
+ font-style: italic;
294
295
  margin-bottom: 15px;
295
296
  }
296
297
  .form-select {
@@ -9,6 +9,7 @@
9
9
  background: $color-haze;
10
10
  border: 1px solid $color-haze;
11
11
  border-radius: 2px;
12
+ box-sizing: border-box;
12
13
  color: $color-black;
13
14
  display: inline-block;
14
15
  padding: 6px;
@@ -24,6 +25,11 @@
24
25
  .badge { border-radius: 500px; }
25
26
  .badge:empty,
26
27
  .label:empty { display: none; }
28
+ .badge-block,
29
+ .label-block {
30
+ display: block;
31
+ width: 100%;
32
+ }
27
33
  .badge-black-light,
28
34
  .label-black-light,
29
35
  .badge-black,
@@ -30,13 +30,16 @@
30
30
  text-align: center;
31
31
  width: 0;
32
32
  }
33
- .progress > .bar-striped {
33
+ .progress > .bar.secondary { background: $color-secondary; }
34
+ .progress > .bar-striped,
35
+ .progress > .bar-striped.secondary {
34
36
  background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, $color-transparent 25%, $color-transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, $color-transparent 75%, $color-transparent);
35
37
  background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, $color-transparent 25%, $color-transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, $color-transparent 75%, $color-transparent);
36
38
  -webkit-background-size: 40px 40px;
37
39
  background-size: 40px 40px;
38
40
  }
39
- .progress > .bar-striped.active {
41
+ .progress > .bar-striped.active,
42
+ .progress > .bar-striped.secondary.active {
40
43
  -webkit-animation: progressBarStripes 2s linear infinite;
41
44
  animation: progressBarStripes 2s linear infinite;
42
45
  }
@@ -53,7 +53,7 @@
53
53
  }
54
54
  .toolbar > .tooltip {
55
55
  width: auto !important;
56
- min-width: 70px;
56
+ min-width: 80px;
57
57
  }
58
58
 
59
59
  /* # Colors
@@ -67,12 +67,20 @@
67
67
  .toolbar-dark > a[disabled],
68
68
  .toolbar-dark > a[disabled]:hover,
69
69
  .toolbar-dark > a[disabled]:active,
70
- .toolbar-dark > a[disabled]:focus { color: $color-gray; }
70
+ .toolbar-dark > a[disabled]:focus {
71
+ color: $color-gray;
72
+ border-color: $color-black-dark;
73
+ }
71
74
  .toolbar-light,
72
75
  .toolbar-light.toolbar-alt {
73
76
  background: $color-haze-light;
74
77
  border-color: $color-haze-dark;
75
78
  }
79
+ .toolbar-dark > a,
80
+ .toolbar-dark > a[disabled],
81
+ .toolbar-dark > a[disabled]:hover,
82
+ .toolbar-dark > a[disabled]:active,
83
+ .toolbar-dark > a[disabled]:focus { border-color: $color-haze-dark; }
76
84
 
77
85
  /* # Media Queries
78
86
  ================================================== */
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_frontend
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.2.6
4
+ version: 10.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-09-19 00:00:00.000000000 Z
11
+ date: 2015-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails