@pingux/astro 2.151.2-alpha.1 → 2.151.2-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.d.ts +3 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.js +3 -1
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +20 -0
- package/lib/cjs/styles/themes/next-gen/variants/links.d.ts +20 -0
- package/lib/cjs/styles/themes/next-gen/variants/links.js +19 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/links.js +3 -1
- package/lib/styles/themes/next-gen/variants/links.js +19 -0
- package/package.json +1 -1
|
@@ -3,13 +3,15 @@ declare const _default: {
|
|
|
3
3
|
color: string;
|
|
4
4
|
'&.is-hovered': {
|
|
5
5
|
textDecoration: string;
|
|
6
|
+
textDecorationColor: string;
|
|
6
7
|
color: string;
|
|
7
8
|
};
|
|
8
9
|
'&.is-pressed': {
|
|
9
10
|
color: string;
|
|
11
|
+
textDecorationColor: string;
|
|
10
12
|
textDecoration: string;
|
|
11
13
|
};
|
|
12
|
-
'
|
|
14
|
+
'&:visited': {
|
|
13
15
|
color: string;
|
|
14
16
|
};
|
|
15
17
|
};
|
|
@@ -51,13 +51,15 @@ var app = {
|
|
|
51
51
|
color: 'blue-400',
|
|
52
52
|
'&.is-hovered': {
|
|
53
53
|
textDecoration: 'underline',
|
|
54
|
+
textDecorationColor: 'blue-300',
|
|
54
55
|
color: 'blue-300'
|
|
55
56
|
},
|
|
56
57
|
'&.is-pressed': {
|
|
57
58
|
color: 'blue-300',
|
|
59
|
+
textDecorationColor: 'blue-300',
|
|
58
60
|
textDecoration: 'underline'
|
|
59
61
|
},
|
|
60
|
-
'
|
|
62
|
+
'&:visited': {
|
|
61
63
|
color: 'purple-100'
|
|
62
64
|
}
|
|
63
65
|
};
|
|
@@ -3144,6 +3144,26 @@ declare const _default: {
|
|
|
3144
3144
|
xx: string;
|
|
3145
3145
|
};
|
|
3146
3146
|
links: {
|
|
3147
|
+
app: {
|
|
3148
|
+
lineHeight: string;
|
|
3149
|
+
'&.is-hovered': {
|
|
3150
|
+
color: string;
|
|
3151
|
+
textDecorationColor: string;
|
|
3152
|
+
};
|
|
3153
|
+
'&.is-focused': {
|
|
3154
|
+
borderRadius: string;
|
|
3155
|
+
outline: string;
|
|
3156
|
+
outlineColor: string;
|
|
3157
|
+
};
|
|
3158
|
+
'&.is-pressed': {
|
|
3159
|
+
color: string;
|
|
3160
|
+
textDecorationColor: string;
|
|
3161
|
+
};
|
|
3162
|
+
'&:visited': {
|
|
3163
|
+
color: string;
|
|
3164
|
+
textDecoration: string;
|
|
3165
|
+
};
|
|
3166
|
+
};
|
|
3147
3167
|
nextGen: {
|
|
3148
3168
|
color: string;
|
|
3149
3169
|
fontSize: string;
|
|
@@ -1,4 +1,24 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
+
app: {
|
|
3
|
+
lineHeight: string;
|
|
4
|
+
'&.is-hovered': {
|
|
5
|
+
color: string;
|
|
6
|
+
textDecorationColor: string;
|
|
7
|
+
};
|
|
8
|
+
'&.is-focused': {
|
|
9
|
+
borderRadius: string;
|
|
10
|
+
outline: string;
|
|
11
|
+
outlineColor: string;
|
|
12
|
+
};
|
|
13
|
+
'&.is-pressed': {
|
|
14
|
+
color: string;
|
|
15
|
+
textDecorationColor: string;
|
|
16
|
+
};
|
|
17
|
+
'&:visited': {
|
|
18
|
+
color: string;
|
|
19
|
+
textDecoration: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
2
22
|
nextGen: {
|
|
3
23
|
color: string;
|
|
4
24
|
fontSize: string;
|
|
@@ -25,6 +25,24 @@ var navBarFocus = {
|
|
|
25
25
|
outline: '2px solid',
|
|
26
26
|
outlineColor: 'active'
|
|
27
27
|
};
|
|
28
|
+
var app = {
|
|
29
|
+
lineHeight: '160%',
|
|
30
|
+
'&.is-hovered': {
|
|
31
|
+
color: 'blue-600',
|
|
32
|
+
textDecorationColor: 'blue-600'
|
|
33
|
+
},
|
|
34
|
+
'&.is-focused': _objectSpread(_objectSpread({}, navBarFocus), {}, {
|
|
35
|
+
borderRadius: '2px'
|
|
36
|
+
}),
|
|
37
|
+
'&.is-pressed': {
|
|
38
|
+
color: 'blue-600',
|
|
39
|
+
textDecorationColor: 'blue-600'
|
|
40
|
+
},
|
|
41
|
+
'&:visited': {
|
|
42
|
+
color: 'purple-700',
|
|
43
|
+
textDecoration: 'underline'
|
|
44
|
+
}
|
|
45
|
+
};
|
|
28
46
|
var nextGen = {
|
|
29
47
|
color: 'gray-800',
|
|
30
48
|
fontSize: 'md',
|
|
@@ -93,6 +111,7 @@ var footerEALink = {
|
|
|
93
111
|
'&.is-focused': _objectSpread({}, _button.defaultFocus)
|
|
94
112
|
};
|
|
95
113
|
var _default = {
|
|
114
|
+
app: app,
|
|
96
115
|
nextGen: nextGen,
|
|
97
116
|
onyx: onyx,
|
|
98
117
|
sideNav: sideNav,
|
|
@@ -44,13 +44,15 @@ var app = {
|
|
|
44
44
|
color: 'blue-400',
|
|
45
45
|
'&.is-hovered': {
|
|
46
46
|
textDecoration: 'underline',
|
|
47
|
+
textDecorationColor: 'blue-300',
|
|
47
48
|
color: 'blue-300'
|
|
48
49
|
},
|
|
49
50
|
'&.is-pressed': {
|
|
50
51
|
color: 'blue-300',
|
|
52
|
+
textDecorationColor: 'blue-300',
|
|
51
53
|
textDecoration: 'underline'
|
|
52
54
|
},
|
|
53
|
-
'
|
|
55
|
+
'&:visited': {
|
|
54
56
|
color: 'purple-100'
|
|
55
57
|
}
|
|
56
58
|
};
|
|
@@ -14,6 +14,24 @@ var navBarFocus = {
|
|
|
14
14
|
outline: '2px solid',
|
|
15
15
|
outlineColor: 'active'
|
|
16
16
|
};
|
|
17
|
+
var app = {
|
|
18
|
+
lineHeight: '160%',
|
|
19
|
+
'&.is-hovered': {
|
|
20
|
+
color: 'blue-600',
|
|
21
|
+
textDecorationColor: 'blue-600'
|
|
22
|
+
},
|
|
23
|
+
'&.is-focused': _objectSpread(_objectSpread({}, navBarFocus), {}, {
|
|
24
|
+
borderRadius: '2px'
|
|
25
|
+
}),
|
|
26
|
+
'&.is-pressed': {
|
|
27
|
+
color: 'blue-600',
|
|
28
|
+
textDecorationColor: 'blue-600'
|
|
29
|
+
},
|
|
30
|
+
'&:visited': {
|
|
31
|
+
color: 'purple-700',
|
|
32
|
+
textDecoration: 'underline'
|
|
33
|
+
}
|
|
34
|
+
};
|
|
17
35
|
var nextGen = {
|
|
18
36
|
color: 'gray-800',
|
|
19
37
|
fontSize: 'md',
|
|
@@ -82,6 +100,7 @@ var footerEALink = {
|
|
|
82
100
|
'&.is-focused': _objectSpread({}, defaultFocus)
|
|
83
101
|
};
|
|
84
102
|
export default {
|
|
103
|
+
app: app,
|
|
85
104
|
nextGen: nextGen,
|
|
86
105
|
onyx: onyx,
|
|
87
106
|
sideNav: sideNav,
|