web.dist.single.css Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of refactoring-miner Show documentation
Show all versions of refactoring-miner Show documentation
RefactoringMiner is a library/API written in Java that can detect refactorings applied in the history of a Java project.
.monaco-panel {
overflow: hidden; /* Disable both vertical and horizontal scrollbars */
height: 100%; /* Ensure it fills the available height */
}
.dir-diff{
height: 100%;
overflow-y: scroll; /* Enable vertical scrolling */
overflow-x: hidden; /* Disable horizontal scrolling */
}
#accordion {
overflow-y: scroll; /* Enable vertical scrolling */
overflow-x: hidden; /* Disable horizontal scrolling */
height: 100%; /* Ensure it fills the available height */
}
.edc{
flex: 1;
height: 100%;
}
@keyframes shake {
0% { transform: translateX(0); }
25% { transform: translateX(-10px); }
50% { transform: translateX(10px); }
75% { transform: translateX(-10px); }
100% { transform: translateX(0); }
}
.shake {
animation: shake 0.5s ease-in-out;
}