diff options
author | nicosomb <nicolas@loeuillet.org> | 2013-04-12 13:13:21 +0200 |
---|---|---|
committer | nicosomb <nicolas@loeuillet.org> | 2013-04-12 13:13:21 +0200 |
commit | c8bbe19b3fd2ba268c98561690de37fe599ff055 (patch) | |
tree | cb6d9c7c6c1bc973f3569b85a6694cb4d5059d10 /css/style.css | |
parent | 67e7910439d364f1f7a4dac1d233a7c1055fb933 (diff) | |
download | wallabag-c8bbe19b3fd2ba268c98561690de37fe599ff055.tar.gz wallabag-c8bbe19b3fd2ba268c98561690de37fe599ff055.tar.zst wallabag-c8bbe19b3fd2ba268c98561690de37fe599ff055.zip |
possibilité de mettre en fav ou en archive un article depuis la page article
Diffstat (limited to 'css/style.css')
-rw-r--r-- | css/style.css | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css index d53060ec..959a411a 100644 --- a/css/style.css +++ b/css/style.css | |||
@@ -100,7 +100,15 @@ footer { | |||
100 | margin-left: -20px; | 100 | margin-left: -20px; |
101 | } | 101 | } |
102 | 102 | ||
103 | #main .entrie .tools a.tool span { | 103 | #article .tools { |
104 | display: inline; | ||
105 | } | ||
106 | |||
107 | #article .tools a.tool { | ||
108 | cursor: pointer; | ||
109 | } | ||
110 | |||
111 | #main .entrie .tools a.tool span, #article .tools a.tool span { | ||
104 | display: inline-block; | 112 | display: inline-block; |
105 | width: 16px; | 113 | width: 16px; |
106 | height: 16px; | 114 | height: 16px; |
@@ -110,18 +118,34 @@ a.fav span { | |||
110 | background: url('../img/fav-on.png') no-repeat; | 118 | background: url('../img/fav-on.png') no-repeat; |
111 | } | 119 | } |
112 | 120 | ||
121 | a.fav span:hover { | ||
122 | background: url('../img/fav-off.png') no-repeat; | ||
123 | } | ||
124 | |||
113 | a.fav-off span { | 125 | a.fav-off span { |
114 | background: url('../img/fav-off.png') no-repeat; | 126 | background: url('../img/fav-off.png') no-repeat; |
115 | } | 127 | } |
116 | 128 | ||
129 | a.fav-off span:hover { | ||
130 | background: url('../img/fav-on.png') no-repeat; | ||
131 | } | ||
132 | |||
117 | a.archive span { | 133 | a.archive span { |
118 | background: url('../img/archive-on.png') no-repeat; | 134 | background: url('../img/archive-on.png') no-repeat; |
119 | } | 135 | } |
120 | 136 | ||
137 | a.archive span:hover { | ||
138 | background: url('../img/archive-off.png') no-repeat; | ||
139 | } | ||
140 | |||
121 | a.archive-off span { | 141 | a.archive-off span { |
122 | background: url('../img/archive-off.png') no-repeat; | 142 | background: url('../img/archive-off.png') no-repeat; |
123 | } | 143 | } |
124 | 144 | ||
145 | a.archive-off span:hover { | ||
146 | background: url('../img/archive-on.png') no-repeat; | ||
147 | } | ||
148 | |||
125 | a.delete span { | 149 | a.delete span { |
126 | background: url('../img/delete.png') no-repeat; | 150 | background: url('../img/delete.png') no-repeat; |
127 | } | 151 | } |
@@ -153,6 +177,10 @@ body.article { | |||
153 | text-decoration: none; | 177 | text-decoration: none; |
154 | } | 178 | } |
155 | 179 | ||
180 | .backhome { | ||
181 | display: inline; | ||
182 | } | ||
183 | |||
156 | /*** ***/ | 184 | /*** ***/ |
157 | #main | 185 | #main |
158 | { | 186 | { |