mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-29 10:20:08 +00:00
some more tweaking...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
64e72350ba
commit
889ca1e24b
@ -92,8 +92,8 @@ Roadmap
|
||||
|
||||
|
||||
|
||||
[_] 29% Gen 3 current todo
|
||||
[_] 59% High priority
|
||||
[_] 28% Gen 3 current todo
|
||||
[_] 57% High priority
|
||||
[_] 0% Priority tasks
|
||||
[_] full archive index
|
||||
[_] segmented loading of images and data
|
||||
@ -114,6 +114,10 @@ Roadmap
|
||||
[X] pass 2: generate normal previews
|
||||
[_] extract existing raw thumbnails/previews (for RAW files)
|
||||
[_] add option to export either original or preview (exportDialog)
|
||||
[_] add min-height to tooltips
|
||||
| one line tooltip-right get messed-up...
|
||||
[X] make tooltip balloons on top of everything else...
|
||||
| currently a tooltip balloon is bellow the next tooltip...
|
||||
[_] BUG: shifting last image out of a ribbon misaligns the current ribbon
|
||||
| i.e. the prev ribbon was deleted and the new focused ribbon
|
||||
| is aligned as if it was not current...
|
||||
|
||||
@ -68,7 +68,14 @@
|
||||
[tooltip]:hover:before {
|
||||
opacity: 1;
|
||||
}
|
||||
/* make this above everything else...
|
||||
* XXX not sure if this is the best way...
|
||||
*/
|
||||
[tooltip]:hover {
|
||||
z-index: 1000;
|
||||
}
|
||||
.tooltip-right[tooltip]:after {
|
||||
min-height: 30px;
|
||||
bottom: auto;
|
||||
top: -50%;
|
||||
left: 15px;
|
||||
|
||||
@ -126,10 +126,17 @@
|
||||
[tooltip]:hover:before {
|
||||
opacity: 1;
|
||||
}
|
||||
/* make this above everything else...
|
||||
* XXX not sure if this is the best way...
|
||||
*/
|
||||
[tooltip]:hover {
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.tooltip-right[tooltip] {
|
||||
}
|
||||
.tooltip-right[tooltip]:after {
|
||||
min-height: 30px;
|
||||
bottom: auto;
|
||||
top: -50%;
|
||||
left: 15px;
|
||||
|
||||
5
ui/ui.js
5
ui/ui.js
@ -845,7 +845,10 @@ function exportPreviewsDialog(state, dfl){
|
||||
select: ['Original image'].concat(PREVIEW_SIZES.slice().sort()),
|
||||
default: 1
|
||||
}
|
||||
cfg['Destination'] = {ndir: dfl}
|
||||
cfg['Destination | '+
|
||||
'Relative paths are supported.\n\n'+
|
||||
'NOTE: All paths are relative to the curent\n'+
|
||||
'directory.'] = {ndir: dfl}
|
||||
|
||||
var keys = Object.keys(cfg)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user