قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +00:00

* remove old materialize css * add new materlialize css * update paths of materialize css * fix visibility of normal selects * fix selected in segmentation layer * fix style for disabled selects * update materializecss to 1.2.0 * update/fix some ui tests * update materializecss to 1.2.1 * Apply patch from https://github.com/materializecss/materialize/pull/331 * update expected test files * ignore list elements for modal buttons * update expected test files * update materializecss to 1.2.2 * fix ui test * Update UI test screenshots --------- Co-authored-by: Ben <ben.burgess@innocraft.com>
13 خطوط
251 B
SCSS
Vendored
13 خطوط
251 B
SCSS
Vendored
// Scale transition
|
|
.scale-transition {
|
|
&.scale-out {
|
|
transform: scale(0);
|
|
transition: transform .2s !important;
|
|
}
|
|
|
|
&.scale-in {
|
|
transform: scale(1);
|
|
}
|
|
|
|
transition: transform .3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important;
|
|
} |