Skip to content

Commit

Permalink
⚙️ Fix #53
Browse files Browse the repository at this point in the history
- 🎨 [v1.0.1] `BlocklyApp/components/BlocklyWorkspace`: Increase the opaque to the scrollbars and the trashcan (#53).
  • Loading branch information
lgraziani2712 committed Aug 31, 2017
1 parent 7e89a23 commit 1e33e88
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
2 changes: 2 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- 🎨 [v1.0.1] `Activity`: Add more visually atractive cursors (#57).
- 🎨 [v1.0.1] `BlocklyApp`: Add more visually atractive cursors (#57).
- 🎨 [v1.0.1] `BlocklyApp/components/BlocklyWorkspace`: Increase the opaque to the scrollbars and the trashcan (#53).

## v1.0.0-alpha.0

Expand Down Expand Up @@ -48,5 +49,6 @@
- 🆕 [v1.0.0] `Activity`.
- 🆕 [v1.0.0] `BlocklyApp`.
- 🆕 [v1.0.0] `BlocklyApp/components/BlocklyToolbox`.
- 🆕 [v1.0.0] `BlocklyApp/components/BlocklyWorkspace`.
- 🆕 [v1.0.0] `CodimoRouter`.
- 🆕 [v1.0.0] `PixiApp`.
30 changes: 26 additions & 4 deletions core/ui/BlocklyApp/components/BlocklyWorkspace.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,38 @@ const Workspace = styled.div`
height: 520px;
width: 580px;
& .blocklyTrash {
opacity: 1 !important;
}
& .blocklyDraggable {
cursor: url(${GrabURL}) 15 5, auto;
&.blocklyDragging {
cursor: url(${GrabbingURL}) 15 5, auto;
&.blocklyDraggingDelete {
cursor: url(${GrabbingNotURL}) 15 5, auto;
}
}
}
& .blocklyDraggable.blocklyDragging {
cursor: url(${GrabbingURL}) 15 5, auto;
& .blocklyScrollbarBackground {
&:hover+.blocklyScrollbarHandle {
fill: rgba(80, 80, 80, 0.75);
}
}
& .blocklyDraggable.blocklyDragging.blocklyDraggingDelete {
cursor: url(${GrabbingNotURL}) 15 5, auto;
& .blocklyScrollbarHandle {
fill: rgba(100, 100, 100, 0.75);
&:hover {
fill: rgba(80, 80, 80, 0.75);
}
&:active {
fill: rgba(60, 60, 60, 0.75);
}
}
`;

Expand Down

0 comments on commit 1e33e88

Please sign in to comment.