diff options
author | Thomas Citharel <thomas.citharet@gmail.com> | 2013-09-08 21:07:59 +0200 |
---|---|---|
committer | Thomas Citharel <thomas.citharet@gmail.com> | 2013-09-08 21:07:59 +0200 |
commit | 693b3f86776ae236d69ac6ed085b5e46b9054642 (patch) | |
tree | 52beeeaccc06b8d9ae52ca99b507f2e29eb47fe8 /tpl/css/style.css | |
parent | 3eb049036e601c1978cf5f7f0d5be8c577933b72 (diff) | |
download | wallabag-693b3f86776ae236d69ac6ed085b5e46b9054642.tar.gz wallabag-693b3f86776ae236d69ac6ed085b5e46b9054642.tar.zst wallabag-693b3f86776ae236d69ac6ed085b5e46b9054642.zip |
Implemented Add Button
Added a button to add an URL when directly into Poche. If JS isn't
enabled, nothing happens.
Diffstat (limited to 'tpl/css/style.css')
-rw-r--r-- | tpl/css/style.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tpl/css/style.css b/tpl/css/style.css index 7633534c..808e4b69 100644 --- a/tpl/css/style.css +++ b/tpl/css/style.css | |||
@@ -257,3 +257,16 @@ footer { | |||
257 | .reading-time { | 257 | .reading-time { |
258 | font-size: 0.8em; | 258 | font-size: 0.8em; |
259 | } | 259 | } |
260 | |||
261 | #inputform{ | ||
262 | + display: none; | ||
263 | + text-align:center; | ||
264 | + max-width:300px; | ||
265 | + margin-left:auto; | ||
266 | + margin-right:auto; | ||
267 | + margin-top:5px; | ||
268 | + background-color: rgba(0, 0, 0, 0.9); | ||
269 | + opacity:0.8; | ||
270 | + color:white; | ||
271 | + border-radius: 3px; | ||
272 | +} \ No newline at end of file | ||