@react-md/core 6.2.0 → 6.2.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.
package/dist/_base.scss CHANGED
@@ -88,6 +88,7 @@ $_layer-order: (
88
88
  form-message,
89
89
  fieldset,
90
90
  label,
91
+ select,
91
92
  text-field,
92
93
  text-area,
93
94
  password,
@@ -161,7 +161,7 @@ $option-selected-icon-spacing: $option-padding-left !default;
161
161
  @mixin select-styles($disable-layer: false) {
162
162
  @include utils.optional-layer(select, $disable-layer) {
163
163
  .rmd-select-container {
164
- outline-style: none;
164
+ outline: 0;
165
165
  }
166
166
 
167
167
  .rmd-selected-option {
@@ -642,7 +642,7 @@ $variables: (
642
642
 
643
643
  border-radius: $thumb-border-radius;
644
644
  height: $thumb-size;
645
- outline-style: none;
645
+ outline: 0;
646
646
  position: absolute;
647
647
  width: $thumb-size;
648
648
  z-index: $thumb-z-index;
@@ -134,7 +134,7 @@ $item-padding: calc(
134
134
  .rmd-tree {
135
135
  display: block;
136
136
  height: 100%;
137
- outline-style: none;
137
+ outline: 0;
138
138
  overflow: auto;
139
139
  // this is mostly for firefox. moving the mouse even 1px while clicking will
140
140
  // select the current item and all items to the tree root
@@ -113,7 +113,7 @@ $variables: (
113
113
  background-color: transparent;
114
114
  border: 0;
115
115
  inset: 0;
116
- outline-style: none;
116
+ outline: 0;
117
117
  padding: 0;
118
118
  position: fixed;
119
119
  transform: translate3d(get-var(x, 0), get-var(y, 0), get-var(z, 0));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-md/core",
3
- "version": "6.2.0",
3
+ "version": "6.2.1",
4
4
  "description": "The core components and functionality for react-md.",
5
5
  "type": "module",
6
6
  "sass": "./dist/_core.scss",