-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move tooltip inside shadowDOM, Inject toastStyles
- Loading branch information
Showing
5 changed files
with
226 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
@keyframes go2264125279 { | ||
from { | ||
transform: scale(0) rotate(45deg); | ||
opacity: 0; | ||
} | ||
to { | ||
transform: scale(1) rotate(45deg); | ||
opacity: 1; | ||
} | ||
} | ||
@keyframes go3020080000 { | ||
from { | ||
transform: scale(0); | ||
opacity: 0; | ||
} | ||
to { | ||
transform: scale(1); | ||
opacity: 1; | ||
} | ||
} | ||
@keyframes go463499852 { | ||
from { | ||
transform: scale(0) rotate(90deg); | ||
opacity: 0; | ||
} | ||
to { | ||
transform: scale(1) rotate(90deg); | ||
opacity: 1; | ||
} | ||
} | ||
@keyframes go1268368563 { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
@keyframes go1310225428 { | ||
from { | ||
transform: scale(0) rotate(45deg); | ||
opacity: 0; | ||
} | ||
to { | ||
transform: scale(1) rotate(45deg); | ||
opacity: 1; | ||
} | ||
} | ||
@keyframes go651618207 { | ||
0% { | ||
height: 0; | ||
width: 0; | ||
opacity: 0; | ||
} | ||
40% { | ||
height: 0; | ||
width: 6px; | ||
opacity: 1; | ||
} | ||
100% { | ||
opacity: 1; | ||
height: 10px; | ||
} | ||
} | ||
@keyframes go901347462 { | ||
from { | ||
transform: scale(0.6); | ||
opacity: 0.4; | ||
} | ||
to { | ||
transform: scale(1); | ||
opacity: 1; | ||
} | ||
} | ||
.go4109123758 { | ||
z-index: 9999; | ||
} | ||
.go4109123758 > * { | ||
pointer-events: auto; | ||
} | ||
.go2072408551 { | ||
display: flex; | ||
align-items: center; | ||
background: #fff; | ||
color: #363636; | ||
line-height: 1.3; | ||
will-change: transform; | ||
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05); | ||
max-width: 350px; | ||
pointer-events: auto; | ||
padding: 8px 10px; | ||
border-radius: 8px; | ||
} | ||
.go685806154 { | ||
position: relative; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-width: 20px; | ||
min-height: 20px; | ||
} | ||
.go1858758034 { | ||
width: 12px; | ||
height: 12px; | ||
box-sizing: border-box; | ||
border: 2px solid; | ||
border-radius: 100%; | ||
border-color: #e0e0e0; | ||
border-right-color: #616161; | ||
animation: go1268368563 1s linear infinite; | ||
} | ||
.go1579819456 { | ||
position: absolute; | ||
} | ||
.go2344853693 { | ||
width: 20px; | ||
opacity: 0; | ||
height: 20px; | ||
border-radius: 10px; | ||
background: #61d345; | ||
position: relative; | ||
transform: rotate(45deg); | ||
animation: go1310225428 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; | ||
animation-delay: 100ms; | ||
} | ||
.go2344853693:after { | ||
content: ''; | ||
box-sizing: border-box; | ||
animation: go651618207 0.2s ease-out forwards; | ||
opacity: 0; | ||
animation-delay: 200ms; | ||
position: absolute; | ||
border-right: 2px solid; | ||
border-bottom: 2px solid; | ||
border-color: #fff; | ||
bottom: 6px; | ||
left: 6px; | ||
height: 10px; | ||
width: 6px; | ||
} | ||
.go3958317564 { | ||
display: flex; | ||
justify-content: center; | ||
margin: 4px 10px; | ||
color: inherit; | ||
flex: 1 1 auto; | ||
white-space: pre-line; | ||
} | ||
@keyframes go3223188581 { | ||
0% { | ||
transform: translate3d(0, -200%, 0) scale(0.6); | ||
opacity: 0.5; | ||
} | ||
100% { | ||
transform: translate3d(0, 0, 0) scale(1); | ||
opacity: 1; | ||
} | ||
} | ||
@keyframes go502128938 { | ||
0% { | ||
transform: translate3d(0, 0, -1px) scale(1); | ||
opacity: 1; | ||
} | ||
100% { | ||
transform: translate3d(0, -150%, -1px) scale(0.6); | ||
opacity: 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters