Skip to content

Commit b6ded5f

Browse files
authored
Remove unused CSS selectors. (#181)
1 parent 63d0ad7 commit b6ded5f

File tree

8 files changed

+0
-147
lines changed

8 files changed

+0
-147
lines changed

src/lib/chat/MatrixTimeline.svelte

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,6 @@
177177
<style lang="scss">
178178
$border-radius: 16px;
179179
180-
h2 {
181-
height: min-content;
182-
}
183180
184181
.input {
185182
border: 1px solid var(--md-sys-color-outline);
@@ -223,21 +220,6 @@
223220
width: 100%;
224221
}
225222
226-
.back-to-present {
227-
position: fixed;
228-
bottom: 0;
229-
}
230-
231-
.scroll-controls {
232-
position: sticky;
233-
bottom: 0;
234-
min-height: 16px;
235-
background: linear-gradient(
236-
to bottom,
237-
transparent,
238-
var(--md-sys-color-background)
239-
);
240-
}
241223
242224
section {
243225
display: flex;

src/lib/components/Action.svelte

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,6 @@
8484
border-right-width: 3px;
8585
}
8686
87-
.dynamic {
88-
padding: 4px;
89-
border-radius: 1px;
90-
min-width: 8px;
91-
background: var(--md-sys-color-surface-variant);
92-
93-
&.inline {
94-
padding: 0px;
95-
}
96-
}
9787
9888
.inline-kbd {
9989
margin-inline-end: 2px;

src/routes/(app)/Footer.svelte

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,6 @@
173173
</footer>
174174

175175
<style lang="scss">
176-
select {
177-
position: absolute;
178-
opacity: 0;
179-
}
180176
181177
.sync-box {
182178
display: flex;

src/routes/(app)/ccos/[device]/[version]/+page.svelte

Lines changed: 0 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -317,11 +317,6 @@
317317
</div>
318318

319319
<style lang="scss">
320-
h2 > em {
321-
font-style: normal;
322-
transition: color 200ms ease;
323-
}
324-
325320
h3 {
326321
margin-block-start: 4em;
327322
}
@@ -452,58 +447,12 @@
452447
}
453448
}
454449
455-
hr {
456-
color: var(--md-sys-color-outline);
457-
margin-block: 3em;
458-
margin-inline: 5em;
459-
border-style: dashed;
460-
}
461-
462-
.files {
463-
list-style: none;
464-
display: flex;
465-
padding: 0;
466-
gap: 8px;
467-
}
468-
469-
a[download] {
470-
display: grid;
471-
grid-template-columns: 1fr auto;
472-
grid-template-rows: 1fr;
473-
border: 1px solid var(--md-sys-color-outline);
474-
border-radius: 8px;
475-
font-size: 0.9em;
476-
height: auto;
477-
478-
.size {
479-
font-size: 0.8em;
480-
opacity: 0.8;
481-
}
482-
483-
.icon {
484-
padding-inline-start: 0.4em;
485-
grid-column: 2;
486-
grid-row: 1 / span 2;
487-
}
488-
}
489450
490451
.version {
491452
color: var(--md-sys-color-secondary);
492453
}
493454
494-
.device {
495-
opacity: 0.6;
496-
}
497455
498-
.inline-link {
499-
display: inline;
500-
padding: 0;
501-
}
502-
503-
.correct-device {
504-
color: var(--md-sys-color-primary);
505-
opacity: 1;
506-
}
507456
508457
.incorrect-device {
509458
color: var(--md-sys-color-error);

src/routes/(app)/chat/+page.svelte

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,6 @@
165165
}
166166
}
167167
168-
.room {
169-
display: flex;
170-
flex-direction: column;
171-
flex-grow: 1;
172-
}
173168
174169
.timeline {
175170
flex-grow: 1;

src/routes/(app)/config/Navigation.svelte

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -45,31 +45,6 @@
4545
padding-inline: 16px;
4646
}
4747
48-
@keyframes syncing {
49-
0% {
50-
transform: rotate(0deg);
51-
}
52-
100% {
53-
transform: rotate(360deg);
54-
}
55-
}
56-
57-
.syncing {
58-
transform-origin: 50% 49%;
59-
animation: syncing 1s linear infinite;
60-
}
61-
62-
.title {
63-
display: flex;
64-
align-items: center;
65-
66-
margin-block: 0;
67-
68-
font-size: 1.5rem;
69-
font-weight: bold;
70-
color: var(--md-sys-color-primary);
71-
text-decoration: none;
72-
}
7348
7449
.icon {
7550
cursor: pointer;
@@ -91,11 +66,6 @@
9166
border-radius: 50%;
9267
9368
transition: all 250ms ease;
94-
95-
&.error {
96-
color: var(--md-sys-color-on-error);
97-
background: var(--md-sys-color-error);
98-
}
9969
}
10070
10171
.actions {

src/routes/(app)/config/settings/+page.svelte

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -221,20 +221,6 @@
221221
222222
font-size: 14px;
223223
224-
> input[type="number"] {
225-
border-radius: 16px 4px 4px 16px;
226-
height: 24px;
227-
text-align: center;
228-
229-
&:last-child:not(:only-child) {
230-
border-radius: 4px 16px 16px 4px;
231-
}
232-
233-
&:only-child {
234-
border-radius: 16px;
235-
}
236-
}
237-
238224
&:has(input[type="number"]) {
239225
cursor: text;
240226
@@ -287,16 +273,6 @@
287273
outline: none;
288274
}
289275
}
290-
291-
ul,
292-
p {
293-
font-size: 10px;
294-
295-
:global(kbd) {
296-
font-size: 12px;
297-
height: 18px;
298-
}
299-
}
300276
}
301277
302278
// stylelint-disable-next-line

src/routes/(app)/learn/layout/+page.svelte

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,6 @@
114114
font-size: 24px;
115115
}
116116
117-
.input {
118-
width: 100%;
119-
height: 100px;
120-
border: 1px solid black;
121-
}
122117
123118
section {
124119
display: flex;

0 commit comments

Comments
 (0)