@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
39 lines (32 loc) • 625 B
CSS
/* SPDX-License-Identifier: Apache-2.0 */
#content {
display: flex;
flex-direction: column;
height: 100%;
color: var(--text-color);
}
#toolbar {
display: flex;
flex-wrap: wrap;
gap: 0.25rem;
}
button {
border: var(--app-standard-border) ;
border-radius: 3px ;
}
button > img {
opacity: 0.8;
}
button:hover {
border: solid 1px var(--text-color-grad2);
}
button.selected {
border: solid 1px var(--text-color-grad2);
background-color: var(--bkg-color-grad1);
color: var(--bkg-color);
}
button:disabled {
opacity: 0.3;
border-color: transparent;
cursor: not-allowed;
}