mirror of
https://github.com/flynx/PortableMag.git
synced 2025-10-29 11:10:08 +00:00
removed changing shadows from comment pages...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
98d3a83f47
commit
63b97d42a6
@ -85,6 +85,10 @@ var KEYBOARD_HANDLER_PROPAGATE = true
|
|||||||
* - key char (uppercase), as is returned by String.fromCharCode(...)
|
* - key char (uppercase), as is returned by String.fromCharCode(...)
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
* NOTE: if a handler explicitly returns false then that will break the
|
||||||
|
* event propagation chain and exit the handler.
|
||||||
|
* i.e. no other matching handlers will be called.
|
||||||
|
*
|
||||||
* XXX might need to add meta information to generate sensible help...
|
* XXX might need to add meta information to generate sensible help...
|
||||||
*/
|
*/
|
||||||
function makeKeyboardHandler(keybindings, unhandled){
|
function makeKeyboardHandler(keybindings, unhandled){
|
||||||
|
|||||||
22
magazine.css
22
magazine.css
@ -694,6 +694,18 @@ div.page-number-text {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* set a fixed shadow...
|
||||||
|
* NOTE: use .noshadow to disable shadows.
|
||||||
|
*/
|
||||||
|
.page.caption-top-arrow,
|
||||||
|
.page.caption-bottom-arrow {
|
||||||
|
box-shadow: 35px 0px 100px 0px #000;
|
||||||
|
}
|
||||||
|
.page.caption-top-arrow:before,
|
||||||
|
.page.caption-bottom-arrow:before {
|
||||||
|
box-shadow: 20px -20px 30px 10px #000;
|
||||||
|
}
|
||||||
|
/* XXX changing shdows makes things a bit gittery on devices...
|
||||||
.current.page.caption-top-arrow,
|
.current.page.caption-top-arrow,
|
||||||
.current.page.caption-bottom-arrow {
|
.current.page.caption-bottom-arrow {
|
||||||
box-shadow: 30px 0px 100px 0px #000;
|
box-shadow: 30px 0px 100px 0px #000;
|
||||||
@ -702,7 +714,17 @@ div.page-number-text {
|
|||||||
.current.page.caption-bottom-arrow:before {
|
.current.page.caption-bottom-arrow:before {
|
||||||
box-shadow: 20px -20px 30px 10px #000;
|
box-shadow: 20px -20px 30px 10px #000;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* addind noshadow will disable shadows compleatly */
|
||||||
|
.page.caption-top-arrow.noshadow,
|
||||||
|
.page.caption-bottom-arrow.noshadow {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.page.caption-top-arrow.noshadow:before,
|
||||||
|
.page.caption-bottom-arrow.noshadow:before {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user