Skip to content

Commit

Permalink
Merge pull request umbraco#3082 from kjac/fix-nc-icon-colors
Browse files Browse the repository at this point in the history
Ensure the correct color for items in the Nested Content item picker
  • Loading branch information
nul800sebastiaan authored Oct 3, 2018
2 parents 93ae55c + 45f574e commit 7c28e89
Showing 1 changed file with 18 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,25 @@
width: 99%;
}

.usky-grid.umb-nested-content__node-type-picker .cell-tools-menu {
position: relative;
transform: translate(-50%, -25%);
}
.usky-grid.umb-nested-content__node-type-picker {
.cell-tools-menu {
position: relative;
transform: translate(-50%, -25%);
}

.elements li {
&:hover {
i {
color: @white !important;
}
}

i {
// make sure the item icons shown are in the correct color according to their doc type icon instead of the grid editor item color
color: unset;
}
}
}

// this resolves the layout issue introduced in nested content in 7.12 with the addition of the input for link anchors
// the attribute selector ensures the change only applies to the linkpicker overlay
Expand Down

0 comments on commit 7c28e89

Please sign in to comment.