active_frontend 12.4.10 → 12.4.11

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: 9106a9e45b69990c4e670304a9186bc5afffdb8f
4
- data.tar.gz: 2199c96814d8dbad4751e0b301122b1a8c5f9fb5
3
+ metadata.gz: 961ed313be8121533cb415edd7bfb0398f91b919
4
+ data.tar.gz: e47550c96865e23c4a84c63dbc673133a16aad08
5
5
  SHA512:
6
- metadata.gz: 8df5ae6d080d6ab063f35ab091bc94a1a86659b94590e3c04efddf15f4e9444483a946b8fbd946d04a97487edb83500d5d5aea0abab0671bc0899a4701e27fdd
7
- data.tar.gz: e5d67bfc109ac1ecd2fc51beea55fe5c8400827aba445612e1714527a910443333524b1bda22dc0a2946859ec7b801826f6bdacb0570035b8d0d85b19b46d09f
6
+ metadata.gz: 080d47e29a72755282e11f2531787c59219a5799f16f44967a76be410429eea6060b722807de4ff4a960fa7d2a4d0c4297f437659649f874d7cd0dfb2af91f72
7
+ data.tar.gz: 1533e2b9c4738142dd5114dcf7f0b45a4726b8ae61c8410d132eaa60a3cf038454baf65045b17ba0b7ef1bee883097e2e616db1c0789bd6ab84c9c6e77f81b35
@@ -1,3 +1,3 @@
1
1
  module ActiveFrontend
2
- VERSION = "12.4.10"
2
+ VERSION = "12.4.11"
3
3
  end
@@ -44,6 +44,7 @@
44
44
  border-bottom: 4px solid $color-transparent;
45
45
  box-sizing: border-box;
46
46
  display: block;
47
+ height: 35px;
47
48
  padding: 12px 20px 8px 20px;
48
49
  min-width: 160px;
49
50
  text-align: center;
@@ -52,7 +53,6 @@
52
53
  .subheader-nav > li > a:focus { border-color: inherit; }
53
54
  .subheader-nav > li > a.active,
54
55
  .subheader-nav > li > a:active { border-color: $color-primary; }
55
- .subheader-nav > li > a.active { background: $color-light-haze; }
56
56
  .subheader-nav .label {
57
57
  border-radius: 2px;
58
58
  font-size: 9px;
@@ -86,14 +86,12 @@
86
86
  border-color: $color-dark-black !important;
87
87
  color: $color-white;
88
88
  }
89
- .subheader-dark .subheader-nav > li > a.active { background: $color-light-black; }
90
89
  .subheader-dark.subheader-shadow { box-shadow: 0 1px 2px $color-dark-black; }
91
90
  .subheader-light,
92
91
  .subheader-light .subheader-nav {
93
92
  background: $color-light-haze;
94
93
  border-color: $color-dark-haze !important;
95
94
  }
96
- .subheader-light .subheader-nav > li > a.active { background: $color-dark-haze; }
97
95
  .subheader-light.subheader-shadow { box-shadow: 0 1px 2px lighten($color-light-gray, 15%); }
98
96
 
99
97
  /* # Media Queries
@@ -121,6 +119,6 @@ only screen and ( min-resolution: 2dppx) {
121
119
  .subheader-nav > li,
122
120
  .subheader-nav > li:last-child { border-width: 0.5px; }
123
121
  .subheader-nav > li { font-weight: 500; }
124
- .subheader-nav > li > a { padding-bottom: 7.5px; }
122
+ .subheader-nav > li > a { height: 35.5px; }
125
123
  .subheader-nav-toolbar-adjustment { margin-left: 34.5px; }
126
124
  }
@@ -46,10 +46,9 @@
46
46
  .toolbar > a:hover,
47
47
  .toolbar > a.active,
48
48
  .toolbar > a:active,
49
- .toolbar > a:focus {
50
- background: $color-light-haze;
51
- color: $color-primary;
52
- }
49
+ .toolbar > a:focus { background: $color-light-haze; }
50
+ .toolbar > a.active,
51
+ .toolbar > a:active { color: $color-primary; }
53
52
  .toolbar > a[disabled] {
54
53
  background: $color-transparent;
55
54
  color: $color-gray;
@@ -84,28 +83,22 @@
84
83
  /* # Styles
85
84
  ================================================== */
86
85
  .toolbar-bordered > a {
87
- color: inherit !important;
88
- border-right-width: 4px !important;
89
- border-right-style: solid;
90
- border-right-color: $color-transparent;
86
+ background: $color-transparent !important;
87
+ border-right: 4px solid $color-transparent !important;
91
88
  text-indent: 1px;
92
89
  }
93
90
  .toolbar-bordered > a:hover,
94
- .toolbar-bordered > a:focus { background: $color-transparent !important; }
95
- .toolbar-bordered > a:hover,
96
91
  .toolbar-bordered > a.active,
97
92
  .toolbar-bordered > a:active,
98
- .toolbar-bordered > a:focus { border-right-color: $color-primary; }
93
+ .toolbar-bordered > a:focus { border-right-color: $color-primary !important; }
99
94
  .toolbar-bordered.toolbar-alt > a {
100
- border-left-width: 4px !important;
101
- border-left-style: solid;
102
- border-left-color: $color-transparent;
95
+ border-left: 4px solid $color-transparent !important;
103
96
  border-right: 0 !important;
104
97
  }
105
98
  .toolbar-bordered.toolbar-alt > a:hover,
106
99
  .toolbar-bordered.toolbar-alt > a.active,
107
100
  .toolbar-bordered.toolbar-alt > a:active,
108
- .toolbar-bordered.toolbar-alt > a:focus { border-left-color: $color-primary; }
101
+ .toolbar-bordered.toolbar-alt > a:focus { border-left-color: $color-primary !important; }
109
102
 
110
103
  /* # Media Queries
111
104
  ================================================== */
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_frontend
3
3
  version: !ruby/object:Gem::Version
4
- version: 12.4.10
4
+ version: 12.4.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez