Skip to content
Merged
Show file tree
Hide file tree
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 May 15, 2025
2ce5269
defaults
JoschD May 15, 2025
dcbc985
defaults again
JoschD May 15, 2025
6641979
bring fontawesome back
JoschD May 15, 2025
4db79df
some intro
JoschD May 15, 2025
8d8baf3
image beamselect
JoschD May 15, 2025
6c44573
bbs faqs
JoschD May 15, 2025
eb7909e
typos and lint fixes
fsoubelet May 19, 2025
254c282
replace dead link with our TFS page
fsoubelet May 19, 2025
13fa447
Moved (#175)
JoschD May 19, 2025
0713d24
Kmod gui rework (#176)
fsoubelet May 21, 2025
bf1029c
images (#178)
JoschD May 21, 2025
f7c45a1
Linting PR (#179)
fsoubelet May 22, 2025
c185c15
Chroma GUI Page (#180)
fsoubelet May 23, 2025
17b45c5
First Updates regarding the BBGUI (#184)
JoschD Jun 18, 2025
39a2b05
fix absolute link
fsoubelet Jun 24, 2025
3821ac0
fix outdated anchor link
fsoubelet Jun 24, 2025
41f6b8f
fix outdated anchor link
fsoubelet Jun 24, 2025
d9f605b
Java IDE setup and GUI Release (#186)
JoschD Jun 24, 2025
39ab290
Update workflows (#189)
fsoubelet Jun 26, 2025
b42683f
Add multiturn documentation (#190)
jgray-19 Jul 11, 2025
bace909
Merge branch 'master' into user_guide_updates
JoschD Jul 30, 2025
0ac0c25
bbgui model creation (#188)
JoschD Aug 19, 2025
1db37e1
User guide updates bpm panel (#197)
JoschD Aug 19, 2025
2cbef9f
Merge branch 'master' into user_guide_updates
JoschD Aug 21, 2025
ad922e1
contacts
JoschD Aug 27, 2025
0c7775f
nxcals update
JoschD Sep 1, 2025
9a61a3c
Merge branch 'master' into user_guide_updates_contacts
JoschD Sep 9, 2025
8eafe67
deleted pics
JoschD Sep 9, 2025
0a1a54c
mkdocs
JoschD Sep 9, 2025
35818ed
Merge branch 'master' into user_guide_updates_contacts
JoschD Oct 20, 2025
f76b218
updated contacts, more text
JoschD Oct 20, 2025
7e768cc
css didnt add in last commit
JoschD Oct 20, 2025
10395b3
felix' input
JoschD Oct 21, 2025
e326b15
acdipole nicolas
JoschD Oct 21, 2025
8a7530e
some updates
JoschD Nov 10, 2025
8c5810c
Merge branch 'master' into user_guide_updates_contacts
JoschD Nov 10, 2025
91ac53e
repo pages and issues
JoschD Nov 10, 2025
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
116 changes: 116 additions & 0 deletions docs/css/admonitions.css
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 */
}
69 changes: 0 additions & 69 deletions docs/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,75 +27,6 @@ a.cern_internal {
color: lightcoral;
}

/* 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;
}

/* Specific style for warning admonitions */
.md-typeset .admonition.warning {
font-size: 0.74rem !important; /* make warning text larger, default: 0.64 */
}

.md-typeset .nodeco > .admonition-title::before,
.md-typeset .nodeco > summary::before {
height: 0; /* hides icon */
margin: 0 0 0 0;

}



/* Fix the Mathjax scrolling boxes issue */
.md-typeset div.arithmatex {
Expand Down
4 changes: 2 additions & 2 deletions docs/packages/development/howto_venv.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ To use the environment's Python, one can either:
*[PyPi]: Default Python Package Index

[virtual_env_primer]: https://realpython.com/python-virtual-environments-a-primer/
[acc-py]: https://wikis.cern.ch/display/ACCPY/Accelerating+Python+Home
[acc_py_standalone_doc]: https://wikis.cern.ch/display/ACCPY/Acc-Py+base#Acc-Pybase-Installingthebasedistributiononanothermachine
[acc-py]: https://confluence.cern.ch/pages/viewpage.action?spaceKey=ACCPY&title=Getting+started+with+Acc-Py
[acc_py_standalone_doc]: https://confluence.cern.ch/display/ACCPY/Acc-Py+base+installers
[venv_module]: https://docs.python.org/3/library/venv.html
[pip_installs]: https://pip.pypa.io/en/stable/reference/pip_install/#examples
Loading