diff options
| author | 2013-04-24 19:54:56 +0200 | |
|---|---|---|
| committer | 2013-04-24 19:54:56 +0200 | |
| commit | 12d3552fe61d7d26817f6644d8cd90e72307a0e6 (patch) | |
| tree | b386422715e5f298becdc250906851380691cb23 | |
| parent | a2b5e8f3ce597fbcec0c25b68c551a526d2bf3ec (diff) | |
Corrige soucis #41 : ajout d'images png en fallback des images SVG + petite modif pour annuler l'attribut height sur les images
23 files changed, 28 insertions, 0 deletions
diff --git a/public/theme/freshrss.css b/public/theme/freshrss.css index ed6646269..d39ca7fc8 100644 --- a/public/theme/freshrss.css +++ b/public/theme/freshrss.css @@ -127,6 +127,7 @@ } .categories .feeds .item .dropdown-target:target ~ .dropdown-toggle i, .categories .feeds .item:hover .dropdown-toggle i { + background-image: url("icons/configure.png"); background-image: url("icons/configure.svg"); } .categories .notRead { @@ -199,6 +200,7 @@ display: inline-block; width: 30px; height: 40px; + background: url("icons/read.png") center center no-repeat; background: url("icons/read.svg") center center no-repeat; vertical-align: middle; } @@ -206,12 +208,14 @@ text-decoration: none; } .flux.not_read .flux_header .item.manage .read { + background: url("icons/unread.png") center center no-repeat; background: url("icons/unread.svg") center center no-repeat; } .flux_header .item.manage .bookmark { display: inline-block; width: 30px; height: 40px; + background: url("icons/non-starred.png") center center no-repeat; background: url("icons/non-starred.svg") center center no-repeat; vertical-align: middle; } @@ -219,6 +223,7 @@ text-decoration: none; } .flux.favorite .flux_header .item.manage .bookmark { + background: url("icons/starred.png") center center no-repeat; background: url("icons/starred.svg") center center no-repeat; } .flux_header .item.website { @@ -260,6 +265,7 @@ display: inline-block; width: 35px; height: 40px; + background: url("icons/link.png") center center no-repeat; background: url("icons/link.svg") center center no-repeat; vertical-align: middle; } diff --git a/public/theme/global.css b/public/theme/global.css index c08463b8b..7bae3f432 100644 --- a/public/theme/global.css +++ b/public/theme/global.css @@ -42,6 +42,7 @@ h1, h2, h3 { /* IMG */ img { + height: auto; max-width: 100%; vertical-align: middle; } @@ -432,65 +433,86 @@ input, select, textarea { background: center center no-repeat; } .icon.i_refresh { + background-image: url("icons/refresh.png"); background-image: url("icons/refresh.svg"); } .icon.i_bookmark { + background-image: url("icons/starred.png"); background-image: url("icons/starred.svg"); } .icon.i_not_bookmark { + background-image: url("icons/unstarred.png"); background-image: url("icons/unstarred.svg"); } .icon.i_read { + background-image: url("icons/read.png"); background-image: url("icons/read.svg"); } .icon.i_unread { + background-image: url("icons/unread.png"); background-image: url("icons/unread.svg"); } .icon.i_all { + background-image: url("icons/all.png"); background-image: url("icons/all.svg"); } .icon.i_close { + background-image: url("icons/close.png"); background-image: url("icons/close.svg"); } .icon.i_search { + background-image: url("icons/search.png"); background-image: url("icons/search.svg"); } .icon.i_configure { + background-image: url("icons/configure.png"); background-image: url("icons/configure.svg"); } .icon.i_login { + background-image: url("icons/login.png"); background-image: url("icons/login.svg"); } .icon.i_logout { + background-image: url("icons/logout.png"); background-image: url("icons/logout.svg"); } .icon.i_add { + background-image: url("icons/add.png"); background-image: url("icons/add.svg"); } .icon.i_link { + background-image: url("icons/link.png"); background-image: url("icons/link.svg"); } .icon.i_down { + background-image: url("icons/down.png"); background-image: url("icons/down.svg"); } .icon.i_up { + background-image: url("icons/up.png"); background-image: url("icons/up.svg"); } .icon.i_help { + background-image: url("icons/help.png"); background-image: url("icons/help.svg"); } .icon.i_note { + background-image: url("icons/note.png"); background-image: url("icons/note.svg"); } .icon.i_note_empty { + background-image: url("icons/note_empty.png"); background-image: url("icons/note_empty.svg"); } .icon.i_category { + background-image: url("icons/category.png"); background-image: url("icons/category.svg"); } .icon.i_rss { + background-image: url("icons/rss.png"); background-image: url("icons/rss.svg"); } .icon.i_share { + background-image: url("icons/share.png"); background-image: url("icons/share.svg"); } diff --git a/public/theme/icons/add.png b/public/theme/icons/add.png Binary files differnew file mode 100644 index 000000000..90cdf4830 --- /dev/null +++ b/public/theme/icons/add.png diff --git a/public/theme/icons/all.png b/public/theme/icons/all.png Binary files differnew file mode 100644 index 000000000..b0dbe5483 --- /dev/null +++ b/public/theme/icons/all.png diff --git a/public/theme/icons/category.png b/public/theme/icons/category.png Binary files differnew file mode 100644 index 000000000..e3a9bf34b --- /dev/null +++ b/public/theme/icons/category.png diff --git a/public/theme/icons/close.png b/public/theme/icons/close.png Binary files differnew file mode 100644 index 000000000..452f1d1cf --- /dev/null +++ b/public/theme/icons/close.png diff --git a/public/theme/icons/configure.png b/public/theme/icons/configure.png Binary files differnew file mode 100644 index 000000000..8c6fb531c --- /dev/null +++ b/public/theme/icons/configure.png diff --git a/public/theme/icons/down.png b/public/theme/icons/down.png Binary files differnew file mode 100644 index 000000000..5a647245f --- /dev/null +++ b/public/theme/icons/down.png diff --git a/public/theme/icons/help.png b/public/theme/icons/help.png Binary files differnew file mode 100644 index 000000000..aa63c5411 --- /dev/null +++ b/public/theme/icons/help.png diff --git a/public/theme/icons/link.png b/public/theme/icons/link.png Binary files differnew file mode 100644 index 000000000..de2b187d7 --- /dev/null +++ b/public/theme/icons/link.png diff --git a/public/theme/icons/login.png b/public/theme/icons/login.png Binary files differnew file mode 100644 index 000000000..cebe0cf7d --- /dev/null +++ b/public/theme/icons/login.png diff --git a/public/theme/icons/logout.png b/public/theme/icons/logout.png Binary files differnew file mode 100644 index 000000000..49255fccd --- /dev/null +++ b/public/theme/icons/logout.png diff --git a/public/theme/icons/non-starred.png b/public/theme/icons/non-starred.png Binary files differnew file mode 100644 index 000000000..4aafb6d8a --- /dev/null +++ b/public/theme/icons/non-starred.png diff --git a/public/theme/icons/note.png b/public/theme/icons/note.png Binary files differnew file mode 100644 index 000000000..d819ebd02 --- /dev/null +++ b/public/theme/icons/note.png diff --git a/public/theme/icons/note_empty.png b/public/theme/icons/note_empty.png Binary files differnew file mode 100644 index 000000000..c26ad2b16 --- /dev/null +++ b/public/theme/icons/note_empty.png diff --git a/public/theme/icons/read.png b/public/theme/icons/read.png Binary files differnew file mode 100644 index 000000000..a402689c7 --- /dev/null +++ b/public/theme/icons/read.png diff --git a/public/theme/icons/refresh.png b/public/theme/icons/refresh.png Binary files differnew file mode 100644 index 000000000..dba399981 --- /dev/null +++ b/public/theme/icons/refresh.png diff --git a/public/theme/icons/rss.png b/public/theme/icons/rss.png Binary files differnew file mode 100644 index 000000000..c20455af0 --- /dev/null +++ b/public/theme/icons/rss.png diff --git a/public/theme/icons/search.png b/public/theme/icons/search.png Binary files differnew file mode 100644 index 000000000..48e7373c4 --- /dev/null +++ b/public/theme/icons/search.png diff --git a/public/theme/icons/share.png b/public/theme/icons/share.png Binary files differnew file mode 100644 index 000000000..74c4c5dda --- /dev/null +++ b/public/theme/icons/share.png diff --git a/public/theme/icons/starred.png b/public/theme/icons/starred.png Binary files differnew file mode 100644 index 000000000..a6c076358 --- /dev/null +++ b/public/theme/icons/starred.png diff --git a/public/theme/icons/unread.png b/public/theme/icons/unread.png Binary files differnew file mode 100644 index 000000000..ab6e3fb39 --- /dev/null +++ b/public/theme/icons/unread.png diff --git a/public/theme/icons/up.png b/public/theme/icons/up.png Binary files differnew file mode 100644 index 000000000..8bfc2fb13 --- /dev/null +++ b/public/theme/icons/up.png |
