stop14-themesystem-legacy 2.0.7 → 2.0.8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stop14-themesystem-legacy",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "A scaffolding and build system for theme development across platforms. Legacy version",
5
5
  "author": {
6
6
  "name": "Bill Kennedy",
@@ -152,7 +152,7 @@
152
152
  color: $btn_reset_color
153
153
  min-width: $btn_compactwidth
154
154
  text-decoration: none
155
- justify-content: flex-start
155
+ justify-content: center
156
156
  +background-icon-left('reset')
157
157
 
158
158
  &:hover
@@ -254,7 +254,7 @@
254
254
  font-weight: $normal
255
255
  font-size: $btn_fontsize
256
256
  padding: 0 $ui_padding
257
- height: $ui_minheight
257
+ height: $ui_element_height
258
258
  border-radius: $ui_border_radius
259
259
  border: 1px solid $ui_border_color
260
260
  max-width: $ui_max_text_width
@@ -39,6 +39,7 @@ input:focus
39
39
  input[type='text'],
40
40
  input[type='email'],
41
41
  input[type='password'],
42
+ input[type='search'],
42
43
  textarea#edit-message
43
44
  @extend %input-text
44
45
 
@@ -48,7 +49,6 @@ textarea#edit-message
48
49
  // Alternatively you can use the work-in-progress +input-button-icon() mixins
49
50
  // to see if you can achieve the desired results.
50
51
 
51
- input[type="search"],
52
52
  button[type="search"]
53
53
  @extend %button-search
54
54
 
@@ -61,7 +61,7 @@ button[type="reset"]
61
61
  @extend %button-reset
62
62
 
63
63
 
64
- input[type="search"]::-webkit-search-cancel-button
64
+ button[type="search"]::-webkit-search-cancel-button
65
65
  -webkit-appearance: none
66
66
  display: inline-block
67
67
  width: 20px
@@ -107,9 +107,9 @@
107
107
  +background-icon-base($icon_name,$size,$initial_state,$active_state)
108
108
 
109
109
  @if $position == 'left'
110
- background-position: left calc(#{$btn_padding} - #{$size * 2} ) center
110
+ background-position: left #{$btn_padding} center
111
111
  @else
112
- background-position: left calc(#{$btn_padding} + #{$size * 2} ) center
112
+ background-position: right #{$btn_padding} center
113
113
 
114
114
 
115
115
  =input-button-icon-left($icon_name, $size: $btn_icon_size, $btn_padding: $ui_padding, $initial_state: 'default', $active_state: 'active')