tangled
alpha
login
or
join now
dbushell.com
/
attic.social
6
fork
atom
Attic is a cozy space with lofty ambitions.
attic.social
6
fork
atom
overview
issues
pulls
pipelines
disabled states
dbushell.com
1 week ago
e49ddb26
22a88c4b
verified
This commit was signed with the committer's
known signature
.
dbushell.com
SSH Key Fingerprint:
SHA256:Sj5AfJ6VbC0PEnnQD2kGGEiGFwHdFBS/ypN5oifzzFI=
+6
2 changed files
expand all
collapse all
unified
split
src
css
components
button.css
input.css
+1
src/css/components/button.css
···
20
20
21
21
&:disabled {
22
22
opacity: 0.5;
23
23
+
pointer-events: none;
23
24
}
24
25
25
26
&[data-danger] {
+5
src/css/components/input.css
···
14
14
color: rgb(var(--color-black) / 0.5);
15
15
opacity: 1;
16
16
}
17
17
+
18
18
+
&:disabled {
19
19
+
opacity: 0.5;
20
20
+
pointer-events: none;
21
21
+
}
17
22
}