diff options
author | Seb Sauvage <sebsauvage@sebsauvage.net> | 2011-10-18 09:51:02 +0200 |
---|---|---|
committer | Emilien Klein <emilien@klein.st> | 2011-10-18 09:51:02 +0200 |
commit | 2732de7c9ef82cee6b8eb8116e376c4be06425c3 (patch) | |
tree | dfcd29611ebe48c74b91d57b6f13183af7646ca7 /shaarli.css | |
parent | 03cd3750fd26d2667ccdadb55fd4807be34e1d1c (diff) | |
download | Shaarli-2732de7c9ef82cee6b8eb8116e376c4be06425c3.tar.gz Shaarli-2732de7c9ef82cee6b8eb8116e376c4be06425c3.tar.zst Shaarli-2732de7c9ef82cee6b8eb8116e376c4be06425c3.zip |
Version 0.0.27 beta:
- Added: Picture wall (which can be filtered too: It will use the same filters (tags,text search) as current page when clicked.)
Diffstat (limited to 'shaarli.css')
-rw-r--r-- | shaarli.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/shaarli.css b/shaarli.css index 320c7a43..e511e0eb 100644 --- a/shaarli.css +++ b/shaarli.css | |||
@@ -68,7 +68,7 @@ border-bottom:1px solid #aaa; border-right:1px solid #aaa; border-radius: 0.3em; | |||
68 | .linkshort a { text-decoration: none; color:#393964; } | 68 | .linkshort a { text-decoration: none; color:#393964; } |
69 | .linkshort a:hover { text-decoration: underline; } | 69 | .linkshort a:hover { text-decoration: underline; } |
70 | .buttoneditform { display:inline; } | 70 | .buttoneditform { display:inline; } |
71 | #footer { font-size:8pt; text-align:center; border-top:1px solid #ddd; color: #888; } | 71 | #footer { font-size:8pt; text-align:center; border-top:1px solid #ddd; color: #888; clear:both; } |
72 | #newversion { background-color: #FFFFA0; color:#000; position:absolute; top:0;right:0; padding:2 7 2 7; font-size:9pt;} | 72 | #newversion { background-color: #FFFFA0; color:#000; position:absolute; top:0;right:0; padding:2 7 2 7; font-size:9pt;} |
73 | #cloudtag { padding-left:10%; padding-right:10%; } | 73 | #cloudtag { padding-left:10%; padding-right:10%; } |
74 | #cloudtag a { color:black; text-decoration:none; } | 74 | #cloudtag a { color:black; text-decoration:none; } |
@@ -80,6 +80,28 @@ border-bottom:1px solid #aaa; border-right:1px solid #aaa; border-radius: 0.3em; | |||
80 | .linkcontainer { position: static; margin-left:130px; } | 80 | .linkcontainer { position: static; margin-left:130px; } |
81 | */ | 81 | */ |
82 | 82 | ||
83 | /* --- Picture wall CSS --- */ | ||
84 | #picwall_container { color:#fff; background-color:#000; } | ||
85 | .picwall_pictureframe { z-index:5; position:relative; display:table-cell; vertical-align:middle;width:90px; height:90px; overflow:hidden; text-align:center; float:left; } | ||
86 | .picwall_pictureframe img { max-width: 100%;height: auto; } /* Adapt the width of the image */ | ||
87 | .picwall_pictureframe a {text-decoration:none;} | ||
88 | |||
89 | /* CSS to show title when hovering an image - no javascript required. */ | ||
90 | .picwall_pictureframe span.info {display: none;} | ||
91 | .picwall_pictureframe:hover span.info { | ||
92 | display:block; | ||
93 | position:absolute; | ||
94 | top:0; left:0; width:90px; | ||
95 | font-weight:bold; | ||
96 | font-size:8pt; | ||
97 | color:#fff; | ||
98 | text-align: left; | ||
99 | background-color: transparent; | ||
100 | background-color: rgba(0, 0, 0, 0.4); /* FF3+, Saf3+, Opera 10.10+, Chrome, IE9 */ | ||
101 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000,endColorstr=#66000000); /* IE6–IE9 */ | ||
102 | text-shadow:2px 2px 1px #000000; | ||
103 | } | ||
104 | |||
83 | /* Minimal customisation for jQuery widgets */ | 105 | /* Minimal customisation for jQuery widgets */ |
84 | .ui-autocomplete { background-color:#fff; padding-left:5px;} | 106 | .ui-autocomplete { background-color:#fff; padding-left:5px;} |
85 | .ui-state-hover { background-color: #604dff; color:#fff; } | 107 | .ui-state-hover { background-color: #604dff; color:#fff; } |