mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-11-02 04:10:11 +00:00
tweaked the tooltip style + some minor stuff...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
8c340780f0
commit
64e72350ba
@ -23,6 +23,7 @@
|
||||
text-decoration: none;
|
||||
}
|
||||
[tooltip]:after {
|
||||
display: none;
|
||||
content: attr(tooltip);
|
||||
position: absolute;
|
||||
bottom: 130%;
|
||||
@ -40,6 +41,7 @@
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
[tooltip]:before {
|
||||
display: none;
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 0;
|
||||
@ -55,9 +57,11 @@
|
||||
bottom: 90%;
|
||||
}
|
||||
[tooltip]:hover:after {
|
||||
display: block;
|
||||
bottom: 100%;
|
||||
}
|
||||
[tooltip]:hover:before {
|
||||
display: block;
|
||||
bottom: 70%;
|
||||
}
|
||||
[tooltip]:hover:after,
|
||||
@ -70,12 +74,12 @@
|
||||
left: 15px;
|
||||
}
|
||||
.tooltip-right[tooltip]:before {
|
||||
border-left: none;
|
||||
border-left: 5px solid transparent;
|
||||
border-right: 5px solid #ffcb66;
|
||||
border-bottom: 5px solid transparent;
|
||||
border-top: 5px solid transparent;
|
||||
bottom: auto;
|
||||
left: 10px;
|
||||
left: 5px;
|
||||
top: 25%;
|
||||
}
|
||||
.tooltip-right[tooltip]:hover:after {
|
||||
|
||||
@ -81,6 +81,7 @@
|
||||
text-decoration: none;
|
||||
}
|
||||
[tooltip]:after {
|
||||
display: none;
|
||||
content: attr(tooltip);
|
||||
position: absolute;
|
||||
bottom: 130%;
|
||||
@ -98,6 +99,7 @@
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
[tooltip]:before {
|
||||
display: none;
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 0;
|
||||
@ -113,9 +115,11 @@
|
||||
bottom: 90%;
|
||||
}
|
||||
[tooltip]:hover:after {
|
||||
display: block;
|
||||
bottom: 100%;
|
||||
}
|
||||
[tooltip]:hover:before {
|
||||
display: block;
|
||||
bottom: 70%;
|
||||
}
|
||||
[tooltip]:hover:after,
|
||||
@ -131,12 +135,12 @@
|
||||
left: 15px;
|
||||
}
|
||||
.tooltip-right[tooltip]:before {
|
||||
border-left: none;
|
||||
border-left: 5px solid transparent;
|
||||
border-right: 5px solid #ffcb66;
|
||||
border-bottom: 5px solid transparent;
|
||||
border-top: 5px solid transparent;
|
||||
bottom: auto;
|
||||
left: 10px;
|
||||
left: 5px;
|
||||
top: 25%;
|
||||
}
|
||||
.tooltip-right[tooltip]:hover:after {
|
||||
|
||||
7
ui/ui.js
7
ui/ui.js
@ -836,7 +836,12 @@ function exportPreviewsDialog(state, dfl){
|
||||
cfg['Fav directory name'] = 'fav'
|
||||
cfg['Size | '+
|
||||
'The selected size is aproximate, the actual\n'+
|
||||
'preview will be copied from cache.'] = {
|
||||
'preview will be copied from cache.\n\n'+
|
||||
'NOTE: if not all previews are yet generated,\n'+
|
||||
'this will save the available previews, not all\n'+
|
||||
'of which may be of the right size, if this\n'+
|
||||
'happens wait till all the previews are done\n'+
|
||||
'and export again.'] = {
|
||||
select: ['Original image'].concat(PREVIEW_SIZES.slice().sort()),
|
||||
default: 1
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user