Browse Source

fix drag and drop in firefox; rm box-shadow from required inputs

romanmatiasko 10 years ago
parent
commit
91493b1be5
4 changed files with 7 additions and 0 deletions
  1. 0 0
      dist/css/main.css
  2. 0 0
      dist/js/play.js
  3. 5 0
      src/css/_layout.scss
  4. 2 0
      src/js/components/Chessboard.js

File diff suppressed because it is too large
+ 0 - 0
dist/css/main.css


File diff suppressed because it is too large
+ 0 - 0
dist/js/play.js


+ 5 - 0
src/css/_layout.scss

@@ -23,6 +23,11 @@ header {
 
 input, button {
   font-family: 'Open Sans';
+  outline: none;
+}
+
+input:required {
+  box-shadow: none;
 }
 
 .btn {

+ 2 - 0
src/js/components/Chessboard.js

@@ -210,6 +210,8 @@ const Column = React.createClass({
   },
   _onDragStart(e) {
     e.dataTransfer.effectAllowed = 'move';
+    // setData is required by firefox
+    e.dataTransfer.setData('text/plain', '');
     this.props.setMoveFrom(this.props.square);
   },
   _onDragOver(e) {

Some files were not shown because too many files changed in this diff