aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--inc/poche/Poche.class.php2
-rw-r--r--tpl/_menu.twig1
-rw-r--r--tpl/css/style.css22
3 files changed, 12 insertions, 13 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php
index a7479ad8..4fe938fb 100644
--- a/inc/poche/Poche.class.php
+++ b/inc/poche/Poche.class.php
@@ -561,6 +561,6 @@ class Poche
561 561
562 function convertURLToBase64($plainurl){ 562 function convertURLToBase64($plainurl){
563 $convertedURL = base64_encode($plainurl); 563 $convertedURL = base64_encode($plainurl);
564 $this->action('add', new Url($convertedURL)) 564 $this->action('add', new Url($convertedURL));
565 } 565 }
566} \ No newline at end of file 566} \ No newline at end of file
diff --git a/tpl/_menu.twig b/tpl/_menu.twig
index 8341c49c..b39ce35f 100644
--- a/tpl/_menu.twig
+++ b/tpl/_menu.twig
@@ -3,7 +3,6 @@
3 <li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li> 3 <li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li>
4 <li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li> 4 <li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li>
5 <li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li> 5 <li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li>
6 <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li>
7 <li><a id="addurlbutton" onclick="showinput();" href="#" title="{% trans "addlink" %}">{% trans "addlink" %}</a></li> 6 <li><a id="addurlbutton" onclick="showinput();" href="#" title="{% trans "addlink" %}">{% trans "addlink" %}</a></li>
8 <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li> 7 <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li>
9 </ul> 8 </ul>
diff --git a/tpl/css/style.css b/tpl/css/style.css
index 808e4b69..7d2c143f 100644
--- a/tpl/css/style.css
+++ b/tpl/css/style.css
@@ -259,14 +259,14 @@ footer {
259} 259}
260 260
261#inputform{ 261#inputform{
262+ display: none; 262 display: none;
263+ text-align:center; 263 text-align:center;
264+ max-width:300px; 264 max-width:300px;
265+ margin-left:auto; 265 margin-left:auto;
266+ margin-right:auto; 266 margin-right:auto;
267+ margin-top:5px; 267 margin-top:5px;
268+ background-color: rgba(0, 0, 0, 0.9); 268 background-color: rgba(0, 0, 0, 0.9);
269+ opacity:0.8; 269 opacity:0.8;
270+ color:white; 270 color:white;
271+ border-radius: 3px; 271 border-radius: 3px;
272+} \ No newline at end of file 272} \ No newline at end of file