summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-06-12 21:58:39 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-06-12 21:58:39 +0200
commit497853022ab29be3f87a691e2bfd5ba3559709b0 (patch)
tree492470d870e9aae706e926afb5dbe759d54c9a82 /app
parent1dab7402bc47a7992b7f868d587fcb14c579692b (diff)
Fix some theme and UI problems
- More stick buttons! - Fix line-height of titles + fix load more on mobile (Origine) - Fix content width and filter buttons (Dark and Flat)
Diffstat (limited to 'app')
-rw-r--r--app/views/configure/users.phtml6
-rw-r--r--app/views/feed/add.phtml12
2 files changed, 10 insertions, 8 deletions
diff --git a/app/views/configure/users.phtml b/app/views/configure/users.phtml
index c199ad53d..87aac6198 100644
--- a/app/views/configure/users.phtml
+++ b/app/views/configure/users.phtml
@@ -32,8 +32,10 @@
<div class="form-group">
<label class="group-name" for="apiPasswordPlain"><?php echo Minz_Translate::t('password_api'); ?></label>
<div class="group-controls">
- <input type="password" id="apiPasswordPlain" name="apiPasswordPlain" autocomplete="off" pattern=".{7,}" <?php echo cryptAvailable() ? '' : 'disabled="disabled" '; ?>/>
- <a class="btn toggle-password"/><?php echo FreshRSS_Themes::icon('key'); ?></a>
+ <div class="stick">
+ <input type="password" id="apiPasswordPlain" name="apiPasswordPlain" autocomplete="off" pattern=".{7,}" <?php echo cryptAvailable() ? '' : 'disabled="disabled" '; ?>/>
+ <a class="btn toggle-password"/><?php echo FreshRSS_Themes::icon('key'); ?></a>
+ </div>
</div>
</div>
<?php } ?>
diff --git a/app/views/feed/add.phtml b/app/views/feed/add.phtml
index 56ac5f8dd..849dacac6 100644
--- a/app/views/feed/add.phtml
+++ b/app/views/feed/add.phtml
@@ -28,10 +28,8 @@
<div class="form-group">
<label class="group-name"><?php echo Minz_Translate::t('website_url'); ?></label>
<div class="group-controls">
- <label>
<?php echo $this->feed->website(); ?>
- <a target="_blank" href="<?php echo $this->feed->website(); ?>"><?php echo FreshRSS_Themes::icon('link'); ?></a>
- </label>
+ <a class="btn" target="_blank" href="<?php echo $this->feed->website(); ?>"><?php echo FreshRSS_Themes::icon('link'); ?></a>
</div>
</div>
<?php } ?>
@@ -39,9 +37,11 @@
<div class="form-group">
<label class="group-name" for="url"><?php echo Minz_Translate::t('feed_url'); ?></label>
<div class="group-controls">
- <input type="text" name="url_rss" id="url" class="extend" value="<?php echo $this->feed->url(); ?>" />
- <a target="_blank" href="<?php echo $this->feed->url(); ?>"><?php echo FreshRSS_Themes::icon('link'); ?></a>
-   <a class="btn" target="_blank" href="http://validator.w3.org/feed/check.cgi?url=<?php echo $this->feed->url(); ?>"><?php echo Minz_Translate::t('feed_validator'); ?></a>
+ <div class="stick">
+ <input type="text" name="url_rss" id="url" class="extend" value="<?php echo $this->feed->url(); ?>" />
+ <a class="btn" target="_blank" href="<?php echo $this->feed->url(); ?>"><?php echo FreshRSS_Themes::icon('link'); ?></a>
+ </div>
+ <a class="btn" target="_blank" href="http://validator.w3.org/feed/check.cgi?url=<?php echo $this->feed->url(); ?>"><?php echo Minz_Translate::t('feed_validator'); ?></a>
</div>
</div>
<div class="form-group">