Skip to content

Commit ea361e5

Browse files
authoredOct 19, 2021
Website: Repositioned theme selector (#3146)
1 parent ccc02a5 commit ea361e5

File tree

3 files changed

+83
-40
lines changed

3 files changed

+83
-40
lines changed
 

‎assets/code.js

-23
Original file line numberDiff line numberDiff line change
@@ -244,27 +244,4 @@ var setTheme;
244244

245245
$$('.plugin-list').forEach(listPlugins);
246246

247-
// small polyfill for Element#matches
248-
if (!Element.prototype.matches) {
249-
Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
250-
}
251-
252-
Prism && Prism.hooks.add('complete', function (env) {
253-
var element = env.element;
254-
255-
requestAnimationFrame(function () {
256-
if (!element.matches('div.code-toolbar > pre > code')) {
257-
return;
258-
}
259-
260-
var pre = element.parentElement;
261-
var wrapper = pre.parentElement;
262-
263-
// transfer margin of pre to wrapper
264-
wrapper.style.margin = window.getComputedStyle(pre).margin;
265-
pre.style.margin = '0';
266-
267-
});
268-
});
269-
270247
}());

‎assets/style.css

+83-13
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ footer:before {
188188
}
189189

190190
#features {
191-
width: 66em;
192191
margin-top: 2em;
193192
font-size: 80%;
194193
}
@@ -197,12 +196,16 @@ footer:before {
197196
margin: 0 0 2em 0;
198197
list-style: none;
199198
display: inline-block;
200-
width: 27em;
199+
width: 49%;
200+
box-sizing: border-box;
201201
vertical-align: top;
202202
}
203203

204204
#features li:nth-child(odd) {
205-
margin-right: 5em;
205+
padding-right: 2.5em;
206+
}
207+
#features li:nth-child(even) {
208+
padding-left: 2.5em;
206209
}
207210

208211
#features li:before {
@@ -229,7 +232,7 @@ footer:before {
229232
position: relative;
230233
z-index: 1;
231234
float: right;
232-
margin-right: -1em;
235+
margin-right: -9em;
233236
text-align: center;
234237
text-transform: uppercase;
235238
letter-spacing: .2em;
@@ -277,13 +280,89 @@ footer:before {
277280

278281
#theme > input {
279282
position: absolute;
283+
left: 0;
280284
clip: rect(0,0,0,0);
281285
}
282286

283287
#theme > input:checked + label {
284288
background: #7fab14;
285289
}
286290

291+
@media (max-width: 1300px) and (min-width: 1051px) {
292+
#theme {
293+
position: relative;
294+
z-index: 1;
295+
float: left;
296+
margin: 1em 0;
297+
width: 100%;
298+
}
299+
#theme + * {
300+
clear: both;
301+
}
302+
303+
#theme > p {
304+
margin-top: .5em;
305+
}
306+
307+
#theme > label {
308+
float: left;
309+
font-size: 82.6%;
310+
}
311+
312+
#theme > label:before {
313+
display: none;
314+
}
315+
316+
#theme > label:nth-of-type(n+2) {
317+
margin-top: 0;
318+
}
319+
}
320+
321+
@media (max-width: 1050px) {
322+
#theme {
323+
position: relative;
324+
z-index: 1;
325+
float: left;
326+
margin: 1em 0;
327+
}
328+
#theme + * {
329+
clear: both;
330+
}
331+
332+
#theme > p {
333+
left: inherit;
334+
right: -1em;
335+
}
336+
337+
#theme > label {
338+
float: left;
339+
}
340+
341+
#theme > label:before {
342+
display: none;
343+
}
344+
345+
#theme > label:nth-of-type(n+2) {
346+
margin-top: 0;
347+
}
348+
#theme > label:nth-of-type(n+5) {
349+
margin-top: -2.5em;
350+
}
351+
#theme > label:nth-of-type(4n+1) {
352+
margin-left: 12.5em;
353+
}
354+
}
355+
356+
@media (max-width: 800px) {
357+
#theme > label:nth-of-type(4) {
358+
margin-right: 4em;
359+
}
360+
#theme > label:nth-of-type(4n+1) {
361+
margin-left: 4em;
362+
}
363+
}
364+
365+
287366
footer {
288367
margin-top: 2em;
289368
background-position: bottom;
@@ -435,12 +514,3 @@ ul.plugin-list {
435514
ul.plugin-list > li > div {
436515
margin-bottom: .5em;
437516
}
438-
439-
/*
440-
* Fix for Toolbar's overflow issue
441-
*/
442-
443-
div.code-toolbar {
444-
display: block;
445-
overflow: auto;
446-
}

‎test.html

-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
<link rel="stylesheet" href="assets/style.css" />
99
<link rel="stylesheet" href="themes/prism.css" data-noprefix />
1010
<style>
11-
#theme {
12-
margin-right: -9em;
13-
}
14-
1511
textarea {
1612
width: 100%;
1713
height: 10em;

0 commit comments

Comments
 (0)
Please sign in to comment.