diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2013-01-22 23:37:27 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2013-01-22 23:37:27 +0100 |
commit | f610d888cc1738ed94cc6286db65b6b40e8e1c4e (patch) | |
tree | 9a4d895e74507099443e4a5d3799fe69b63c3272 /src/data/home.html | |
parent | Set non null border in the rekonq pages (diff) | |
download | rekonq-f610d888cc1738ed94cc6286db65b6b40e8e1c4e.tar.xz |
History page, added ability to remove items from
Diffstat (limited to 'src/data/home.html')
-rw-r--r-- | src/data/home.html | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/src/data/home.html b/src/data/home.html index e8bcd768..8bcbdf26 100644 --- a/src/data/home.html +++ b/src/data/home.html @@ -191,7 +191,7 @@ input { } .button img { - display: inline-block; + display: inline; width: 16px; height: 16px; opacity: 0; @@ -277,11 +277,38 @@ input { padding: 5px 10px; } + +.greytext { + color: gray; + display: inline; +} + .historyfolder { margin-left: 4em; margin-bottom: 1em; } +.historyitem { + display: inline; +} + +.historyitem .button img:hover { + opacity: 1; +} + +.historyitem:hover .preview { + opacity: 0.6; +} + +.historyitem:hover .button img { + opacity: 0.4; + -webkit-transition: opacity 0.8s ease-out; +} + +.historyitem .button img:hover { + opacity: 1; +} + /* -------------------------------------------------------- */ /* Empty pages : in the end : need to overwrite */ @@ -319,6 +346,8 @@ elements creation, cloning one of these. <span></span> </a> </div> + +<!-- The thumbnail class, used in the favorites page --> <div class="thumbnail"> <div class ="thumb-inner"> <a> @@ -333,6 +362,16 @@ elements creation, cloning one of these. </div> </div> </div> + +<!-- An history item --> + <div class="historyitem"> + <div class="greytext"></div> + <img /> + <a></a> + <a class="button"><img /></a> + </div> + +<!-- some spare elements --> <h3></h3> <h4></h4> <a></a> |