mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 01:22:13 -06:00
fix color bleed
This commit is contained in:
parent
5f1f0a48b0
commit
d337ecdb20
|
@ -49,7 +49,9 @@ body {
|
||||||
padding: 1em 1.3em;
|
padding: 1em 1.3em;
|
||||||
border-width: .4em 0;
|
border-width: .4em 0;
|
||||||
transform: translateX(100%);
|
transform: translateX(100%);
|
||||||
transition: all .4s cubic-bezier(.2, 1.2, .5, 1);
|
transition:
|
||||||
|
transform .4s cubic-bezier(.2, 1.2, .5, 1),
|
||||||
|
right .4s cubic-bezier(.2, 1.2, .5, 1);
|
||||||
text-shadow: 1px 1px 0 #000;
|
text-shadow: 1px 1px 0 #000;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
@ -68,7 +70,7 @@ body {
|
||||||
outline: none;
|
outline: none;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
border-radius: .5em 0 0 .5em;
|
border-radius: .5em 0 0 .5em;
|
||||||
transition: all .4s cubic-bezier(.2, 1, .5, 1);
|
transition: left .3s, width .3s, padding .3s, opacity .3s;
|
||||||
}
|
}
|
||||||
#toast.vis {
|
#toast.vis {
|
||||||
right: 1.3em;
|
right: 1.3em;
|
||||||
|
|
|
@ -32,7 +32,9 @@ html, body {
|
||||||
padding: 1em 1.3em;
|
padding: 1em 1.3em;
|
||||||
border-width: .4em 0;
|
border-width: .4em 0;
|
||||||
transform: translateX(100%);
|
transform: translateX(100%);
|
||||||
transition: all .4s cubic-bezier(.2, 1.2, .5, 1);
|
transition:
|
||||||
|
transform .4s cubic-bezier(.2, 1.2, .5, 1),
|
||||||
|
right .4s cubic-bezier(.2, 1.2, .5, 1);
|
||||||
text-shadow: 1px 1px 0 #000;
|
text-shadow: 1px 1px 0 #000;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
@ -51,7 +53,7 @@ html, body {
|
||||||
outline: none;
|
outline: none;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
border-radius: .5em 0 0 .5em;
|
border-radius: .5em 0 0 .5em;
|
||||||
transition: all .4s cubic-bezier(.2, 1, .5, 1);
|
transition: left .3s, width .3s, padding .3s, opacity .3s;
|
||||||
}
|
}
|
||||||
#toast.vis {
|
#toast.vis {
|
||||||
right: 1.3em;
|
right: 1.3em;
|
||||||
|
|
Loading…
Reference in a new issue