diff options
| author | 2013-03-15 17:37:47 +0100 | |
|---|---|---|
| committer | 2013-03-15 17:37:47 +0100 | |
| commit | 49e1a798ba8f240add11f7c287696e9e47dfc467 (patch) | |
| tree | c7bd1b9ac21ba5e78ab6629038a44ae9fb5d4249 | |
| parent | 47196182e53ed25a73ba6e5129675df99df5b671 (diff) | |
Changement raccourci par défaut pour article suivant / précédent (j et k comme Google Reader + corrections design
| -rwxr-xr-x | app/models/RSSConfiguration.php | 4 | ||||
| -rw-r--r-- | public/data/Configuration.array.php | 4 | ||||
| -rw-r--r-- | public/theme/base.css | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/app/models/RSSConfiguration.php b/app/models/RSSConfiguration.php index be960987b..f32a67a3a 100755 --- a/app/models/RSSConfiguration.php +++ b/app/models/RSSConfiguration.php @@ -101,8 +101,8 @@ class RSSConfigurationDAO extends Model_array { 'mark_read' => 'r', 'mark_favorite' => 'f', 'go_website' => 'space', - 'next_entry' => 'page_down', - 'prev_entry' => 'page_up', + 'next_entry' => 'j', + 'prev_entry' => 'k', 'next_page' => 'right', 'prev_page' => 'left', ); diff --git a/public/data/Configuration.array.php b/public/data/Configuration.array.php index af7d4e48f..2ab67f731 100644 --- a/public/data/Configuration.array.php +++ b/public/data/Configuration.array.php @@ -10,8 +10,8 @@ return array ( 'mark_read' => 'r', 'mark_favorite' => 'f', 'go_website' => 'space', - 'next_entry' => 'page_down', - 'prev_entry' => 'page_up', + 'next_entry' => 'j', + 'prev_entry' => 'k', 'next_page' => 'right', 'prev_page' => 'left', ), diff --git a/public/theme/base.css b/public/theme/base.css index 6f1e52fdf..228860104 100644 --- a/public/theme/base.css +++ b/public/theme/base.css @@ -42,6 +42,7 @@ img { /* FORMULAIRES */ legend { display: block; + width: 100%; margin: 20px 0 5px; padding: 5px 0; border-bottom: 1px solid #ddd; @@ -98,7 +99,6 @@ input { min-height: 25px; margin: 0 0 0 220px; padding: 5px 0; - line-heigt: 25px; } .form-group .group-controls .control { display: block; |
