Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sparql editor features #139

Merged
merged 14 commits into from
Dec 1, 2023
5 changes: 5 additions & 0 deletions devenv/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"dependencies": {
"sass": "^1.69.4"
}
}
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ services:
DATABUS_DATABASE_URL: "http://gstore:8080"
DATABUS_OIDC_ISSUER_BASE_URL: ${DATABUS_OIDC_ISSUER_BASE_URL}
DATABUS_NAME: ${DATABUS_NAME}
DATABUS_ORG_ICON: ${DATABUS_ORG_ICON}
DATABUS_BANNER_COLOR: ${DATABUS_BANNER_COLOR}
DATABUS_OIDC_CLIENT_ID: ${DATABUS_OIDC_CLIENT_ID}
DATABUS_OIDC_SECRET: ${DATABUS_OIDC_SECRET}
DATABUS_PRIVATE_MODE: ${DATABUS_PRIVATE_MODE} # Private mode will only show metadata for logged-in users
Expand Down
16 changes: 16 additions & 0 deletions public/css/_collections.scss
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,22 @@
padding-left: 1.5em;
padding-right:1.5em;
cursor: pointer;

border-top: 1px solid rgba(0, 0, 0, 0);
border-left: 1px solid rgba(0, 0, 0, 0);
border-right: 1px solid rgba(0, 0, 0, 0);
}

.collection-editor-tab svg {
fill: #999 !important;
}

.collection-editor-tab:hover svg {
fill: #777 !important;
}

.collection-editor-tab:hover .section-label {
color: #777 !important;
}

.collection-editor-tab.is-active {
Expand Down
Loading
Loading