From 88e1108f117581de492106db371185d9f8064e5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 20 Sep 2013 14:30:07 +0200 Subject: upgrading themes --- themes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'themes/solarized-dark/css') diff --git a/themes b/themes index 689dcedf..c6406013 160000 --- a/themes +++ b/themes @@ -1 +1 @@ -Subproject commit 689dcedf8d6c7cf5e8424654fef4fd9687288dc1 +Subproject commit c6406013d58dc3808b2544356b28a4816ae9747a -- cgit v1.2.3 From dfbbc14b335925072f71fdd7ec630e0244fc3ad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 3 Oct 2013 14:05:50 +0200 Subject: remove themes --- themes | 1 - 1 file changed, 1 deletion(-) delete mode 160000 themes (limited to 'themes/solarized-dark/css') diff --git a/themes b/themes deleted file mode 160000 index c6406013..00000000 --- a/themes +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c6406013d58dc3808b2544356b28a4816ae9747a -- cgit v1.2.3 From eb44ca42139c6d68698a6c87eddaa818e5079853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 3 Oct 2013 14:06:20 +0200 Subject: embed themes with poche --- themes | 1 + 1 file changed, 1 insertion(+) create mode 160000 themes (limited to 'themes/solarized-dark/css') diff --git a/themes b/themes new file mode 160000 index 00000000..e8f5283a --- /dev/null +++ b/themes @@ -0,0 +1 @@ +Subproject commit e8f5283a723b09164f24aa494baa965566328cc0 -- cgit v1.2.3 From 66e074b43dd4efc9f63c8fee784b99bcce51ab93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 3 Oct 2013 14:09:58 +0200 Subject: remove themes --- themes | 1 - 1 file changed, 1 deletion(-) delete mode 160000 themes (limited to 'themes/solarized-dark/css') diff --git a/themes b/themes deleted file mode 160000 index e8f5283a..00000000 --- a/themes +++ /dev/null @@ -1 +0,0 @@ -Subproject commit e8f5283a723b09164f24aa494baa965566328cc0 -- cgit v1.2.3 From 4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 3 Oct 2013 14:10:44 +0200 Subject: embed themes --- themes/solarized-dark/css/style-solarized-dark.css | 223 +++++++++++++++++++++ 1 file changed, 223 insertions(+) create mode 100644 themes/solarized-dark/css/style-solarized-dark.css (limited to 'themes/solarized-dark/css') diff --git a/themes/solarized-dark/css/style-solarized-dark.css b/themes/solarized-dark/css/style-solarized-dark.css new file mode 100644 index 00000000..5c8daa7a --- /dev/null +++ b/themes/solarized-dark/css/style-solarized-dark.css @@ -0,0 +1,223 @@ +/* + * Solarized Dark - by NumEricR + * http://github.com/NumEricR/poche-themes + * ================================================== + * + * Based on Solarized's palette - (c) 2011 Ethan Schoonover + * See http://ethanschoonover.com/solarized#usage-development + * See http://ethanschoonover.com/solarized#the-values + * + * Background: #002b36 base 03 + * Highlight: #073642 base 02 + * Primary content: #839496 base 0 + * Intermediate: #657b83 base 00 + * Emphasized content: #93a1a1 base 1 + * Secondary content: #586e75 base 01 + * Green: #859900 + * Orange: #cb4b16 + * Red: #dc322f + * Blue: #268bd2 + * + * ================================================== */ + +/* Background */ + +body, +#article_toolbar { + background-color: #002b36; +} + +/* Highlight */ +/* 2 different selectors for selection pseudo-elmt */ +/* See https://developer.mozilla.org/en-US/docs/Web/CSS/::selection */ +::-moz-selection { + background-color: #073642; +} +::selection { + background-color: #073642; +} + +/* Primary content */ + +body, +a, +a:hover, +a:visited { + color: #839496; +} + +/* Secondary content */ + +.tools p, +.vieworiginal a, +.vieworiginal a:hover, +.vieworiginal a:visited { + color: #586e75; +} + +#main #content .entrie, +#article header, +#article article { + border-bottom-color: #586e75; +} + +/* Emphasized content */ + +.entrie h2 a:hover, +footer, +footer a { + color: #93a1a1; +} + +/* Colored content */ + +#main .messages.success, +#main .messages.warning, +#main .messages.error, +#main .messages.information, +#main .messages.info { + background-color: #073642; +} + +#main .messages.success { + border-color: #859900; +} + +#main .messages.success p { + color: #859900 !important; /* Overwrites !important used on messages.css */ +} + +#main .messages.warning { + border-color: #cb4b16; +} + +#main .messages.warning p { + color: #cb4b16; +} + +#main .messages.error { + border-color: #dc322f; +} + +#main .messages.error p { + color: #dc322f !important; /* Overwrites !important used on messages.css */ +} + +#main .messages.information, +#main .messages.info { + border-color: #268bd2; +} + +#main .messages.information p, +#main .messages.info p { + color: #268bd2; +} + +/* Miscellaneous */ + +.bouton, +.bouton:hover, +#main #links li a.current, +#links a:hover, +.pagination span.current, +.pagination a:hover, +.pagination a:active { + color: #002b36; + background-color: #586e75; +} + +.bouton:hover { + background-color: #657b83; +} + +#login, +#password, +#password_repeat, +#bookmarklet, +.top_link { + background-color: #073642; +} + +#login, +#password, +#password_repeat, +#bookmarklet { + padding: 5px; + border: 1px solid #586e75; + color: #839496; +} + +#bookmarklet { + border-style: dashed; +} + +.pagination a { + border-color: #586e75; + color: #586e75; +} + +.pagination span.current { + border-color: #073642; +} + +/* Images */ + +a.back span { + background-image: url('../img/solarized-dark/left.png'); +} + +a.top span { + background-image: url('../img/solarized-dark/top.png'); +} + +a.fav span, +a.fav-off span:hover { + background-image: url('../img/solarized-dark/star-on.png'); +} + +a.fav span:hover, +a.fav-off span { + background-image: url('../img/solarized-dark/star-off.png'); +} + +a.archive span, +a.archive-off span:hover { + background-image: url('../img/solarized-dark/checkmark-on.png'); +} + +a.archive span:hover, +a.archive-off span { + background-image: url('../img/solarized-dark/checkmark-off.png'); +} + +a.twitter span { + background-image: url('../img/solarized-dark/twitter.png'); +} + +a.flattr span { + background-image: url('../img/solarized-dark/flattr.png'); +} + +a.shaarli span { + background-image: url('../img/solarized-dark/shaarli.png'); +} + +a.email span { + background-image: url('../img/solarized-dark/envelop.png'); +} + +a.delete span { + background-image: url('../img/solarized-dark/remove.png'); +} + +a.link span { + background-image: url('../img/solarized-dark/link.png'); +} + +a.bad-display span { + background-image: url('../img/solarized-dark/bad-display.png'); +} + +a.reading-time span { + background-image: url('../img/solarized-dark/clock.png'); +} -- cgit v1.2.3 From 07ae20eeedc75b5b121647cc4833a36956fc6356 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 3 Oct 2013 14:17:45 +0200 Subject: change reading time displaying --- themes/solarized-dark/css/style-solarized-dark.css | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'themes/solarized-dark/css') diff --git a/themes/solarized-dark/css/style-solarized-dark.css b/themes/solarized-dark/css/style-solarized-dark.css index 5c8daa7a..7ce8a563 100644 --- a/themes/solarized-dark/css/style-solarized-dark.css +++ b/themes/solarized-dark/css/style-solarized-dark.css @@ -216,8 +216,4 @@ a.link span { a.bad-display span { background-image: url('../img/solarized-dark/bad-display.png'); -} - -a.reading-time span { - background-image: url('../img/solarized-dark/clock.png'); -} +} \ No newline at end of file -- cgit v1.2.3