diff options
Diffstat (limited to 'themes/solarized')
21 files changed, 0 insertions, 259 deletions
diff --git a/themes/solarized/README.md b/themes/solarized/README.md deleted file mode 100644 index 255e3cdd..00000000 --- a/themes/solarized/README.md +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | # solarized (Solarized) theme | ||
2 | |||
3 | |||
4 | Theme created by NumEricR | ||
5 | |||
6 | http://github.com/NumEricR/poche-themes | ||
diff --git a/themes/solarized/Solarized-LICENSE.txt b/themes/solarized/Solarized-LICENSE.txt deleted file mode 100644 index a842f663..00000000 --- a/themes/solarized/Solarized-LICENSE.txt +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | Copyright (c) 2011 Ethan Schoonover | ||
2 | |||
3 | Permission is hereby granted, free of charge, to any person obtaining a copy | ||
4 | of this software and associated documentation files (the "Software"), to deal | ||
5 | in the Software without restriction, including without limitation the rights | ||
6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
7 | copies of the Software, and to permit persons to whom the Software is | ||
8 | furnished to do so, subject to the following conditions: | ||
9 | |||
10 | The above copyright notice and this permission notice shall be included in | ||
11 | all copies or substantial portions of the Software. | ||
12 | |||
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
19 | THE SOFTWARE | ||
diff --git a/themes/solarized/public/css/style-solarized.css b/themes/solarized/public/css/style-solarized.css deleted file mode 100644 index cf16338f..00000000 --- a/themes/solarized/public/css/style-solarized.css +++ /dev/null | |||
@@ -1,232 +0,0 @@ | |||
1 | /* | ||
2 | * Solarized - by NumEricR | ||
3 | * http://github.com/NumEricR/poche-themes | ||
4 | * ================================================== | ||
5 | * | ||
6 | * Based on Solarized's palette - (c) 2011 Ethan Schoonover | ||
7 | * See http://ethanschoonover.com/solarized#usage-development | ||
8 | * See http://ethanschoonover.com/solarized#the-values | ||
9 | * | ||
10 | * Background: #fdf6e3 base 3 | ||
11 | * Highlight: #eee8d5 base 2 | ||
12 | * Primary content: #657b83 base 00 | ||
13 | * Intermediate: #839496 base 0 | ||
14 | * Emphasized content: #586e75 base 01 | ||
15 | * Secondary content: #93a1a1 base 1 | ||
16 | * Green: #859900 | ||
17 | * Orange: #cb4b16 | ||
18 | * Red: #dc322f | ||
19 | * Blue: #268bd2 | ||
20 | * | ||
21 | * ================================================== */ | ||
22 | |||
23 | /* Background */ | ||
24 | |||
25 | body, | ||
26 | #article_toolbar { | ||
27 | background-color: #fdf6e3; | ||
28 | } | ||
29 | |||
30 | /* Highlight */ | ||
31 | /* 2 different selectors for selection pseudo-elmt */ | ||
32 | /* See https://developer.mozilla.org/en-US/docs/Web/CSS/::selection */ | ||
33 | ::-moz-selection { | ||
34 | background-color: #eee8d5; | ||
35 | } | ||
36 | ::selection { | ||
37 | background-color: #eee8d5; | ||
38 | } | ||
39 | |||
40 | /* Primary content */ | ||
41 | |||
42 | body, | ||
43 | a, | ||
44 | a:hover, | ||
45 | a:visited, | ||
46 | td { | ||
47 | color: #657b83; | ||
48 | } | ||
49 | |||
50 | /* Secondary content */ | ||
51 | |||
52 | .tools p, | ||
53 | .vieworiginal a, | ||
54 | .vieworiginal a:hover, | ||
55 | .vieworiginal a:visited { | ||
56 | color: #93a1a1; | ||
57 | } | ||
58 | |||
59 | #main #content .entrie, | ||
60 | #article header, | ||
61 | #article article { | ||
62 | border-bottom-color: #93a1a1; | ||
63 | } | ||
64 | |||
65 | /* Emphasized content */ | ||
66 | |||
67 | .entrie h2 a:hover, | ||
68 | footer, | ||
69 | footer a { | ||
70 | color: #586e75; | ||
71 | } | ||
72 | |||
73 | /* Colored content */ | ||
74 | |||
75 | #main .messages.success, | ||
76 | #main .messages.warning, | ||
77 | #main .messages.error, | ||
78 | #main .messages.information, | ||
79 | #main .messages.info { | ||
80 | background-color: #eee8d5; | ||
81 | } | ||
82 | |||
83 | #main .messages.success { | ||
84 | border-color: #859900; | ||
85 | } | ||
86 | |||
87 | #main .messages.success p { | ||
88 | color: #859900 !important; /* Overwrites !important used on messages.css */ | ||
89 | } | ||
90 | |||
91 | #main .messages.warning { | ||
92 | border-color: #cb4b16; | ||
93 | } | ||
94 | |||
95 | #main .messages.warning p { | ||
96 | color: #cb4b16; | ||
97 | } | ||
98 | |||
99 | #main .messages.error { | ||
100 | border-color: #dc322f; | ||
101 | } | ||
102 | |||
103 | #main .messages.error p { | ||
104 | color: #dc322f !important; /* Overwrites !important used on messages.css */ | ||
105 | } | ||
106 | |||
107 | #main .messages.information, | ||
108 | #main .messages.info { | ||
109 | border-color: #268bd2; | ||
110 | } | ||
111 | |||
112 | #main .messages.information p, | ||
113 | #main .messages.info p { | ||
114 | color: #268bd2; | ||
115 | } | ||
116 | |||
117 | /* Miscellaneous */ | ||
118 | |||
119 | .bouton, | ||
120 | .bouton:hover, | ||
121 | #main #links li a.current, | ||
122 | #links a:hover, | ||
123 | .pagination span.current, | ||
124 | .pagination a:hover, | ||
125 | .pagination a:active { | ||
126 | color: #fdf6e3; | ||
127 | background-color: #93a1a1; | ||
128 | } | ||
129 | |||
130 | .bouton:hover { | ||
131 | background-color: #657b83; | ||
132 | } | ||
133 | |||
134 | #login, | ||
135 | #password, | ||
136 | #password_repeat, | ||
137 | #bookmarklet, | ||
138 | .top_link { | ||
139 | background-color: #eee8d5; | ||
140 | } | ||
141 | |||
142 | #login, | ||
143 | #password, | ||
144 | #password_repeat, | ||
145 | #bookmarklet { | ||
146 | padding: 5px; | ||
147 | border: 1px solid #93a1a1; | ||
148 | color: #657b83; | ||
149 | } | ||
150 | |||
151 | #bookmarklet { | ||
152 | border-style: dashed; | ||
153 | } | ||
154 | |||
155 | .pagination a { | ||
156 | border-color: #93a1a1; | ||
157 | color: #93a1a1; | ||
158 | } | ||
159 | |||
160 | .pagination span.current { | ||
161 | border-color: #eee8d5; | ||
162 | } | ||
163 | |||
164 | /* Images */ | ||
165 | |||
166 | a.back span { | ||
167 | background-image: url('../img/solarized/left.png'); | ||
168 | } | ||
169 | |||
170 | a.top span { | ||
171 | background-image: url('../img/solarized/top.png'); | ||
172 | } | ||
173 | |||
174 | a.fav span, | ||
175 | a.fav-off span:hover { | ||
176 | background-image: url('../img/solarized/star-on.png'); | ||
177 | } | ||
178 | |||
179 | a.fav span:hover, | ||
180 | a.fav-off span { | ||
181 | background-image: url('../img/solarized/star-off.png'); | ||
182 | } | ||
183 | |||
184 | a.archive span, | ||
185 | a.archive-off span:hover { | ||
186 | background-image: url('../img/solarized/checkmark-on.png'); | ||
187 | } | ||
188 | |||
189 | a.archive span:hover, | ||
190 | a.archive-off span { | ||
191 | background-image: url('../img/solarized/checkmark-off.png'); | ||
192 | } | ||
193 | |||
194 | a.twitter span { | ||
195 | background-image: url('../img/solarized/twitter.png'); | ||
196 | } | ||
197 | |||
198 | a.shaarli span { | ||
199 | background-image: url('../img/solarized/shaarli.png'); | ||
200 | } | ||
201 | |||
202 | a.flattr span { | ||
203 | background-image: url('../img/solarized/flattr.png'); | ||
204 | } | ||
205 | |||
206 | a.email span { | ||
207 | background-image: url('../img/solarized/envelop.png'); | ||
208 | } | ||
209 | |||
210 | a.delete span { | ||
211 | background-image: url('../img/solarized/remove.png'); | ||
212 | } | ||
213 | |||
214 | a.link span { | ||
215 | background-image: url('../img/solarized/link.png'); | ||
216 | } | ||
217 | |||
218 | a.bad-display span { | ||
219 | background-image: url('../img/solarized/bad-display.png'); | ||
220 | } | ||
221 | |||
222 | .arrow-down { | ||
223 | width: 0px; | ||
224 | height: 0px; | ||
225 | border-style: solid; | ||
226 | border-width: 10px 10px 0 10px; | ||
227 | border-color: #93A1A1 transparent transparent transparent; | ||
228 | |||
229 | position: absolute; | ||
230 | margin-top: 1.5em; | ||
231 | margin-left: -30px; | ||
232 | } \ No newline at end of file | ||
diff --git a/themes/solarized/public/img/solarized/backtotop.png b/themes/solarized/public/img/solarized/backtotop.png deleted file mode 100644 index a3e52318..00000000 --- a/themes/solarized/public/img/solarized/backtotop.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/bad-display.png b/themes/solarized/public/img/solarized/bad-display.png deleted file mode 100644 index ae99ab37..00000000 --- a/themes/solarized/public/img/solarized/bad-display.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/checkmark-off.png b/themes/solarized/public/img/solarized/checkmark-off.png deleted file mode 100644 index 20cd26b3..00000000 --- a/themes/solarized/public/img/solarized/checkmark-off.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/checkmark-on.png b/themes/solarized/public/img/solarized/checkmark-on.png deleted file mode 100644 index 87a2b799..00000000 --- a/themes/solarized/public/img/solarized/checkmark-on.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/down.png b/themes/solarized/public/img/solarized/down.png deleted file mode 100644 index 622ff87b..00000000 --- a/themes/solarized/public/img/solarized/down.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/envelop.png b/themes/solarized/public/img/solarized/envelop.png deleted file mode 100644 index 1caf7d43..00000000 --- a/themes/solarized/public/img/solarized/envelop.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/flattr.png b/themes/solarized/public/img/solarized/flattr.png deleted file mode 100644 index 18e00f86..00000000 --- a/themes/solarized/public/img/solarized/flattr.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/left.png b/themes/solarized/public/img/solarized/left.png deleted file mode 100644 index 9780faee..00000000 --- a/themes/solarized/public/img/solarized/left.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/link.png b/themes/solarized/public/img/solarized/link.png deleted file mode 100644 index d0e12862..00000000 --- a/themes/solarized/public/img/solarized/link.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/remove.png b/themes/solarized/public/img/solarized/remove.png deleted file mode 100644 index d5113d17..00000000 --- a/themes/solarized/public/img/solarized/remove.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/rss.png b/themes/solarized/public/img/solarized/rss.png deleted file mode 100644 index 21bad1a1..00000000 --- a/themes/solarized/public/img/solarized/rss.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/shaarli.png b/themes/solarized/public/img/solarized/shaarli.png deleted file mode 100644 index 1eb30f60..00000000 --- a/themes/solarized/public/img/solarized/shaarli.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/star-off.png b/themes/solarized/public/img/solarized/star-off.png deleted file mode 100644 index afd7d80c..00000000 --- a/themes/solarized/public/img/solarized/star-off.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/star-on.png b/themes/solarized/public/img/solarized/star-on.png deleted file mode 100644 index 3a772512..00000000 --- a/themes/solarized/public/img/solarized/star-on.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/top.png b/themes/solarized/public/img/solarized/top.png deleted file mode 100644 index d20001a4..00000000 --- a/themes/solarized/public/img/solarized/top.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/public/img/solarized/twitter.png b/themes/solarized/public/img/solarized/twitter.png deleted file mode 100644 index 109d7151..00000000 --- a/themes/solarized/public/img/solarized/twitter.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/screenshot.jpg b/themes/solarized/screenshot.jpg deleted file mode 100644 index 07d402e3..00000000 --- a/themes/solarized/screenshot.jpg +++ /dev/null | |||
Binary files differ | |||
diff --git a/themes/solarized/theme.ini b/themes/solarized/theme.ini deleted file mode 100644 index 703997b9..00000000 --- a/themes/solarized/theme.ini +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | name = Solarized | ||
2 | requirements[] = default | ||