All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web.dist.single.css Maven / Gradle / Ivy

Go to download

RefactoringMiner is a library/API written in Java that can detect refactorings applied in the history of a Java project.

There is a newer version: 3.0.9
Show newest version
.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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy