testio-tailwind 3.17.0 → 3.18.0
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/package.json +1 -1
- package/src/assets/fonts/SourceCodePro-Regular.otf.woff +0 -0
- package/src/assets/fonts/SourceCodePro-Regular.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-Black.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-Black.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-BlackIt.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-BlackIt.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-Bold.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-Bold.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-BoldIt.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-BoldIt.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-ExtraLight.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-ExtraLight.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-ExtraLightIt.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-ExtraLightIt.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-It.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-It.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-Light.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-Light.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-LightIt.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-LightIt.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-Medium.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-Medium.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-MediumIt.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-MediumIt.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-Regular.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-Regular.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-Semibold.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-Semibold.otf.woff2 +0 -0
- package/src/assets/fonts/SourceSans3-SemiboldIt.otf.woff +0 -0
- package/src/assets/fonts/SourceSans3-SemiboldIt.otf.woff2 +0 -0
- package/src/assets/stylesheets/app.css +1 -3
- package/src/assets/stylesheets/components/fonts.css +120 -0
- package/src/pages/agenticqa/splitview_items.haml +29 -1
- package/src/pages/typography/fonts.haml +14 -0
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
|
|
3
|
-
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
|
|
4
|
-
|
|
5
2
|
@import "tailwindcss";
|
|
6
3
|
@import './tailwind_config.css';
|
|
7
4
|
@import './tailwind_theme_dark.css';
|
|
@@ -21,6 +18,7 @@
|
|
|
21
18
|
@import './plugin_themes/pagy.css' layer(components);
|
|
22
19
|
|
|
23
20
|
/*//// Components ////*/
|
|
21
|
+
@import './components/fonts.css' layer(components);
|
|
24
22
|
@import './components/actionbar.css' layer(components);
|
|
25
23
|
@import './components/alerts.css' layer(components);
|
|
26
24
|
@import './components/badges.css' layer(components);
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: 'Source Sans 3';
|
|
4
|
+
font-weight: 200;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-stretch: normal;
|
|
7
|
+
src: url('/assets/fonts/SourceSans3-ExtraLight.otf.woff2') format('woff2'),
|
|
8
|
+
url('/assets/fonts/SourceSans3-ExtraLight.otf.woff') format('woff');
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: 'Source Sans 3';
|
|
13
|
+
font-weight: 200;
|
|
14
|
+
font-style: italic;
|
|
15
|
+
font-stretch: normal;
|
|
16
|
+
src: url('/assets/fonts/SourceSans3-ExtraLightIt.otf.woff2') format('woff2'),
|
|
17
|
+
url('/assets/fonts/SourceSans3-ExtraLightIt.otf.woff') format('woff');
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@font-face {
|
|
21
|
+
font-family: 'Source Sans 3';
|
|
22
|
+
font-weight: 300;
|
|
23
|
+
font-style: normal;
|
|
24
|
+
font-stretch: normal;
|
|
25
|
+
src: url('/assets/fonts/SourceSans3-Light.otf.woff2') format('woff2'),
|
|
26
|
+
url('/assets/fonts/SourceSans3-Light.otf.woff') format('woff');
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: 'Source Sans 3';
|
|
31
|
+
font-weight: 300;
|
|
32
|
+
font-style: italic;
|
|
33
|
+
font-stretch: normal;
|
|
34
|
+
src: url('/assets/fonts/SourceSans3-LightIt.otf.woff2') format('woff2'),
|
|
35
|
+
url('/assets/fonts/SourceSans3-LightIt.otf.woff') format('woff');
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@font-face {
|
|
39
|
+
font-family: 'Source Sans 3';
|
|
40
|
+
font-weight: 400;
|
|
41
|
+
font-style: normal;
|
|
42
|
+
font-stretch: normal;
|
|
43
|
+
src: url('/assets/fonts/SourceSans3-Regular.otf.woff2') format('woff2'),
|
|
44
|
+
url('/assets/fonts/SourceSans3-Regular.otf.woff') format('woff');
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@font-face {
|
|
48
|
+
font-family: 'Source Sans 3';
|
|
49
|
+
font-weight: 400;
|
|
50
|
+
font-style: italic;
|
|
51
|
+
font-stretch: normal;
|
|
52
|
+
src: url('/assets/fonts/SourceSans3-It.otf.woff2') format('woff2'),
|
|
53
|
+
url('/assets/fonts/SourceSans3-It.otf.woff') format('woff');
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@font-face {
|
|
57
|
+
font-family: 'Source Sans 3';
|
|
58
|
+
font-weight: 600;
|
|
59
|
+
font-style: normal;
|
|
60
|
+
font-stretch: normal;
|
|
61
|
+
src: url('/assets/fonts/SourceSans3-Semibold.otf.woff2') format('woff2'),
|
|
62
|
+
url('/assets/fonts/SourceSans3-Semibold.otf.woff') format('woff');
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: 'Source Sans 3';
|
|
67
|
+
font-weight: 600;
|
|
68
|
+
font-style: italic;
|
|
69
|
+
font-stretch: normal;
|
|
70
|
+
src: url('/assets/fonts/SourceSans3-SemiboldIt.otf.woff2') format('woff2'),
|
|
71
|
+
url('/assets/fonts/SourceSans3-SemiboldIt.otf.woff') format('woff');
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@font-face {
|
|
75
|
+
font-family: 'Source Sans 3';
|
|
76
|
+
font-weight: 700;
|
|
77
|
+
font-style: normal;
|
|
78
|
+
font-stretch: normal;
|
|
79
|
+
src: url('/assets/fonts/SourceSans3-Bold.otf.woff2') format('woff2'),
|
|
80
|
+
url('/assets/fonts/SourceSans3-Bold.otf.woff') format('woff');
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
@font-face {
|
|
84
|
+
font-family: 'Source Sans 3';
|
|
85
|
+
font-weight: 700;
|
|
86
|
+
font-style: italic;
|
|
87
|
+
font-stretch: normal;
|
|
88
|
+
src: url('/assets/fonts/SourceSans3-BoldIt.otf.woff2') format('woff2'),
|
|
89
|
+
url('/assets/fonts/SourceSans3-BoldIt.otf.woff') format('woff');
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@font-face{
|
|
93
|
+
font-family: 'Source Sans 3';
|
|
94
|
+
font-weight: 900;
|
|
95
|
+
font-style: normal;
|
|
96
|
+
font-stretch: normal;
|
|
97
|
+
src: url('/assets/fonts/SourceSans3-Black.otf.woff2') format('woff2'),
|
|
98
|
+
url('/assets/fonts/SourceSans3-Black.otf.woff') format('woff');
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
@font-face {
|
|
102
|
+
font-family: 'Source Sans 3';
|
|
103
|
+
font-weight: 900;
|
|
104
|
+
font-style: italic;
|
|
105
|
+
font-stretch: normal;
|
|
106
|
+
src: url('/assets/fonts/SourceSans3-BlackIt.otf.woff2') format('woff2'),
|
|
107
|
+
url('/assets/fonts/SourceSans3-BlackIt.otf.woff') format('woff');
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
/*/// Source Code Pro ///*/
|
|
112
|
+
|
|
113
|
+
@font-face {
|
|
114
|
+
font-family: 'Source Code Pro';
|
|
115
|
+
font-weight: 400;
|
|
116
|
+
font-style: normal;
|
|
117
|
+
font-stretch: normal;
|
|
118
|
+
src: url('/assets/fonts/SourceCodePro-Regular.otf.woff2') format('woff2'),
|
|
119
|
+
url('/assets/fonts/SourceCodePro-Regular.otf.woff') format('woff');
|
|
120
|
+
}
|
|
@@ -35,7 +35,8 @@ title: Splitview items
|
|
|
35
35
|
.splitview-item-icon.icon.icon-blocked.blocked
|
|
36
36
|
.splitview-item-text Check title with a lot of lorem ipsum
|
|
37
37
|
.splitview-item.unread
|
|
38
|
-
.splitview-item-icon
|
|
38
|
+
.splitview-item-icon
|
|
39
|
+
.icon.icon-sync.pending.w-icon.animate-spin
|
|
39
40
|
.splitview-item-text Check title with a lot of lorem ipsum
|
|
40
41
|
%details.splitview-group
|
|
41
42
|
%summary.splitview-item
|
|
@@ -60,4 +61,31 @@ title: Splitview items
|
|
|
60
61
|
.splitview-item-icon.icon.icon-check-circle-filled.success
|
|
61
62
|
.splitview-item-text Main Product Image
|
|
62
63
|
%btn.btn.splitview-btn Show 99 dismissed checks
|
|
64
|
+
%details.splitview-group
|
|
65
|
+
%summary.splitview-item
|
|
66
|
+
.splitview-item-icon.icon.icon-circle-empty.text-chart-empty
|
|
67
|
+
.splitview-item-text
|
|
68
|
+
.splitview-item-title https://url.com
|
|
69
|
+
.splitview-group-status.status-stepper
|
|
70
|
+
.status-step.completed
|
|
71
|
+
.icon.icon-check-thick-centered
|
|
72
|
+
3 done
|
|
73
|
+
.status-step.active
|
|
74
|
+
.icon.icon-sync
|
|
75
|
+
Executing checks
|
|
76
|
+
.status-step
|
|
77
|
+
+ 3 to do
|
|
78
|
+
%turbo-frame.turbo-wrapper
|
|
79
|
+
%a.splitview-item
|
|
80
|
+
.splitview-item-icon
|
|
81
|
+
.icon.icon-sync.pending.w-icon.animate-spin
|
|
82
|
+
.splitview-item-text Navigation Menu Hover
|
|
83
|
+
%turbo-frame.turbo-wrapper
|
|
84
|
+
%a.splitview-item
|
|
85
|
+
.splitview-item-icon.icon.icon-cross-circle-filled.danger
|
|
86
|
+
.splitview-item-text No Results Message
|
|
87
|
+
%turbo-frame.turbo-wrapper
|
|
88
|
+
%a.splitview-item.selected
|
|
89
|
+
.splitview-item-icon.icon.icon-check-circle-filled.success
|
|
90
|
+
.splitview-item-text Last selected child will have no rounded border on the right
|
|
63
91
|
%btn.btn.splitview-btn Show 99 dismissed pages
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
tags: typography
|
|
3
|
+
title: Fonts
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
%p.mb-xs Here are the fonts used in the design system
|
|
7
|
+
%p.font-extralight Source Sans 3 - Extra Light 200
|
|
8
|
+
%p.font-light Source Sans 3 - Light 300
|
|
9
|
+
%p Source Sans 3 - Regular 400
|
|
10
|
+
%p.font-medium Source Sans 3 - Medium 500
|
|
11
|
+
%p.font-semibold Source Sans 3 - Semibold 600
|
|
12
|
+
%p.font-bold Source Sans 3 - Bold 700
|
|
13
|
+
%p.font-black Source Sans 3 - Black 800
|
|
14
|
+
%p.font-mono Source Code Pro - Regular 400
|