Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
a41ffcc
playground: basic examples files for storybook theming with TAL
drfho Jun 11, 2025
c961996
added metaobj schema to TAL-template
drfho Jun 12, 2025
1db274b
typo
drfho Jun 12, 2025
e0b7ea6
schema data as html data-schema-*-attributes
drfho Jun 12, 2025
11741dc
exp. href -attr as data-schema-*-attribute
drfho Jun 12, 2025
cd8e3c3
prototype script create_schema.py for extracting ZMS metaobj schema f…
drfho Jun 12, 2025
128597b
refact(create_schema): attr vs elm sets, guessing defaults
drfho Jun 13, 2025
9d35a36
refact(create_schema): added shebang to make scipt executable
drfho Jun 13, 2025
d1a840b
added classname to json-output
drfho Jun 13, 2025
10d8f7b
cleaning
drfho Jun 13, 2025
bc2664f
improved script status messages
drfho Jun 13, 2025
0607a55
improved script status messages (2)
drfho Jun 13, 2025
3d380c0
Merge branch 'main' into theming_with_storybook
drfho Jun 15, 2025
75c38d6
typo
drfho Jun 15, 2025
995abb5
use var datakey for declaring any schema-name, e.g. unibe
drfho Jun 15, 2025
4591fda
set var datakey to "schema"
drfho Jun 15, 2025
ee7d7ab
added function save_standard_html
drfho Jun 15, 2025
d1fbd79
added function save_schema_as_yaml
drfho Jun 15, 2025
f2793ec
example for multiline code snippets of Python as an yaml element
drfho Jun 15, 2025
3e42b44
added comment
drfho Jun 15, 2025
3761f09
Merge branch 'main' into theming_with_storybook
drfho Jun 15, 2025
52fb2f6
added save_schema_as_python()
drfho Jun 16, 2025
68c4666
used standard.str_json for creating pretty py code
drfho Jun 16, 2025
f64a725
Merge branch 'main' into theming_with_storybook
drfho Jun 19, 2025
7351d82
add standard_html to schema
drfho Jun 19, 2025
3a3e03b
typo
drfho Jun 19, 2025
1d2c5d3
added data-schema-sort_id, package_name
drfho Jun 23, 2025
0ca8fb6
Merge branch 'main' into theming_with_storybook
drfho Jun 24, 2025
c9884b5
added save_zpt_as_html(), zmscontext mock as namedtuple
drfho Jun 24, 2025
ed1b102
keep data-schema-attrs for ZMS-metaobj-standard_html
drfho Jun 26, 2025
315f2df
Merge branch 'main' into theming_with_storybook
drfho Jul 1, 2025
b14ec91
Merge branch 'main' into theming_with_storybook
drfho Jul 8, 2025
914d45d
Merge branch 'main' into theming_with_storybook
drfho Jul 29, 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
77 changes: 77 additions & 0 deletions Products/zms/skins/storybook/common/added/web.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
display: flex;
}
h1, h2, h3 {
color: #444;
}
aside {
width: fit-content;
background-color: #f4f4f4;
padding: 5.25rem 1rem 1rem 0rem;
border-right: 1px solid #ddd;
font-size: 90%;
white-space: nowrap;
}
section.title {
padding: 1rem 1rem 0 1rem;
margin: 0 1rem;
}
section.title h1 {
color: #4a76b8 !important;
}
section.title p {
font-weight: bold;
color: #666;
}
section.teasers {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: stretch;
gap: 1rem;
gap: 1rem 2rem; /* row-gap column gap */
row-gap: 1rem;
column-gap: 2rem;
}
article {
padding: 1rem;
margin: 1rem;
}
.infobox {
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 4px;
padding: 15px;
margin: 20px 0;
max-height: 20rem;
}
.infobox-header {
border-bottom: 1px solid #ddd;
margin-bottom: 10px;
}
.infobox-header h2 {
margin: 0;
font-size: 1.5em;
}
.infobox-content {
font-size: 1em;
color: #333;
}
.infobox-footer {
margin-top: 10px;
text-align: right;
}
.infobox-footer a {
color: #007bff;
text-decoration: none;
}
.infobox-footer a:hover {
text-decoration: underline;
}
footer {
padding: 1rem;
text-align: end;
}
Empty file.
Empty file.
Empty file.
Loading