File tree Expand file tree Collapse file tree 1 file changed +26
-2
lines changed Expand file tree Collapse file tree 1 file changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -219,6 +219,8 @@ div.flot-text {
219
219
& :hover {
220
220
.dash-row-header-actions {
221
221
display : block ;
222
+ opacity : 0 ;
223
+ animation : fadeIn 150ms linear 100ms forwards ;
222
224
}
223
225
}
224
226
@@ -387,7 +389,7 @@ div.flot-text {
387
389
border-left : $panel-border ;
388
390
border-bottom : $panel-border ;
389
391
border-right : $panel-border ;
390
- margin : 0 ;
392
+ margin : 0 0 $panel-margin * 2 0 ;
391
393
padding : $panel-margin * 2 ;
392
394
box-shadow : 0px 3px 7px -3px $black ;
393
395
}
@@ -396,14 +398,23 @@ div.flot-text {
396
398
border-left : $panel-border ;
397
399
border-bottom : $panel-border ;
398
400
border-right : $panel-border ;
399
- margin : 0 ;
401
+ margin : 0 0 $panel-margin * 2 0 ;
400
402
padding : $panel-margin * 2 ;
401
403
// display: flex;
402
404
// align-items: flex-start;
403
405
// position: relative;
404
406
box-shadow : 0px 3px 7px -3px $black ;
405
407
}
406
408
409
+ .dash-edit-mode {
410
+ .dash-row-options {
411
+ margin-bottom : 0 ;
412
+ }
413
+ .dash-row-add-panel {
414
+ margin-bottom : 0 ;
415
+ }
416
+ }
417
+
407
418
.add-panel-panels-scroll {
408
419
width : 100% ;
409
420
overflow : hidden ;
@@ -440,3 +451,16 @@ div.flot-text {
440
451
.add-panel-item-img {
441
452
width : 2rem ;
442
453
}
454
+
455
+ // Animations
456
+
457
+ @keyframes fadeIn {
458
+ from {
459
+ opacity : 0 ;
460
+ }
461
+
462
+ to {
463
+ opacity : 1 ;
464
+ }
465
+ }
466
+
You can’t perform that action at this time.
0 commit comments