mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
added position absolute and some flexbox so I could remov changes in display and setTimeout, added tests and types, did some renaming
This commit is contained in:
@@ -1,49 +1,50 @@
|
||||
// sets a fixed width so that the rest of the table
|
||||
// isn't affected by the animation
|
||||
.delete-button-container {
|
||||
max-width: 24px;
|
||||
width: 24px;
|
||||
direction: rtl;
|
||||
max-height: 38px;
|
||||
display: block;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
//this container is used to make sure confirm-delete isn't
|
||||
//shown outside of table
|
||||
.confirm-delete-container {
|
||||
overflow: hidden;
|
||||
width: 145px;
|
||||
display: block;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.delete-button {
|
||||
&--show {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
|
||||
&.show {
|
||||
opacity: 1;
|
||||
transition: opacity 0.1s ease;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
&--hide {
|
||||
display: inline-block;
|
||||
&.hide {
|
||||
opacity: 0;
|
||||
transition: opacity 0.1s ease;
|
||||
}
|
||||
&--removed {
|
||||
display: none;
|
||||
z-index: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.confirm-delete {
|
||||
&--show {
|
||||
display: inline-block;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
|
||||
&.show {
|
||||
opacity: 1;
|
||||
transition: opacity 0.08s ease-out, transform 0.1s ease-out;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
&--hide {
|
||||
display: inline-block;
|
||||
&.hide {
|
||||
opacity: 0;
|
||||
transition: opacity 0.12s ease-in, transform 0.14s ease-in;
|
||||
transform: translateX(100px);
|
||||
}
|
||||
&--removed {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user