minor tweaking and fixups...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-05-08 19:03:04 +03:00
parent 2acbdb70f0
commit 87bc647936
5 changed files with 6 additions and 4 deletions

View File

@ -305,6 +305,8 @@ button:hover {
size: 30px; size: 30px;
cursor: default; cursor: default;
//z-index: 9999;
} }
.fullscreen-controls:hover { .fullscreen-controls:hover {
opacity: 1; opacity: 1;

View File

@ -16,7 +16,7 @@
transform-style: preserve-3d; transform-style: preserve-3d;
/* XXX try to avoid this... */ /* XXX try to avoid this... */
z-index: 9999; z-index: 5000;
} }
.overlay-widget~.overlay-widget { .overlay-widget~.overlay-widget {
background: rgba(0, 0, 0, 0.3); background: rgba(0, 0, 0, 0.3);

View File

@ -103,7 +103,7 @@ var AppControlActions = actions.Actions({
win.show() win.show()
// XXX check if we are full screen... // XXX check if we are full screen...
if(cfg != null && cfg.fullscreen && !win.isFullscreen){ if(cfg != null && cfg.fullscreen){
that.toggleFullScreen('on') that.toggleFullScreen('on')
} }
}, this.config['window-delay-initial-display'] || 0) }, this.config['window-delay-initial-display'] || 0)

View File

@ -394,7 +394,7 @@ var KeyboardActions = actions.Actions({
// - remove the path component... // - remove the path component...
// - insert the action name where not doc present... // - insert the action name where not doc present...
// XXX cleanup CSS // XXX cleanup CSS
showKeyboardBindings: ['Interface/Show keyboard bindings', showKeyboardBindings: ['Interface/Show keyboard bindings...',
widgets.makeUIDialog('Drawer', widgets.makeUIDialog('Drawer',
function(){ function(){
return keyboard.buildKeybindingsHelpHTML(this.__keyboard_config, this) return keyboard.buildKeybindingsHelpHTML(this.__keyboard_config, this)

View File

@ -327,7 +327,7 @@ var MetadataUIActions = actions.Actions({
// //
// XXX should we replace 'mode' with nested set of metadata??? // XXX should we replace 'mode' with nested set of metadata???
// XXX make this support multiple images... // XXX make this support multiple images...
showMetadata: ['Image/Show metadata', showMetadata: ['Image/Show metadata...',
widgets.makeUIDialog(function(image, mode){ widgets.makeUIDialog(function(image, mode){
//function(image, mode){ //function(image, mode){
var that = this var that = this