mirror of
https://github.com/NohamR/Pocket-Bird.git
synced 2026-05-25 19:59:38 +00:00
Fix sticky note resizing
This commit is contained in:
2
birb.js
2
birb.js
@@ -835,7 +835,7 @@ Promise.all([loadSpriteSheetPixels(SPRITE_SHEET), loadSpriteSheetPixels(DECORATI
|
|||||||
clearTimeout(saveTimeout);
|
clearTimeout(saveTimeout);
|
||||||
saveTimeout = setTimeout(() => {
|
saveTimeout = setTimeout(() => {
|
||||||
save();
|
save();
|
||||||
}, 500);
|
}, 250);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
2
build.js
2
build.js
@@ -24,7 +24,7 @@ const userScriptHeader =
|
|||||||
`// ==UserScript==
|
`// ==UserScript==
|
||||||
// @name Browser Bird
|
// @name Browser Bird
|
||||||
// @namespace https://idreesinc.com
|
// @namespace https://idreesinc.com
|
||||||
// @version 2025-08-16-2
|
// @version 2025-08-16-3
|
||||||
// @description birb
|
// @description birb
|
||||||
// @author Idrees
|
// @author Idrees
|
||||||
// @downloadURL https://github.com/IdreesInc/Browser-Bird/raw/refs/heads/main/dist/birb.user.js
|
// @downloadURL https://github.com/IdreesInc/Browser-Bird/raw/refs/heads/main/dist/birb.user.js
|
||||||
|
|||||||
6
dist/birb.js
vendored
6
dist/birb.js
vendored
@@ -348,8 +348,8 @@ const STYLESHEET = `@font-face {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.birb-sticky-note-input {
|
.birb-sticky-note-input {
|
||||||
width: 100% !important;
|
width: 100%;
|
||||||
height: 100% !important;
|
height: 100%;
|
||||||
padding: 10px !important;
|
padding: 10px !important;
|
||||||
resize: both !important;
|
resize: both !important;
|
||||||
min-width: 100% !important;
|
min-width: 100% !important;
|
||||||
@@ -1153,7 +1153,7 @@ Promise.all([loadSpriteSheetPixels(SPRITE_SHEET), loadSpriteSheetPixels(DECORATI
|
|||||||
clearTimeout(saveTimeout);
|
clearTimeout(saveTimeout);
|
||||||
saveTimeout = setTimeout(() => {
|
saveTimeout = setTimeout(() => {
|
||||||
save();
|
save();
|
||||||
}, 500);
|
}, 250);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
8
dist/birb.user.js
vendored
8
dist/birb.user.js
vendored
@@ -1,7 +1,7 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Browser Bird
|
// @name Browser Bird
|
||||||
// @namespace https://idreesinc.com
|
// @namespace https://idreesinc.com
|
||||||
// @version 2025-08-16-2
|
// @version 2025-08-16-3
|
||||||
// @description birb
|
// @description birb
|
||||||
// @author Idrees
|
// @author Idrees
|
||||||
// @downloadURL https://github.com/IdreesInc/Browser-Bird/raw/refs/heads/main/dist/birb.user.js
|
// @downloadURL https://github.com/IdreesInc/Browser-Bird/raw/refs/heads/main/dist/birb.user.js
|
||||||
@@ -362,8 +362,8 @@ const STYLESHEET = `@font-face {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.birb-sticky-note-input {
|
.birb-sticky-note-input {
|
||||||
width: 100% !important;
|
width: 100%;
|
||||||
height: 100% !important;
|
height: 100%;
|
||||||
padding: 10px !important;
|
padding: 10px !important;
|
||||||
resize: both !important;
|
resize: both !important;
|
||||||
min-width: 100% !important;
|
min-width: 100% !important;
|
||||||
@@ -1167,7 +1167,7 @@ Promise.all([loadSpriteSheetPixels(SPRITE_SHEET), loadSpriteSheetPixels(DECORATI
|
|||||||
clearTimeout(saveTimeout);
|
clearTimeout(saveTimeout);
|
||||||
saveTimeout = setTimeout(() => {
|
saveTimeout = setTimeout(() => {
|
||||||
save();
|
save();
|
||||||
}, 500);
|
}, 250);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -300,8 +300,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.birb-sticky-note-input {
|
.birb-sticky-note-input {
|
||||||
width: 100% !important;
|
width: 100%;
|
||||||
height: 100% !important;
|
height: 100%;
|
||||||
padding: 10px !important;
|
padding: 10px !important;
|
||||||
resize: both !important;
|
resize: both !important;
|
||||||
min-width: 100% !important;
|
min-width: 100% !important;
|
||||||
|
|||||||
Reference in New Issue
Block a user