dlg-ui 1.0.7 → 1.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.
@@ -203,13 +203,29 @@
203
203
  }
204
204
 
205
205
  .navbar-selection {
206
- margin: 8px;
206
+ padding: 8px;
207
207
  display: flex;
208
208
  align-items: center;
209
+ position: relative;
210
+ }
211
+
212
+ .navbar-selection::before {
213
+ content: '';
214
+ position: absolute;
215
+ top: 0;
216
+ left: 0;
217
+ width: 100%;
218
+ height: 100%;
219
+ transform: scaleY(0);
220
+ background-color: #cccccc;
221
+ z-index: -1;
222
+ transition: transform 0.3s ease;
223
+ transform-origin: bottom;
209
224
  }
210
225
 
211
- .navbar-selection:last-child {
212
- margin-right: 0;
226
+ .navbar-selection:hover::before {
227
+ height: 100%;
228
+ transform: scaleY(1);
213
229
  }
214
230
 
215
231
  .navbar-title {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dlg-ui",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "The default blueprint for ember-cli addons.",
5
5
  "keywords": [
6
6
  "ember-addon"