This repository was archived by the owner on Jul 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Flyout Shape #14
Merged
Merged
Flyout Shape #14
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
dec2472
Add shadow to flyout SVG
af57b12
Change spacing to ensure arrow renders correctly
3242e1f
Hide Blockly's scrollbars
174d4d2
Set correct x-coordinate so scrollbar renders correctly
08f506a
Move Blockly.BlockSvg.TAB_WIDTH override to block_svg.js
ee8a0f2
Update reference to ARROW_SIZE
b97cf5b
Hide flyout on scrolling the category menu
198ea83
Logic for DerivBot flyout design
51f5b79
Position flyout on workspace/window resize
6bec5e2
Eslint fixes
d3045d5
Add css-filters as an exception to .stylelintrc
7501d4f
Use bounds in memory, rather than accessing DOM
c186430
Delete _blockly-toolbox.scss
f00695e
Create vendor sass function
793c005
Use vendor function for 'experimental' CSS
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@mixin vendor($property, $value) { | ||
$prefixes: ('moz', 'webkit', 'ms', 'o'); | ||
@each $prefix in $prefixes { | ||
-#{$prefix}-#{$property}: #{$value}; | ||
} | ||
#{$property}: #{$value}; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
@import '../base/mixins'; | ||
|
||
.blocklyFlyout { | ||
@include vendor(filter, drop-shadow(0 10px 5px #999)); | ||
} | ||
|
||
.blocklyFlyoutBackground { | ||
height: calc(100% - 60px) !important; | ||
fill: #fff !important; | ||
fill-opacity: 0.95 !important; | ||
stroke: #ebebeb; | ||
stroke-width: 5px; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,8 @@ | |
|
||
.blocklyText { | ||
fill: #000 !important; | ||
} | ||
|
||
.blocklyMainWorkspaceScrollbar { | ||
display: none; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.