Ignore:
Timestamp:
Sep 21, 2012, 6:36:42 PM (12 years ago)
Author:
mistic100
Message:

new option to display thumbnails caption at mouseover

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/GThumb/template/gthumb.css

    r12731 r18124  
    1313#thumbnails .gthumb a {
    1414  position: absolute;
     15  z-index:0;
    1516}
    1617
    17 #thumbnails .gthumb img.thumbnail,
    18 #thumbnails .gthumb img.thumbnail:hover {
     18#thumbnails .gthumb a img.thumbnail,
     19#thumbnails .gthumb a img.thumbnail:hover {
    1920  border: 0 none;
    2021  margin: 0;
     
    2223  top: 0;
    2324}
     25
     26#thumbnails .thumbLegend {
     27  display:none;
     28  position:absolute;
     29  z-index:100;
     30  top:50%;
     31  margin-top:-20px;
     32  height:30px;
     33  padding:5px 0;
     34  width:100%;
     35  background:rgba(0,0,0,0.7);
     36  text-align:center;
     37  vertical-align:middle;
     38  overflow:hidden;
     39  box-shadow:0 0 3px rgb(0,0,0);
     40  color:aaa;
     41}
     42  #thumbnails .gthumb:hover .thumbLegend {
     43    display:block;
     44  }
     45#thumbnails .thumbLegend .thumbName {
     46  display:block;
     47  vertical-align:middle;
     48  font-weight:bold;
     49  color:#eee;
     50}
Note: See TracChangeset for help on using the changeset viewer.