Fix blocks' drag an drop

Mainly on the Additionals plugin's dashboards, but also on "My page".
Fixes #222
This commit is contained in:
Guillaume AGNIERAY
2023-03-22 22:26:28 +01:00
parent 611472863d
commit a1f1307acc
3 changed files with 10 additions and 20 deletions

View File

@@ -290,10 +290,11 @@ p.subtitle {
.block-receiver {
box-sizing: border-box;
min-height: 20px;
margin-bottom: $line-height-computed;
flex-basis: 100%;
.dragging & {
min-height: 20px;
margin-bottom: $line-height-computed;
outline: 2px dashed $gray-600;
}
}
@@ -347,6 +348,9 @@ a.close-icon {
// For Redmine 3.4+
#my-page {
display: flex;
flex-wrap: wrap;
.mypage-box {
> .contextual {
transition: opacity $transition-time;
@@ -359,15 +363,11 @@ a.close-icon {
}
#list-left {
width: 50%;
padding-right: ($padding-side * .5);
float: left;
flex-basis: 50%;
}
#list-right {
width: 50%;
padding-left: ($padding-side * .5);
float: right;
flex-basis: 50%;
}
}

View File

@@ -417,17 +417,7 @@ body {
// For Redmine 3.4+
#my-page {
#list-left {
width: 100%;
padding-right: 0;
float: none;
}
#list-right {
width: 100%;
padding-left: 0;
float: none;
}
display: block;
}
div#issue-changesets {

File diff suppressed because one or more lines are too long