mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-14 10:53:01 +08:00
fixes tile size in edit canvas
This commit is contained in:
parent
ed1cd193ac
commit
ac68db97b9
2 changed files with 4 additions and 3 deletions
|
@ -78,8 +78,8 @@ var GRID_DIST_SMALL_Y = 100;
|
||||||
UPDATE my_modules SET x=x*32, y=y*16
|
UPDATE my_modules SET x=x*32, y=y*16
|
||||||
themodel.connection.execute("UPDATE my_modules SET x=x*32, y=y*16")
|
themodel.connection.execute("UPDATE my_modules SET x=x*32, y=y*16")
|
||||||
*/
|
*/
|
||||||
var GRID_DIST_FULL_X = 12;
|
var GRID_DIST_FULL_X = 10;
|
||||||
var GRID_DIST_FULL_Y = 12;
|
var GRID_DIST_FULL_Y = 10;
|
||||||
var GRID_DIST_MEDIUM_X = 8;
|
var GRID_DIST_MEDIUM_X = 8;
|
||||||
var GRID_DIST_MEDIUM_Y = 8;
|
var GRID_DIST_MEDIUM_Y = 8;
|
||||||
var GRID_DIST_SMALL_X = 5;
|
var GRID_DIST_SMALL_X = 5;
|
||||||
|
|
|
@ -159,7 +159,8 @@ path, ._jsPlumb_endpoint {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.module {
|
.module {
|
||||||
width: 250px;
|
width: 290px;
|
||||||
|
height: 130px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
Loading…
Reference in a new issue