@redseed/redseed-ui-tailwindcss 6.2.11 → 6.4.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/index.css +0 -1
- package/package.json +3 -3
- package/components/google_button.css +0 -91
package/index.css
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
@import './components/empty.css';
|
|
44
44
|
@import './components/link_primary.css';
|
|
45
45
|
@import './components/link_slot.css';
|
|
46
|
-
@import './components/google_button.css';
|
|
47
46
|
@import './components/logo.css';
|
|
48
47
|
@import './components/image.css';
|
|
49
48
|
@import './components/image_16by9.css';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redseed/redseed-ui-tailwindcss",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.4.0",
|
|
4
4
|
"description": "RedSeed UI Tailwindcss",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"style": "index.css",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"author": "",
|
|
13
13
|
"license": "ISC",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@tailwindcss/vite": "^4.1.
|
|
16
|
-
"tailwindcss": "^4.1.
|
|
15
|
+
"@tailwindcss/vite": "^4.1.15",
|
|
16
|
+
"tailwindcss": "^4.1.15"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
.gsi-material-button {
|
|
2
|
-
-moz-user-select: none;
|
|
3
|
-
-webkit-user-select: none;
|
|
4
|
-
-ms-user-select: none;
|
|
5
|
-
-webkit-appearance: none;
|
|
6
|
-
@apply bg-background-primary border border-border-primary text-text-primary;
|
|
7
|
-
background-image: none;
|
|
8
|
-
-webkit-border-radius: 4px;
|
|
9
|
-
border-radius: 4px;
|
|
10
|
-
-webkit-box-sizing: border-box;
|
|
11
|
-
box-sizing: border-box;
|
|
12
|
-
cursor: pointer;
|
|
13
|
-
font-family: 'Roboto', arial, sans-serif;
|
|
14
|
-
font-size: 14px;
|
|
15
|
-
height: 40px;
|
|
16
|
-
letter-spacing: 0.25px;
|
|
17
|
-
outline: none;
|
|
18
|
-
overflow: hidden;
|
|
19
|
-
padding: 0 12px;
|
|
20
|
-
position: relative;
|
|
21
|
-
text-align: center;
|
|
22
|
-
-webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
|
|
23
|
-
transition: background-color .218s, border-color .218s, box-shadow .218s;
|
|
24
|
-
vertical-align: middle;
|
|
25
|
-
white-space: nowrap;
|
|
26
|
-
width: 100%;
|
|
27
|
-
max-width: 400px;
|
|
28
|
-
min-width: min-content;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.gsi-material-button .gsi-material-button-icon {
|
|
32
|
-
height: 20px;
|
|
33
|
-
margin-right: 12px;
|
|
34
|
-
min-width: 20px;
|
|
35
|
-
width: 20px;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.gsi-material-button .gsi-material-button-content-wrapper {
|
|
39
|
-
-webkit-align-items: center;
|
|
40
|
-
align-items: center;
|
|
41
|
-
display: flex;
|
|
42
|
-
-webkit-flex-direction: row;
|
|
43
|
-
flex-direction: row;
|
|
44
|
-
-webkit-flex-wrap: nowrap;
|
|
45
|
-
flex-wrap: nowrap;
|
|
46
|
-
height: 100%;
|
|
47
|
-
justify-content: space-between;
|
|
48
|
-
position: relative;
|
|
49
|
-
width: 100%;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.gsi-material-button .gsi-material-button-contents {
|
|
53
|
-
-webkit-flex-grow: 1;
|
|
54
|
-
flex-grow: 1;
|
|
55
|
-
font-family: 'Roboto', arial, sans-serif;
|
|
56
|
-
font-weight: 500;
|
|
57
|
-
overflow: hidden;
|
|
58
|
-
text-overflow: ellipsis;
|
|
59
|
-
vertical-align: top;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.gsi-material-button .gsi-material-button-state {
|
|
63
|
-
-webkit-transition: opacity .218s;
|
|
64
|
-
transition: opacity .218s;
|
|
65
|
-
bottom: 0;
|
|
66
|
-
left: 0;
|
|
67
|
-
opacity: 0;
|
|
68
|
-
position: absolute;
|
|
69
|
-
right: 0;
|
|
70
|
-
top: 0;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.gsi-material-button:disabled {
|
|
74
|
-
cursor: default;
|
|
75
|
-
@apply bg-background-disabled border-border-disabled;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.gsi-material-button:disabled .gsi-material-button-contents { opacity: 38%; }
|
|
79
|
-
.gsi-material-button:disabled .gsi-material-button-icon { opacity: 38%; }
|
|
80
|
-
|
|
81
|
-
.gsi-material-button:not(:disabled):active .gsi-material-button-state,
|
|
82
|
-
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
|
|
83
|
-
@apply bg-text-secondary;
|
|
84
|
-
opacity: 12%;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
|
|
88
|
-
@apply bg-background-primary;
|
|
89
|
-
opacity: 8%;
|
|
90
|
-
}
|
|
91
|
-
|