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

org.apache.tapestry5.tapestry-console.css Maven / Gradle / Ivy

Go to download

Central module for Tapestry, containing interfaces to the Java Servlet API and all core services and components.

There is a newer version: 5.8.6
Show newest version
/* The console is used to show debugging messages. */
DIV.t-console {
    position: fixed;
    z-index: 1;
    top: 2px;
    left: 2px;
}

DIV.t-console DIV {
    font-weight: bold;
    padding: 0px 2px;
}

DIV.t-console DIV.t-err {
    background-color: red;
    color: white;
}

DIV.t-console DIV.t-warn {
    background-color: yellow;
    color: black;
}

DIV.t-console DIV.t-debug {
    background-color: silver;
    color: black;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy