-
Notifications
You must be signed in to change notification settings - Fork 7
Contacts #200
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
Merged
Merged
Contacts #200
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
935d55b
moved ideas to codi, omc3 all around
JoschD 2ce5269
defaults
JoschD dcbc985
defaults again
JoschD 6641979
bring fontawesome back
JoschD 4db79df
some intro
JoschD 8d8baf3
image beamselect
JoschD 6c44573
bbs faqs
JoschD eb7909e
typos and lint fixes
fsoubelet 254c282
replace dead link with our TFS page
fsoubelet 13fa447
Moved (#175)
JoschD 0713d24
Kmod gui rework (#176)
fsoubelet bf1029c
images (#178)
JoschD f7c45a1
Linting PR (#179)
fsoubelet c185c15
Chroma GUI Page (#180)
fsoubelet 17b45c5
First Updates regarding the BBGUI (#184)
JoschD 39a2b05
fix absolute link
fsoubelet 3821ac0
fix outdated anchor link
fsoubelet 41f6b8f
fix outdated anchor link
fsoubelet d9f605b
Java IDE setup and GUI Release (#186)
JoschD 39ab290
Update workflows (#189)
fsoubelet b42683f
Add multiturn documentation (#190)
jgray-19 bace909
Merge branch 'master' into user_guide_updates
JoschD 0ac0c25
bbgui model creation (#188)
JoschD 1db37e1
User guide updates bpm panel (#197)
JoschD 2cbef9f
Merge branch 'master' into user_guide_updates
JoschD ad922e1
contacts
JoschD 0c7775f
nxcals update
JoschD 9a61a3c
Merge branch 'master' into user_guide_updates_contacts
JoschD 8eafe67
deleted pics
JoschD 0a1a54c
mkdocs
JoschD 35818ed
Merge branch 'master' into user_guide_updates_contacts
JoschD f76b218
updated contacts, more text
JoschD 7e768cc
css didnt add in last commit
JoschD 10395b3
felix' input
JoschD e326b15
acdipole nicolas
JoschD 8a7530e
some updates
JoschD 8c5810c
Merge branch 'master' into user_guide_updates_contacts
JoschD 91ac53e
repo pages and issues
JoschD File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,116 @@ | ||
| :root { | ||
| --md-admonition-icon--heart: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23fff" d="M462.3 62.6c-54.5-46.4-136-38.3-186.4 13.7L256 96l-19.9-19.7C185.7 24.3 104.2 16.2 49.7 62.6c-62.8 53.5-66.1 149.8-9.9 207.4l193.5 199.8c12 12.4 31.5 12.4 43.5 0l193.5-199.8c56.2-57.6 52.9-153.9-9.9-207.4z"/></svg>'); | ||
| } | ||
|
|
||
| /*************************** | ||
| Heart Admonition Definition | ||
| ***************************/ | ||
|
|
||
| /* Heart Admonition Container */ | ||
| .md-typeset .admonition.heart, | ||
| .md-typeset details.heart { | ||
| border-color: rgb(200, 50, 70); | ||
| background-color: rgba(0, 0 ,0, 0); /* transparent */ | ||
| } | ||
|
|
||
| /* Title background */ | ||
| .md-typeset .heart > .admonition-title, | ||
| .md-typeset .heart > summary { | ||
| background-color: rgba(200, 50, 70, 0.08); | ||
| border-top-left-radius: 0.5rem; | ||
| border-top-right-radius: 0.5rem; | ||
| } | ||
|
|
||
| /* Icon styling */ | ||
| .md-typeset .heart > .admonition-title::before, | ||
| .md-typeset .heart > summary::before { | ||
| background-color: rgb(200, 50, 70); | ||
| -webkit-mask-image: var(--md-admonition-icon--heart); | ||
| mask-image: var(--md-admonition-icon--heart); | ||
| } | ||
|
|
||
| /* Optional — subtle hover effect for the title when open */ | ||
| .md-typeset details.heart[open] > summary:hover { | ||
| background-color: rgba(200, 50, 70, 0.12); | ||
| transition: background-color 0.2s ease-in-out; | ||
| } | ||
|
|
||
| /* Optional — slightly rounder border and shadow for elegance */ | ||
| .md-typeset .admonition.heart, | ||
| .md-typeset details.heart { | ||
| border-radius: 0.5rem; | ||
| box-shadow: 0 1px 3px rgba(200, 50, 70, 0.15); | ||
| } | ||
|
|
||
|
|
||
| /************************************** | ||
| Collapsible Admonitions for Procedures | ||
| **************************************/ | ||
|
|
||
| .md-typeset .admonition.nodeco, | ||
| .md-typeset details.nodeco { | ||
| background-color: var(--md-default-bg-color); | ||
| box-shadow: none; | ||
| border: none; | ||
| border-left: 0; | ||
| font-size: medium; | ||
| font-weight: lighter; | ||
| margin: 0 0 0 0; | ||
| } | ||
|
|
||
| .md-typeset .nodeco > .admonition-title, | ||
| .md-typeset .nodeco > summary { | ||
| background-color: var(--md-default-bg-color); | ||
| padding: 0 0 0 0; | ||
| border-left: 0; | ||
| margin: 0 0 0 -0.5rem; | ||
| font-weight: normal; | ||
| font-size: 0.8rem; | ||
| padding-left: 0.2rem !important; | ||
| } | ||
|
|
||
| .md-typeset .nodeco > summary code { | ||
| background-color: var(--md-code-bg-color); | ||
| } | ||
|
|
||
| /* margin for the element after <summary> which is the first child */ | ||
| .md-typeset .nodeco > :nth-child(2) { | ||
| margin: 0.3rem 1.5rem 0 0; | ||
| } | ||
|
|
||
| .md-typeset .nodeco > p, | ||
| .md-typeset .nodeco > ul, | ||
| .md-typeset .nodeco > figure { | ||
| background-color: var(--md-default-bg-color); | ||
| padding: 0.2rem 0 0 0.5rem; | ||
| margin: 0 1.5rem 0 0 !important; | ||
| font-weight: lighter; | ||
| border-left: .2rem solid var(--md-default-fg-color--lighter); | ||
| } | ||
|
|
||
| .md-typeset .nodeco .leftFigure, | ||
| .md-typeset .nodeco .rightFigure { | ||
| width:45%; | ||
| margin: 0 0 0 0; | ||
| display: inline-block; | ||
| } | ||
|
|
||
| .md-typeset .nodeco .rightFigure { | ||
| padding: 0 0.2rem 0 0.5rem; | ||
| margin: 0 1.5rem 0 0; | ||
| border-left: none; | ||
| } | ||
|
|
||
| .md-typeset .nodeco > .admonition-title::before, | ||
| .md-typeset .nodeco > summary::before { | ||
| height: 0; /* hides icon */ | ||
| margin: 0 0 0 0; | ||
|
|
||
| } | ||
|
|
||
| /************************************** | ||
| Specific style for Warning Admonitions | ||
| **************************************/ | ||
| .md-typeset .admonition.warning { | ||
| font-size: 0.74rem !important; /* make warning text larger, default: 0.64 */ | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.