Skip to content

Commit 04ce457

Browse files
committed
release(logcat): v0.6.3
1 parent e6cce6b commit 04ce457

File tree

3 files changed

+52
-84
lines changed

3 files changed

+52
-84
lines changed

index.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
"logcat": {
184184
"react": true,
185185
"dependencies": ["virtual-list"],
186-
"version": "0.6.2",
186+
"version": "0.6.3",
187187
"style": true,
188188
"icon": false,
189189
"test": true,
@@ -272,7 +272,7 @@
272272
},
273273
"notification": {
274274
"icon": true,
275-
"version": "0.3.2",
275+
"version": "0.3.3",
276276
"style": true,
277277
"test": true,
278278
"install": false,

src/logcat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "logcat",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "Android logcat viewer",
55
"luna": {
66
"react": true,

src/logcat/style.scss

+49-81
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1-
@use '../share/mixin' as mixin;
1+
@use '../share/mixin' as *;
2+
@use '../share/theme' as *;
23
@use '../share/theme' as theme;
34
@use 'sass:meta';
45
@use 'sass:map';
56

67
.luna-logcat {
78
unicode-bidi: embed;
89
position: relative;
9-
line-height: #{theme.$line-height-l-g}em;
10-
border: 1px solid theme.$color-border;
10+
line-height: #{$line-height-l-g}em;
11+
border: 1px solid;
1112
white-space: pre;
1213
overflow: hidden;
13-
@include mixin.component();
14+
@include component();
1415
& {
1516
user-select: text;
16-
font-family: theme.$font-family-code;
17+
font-family: $font-family-code;
1718
}
1819
&.wrap-long-lines {
1920
white-space: pre-wrap;
@@ -25,8 +26,8 @@
2526
}
2627

2728
.entry {
28-
padding-left: #{theme.$padding-x-x-s}px;
29-
font-size: #{theme.$font-size-s-m}px;
29+
padding-left: #{$padding-x-x-s}px;
30+
font-size: #{$font-size-s-m}px;
3031
}
3132

3233
.date,
@@ -48,7 +49,7 @@
4849
}
4950

5051
.date {
51-
margin-right: #{theme.$margin-x-x-s}px;
52+
margin-right: #{$margin-x-x-s}px;
5253
}
5354

5455
.pid {
@@ -64,89 +65,56 @@
6465
}
6566

6667
.priority {
67-
padding: 0 #{theme.$padding-x-s}px;
68+
padding: 0 #{$padding-x-s}px;
6869
}
6970

70-
.W {
71-
.priority {
72-
background: theme.$color-warning-text;
73-
}
74-
.message {
75-
color: theme.$color-warning-text;
76-
}
77-
}
78-
79-
.E {
80-
.priority {
81-
background: theme.$color-error-text;
82-
}
83-
.message {
84-
color: theme.$color-error-text;
85-
}
86-
}
87-
88-
.D {
89-
.priority {
90-
background: theme.$color-success-text;
91-
}
92-
}
93-
94-
.I {
95-
.priority {
96-
background: theme.$color-info-text;
97-
}
98-
}
99-
100-
$colors: 'blue', 'purple', 'cyan', 'green', 'magenta', 'pink', 'red', 'orange',
101-
'yellow', 'volcano', 'geekblue', 'gold', 'lime';
102-
103-
$variables: meta.module-variables(theme);
104-
@each $color in $colors {
105-
@for $i from 6 through 10 {
106-
.color-#{$color}-#{$i} {
107-
$variable-name: #{$color}-#{$i};
108-
color: map.get($variables, $variable-name);
109-
}
110-
}
111-
}
112-
113-
.theme-dark {
114-
border-color: theme.$color-border-dark;
115-
.W {
116-
.priority {
117-
background: theme.$color-warning-text-dark;
118-
}
119-
.message {
120-
color: theme.$color-warning-text-dark;
71+
@each $theme in ('light', 'dark') {
72+
.theme-#{$theme} {
73+
@include theme-var(border-color, color-border, $theme);
74+
.W {
75+
.priority {
76+
@include theme-var(background-color, color-warning-text, $theme);
77+
}
78+
.message {
79+
@include theme-var(color, color-warning-text, $theme);
80+
}
12181
}
122-
}
12382

124-
.E {
125-
.priority {
126-
background: theme.$color-error-text-dark;
127-
}
128-
.message {
129-
color: theme.$color-error-text-dark;
83+
.E {
84+
.priority {
85+
@include theme-var(background-color, color-error-text, $theme);
86+
}
87+
.message {
88+
@include theme-var(color, color-error-text, $theme);
89+
}
13090
}
131-
}
13291

133-
.D {
134-
.priority {
135-
background: theme.$color-success-text-dark;
92+
.D {
93+
.priority {
94+
@include theme-var(background-color, color-success-text, $theme);
95+
}
13696
}
137-
}
13897

139-
.I {
140-
.priority {
141-
background: theme.$color-info-text-dark;
98+
.I {
99+
.priority {
100+
@include theme-var(background-color, color-info-text, $theme);
101+
}
142102
}
143-
}
144103

145-
@each $color in $colors {
146-
@for $i from 6 through 10 {
147-
.color-#{$color}-#{$i} {
148-
$variable-name: #{$color}-#{$i}-dark;
149-
color: map.get($variables, $variable-name);
104+
$colors: 'blue', 'purple', 'cyan', 'green', 'magenta', 'pink', 'red',
105+
'orange', 'yellow', 'volcano', 'geekblue', 'gold', 'lime';
106+
107+
$theme-variables: meta.module-variables(theme);
108+
@each $color in $colors {
109+
@for $i from 6 through 10 {
110+
.color-#{$color}-#{$i} {
111+
$variable-name: if(
112+
$theme == 'dark',
113+
#{$color}-#{$i}-dark,
114+
#{$color}-#{$i}
115+
);
116+
color: map.get($theme-variables, $variable-name);
117+
}
150118
}
151119
}
152120
}

0 commit comments

Comments
 (0)