1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

drag n drop cleanup

This commit is contained in:
Kyle Spearrin
2019-03-28 00:21:01 -04:00
parent c70ed27271
commit 3bab3445d4
2 changed files with 58 additions and 59 deletions

View File

@@ -303,10 +303,6 @@
}
}
}
&:last-child {
padding-right: 2px !important;
}
}
&.no-pad .row-btn {
@@ -315,6 +311,33 @@
}
}
&:not(.box-draggable-row) {
.action-buttons .row-btn:last-child {
padding-right: 2px !important;
}
}
.drag-handle {
cursor: move;
padding: 10px 2px 10px 8px;
user-select: none;
@include themify($themes) {
color: themed('mutedColor');
}
}
&.cdk-drag-preview {
position: relative;
display: flex;
align-items: center;
opacity: 0.8;
@include themify($themes) {
background-color: themed('boxBackgroundColor');
}
}
select.field-type {
margin: 5px 0 0 25px;
width: calc(100% - 25px);
@@ -350,24 +373,3 @@
}
}
}
.box-drag-handle {
cursor: move;
margin-left: 5px;
user-select: none;
@include themify($themes) {
color: themed('mutedColor');
}
}
.cdk-drag-preview {
position: relative;
display: flex;
align-items: center;
opacity: .8;
@include themify($themes) {
background-color: themed('boxBackgroundColor');
}
}