Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions packages/legacy-workbench/src/css/bootstrap-graphdb-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -1124,6 +1124,9 @@ input[type="checkbox"]:checked {

input[type="radio"]:checked {
border-color: var(--gw-primary-base);
display: inline-flex;
align-items: center;
justify-content: center;
}

input[type="checkbox"]:checked::after {
Expand All @@ -1137,12 +1140,10 @@ input[type="checkbox"]:checked::after {

input[type="radio"]:checked::after {
content: "";
display: block;

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm, I shall check this out, but I though that in order to give the content some width it must have display block or whatever but not inline or default.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahh I see it now. It's the parent that have display:flex and causing the children to become flex items behaving like block elements.

width: 0.5em;
height: 0.5em;
width: 55%;
height: 55%;
border-radius: 50%;
background-color: var(--gw-primary-base);
margin: 0.2em;
}

/*-------------------------------------------------------------
Expand Down