diff --git a/ui/experiments/positioning-in-rotated-element.html b/ui/experiments/positioning-in-rotated-element.html new file mode 100755 index 00000000..87d56200 --- /dev/null +++ b/ui/experiments/positioning-in-rotated-element.html @@ -0,0 +1,260 @@ + + + + +

+ The goal here is to develop a simple CSS mechanism to rotate an + element yet keep it's content aligned correctly... +
+ This solution is not wothout restriction but the apporeach works. +

+

+ +
0°: +
+
+
+
+
+
+
+
+ +
90°: +
+
+
+
+
+
+
+
+ +
180°: +
+
+
+
+
+
+
+
+ +
270°: +
+
+
+
+
+
+
+
+ +
Flipped horizontally: +
+
+
+
+
+
+
+
+ +
Flipped vertically: +
+
+
+
+
+
+
+
+ + + + + diff --git a/ui/keybindings.js b/ui/keybindings.js index af0c7f9c..96f32458 100755 --- a/ui/keybindings.js +++ b/ui/keybindings.js @@ -76,6 +76,14 @@ var KEYBOARD_CONFIG = { P: { 'ctrl+shift': 'F12', }, + + // NOTE: this is handled by the wrapper at this point, so we do + // not have to do anything here... + F11: doc('Toggle full screen view', function(){ toggleFullscreenMode() }), + F: { + ctrl: 'F11', + }, + }, // info overlay... @@ -710,11 +718,6 @@ var KEYBOARD_CONFIG = { }), }, - // NOTE: this is handled by the wrapper at this point, so we do - // not have to do anything here... - F11: doc('Toggle full screen view', function(){ toggleFullscreenMode() }), - F: 'F11', - // Help and info... '?': doc('Show keyboard bindings', function(){ toggleKeyboardHelp() }),