Implement drop shadow during drag (#242)

* Basic implementation of drop shadow during drag

* Adjust shadow position

* Factor out constants for drag shadows

* Remove unused feOffset
This commit is contained in:
Tim Mickel 2016-04-20 13:18:04 -04:00
parent 258a3e4d45
commit f1977ded18
3 changed files with 43 additions and 2 deletions

View file

@ -40,6 +40,7 @@ Blockly.Colours = {
"textField": "#FFFFFF",
"insertionMarker": "#949494",
"insertionMarkerOpacity": 0.6,
"dragShadowOpacity": 0.3,
// CSS colours: support RGBA
"fieldShadow": "rgba(0,0,0,0.1)"
};