diff --git a/themes/README.md b/themes/README.md new file mode 100644 index 0000000..76ac8ab --- /dev/null +++ b/themes/README.md @@ -0,0 +1,31 @@ +# poche-themes + +themes created by poche users + +## list of themes + +* dark ([preview](https://raw.github.com/inthepoche/poche-themes/master/dark/screenshot.jpg)) +* dmagenta ([preview](https://raw.github.com/inthepoche/poche-themes/master/dmagenta/screenshot.jpg)) +* solarized ([preview](https://raw.github.com/inthepoche/poche-themes/master/solarized/screenshot.jpg)) +* solarized-dark ([preview](https://raw.github.com/inthepoche/poche-themes/master/solarized-dark/screenshot.jpg)) + +## installation + +In your poche folder: + +``` +git submodule init +git submodule update +``` + +Then, in your config screen, select your favorite theme. + +That's all ! + +## create a theme + +Just have a look to this short documentation : http://inthepoche.com/doc/doku.php?id=designers:creating_theme + +## send a theme + +Send your theme by email at support@inthepoche.com. diff --git a/themes/dark/README.md b/themes/dark/README.md new file mode 100644 index 0000000..9207799 --- /dev/null +++ b/themes/dark/README.md @@ -0,0 +1,3 @@ +# dark theme + +theme created by Nicolas LÅ“uillet aka nico_somb \ No newline at end of file diff --git a/themes/dark/css/style-dark.css b/themes/dark/css/style-dark.css new file mode 100644 index 0000000..6d50751 --- /dev/null +++ b/themes/dark/css/style-dark.css @@ -0,0 +1,78 @@ +body { + color: #d4d4d4; + background-color: #262627; +} + +a, +a:hover, +a:visited { + color: #d4d4d4; +} + +a.back span { + background-image: url('../img/dark/left.png'); +} + +a.top span { + background-image: url('../img/dark/top.png'); +} + +a.fav span, +a.fav-off span:hover { + background-image: url('../img/dark/star-on.png'); +} + +a.fav span:hover, +a.fav-off span { + background-image: url('../img/dark/star-off.png'); +} + +a.archive span, +a.archive-off span:hover { + background-image: url('../img/dark/checkmark-on.png'); +} + +a.archive span:hover, +a.archive-off span { + background-image: url('../img/dark/checkmark-off.png'); +} + +a.twitter span { + background-image: url('../img/dark/twitter.png'); +} + +a.shaarli span { + background-image: url('../img/dark/shaarli.png'); +} + +a.flattr span { + background-image: url('../img/dark/flattr.png'); +} + +a.email span { + background-image: url('../img/dark/envelop.png'); +} + +a.delete span { + background-image: url('../img/dark/remove.png'); +} + +a.link span { + background-image: url('../img/dark/link.png'); +} + +a.bad-display span { + background-image: url('../img/dark/bad-display.png'); +} + +a.reading-time span { + background-image: url('../img/dark/clock.png'); +} + +.pagination a { + color: #aaa; +} + +#article_toolbar { + background: #262627; +} \ No newline at end of file diff --git a/themes/dark/img/dark/backtotop.png b/themes/dark/img/dark/backtotop.png new file mode 100755 index 0000000..051238e Binary files /dev/null and b/themes/dark/img/dark/backtotop.png differ diff --git a/themes/dark/img/dark/bad-display.png b/themes/dark/img/dark/bad-display.png new file mode 100755 index 0000000..6866799 Binary files /dev/null and b/themes/dark/img/dark/bad-display.png differ diff --git a/themes/dark/img/dark/checkmark-off.png b/themes/dark/img/dark/checkmark-off.png new file mode 100644 index 0000000..3db5a06 Binary files /dev/null and b/themes/dark/img/dark/checkmark-off.png differ diff --git a/themes/dark/img/dark/checkmark-on.png b/themes/dark/img/dark/checkmark-on.png new file mode 100644 index 0000000..cd3abb2 Binary files /dev/null and b/themes/dark/img/dark/checkmark-on.png differ diff --git a/themes/dark/img/dark/clock.png b/themes/dark/img/dark/clock.png new file mode 100755 index 0000000..6164e92 Binary files /dev/null and b/themes/dark/img/dark/clock.png differ diff --git a/themes/dark/img/dark/down.png b/themes/dark/img/dark/down.png new file mode 100644 index 0000000..b9d536a Binary files /dev/null and b/themes/dark/img/dark/down.png differ diff --git a/themes/dark/img/dark/envelop.png b/themes/dark/img/dark/envelop.png new file mode 100644 index 0000000..6be1c88 Binary files /dev/null and b/themes/dark/img/dark/envelop.png differ diff --git a/themes/dark/img/dark/flattr.png b/themes/dark/img/dark/flattr.png new file mode 100755 index 0000000..0404aae Binary files /dev/null and b/themes/dark/img/dark/flattr.png differ diff --git a/themes/dark/img/dark/left.png b/themes/dark/img/dark/left.png new file mode 100644 index 0000000..a0a5363 Binary files /dev/null and b/themes/dark/img/dark/left.png differ diff --git a/themes/dark/img/dark/link.png b/themes/dark/img/dark/link.png new file mode 100755 index 0000000..db62819 Binary files /dev/null and b/themes/dark/img/dark/link.png differ diff --git a/themes/dark/img/dark/remove.png b/themes/dark/img/dark/remove.png new file mode 100644 index 0000000..f8ad56a Binary files /dev/null and b/themes/dark/img/dark/remove.png differ diff --git a/themes/dark/img/dark/shaarli.png b/themes/dark/img/dark/shaarli.png new file mode 100644 index 0000000..1eb30f6 Binary files /dev/null and b/themes/dark/img/dark/shaarli.png differ diff --git a/themes/dark/img/dark/star-off.png b/themes/dark/img/dark/star-off.png new file mode 100644 index 0000000..6a0133a Binary files /dev/null and b/themes/dark/img/dark/star-off.png differ diff --git a/themes/dark/img/dark/star-on.png b/themes/dark/img/dark/star-on.png new file mode 100644 index 0000000..a9f96ea Binary files /dev/null and b/themes/dark/img/dark/star-on.png differ diff --git a/themes/dark/img/dark/top.png b/themes/dark/img/dark/top.png new file mode 100644 index 0000000..954a8c0 Binary files /dev/null and b/themes/dark/img/dark/top.png differ diff --git a/themes/dark/img/dark/twitter.png b/themes/dark/img/dark/twitter.png new file mode 100644 index 0000000..cfcfe41 Binary files /dev/null and b/themes/dark/img/dark/twitter.png differ diff --git a/themes/dark/screenshot.jpg b/themes/dark/screenshot.jpg new file mode 100644 index 0000000..daaad6c Binary files /dev/null and b/themes/dark/screenshot.jpg differ diff --git a/themes/default/_bookmarklet.twig b/themes/default/_bookmarklet.twig new file mode 100644 index 0000000..2f3b2d1 --- /dev/null +++ b/themes/default/_bookmarklet.twig @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/themes/default/_footer.twig b/themes/default/_footer.twig new file mode 100644 index 0000000..2b89585 --- /dev/null +++ b/themes/default/_footer.twig @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/themes/default/_head.twig b/themes/default/_head.twig new file mode 100644 index 0000000..2b9e458 --- /dev/null +++ b/themes/default/_head.twig @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/themes/default/_menu.twig b/themes/default/_menu.twig new file mode 100644 index 0000000..699d6a0 --- /dev/null +++ b/themes/default/_menu.twig @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/themes/default/_messages.twig b/themes/default/_messages.twig new file mode 100644 index 0000000..679aa09 --- /dev/null +++ b/themes/default/_messages.twig @@ -0,0 +1 @@ + {{ messages | raw }} \ No newline at end of file diff --git a/themes/default/_top.twig b/themes/default/_top.twig new file mode 100644 index 0000000..4100f7c --- /dev/null +++ b/themes/default/_top.twig @@ -0,0 +1,7 @@ +
+

+ {% if view == 'home' %}{% block logo %}logo poche{% endblock %} + {% else %}{{ block('logo') }} + {% endif %} +

+
\ No newline at end of file diff --git a/themes/default/config.twig b/themes/default/config.twig new file mode 100644 index 0000000..e849d03 --- /dev/null +++ b/themes/default/config.twig @@ -0,0 +1,80 @@ +{% extends "layout.twig" %} + +{% block title %}{% trans "config" %}{% endblock %} +{% block menu %} +{% include '_menu.twig' %} +{% endblock %} +{% block content %} +

{% trans "Poching a link" %}

+

{% trans "You can poche a link by several methods:" %} (?)

+ + +

{% trans "Updating poche" %}

+ + +

{% trans "Change your theme" %}

+
+
+
+ + +
+
+ +
+
+ + +
+ +

{% trans "Change your password" %}

+
+
+
+ + +
+
+ + +
+
+ +
+
+ + +
+ +

{% trans "Import" %}

+

{% trans "Please execute the import script locally, it can take a very long time." %}

+

{% trans "More infos in the official doc:" %} inthepoche.com

+ + +

{% trans "Export your poche datas" %}

+

{% trans "Click here" %} {% trans "to export your poche datas." %}

+{% endblock %} \ No newline at end of file diff --git a/themes/default/css/knacss.css b/themes/default/css/knacss.css new file mode 100644 index 0000000..ca0696b --- /dev/null +++ b/themes/default/css/knacss.css @@ -0,0 +1 @@ +html{font-size:62.5%}body{font-family:"Century Gothic",helvetica,arial,sans-serif;font-size:1.4em;line-height:1.5;color:#000;background-color:#FFF}p,ul,ol,dl,blockquote,pre,td,th,label,textarea,caption,details,figure,hgroup{margin:.75em 0 0;font-size:1em;line-height:1.5}h1,.h1-like{margin:.8077em 0 0 0;font-size:1.8571em;font-weight:normal;line-height:1.6154em}h2,.h2-like{margin:.875em 0 0 0;font-size:1.7143em;font-weight:normal;line-height:1.75em}h3,.h3-like{margin:.9545em 0 0 0;font-size:1.5714em;font-weight:normal;line-height:1.909em}h4,.h4-like{margin:1.05em 0 0 0;font-size:1.4286em;font-weight:normal;line-height:1.05em}h5,.h5-like{margin:1.1667em 0 0 0;font-size:1.2857em;font-weight:normal;line-height:1.1667em}h6,.h6-like{margin:1.3125em 0 0 0;font-size:1.1429em;font-weight:normal;line-height:1.3125em}.smaller{font-size:.7143em}.small{font-size:.8571em}.big{font-size:1.1429em}.bigger{font-size:1.2857em}.biggest{font-size:1.4286em}html,body,textarea,figure,label{margin:0;padding:0}ul,ol{padding-left:2em}code,pre,samp,kbd{font-family:consolas,'DejaVu Sans Mono',courier,monospace;line-height:1em;white-space:pre-wrap}code,kbd,mark{border-radius:2px}em{font-style:italic}strong{font-weight:bold}kbd{padding:0 2px;border:1px solid #999}code{padding:2px 4px;color:#B11;background:rgba(0,0,0,.04)}mark{padding:2px 4px;background:#FF0}table{margin-bottom:1.5em}p:first-child,ul:first-child,ol:first-child,dl:first-child,blockquote:first-child,pre:first-child,h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top:0}li p,li ul,li ol{margin-top:0;margin-bottom:0}img,table,td,blockquote,code,pre,textarea,input,video{max-width:100%}div,textarea,table,td,th,code,pre,samp{word-wrap:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;-o-hyphens:auto;hyphens:auto}img{height:auto;vertical-align:middle}#map_canvas img,.gmnoprint img{max-width:none}a img{border:0}body > script{display:none !important}.skip-links{position:absolute}.skip-links a{position:absolute;left:-7000px;padding:.5em;text-decoration:none;color:#FFF;background:#000}.skip-links a:focus{position:static}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mod,.item{overflow:hidden}.row{display:table;width:100%;table-layout:fixed}.row > *,.col{display:table-cell;vertical-align:top}.clear,.line,.row{clear:both}.clearfix:after,.line:after,.mod:after{content:"";display:table;clear:both}.left{float:left}img.left{margin-right:1em}.right{float:right}img.right{margin-left:1em}img.left,img.right{margin-bottom:5px}.center{margin-right:auto;margin-left:auto}.txtleft{text-align:left}.txtright{text-align:right}.txtcenter{text-align:center}.inbl{display:inline-block;margin-right:-.25em;vertical-align:top}.w10{width:10%}.w20{width:20%}.w25{width:25%}.w30{width:30%}.w33{width:33.333%}.w40{width:40%}.w50{width:50%}.w60{width:60%}.w66{width:66.666%}.w70{width:70%}.w75{width:75%}.w80{width:80%}.w90{width:90%}.w100{width:100%}.w50p{width:50px}.w100p{width:100px}.w150p{width:150px}.w200p{width:200px}.w300p{width:300px}.w400p{width:400px}.w500p{width:500px}.w600p{width:600px}.w700p{width:700px}.w800p{width:800px}.w960p{width:960px}.mw960p{max-width:960px}.m-reset,.ma0{margin:0 !important}.p-reset,.pa0{padding:0 !important}.ma1,.mas{margin:10px !important}.ma2,.mam{margin:20px !important}.ma3,.mal{margin:30px !important}.pa1,.pas{padding:10px}.pa2,.pam{padding:20px}.pa3,.pal{padding:30px}.mt0,.mtn{margin-top:0 !important}.mt1,.mts{margin-top:10px !important}.mt2,.mtm{margin-top:20px !important}.mt3,.mtl{margin-top:30px !important}.mr0,.mrn{margin-right:0}.mr1,.mrs{margin-right:10px}.mr2,.mrm{margin-right:20px}.mr3,.mrl{margin-right:30px}.mb0,.mbn{margin-bottom:0 !important}.mb1,.mbs{margin-bottom:10px !important}.mb2,.mbm{margin-bottom:20px !important}.mb3,.mbl{margin-bottom:30px !important}.ml0,.mln{margin-left:0}.ml1,.mls{margin-left:10px}.ml2,.mlm{margin-left:20px}.ml3,.mll{margin-left:30px}.pt0,.ptn{padding-top:0}.pt1,.pts{padding-top:10px}.pt2,.ptm{padding-top:20px}.pt3,.ptl{padding-top:30px}.pr0,.prn{padding-right:0}.pr1,.prs{padding-right:10px}.pr2,.prm{padding-right:20px}.pr3,.prl{padding-right:30px}.pb0,.pbn{padding-bottom:0}.pb1,.pbs{padding-bottom:10px}.pb2,.pbm{padding-bottom:20px}.pb3,.pbl{padding-bottom:30px}.pl0,.pln{padding-left:0}.pl1,.pls{padding-left:10px}.pl2,.plm{padding-left:20px}.pl3,.pll{padding-left:30px}.visually-hidden{position:absolute;left:-7000px;overflow:hidden}[dir=rtl] .visually-hidden{right:-7000px;left:auto}.desktop-hidden{display:none}form,fieldset{border:none}input,button,select,label,.btn{font-family:inherit;vertical-align:middle}textarea{font-family:inherit;resize:vertical}.ie67 .clearfix,.ie67 .line,.ie67 .mod,.ie67 .row,.ie67 .col{zoom:1}.ie67 .btn,.ie67 .col,.ie67 .inbl{display:inline;zoom:1}.ie8 img{width:auto}@media print{p,blockquote{orphans:2;widows:2}blockquote,ul,ol{page-break-inside:avoid}h1,h2,h3,caption{page-break-after:avoid}}@media(orientation:landscape)and(max-device-width:768px){html,body{-webkit-text-size-adjust:100%}}[class*=grid] > *{float:left}[class*=grid] > * + *{margin-left:2%}.grid2 > *{width:49%}.grid3 > *{width:32%}.grid4 > *{width:23.5%}.grid5 > *{width:18.4%}.grid6 > *{width:15%}.grid2-1 > *:first-child,.grid1-2 > * + *{width:66%}.grid1-2 > *:first-child,.grid2-1 > * + *{width:32%}.grid1-3 > *:first-child,.grid3-1 > * + *{width:23.5%}.grid3-1 > *:first-child,.grid1-3 > * + *{width:74.5%}table,.table{max-width:100%;border-collapse:collapse;table-layout:fixed;vertical-align:top}table{width:100%}.table{display:table}caption{padding:10px;font-style:italic;color:#555}table{border:1px solid #CCC}tr > * + *{border-left:1px solid #CCC}th,td{padding:.3em .8em;border-bottom:1px solid #CCC;text-align:left}td{color:#333}.alternate{border:0}.alternate tbody{border:1px solid #CCC}.alternate thead tr > * + *{border-left:0}.alternate tbody tr > * + *{border-left:1px solid #CCC}.alternate-vert{border:0;border-right:1px solid #CCC}.alternate-vert tr >:first-child{border-bottom:0}.alternate-vert tr > * + *{border-top:1px solid #CCC}.striped tbody tr:nth-child(odd){background:#EEE;background:rgba(0,0,0,.05)}.striped-vert tr >:first-child{background:#EEE;background:rgba(0,0,0,.05)}.btn{display:inline-block}label{display:inline-block;vertical-align:middle;cursor:pointer}legend{border:0;white-space:normal}button,input,select{margin:0;font-family:"Century Gothic",helvetica,arial,sans-serif;font-size:100%;vertical-align:middle}textarea{min-height:5em;overflow:auto;font-size:1.75em;vertical-align:top;resize:vertical}}ol.styled{counter-reset:styled}ol.styled > li{counter-increment:styled;margin-bottom:.3em;list-style-type:none}ol.styled > li:before{content:counter(styled);display:inline-block;width:1em;height:1em;margin-right:.4em;padding:2px;border-radius:50%;text-align:center;text-indent:-.1em;font-size:.9em;line-height:1;vertical-align:middle;color:#FFF;background:rgba(0,0,0,.5)}@media(min-width:1280px){.large-hidden,.tablet-hidden{display:none !important}.large-visible{display:block !important}.large-no-float{float:none}.large-inbl{display:inline-block;float:none;vertical-align:top}.large-row{display:table;width:100% !important;table-layout:fixed}.large-col{display:table-cell;vertical-align:top}.large-w25{width:25% !important}.large-w33{width:33.3333% !important}.large-w50{width:50% !important}.large-w66{width:66.6666% !important}.large-w75{width:75% !important}.large-w100{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-right:0 !important;margin-left:0 !important;border:0}.large-ma0,.large-man{margin:0 !important}}@media(max-width:768px){.w60,.w66,.w70,.w75,.w80,.w90,.w100,.w600p,.w700p,.w800p,.w960p,.mw960p,.medium-wauto{width:auto}.medium-hidden,.tablet-hidden{display:none !important}.medium-visible{display:block !important}.medium-no-float{float:none}.medium-inbl{display:inline-block;float:none;vertical-align:top}.medium-row{display:table;width:100% !important;table-layout:fixed}.medium-col{display:table-cell;vertical-align:top}.medium-w25{width:25% !important}.medium-w33{width:33.3333% !important}.medium-w50{width:50% !important}.medium-w66{width:66.6666% !important}.medium-w75{width:75% !important}.medium-w100{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-right:0 !important;margin-left:0 !important;border:0}.medium-ma0,.medium-man{margin:0 !important}.grid4 > *{width:49% !important}.grid4 >:first-child + * + *{margin-left:0 !important}.grid6 > *{width:32% !important}.grid6 >:first-child + * + * + *{margin-left:0 !important}}@media(max-width:640px){.mod,.item,.col,fieldset{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-right:0 !important;margin-left:0 !important;border:0}.w30,.w33,.w40,.w50,.w300p,.w400p,.w500p{width:auto}.row{display:block !important;width:100% !important}.tiny-hidden,.phone-hidden{display:none !important}.tiny-visible{display:block !important}.tiny-no-float{float:none}.tiny-inbl{display:inline-block;float:none;vertical-align:top}.tiny-row{display:table;width:100% !important;table-layout:fixed}.tiny-col{display:table-cell;vertical-align:top}th,td{display:block !important;width:auto !important;text-align:left !important}thead{display:none}.tiny-w25{width:25% !important}.tiny-w33{width:33.3333% !important}.tiny-w50{width:50% !important}.tiny-w66{width:66.6666% !important}.tiny-w75{width:75% !important}.tiny-w100{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-right:0 !important;margin-left:0 !important;border:0}.tiny-ma0,.tiny-man{margin:0 !important}} \ No newline at end of file diff --git a/themes/default/css/messages.css b/themes/default/css/messages.css new file mode 100644 index 0000000..daed6d7 --- /dev/null +++ b/themes/default/css/messages.css @@ -0,0 +1,75 @@ +.messages { + display: block; + clear: both; + width: 400px auto; + margin: 10px auto 10px; + padding: 10px 0; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.messages a.closeMessage { + display: none; + float: right; + width: 16px; + height: 16px; + margin: -14px -8px 0 0; + background: url(../img/messages/close.png) no-repeat; +} + +/*.messages:hover a.closeMessage { visibility:visible; }*/ + +.messages p { + margin: 3px 0 3px 10px !important; + padding: 0 10px 0 23px !important; + font-size: 14px; + line-height: 16px; +} + +.messages.error { + border: 1px solid #c42608; + color: #c00 !important; + background: #fff0ef; +} + +.messages.error p { + color: #c00 !important; + background: url(../img/messages/cross.png) no-repeat 0 50%; +} + +.messages.success { + border: 1px solid #6dc70c; + background: #e0fbcc; +} + +.messages.success p { + color: #2b6301 !important; + background: url(../img/messages/tick.png) no-repeat 0 50%; +} + +.messages.warning { + border: 1px solid #ebcd41; + color: #000; + background: #fffcd3; +} + +.messages.warning p { + color: #5f4e01; + background: url(../img/messages/warning.png) no-repeat 0 50%; +} + +.messages.information, +.messages.info { + border: 1px solid #82aee7; + background: #dfebfb; +} + +.messages.information p, +.messages.info p { + color: #064393; + background: url(../img/messages/help.png) no-repeat 0 50%; +} + +.messages.information a { + text-decoration: underline; +} diff --git a/themes/default/css/print.css b/themes/default/css/print.css new file mode 100644 index 0000000..9aefa77 --- /dev/null +++ b/themes/default/css/print.css @@ -0,0 +1,48 @@ +/* ### Layout ### */ + +body { + font-family: Serif; + background-color: #fff; +} + +@page { + margin: 1cm; +} + +img { + max-width: 100% !important; +} + +/* ### Content ### */ + +/* Hide useless blocks */ +body > header, +#links, +#sort, +body > footer, +.top_link, +div.tools, +header div, +.messages, +.entrie + .results { + display: none !important; +} + +article { + border: none !important; +} + +/* Add URL after links */ +.vieworiginal a:after { + content: " (" attr(href) ")"; +} + +/* Add explanation after abbr */ +abbr[title]:after { + content: " (" attr(title) ")"; +} + +/* Change border on current pager item */ +.pagination span.current { + border-style: dashed; +} diff --git a/themes/default/css/style-default.css b/themes/default/css/style-default.css new file mode 100644 index 0000000..3377a75 --- /dev/null +++ b/themes/default/css/style-default.css @@ -0,0 +1,59 @@ +a.back span { + background-image: url('../img/default/left.png'); +} + +a.top span { + background-image: url('../img/default/top.png'); +} + +a.fav span, +a.fav-off span:hover { + background-image: url('../img/default/star-on.png'); +} + +a.fav span:hover, +a.fav-off span { + background-image: url('../img/default/star-off.png'); +} + +a.archive span, +a.archive-off span:hover { + background-image: url('../img/default/checkmark-on.png'); +} + +a.archive span:hover, +a.archive-off span { + background-image: url('../img/default/checkmark-off.png'); +} + +a.twitter span { + background-image: url('../img/default/twitter.png'); +} + +a.shaarli span { + background-image: url('../img/default/shaarli.png'); +} + +a.flattr span { + background-image: url('../img/default/flattr.png'); +} + +a.email span { + background-image: url('../img/default/envelop.png'); +} + +a.delete span { + background-image: url('../img/default/remove.png'); +} + +a.link span { + background-image: url('../img/default/link.png'); +} + +a.bad-display span { + background-image: url('../img/default/bad-display.png'); +} + +a.reading-time span { + background-image: url('../img/default/clock.png'); +} diff --git a/themes/default/css/style.css b/themes/default/css/style.css new file mode 100644 index 0000000..eb04f0c --- /dev/null +++ b/themes/default/css/style.css @@ -0,0 +1,321 @@ +body { + margin: 10px; + font-family: 'Roboto',Verdana,Geneva,sans-serif; + font-size: 16px; + color: #000; +} + +header { + text-align: center; +} + +header h1 { + font-size: 1.3em; +} + +a, +a:hover, +a:visited { + color: #000; +} + +.bouton { + border: none; + border-radius: 2px; + color: #fff; + background-color: #000; +} + +.bouton:hover { + color: #f1f1f1; + background-color: #222; + cursor: pointer; +} + +#main { + margin: 0 auto; +} + +#main #links { + padding: 0; + text-align: center; + font-size: 0.9em; + list-style-type: none; +} + +#main #links li { + display: inline; +} + +#main #links li .current { + -webkit-border-radius: 2px; + border-radius: 2px; + color: #fff; + background-color: #000; +} + +#main #sort { + padding: 0; + text-align: center; + list-style-type: none; + opacity: 0.5; +} + +#main #sort li { + display: inline; + font-size: 0.9em; +} + +#main #sort li + li { + margin-left: 10px; +} + +#main #sort a { + padding: 2px 2px 0; + vertical-align: middle; +} + +#main #sort img { + vertical-align: baseline; +} +#main #sort img:hover { + cursor: pointer; +} + +#links a { + padding: 5px 10px; + text-decoration: none; +} + +#links a:hover { + -webkit-border-radius: 2px; + border-radius: 2px; + color: #f1f1f1; + background-color: #040707; +} + +/*** ***/ + +/*** LINKS DISPLAY ***/ + +#main .tool { + text-decoration: none; + cursor: pointer; +} + +#main #content { + margin-top: 20px; +} + +#main #content h2 { + text-decoration: none; + font-size: 1.3em; +} + +#main #content .entrie { + margin-top: 15px; + padding-bottom: 15px; + border-bottom: 1px dashed #222; + overflow: hidden; +} + +/* First entry */ +#main #content .results + .entrie { + clear: both; + margin-top: 0; +} + +#main .entrie .tools { + float: right; + text-align: right; + list-style-type: none; + opacity: 0.5; +} + +#main .entrie .tools .tool span { + display: inline-block; + width: 16px; + height: 16px; + /* Hide textual content */ + overflow: hidden; + text-align: left; + text-indent: -9999px; +} + +/*** ***/ + +/*** ARTICLE PAGE ***/ + +#article { + margin: 0 auto; +} + +#article header { + border-bottom: 1px solid #222; +} + +#article header { + text-align: left; +} + +#article header h1 small { + float: right; + font-size: 0.6em; +} + +#article header a { + text-decoration: none; +} + +.backhome { + display: inline; +} + +.results { + padding: 15px 0; + overflow: hidden; +} + +.nb-results { + float: left; + font-size: 0.9em; + line-height: 24px; + vertical-align: middle; +} + +#article_toolbar { + position: fixed; + bottom: 0; + left: 0; + width: 100%; + height: 50px; + padding-top: 17px; + text-align: center; + color: #fff; + opacity: 0.8; + background: #fff; +} + +#article_toolbar li { + display: inline; + padding-right: 30px; +} + +#article_toolbar .tool { + padding: 0 2px; +} + +#article_toolbar .tool span { + display: inline-block; + width: 16px; + height: 16px; + /* Hide textual content */ + overflow: hidden; + text-align: left; + text-indent: -9999px; +} + +/*** ***/ + +/*** PAGINATION ***/ + +.pagination { + float: right; + text-align: right; +} + +.pagination a { + height: 25px; + margin: 2px; + padding: 4px 8px; + border: 1px solid #d5d5d5; + text-decoration: none; + font-size: 11px; + font-weight: bold; + color: #333; +} + +.pagination a:hover, +.pagination a:active { + background-color: #efefef; +} + +.pagination .current { + height: 25px; + margin: 2px; + padding: 4px 8px; + border: 1px solid #d5d5d5; + text-decoration: none; + font-size: 11px; + font-weight: bold; + color: #000; + background-color: #ccc; +} + +.pagination .disabled { + display: none; +} + +#bookmarklet { + padding: 5px; + border: 1px dashed #808080; + background: #fff; + cursor: move; +} + +.top_link { + display: none; + z-index: 2000; + position: fixed; + right: 15px; + bottom: 15px; + padding: 20px; + -webkit-border-radius: 40px; + -moz-border-radius: 40px; + border-radius: 40px; + opacity: 0.9; + background: #ccc; +} + +footer { + clear: both; +} + +.reading-time { + font-size: 0.8em; +} + +#inputform { + display: none; + margin-top: 5px; + margin-right: auto; + margin-left: auto; + padding-bottom: 5px; + max-width: 300px; + border-radius: 3px; + text-align: center; + color: #fff; + opacity: 0.8; + background-color: rgba(0,0,0,0.9); +} + +a.back span, +a.top span, +a.fav span, +a.fav span:hover, +a.fav-off span, +a.fav-off span:hover, +a.archive span, +a.archive span:hover, +a.archive-off span, +a.archive-off span:hover, +a.twitter span, +a.shaarli span, +a.flattr span, +a.email span, +a.delete span, +a.link span, +a.bad-display span, +a.reading-time span { + background-repeat: no-repeat; +} \ No newline at end of file diff --git a/themes/default/error.twig b/themes/default/error.twig new file mode 100644 index 0000000..c829d12 --- /dev/null +++ b/themes/default/error.twig @@ -0,0 +1,6 @@ +{% extends "layout.twig" %} +{% block title %}{% trans "plop" %}{% endblock %} +{% block content %} + {{ msg|raw }} +

Don't forget the documentation.

+{% endblock %} \ No newline at end of file diff --git a/themes/default/export.twig b/themes/default/export.twig new file mode 100644 index 0000000..4adb954 --- /dev/null +++ b/themes/default/export.twig @@ -0,0 +1 @@ +{{ export }} \ No newline at end of file diff --git a/themes/default/home.twig b/themes/default/home.twig new file mode 100644 index 0000000..1367ebe --- /dev/null +++ b/themes/default/home.twig @@ -0,0 +1,49 @@ +{% extends "layout.twig" %} +{% block title %} +{% if view == 'fav' %} +{% trans "favoris" %} +{% elseif view == 'archive' %} +{% trans "archive" %} +{% else %} +{% trans "unread" %} +{% endif %} +{% endblock %} +{% block menu %} +{% include '_menu.twig' %} +{% endblock %} +{% block precontent %} + {% if entries|length > 1 %} + + {% endif %} +{% endblock %} +{% block content %} + {% if entries is empty %} +

{% trans "No link available here!" %}

+ {% else %} + {% block pager %} + {% if nb_results > 1 %} +
+
{{ nb_results }} {% trans "results" %}
+ {{ page_links | raw }} +
+ {% endif %} + {% endblock %} + {% for entry in entries %} +
+

{{ entry.title|raw }}

+ +

{{ entry.content|striptags|slice(0, 300) }}...

+
+ {% endfor %} + {% endif %} + {{ block('pager') }} +{% endblock %} \ No newline at end of file diff --git a/themes/default/img/apple-touch-icon-144x144-precomposed.png b/themes/default/img/apple-touch-icon-144x144-precomposed.png new file mode 100644 index 0000000..557b479 Binary files /dev/null and b/themes/default/img/apple-touch-icon-144x144-precomposed.png differ diff --git a/themes/default/img/apple-touch-icon-72x72-precomposed.png b/themes/default/img/apple-touch-icon-72x72-precomposed.png new file mode 100644 index 0000000..e167d3a Binary files /dev/null and b/themes/default/img/apple-touch-icon-72x72-precomposed.png differ diff --git a/themes/default/img/apple-touch-icon.png b/themes/default/img/apple-touch-icon.png new file mode 100644 index 0000000..4d222fb Binary files /dev/null and b/themes/default/img/apple-touch-icon.png differ diff --git a/themes/default/img/default/backtotop.png b/themes/default/img/default/backtotop.png new file mode 100644 index 0000000..051238e Binary files /dev/null and b/themes/default/img/default/backtotop.png differ diff --git a/themes/default/img/default/bad-display.png b/themes/default/img/default/bad-display.png new file mode 100755 index 0000000..6866799 Binary files /dev/null and b/themes/default/img/default/bad-display.png differ diff --git a/themes/default/img/default/checkmark-off.png b/themes/default/img/default/checkmark-off.png new file mode 100644 index 0000000..3db5a06 Binary files /dev/null and b/themes/default/img/default/checkmark-off.png differ diff --git a/themes/default/img/default/checkmark-on.png b/themes/default/img/default/checkmark-on.png new file mode 100644 index 0000000..cd3abb2 Binary files /dev/null and b/themes/default/img/default/checkmark-on.png differ diff --git a/themes/default/img/default/clock.png b/themes/default/img/default/clock.png new file mode 100755 index 0000000..6164e92 Binary files /dev/null and b/themes/default/img/default/clock.png differ diff --git a/themes/default/img/default/down.png b/themes/default/img/default/down.png new file mode 100644 index 0000000..b9d536a Binary files /dev/null and b/themes/default/img/default/down.png differ diff --git a/themes/default/img/default/envelop.png b/themes/default/img/default/envelop.png new file mode 100644 index 0000000..6be1c88 Binary files /dev/null and b/themes/default/img/default/envelop.png differ diff --git a/themes/default/img/default/flattr.png b/themes/default/img/default/flattr.png new file mode 100755 index 0000000..0404aae Binary files /dev/null and b/themes/default/img/default/flattr.png differ diff --git a/themes/default/img/default/left.png b/themes/default/img/default/left.png new file mode 100644 index 0000000..a0a5363 Binary files /dev/null and b/themes/default/img/default/left.png differ diff --git a/themes/default/img/default/link.png b/themes/default/img/default/link.png new file mode 100755 index 0000000..db62819 Binary files /dev/null and b/themes/default/img/default/link.png differ diff --git a/themes/default/img/default/remove.png b/themes/default/img/default/remove.png new file mode 100644 index 0000000..f8ad56a Binary files /dev/null and b/themes/default/img/default/remove.png differ diff --git a/themes/default/img/default/shaarli.png b/themes/default/img/default/shaarli.png new file mode 100644 index 0000000..1eb30f6 Binary files /dev/null and b/themes/default/img/default/shaarli.png differ diff --git a/themes/default/img/default/star-off.png b/themes/default/img/default/star-off.png new file mode 100644 index 0000000..6a0133a Binary files /dev/null and b/themes/default/img/default/star-off.png differ diff --git a/themes/default/img/default/star-on.png b/themes/default/img/default/star-on.png new file mode 100644 index 0000000..a9f96ea Binary files /dev/null and b/themes/default/img/default/star-on.png differ diff --git a/themes/default/img/default/top.png b/themes/default/img/default/top.png new file mode 100644 index 0000000..954a8c0 Binary files /dev/null and b/themes/default/img/default/top.png differ diff --git a/themes/default/img/default/twitter.png b/themes/default/img/default/twitter.png new file mode 100644 index 0000000..cfcfe41 Binary files /dev/null and b/themes/default/img/default/twitter.png differ diff --git a/themes/default/img/favicon.ico b/themes/default/img/favicon.ico new file mode 100644 index 0000000..0e9ff77 Binary files /dev/null and b/themes/default/img/favicon.ico differ diff --git a/themes/default/img/logo.png b/themes/default/img/logo.png new file mode 100644 index 0000000..5305c77 Binary files /dev/null and b/themes/default/img/logo.png differ diff --git a/themes/default/img/messages/close.png b/themes/default/img/messages/close.png new file mode 100644 index 0000000..731aa01 Binary files /dev/null and b/themes/default/img/messages/close.png differ diff --git a/themes/default/img/messages/cross.png b/themes/default/img/messages/cross.png new file mode 100644 index 0000000..1514d51 Binary files /dev/null and b/themes/default/img/messages/cross.png differ diff --git a/themes/default/img/messages/help.png b/themes/default/img/messages/help.png new file mode 100644 index 0000000..5c87017 Binary files /dev/null and b/themes/default/img/messages/help.png differ diff --git a/themes/default/img/messages/tick.png b/themes/default/img/messages/tick.png new file mode 100644 index 0000000..a9925a0 Binary files /dev/null and b/themes/default/img/messages/tick.png differ diff --git a/themes/default/img/messages/warning.png b/themes/default/img/messages/warning.png new file mode 100644 index 0000000..628cf2d Binary files /dev/null and b/themes/default/img/messages/warning.png differ diff --git a/themes/default/install.twig b/themes/default/install.twig new file mode 100644 index 0000000..6e85e5c --- /dev/null +++ b/themes/default/install.twig @@ -0,0 +1,28 @@ +{% extends "layout.twig" %} +{% block title %}{% trans "installation" %}{% endblock %} +{% block content %} +
+
+

{% trans "install your poche" %}

+

+ {% trans "poche is still not installed. Please fill the below form to install it. Don't hesitate to read the documentation on poche website." %} +

+

+ + +

+

+ + +

+

+ + +

+

+ +

+
+ +
+{% endblock %} \ No newline at end of file diff --git a/themes/default/js/restoreScroll.js b/themes/default/js/restoreScroll.js new file mode 100644 index 0000000..331c9e1 --- /dev/null +++ b/themes/default/js/restoreScroll.js @@ -0,0 +1,25 @@ +function supportsLocalStorage() { + try { + return 'localStorage' in window && window['localStorage'] !== null; + } catch (e) { + return false; + } +} + +function savePercent(id, percent) { + if (!supportsLocalStorage()) { return false; } + localStorage["poche.article." + id + ".percent"] = percent; + return true; +} + +function retrievePercent(id) { + if (!supportsLocalStorage()) { return false; } + + var bheight = $(document).height(); + var percent = localStorage["poche.article." + id + ".percent"]; + var scroll = bheight * percent; + + $('html,body').animate({scrollTop: scroll}, 'fast'); + + return true; +} \ No newline at end of file diff --git a/themes/default/layout.twig b/themes/default/layout.twig new file mode 100644 index 0000000..fec7054 --- /dev/null +++ b/themes/default/layout.twig @@ -0,0 +1,31 @@ + + + + + + + + + + + {% block title %}{% endblock %} - poche +{% include '_head.twig' %} +{% include '_bookmarklet.twig' %} + + + {% include '_top.twig' %} +
+ {% block menu %}{% endblock %} + {% block precontent %}{% endblock %} + {% block messages %} + {% include '_messages.twig' %} + {% endblock %} +
+ {% block content %}{% endblock %} +
+
+{% include '_footer.twig' %} + + \ No newline at end of file diff --git a/themes/default/login.twig b/themes/default/login.twig new file mode 100644 index 0000000..0ae130b --- /dev/null +++ b/themes/default/login.twig @@ -0,0 +1,32 @@ +{% extends "layout.twig" %} + +{% block title %}{% trans "login to your poche" %}{% endblock %} +{% block content %} +
+
+

{% trans "login to your poche" %}

+ {% if constant('MODE_DEMO') == 1 %}

{% trans "you are in demo mode, some features may be disabled." %}

{% endif %} +
+ + +
+ +
+ + +
+
+ +
+ + {% trans "(Do not check on public computers)" %} +
+
+
+ +
+
+ + +
+{% endblock %} \ No newline at end of file diff --git a/themes/default/view.twig b/themes/default/view.twig new file mode 100644 index 0000000..1e54ae3 --- /dev/null +++ b/themes/default/view.twig @@ -0,0 +1,51 @@ +{% extends "layout.twig" %} +{% block title %}{{ entry.title|raw }} ({{ entry.url | e | getDomain }}){% endblock %} +{% block content %} +
+ +
+
+
+

{{ entry.title|raw }}

+
+
+ {{ content | raw }} +
+
+ + +{% endblock %} \ No newline at end of file diff --git a/themes/dmagenta/README.md b/themes/dmagenta/README.md new file mode 100644 index 0000000..6abc37e --- /dev/null +++ b/themes/dmagenta/README.md @@ -0,0 +1,3 @@ +# dmagenta (dark magenta) theme + +theme created by Nicolas LÅ“uillet aka nico_somb \ No newline at end of file diff --git a/themes/dmagenta/css/style-dmagenta.css b/themes/dmagenta/css/style-dmagenta.css new file mode 100644 index 0000000..486add1 --- /dev/null +++ b/themes/dmagenta/css/style-dmagenta.css @@ -0,0 +1,82 @@ +body { + color: #d4d4d4; + background-color: #372d37; +} + +a, +a:hover, +a:visited { + color: #8d748d; +} + +a.back span { + background-image: url('../img/dmagenta/left.png'); +} + +a.top span { + background-image: url('../img/dmagenta/top.png'); +} + +a.fav span, +a.fav-off span:hover { + background-image: url('../img/dmagenta/star-on.png'); +} + +a.fav span:hover, +a.fav-off span { + background-image: url('../img/dmagenta/star-off.png'); +} + +a.archive span, +a.archive-off span:hover { + background-image: url('../img/dmagenta/checkmark-on.png'); +} + +a.archive span:hover, +a.archive-off span { + background-image: url('../img/dmagenta/checkmark-off.png'); +} + +a.twitter span { + background-image: url('../img/dmagenta/twitter.png'); +} + +a.flattr span { + background-image: url('../img/dmagenta/flattr.png'); +} + +a.shaarli span { + background-image: url('../img/dmagenta/shaarli.png'); +} + +a.email span { + background-image: url('../img/dmagenta/envelop.png'); +} + +a.delete span { + background-image: url('../img/dmagenta/remove.png'); +} + +a.link span { + background-image: url('../img/dmagenta/link.png'); +} + +a.bad-display span { + background-image: url('../img/dmagenta/bad-display.png'); +} + +a.reading-time span { + background-image: url('../img/dmagenta/clock.png'); +} + +.pagination a { + color: #aaa; +} + +#main #links li .current { + background-color: #2d372d; +} + +#article_toolbar { + background: #372d37; +} \ No newline at end of file diff --git a/themes/dmagenta/img/dmagenta/backtotop.png b/themes/dmagenta/img/dmagenta/backtotop.png new file mode 100755 index 0000000..051238e Binary files /dev/null and b/themes/dmagenta/img/dmagenta/backtotop.png differ diff --git a/themes/dmagenta/img/dmagenta/bad-display.png b/themes/dmagenta/img/dmagenta/bad-display.png new file mode 100755 index 0000000..6866799 Binary files /dev/null and b/themes/dmagenta/img/dmagenta/bad-display.png differ diff --git a/themes/dmagenta/img/dmagenta/checkmark-off.png b/themes/dmagenta/img/dmagenta/checkmark-off.png new file mode 100644 index 0000000..3db5a06 Binary files /dev/null and b/themes/dmagenta/img/dmagenta/checkmark-off.png differ diff --git a/themes/dmagenta/img/dmagenta/checkmark-on.png b/themes/dmagenta/img/dmagenta/checkmark-on.png new file mode 100644 index 0000000..cd3abb2 Binary files /dev/null and b/themes/dmagenta/img/dmagenta/checkmark-on.png differ diff --git a/themes/dmagenta/img/dmagenta/clock.png b/themes/dmagenta/img/dmagenta/clock.png new file mode 100755 index 0000000..6164e92 Binary files /dev/null and b/themes/dmagenta/img/dmagenta/clock.png differ diff --git a/themes/dmagenta/img/dmagenta/down.png b/themes/dmagenta/img/dmagenta/down.png new file mode 100644 index 0000000..b9d536a Binary files /dev/null and b/themes/dmagenta/img/dmagenta/down.png differ diff --git a/themes/dmagenta/img/dmagenta/envelop.png b/themes/dmagenta/img/dmagenta/envelop.png new file mode 100644 index 0000000..6be1c88 Binary files /dev/null and b/themes/dmagenta/img/dmagenta/envelop.png differ diff --git a/themes/dmagenta/img/dmagenta/flattr.png b/themes/dmagenta/img/dmagenta/flattr.png new file mode 100755 index 0000000..0404aae Binary files /dev/null and b/themes/dmagenta/img/dmagenta/flattr.png differ diff --git a/themes/dmagenta/img/dmagenta/left.png b/themes/dmagenta/img/dmagenta/left.png new file mode 100644 index 0000000..a0a5363 Binary files /dev/null and b/themes/dmagenta/img/dmagenta/left.png differ diff --git a/themes/dmagenta/img/dmagenta/link.png b/themes/dmagenta/img/dmagenta/link.png new file mode 100755 index 0000000..db62819 Binary files /dev/null and b/themes/dmagenta/img/dmagenta/link.png differ diff --git a/themes/dmagenta/img/dmagenta/remove.png b/themes/dmagenta/img/dmagenta/remove.png new file mode 100644 index 0000000..f8ad56a Binary files /dev/null and b/themes/dmagenta/img/dmagenta/remove.png differ diff --git a/themes/dmagenta/img/dmagenta/shaarli.png b/themes/dmagenta/img/dmagenta/shaarli.png new file mode 100644 index 0000000..1eb30f6 Binary files /dev/null and b/themes/dmagenta/img/dmagenta/shaarli.png differ diff --git a/themes/dmagenta/img/dmagenta/star-off.png b/themes/dmagenta/img/dmagenta/star-off.png new file mode 100644 index 0000000..6a0133a Binary files /dev/null and b/themes/dmagenta/img/dmagenta/star-off.png differ diff --git a/themes/dmagenta/img/dmagenta/star-on.png b/themes/dmagenta/img/dmagenta/star-on.png new file mode 100644 index 0000000..a9f96ea Binary files /dev/null and b/themes/dmagenta/img/dmagenta/star-on.png differ diff --git a/themes/dmagenta/img/dmagenta/top.png b/themes/dmagenta/img/dmagenta/top.png new file mode 100644 index 0000000..954a8c0 Binary files /dev/null and b/themes/dmagenta/img/dmagenta/top.png differ diff --git a/themes/dmagenta/img/dmagenta/twitter.png b/themes/dmagenta/img/dmagenta/twitter.png new file mode 100644 index 0000000..cfcfe41 Binary files /dev/null and b/themes/dmagenta/img/dmagenta/twitter.png differ diff --git a/themes/dmagenta/screenshot.jpg b/themes/dmagenta/screenshot.jpg new file mode 100644 index 0000000..ab8f1ec Binary files /dev/null and b/themes/dmagenta/screenshot.jpg differ diff --git a/themes/solarized-dark/README.md b/themes/solarized-dark/README.md new file mode 100644 index 0000000..81be1f8 --- /dev/null +++ b/themes/solarized-dark/README.md @@ -0,0 +1,6 @@ +# solarized-dark (Solarized Dark) theme + + +Theme created by NumEricR + +http://github.com/NumEricR/poche-themes diff --git a/themes/solarized-dark/Solarized-LICENSE.txt b/themes/solarized-dark/Solarized-LICENSE.txt new file mode 100644 index 0000000..a842f66 --- /dev/null +++ b/themes/solarized-dark/Solarized-LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (c) 2011 Ethan Schoonover + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE 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 0000000..5c8daa7 --- /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'); +} diff --git a/themes/solarized-dark/img/solarized-dark/backtotop.png b/themes/solarized-dark/img/solarized-dark/backtotop.png new file mode 100644 index 0000000..1501c2a Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/backtotop.png differ diff --git a/themes/solarized-dark/img/solarized-dark/bad-display.png b/themes/solarized-dark/img/solarized-dark/bad-display.png new file mode 100644 index 0000000..b2c3ca1 Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/bad-display.png differ diff --git a/themes/solarized-dark/img/solarized-dark/checkmark-off.png b/themes/solarized-dark/img/solarized-dark/checkmark-off.png new file mode 100644 index 0000000..fd7d92f Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/checkmark-off.png differ diff --git a/themes/solarized-dark/img/solarized-dark/checkmark-on.png b/themes/solarized-dark/img/solarized-dark/checkmark-on.png new file mode 100644 index 0000000..592965d Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/checkmark-on.png differ diff --git a/themes/solarized-dark/img/solarized-dark/clock.png b/themes/solarized-dark/img/solarized-dark/clock.png new file mode 100644 index 0000000..e6abbbb Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/clock.png differ diff --git a/themes/solarized-dark/img/solarized-dark/down.png b/themes/solarized-dark/img/solarized-dark/down.png new file mode 100644 index 0000000..5de3031 Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/down.png differ diff --git a/themes/solarized-dark/img/solarized-dark/envelop.png b/themes/solarized-dark/img/solarized-dark/envelop.png new file mode 100644 index 0000000..d346888 Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/envelop.png differ diff --git a/themes/solarized-dark/img/solarized-dark/flattr.png b/themes/solarized-dark/img/solarized-dark/flattr.png new file mode 100644 index 0000000..73e3f42 Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/flattr.png differ diff --git a/themes/solarized-dark/img/solarized-dark/left.png b/themes/solarized-dark/img/solarized-dark/left.png new file mode 100644 index 0000000..a953d83 Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/left.png differ diff --git a/themes/solarized-dark/img/solarized-dark/link.png b/themes/solarized-dark/img/solarized-dark/link.png new file mode 100644 index 0000000..5e859a0 Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/link.png differ diff --git a/themes/solarized-dark/img/solarized-dark/remove.png b/themes/solarized-dark/img/solarized-dark/remove.png new file mode 100644 index 0000000..66a5c1a Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/remove.png differ diff --git a/themes/solarized-dark/img/solarized-dark/shaarli.png b/themes/solarized-dark/img/solarized-dark/shaarli.png new file mode 100644 index 0000000..1eb30f6 Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/shaarli.png differ diff --git a/themes/solarized-dark/img/solarized-dark/star-off.png b/themes/solarized-dark/img/solarized-dark/star-off.png new file mode 100644 index 0000000..1c603ec Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/star-off.png differ diff --git a/themes/solarized-dark/img/solarized-dark/star-on.png b/themes/solarized-dark/img/solarized-dark/star-on.png new file mode 100644 index 0000000..bc37772 Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/star-on.png differ diff --git a/themes/solarized-dark/img/solarized-dark/top.png b/themes/solarized-dark/img/solarized-dark/top.png new file mode 100644 index 0000000..b3f44f3 Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/top.png differ diff --git a/themes/solarized-dark/img/solarized-dark/twitter.png b/themes/solarized-dark/img/solarized-dark/twitter.png new file mode 100644 index 0000000..c4a2533 Binary files /dev/null and b/themes/solarized-dark/img/solarized-dark/twitter.png differ diff --git a/themes/solarized-dark/screenshot.jpg b/themes/solarized-dark/screenshot.jpg new file mode 100644 index 0000000..2ad8794 Binary files /dev/null and b/themes/solarized-dark/screenshot.jpg differ diff --git a/themes/solarized/README.md b/themes/solarized/README.md new file mode 100644 index 0000000..255e3cd --- /dev/null +++ b/themes/solarized/README.md @@ -0,0 +1,6 @@ +# solarized (Solarized) theme + + +Theme created by NumEricR + +http://github.com/NumEricR/poche-themes diff --git a/themes/solarized/Solarized-LICENSE.txt b/themes/solarized/Solarized-LICENSE.txt new file mode 100644 index 0000000..a842f66 --- /dev/null +++ b/themes/solarized/Solarized-LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (c) 2011 Ethan Schoonover + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE diff --git a/themes/solarized/css/style-solarized.css b/themes/solarized/css/style-solarized.css new file mode 100644 index 0000000..6e73663 --- /dev/null +++ b/themes/solarized/css/style-solarized.css @@ -0,0 +1,223 @@ +/* + * Solarized - 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: #fdf6e3 base 3 + * Highlight: #eee8d5 base 2 + * Primary content: #657b83 base 00 + * Intermediate: #839496 base 0 + * Emphasized content: #586e75 base 01 + * Secondary content: #93a1a1 base 1 + * Green: #859900 + * Orange: #cb4b16 + * Red: #dc322f + * Blue: #268bd2 + * + * ================================================== */ + +/* Background */ + +body, +#article_toolbar { + background-color: #fdf6e3; +} + +/* Highlight */ +/* 2 different selectors for selection pseudo-elmt */ +/* See https://developer.mozilla.org/en-US/docs/Web/CSS/::selection */ +::-moz-selection { + background-color: #eee8d5; +} +::selection { + background-color: #eee8d5; +} + +/* Primary content */ + +body, +a, +a:hover, +a:visited { + color: #657b83; +} + +/* Secondary content */ + +.tools p, +.vieworiginal a, +.vieworiginal a:hover, +.vieworiginal a:visited { + color: #93a1a1; +} + +#main #content .entrie, +#article header, +#article article { + border-bottom-color: #93a1a1; +} + +/* Emphasized content */ + +.entrie h2 a:hover, +footer, +footer a { + color: #586e75; +} + +/* Colored content */ + +#main .messages.success, +#main .messages.warning, +#main .messages.error, +#main .messages.information, +#main .messages.info { + background-color: #eee8d5; +} + +#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: #fdf6e3; + background-color: #93a1a1; +} + +.bouton:hover { + background-color: #657b83; +} + +#login, +#password, +#password_repeat, +#bookmarklet, +.top_link { + background-color: #eee8d5; +} + +#login, +#password, +#password_repeat, +#bookmarklet { + padding: 5px; + border: 1px solid #93a1a1; + color: #657b83; +} + +#bookmarklet { + border-style: dashed; +} + +.pagination a { + border-color: #93a1a1; + color: #93a1a1; +} + +.pagination span.current { + border-color: #eee8d5; +} + +/* Images */ + +a.back span { + background-image: url('../img/solarized/left.png'); +} + +a.top span { + background-image: url('../img/solarized/top.png'); +} + +a.fav span, +a.fav-off span:hover { + background-image: url('../img/solarized/star-on.png'); +} + +a.fav span:hover, +a.fav-off span { + background-image: url('../img/solarized/star-off.png'); +} + +a.archive span, +a.archive-off span:hover { + background-image: url('../img/solarized/checkmark-on.png'); +} + +a.archive span:hover, +a.archive-off span { + background-image: url('../img/solarized/checkmark-off.png'); +} + +a.twitter span { + background-image: url('../img/solarized/twitter.png'); +} + +a.shaarli span { + background-image: url('../img/solarized/shaarli.png'); +} + +a.flattr span { + background-image: url('../img/solarized/flattr.png'); +} + +a.email span { + background-image: url('../img/solarized/envelop.png'); +} + +a.delete span { + background-image: url('../img/solarized/remove.png'); +} + +a.link span { + background-image: url('../img/solarized/link.png'); +} + +a.bad-display span { + background-image: url('../img/solarized/bad-display.png'); +} + +a.reading-time span { + background-image: url('../img/solarized/clock.png'); +} diff --git a/themes/solarized/img/solarized/backtotop.png b/themes/solarized/img/solarized/backtotop.png new file mode 100644 index 0000000..a3e5231 Binary files /dev/null and b/themes/solarized/img/solarized/backtotop.png differ diff --git a/themes/solarized/img/solarized/bad-display.png b/themes/solarized/img/solarized/bad-display.png new file mode 100644 index 0000000..ae99ab3 Binary files /dev/null and b/themes/solarized/img/solarized/bad-display.png differ diff --git a/themes/solarized/img/solarized/checkmark-off.png b/themes/solarized/img/solarized/checkmark-off.png new file mode 100644 index 0000000..20cd26b Binary files /dev/null and b/themes/solarized/img/solarized/checkmark-off.png differ diff --git a/themes/solarized/img/solarized/checkmark-on.png b/themes/solarized/img/solarized/checkmark-on.png new file mode 100644 index 0000000..87a2b79 Binary files /dev/null and b/themes/solarized/img/solarized/checkmark-on.png differ diff --git a/themes/solarized/img/solarized/clock.png b/themes/solarized/img/solarized/clock.png new file mode 100644 index 0000000..f7dabfc Binary files /dev/null and b/themes/solarized/img/solarized/clock.png differ diff --git a/themes/solarized/img/solarized/down.png b/themes/solarized/img/solarized/down.png new file mode 100644 index 0000000..622ff87 Binary files /dev/null and b/themes/solarized/img/solarized/down.png differ diff --git a/themes/solarized/img/solarized/envelop.png b/themes/solarized/img/solarized/envelop.png new file mode 100644 index 0000000..1caf7d4 Binary files /dev/null and b/themes/solarized/img/solarized/envelop.png differ diff --git a/themes/solarized/img/solarized/flattr.png b/themes/solarized/img/solarized/flattr.png new file mode 100644 index 0000000..18e00f8 Binary files /dev/null and b/themes/solarized/img/solarized/flattr.png differ diff --git a/themes/solarized/img/solarized/left.png b/themes/solarized/img/solarized/left.png new file mode 100644 index 0000000..9780fae Binary files /dev/null and b/themes/solarized/img/solarized/left.png differ diff --git a/themes/solarized/img/solarized/link.png b/themes/solarized/img/solarized/link.png new file mode 100644 index 0000000..d0e1286 Binary files /dev/null and b/themes/solarized/img/solarized/link.png differ diff --git a/themes/solarized/img/solarized/remove.png b/themes/solarized/img/solarized/remove.png new file mode 100644 index 0000000..d5113d1 Binary files /dev/null and b/themes/solarized/img/solarized/remove.png differ diff --git a/themes/solarized/img/solarized/shaarli.png b/themes/solarized/img/solarized/shaarli.png new file mode 100644 index 0000000..1eb30f6 Binary files /dev/null and b/themes/solarized/img/solarized/shaarli.png differ diff --git a/themes/solarized/img/solarized/star-off.png b/themes/solarized/img/solarized/star-off.png new file mode 100644 index 0000000..afd7d80 Binary files /dev/null and b/themes/solarized/img/solarized/star-off.png differ diff --git a/themes/solarized/img/solarized/star-on.png b/themes/solarized/img/solarized/star-on.png new file mode 100644 index 0000000..3a77251 Binary files /dev/null and b/themes/solarized/img/solarized/star-on.png differ diff --git a/themes/solarized/img/solarized/top.png b/themes/solarized/img/solarized/top.png new file mode 100644 index 0000000..d20001a Binary files /dev/null and b/themes/solarized/img/solarized/top.png differ diff --git a/themes/solarized/img/solarized/twitter.png b/themes/solarized/img/solarized/twitter.png new file mode 100644 index 0000000..109d715 Binary files /dev/null and b/themes/solarized/img/solarized/twitter.png differ diff --git a/themes/solarized/screenshot.jpg b/themes/solarized/screenshot.jpg new file mode 100644 index 0000000..07d402e Binary files /dev/null and b/themes/solarized/screenshot.jpg differ