tweaked the tooltip style + some minor stuff...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-07-08 07:18:43 +04:00
parent 8c340780f0
commit 64e72350ba
3 changed files with 18 additions and 5 deletions

View File

@ -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 {

View File

@ -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 {

View File

@ -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
}