Compare commits
No commits in common. "2068c2601106cc03c0489da67a99521483d1147f" and "5317ebee8a0bc1e87379e5da8ed866db764748b1" have entirely different histories.
2068c26011
...
5317ebee8a
14
README.md
14
README.md
@ -179,18 +179,8 @@ consists of `vendored/normalize-8.0.1.css`. This is it's license:
|
|||||||
### Material Icons
|
### Material Icons
|
||||||
|
|
||||||
The **material icons** are, as their name suggests, icons, which are used in place of text. They
|
The **material icons** are, as their name suggests, icons, which are used in place of text. They
|
||||||
consist of the files `vendored/material-icons.css` and `vendored/material-icons.ttf`.
|
consist of the files `vendored/material-icons.css` and `vendored/material-icons.ttf`. This is their
|
||||||
|
license:
|
||||||
The former of those has been modified. Originally it was as provided by upstream, except for the
|
|
||||||
location of the font file. It has since been modified more. Those changes can easily be viewed via
|
|
||||||
[`git log vendored/material-icons.css`][mi-log] and
|
|
||||||
[`git blame vendored/material-icons.css`][mi-blame]. A link to a web rendering of both has been
|
|
||||||
provided for convenience.
|
|
||||||
|
|
||||||
[mi-log]: https://git.tfld.dev/tfld/watterblock/commits/branch/main/vendored/material-icons.css
|
|
||||||
[mi-blame]: https://git.tfld.dev/tfld/watterblock/blame/branch/main/vendored/material-icons.css
|
|
||||||
|
|
||||||
This is the license:
|
|
||||||
|
|
||||||
Apache License
|
Apache License
|
||||||
Version 2.0, January 2004
|
Version 2.0, January 2004
|
||||||
|
|||||||
@ -20,11 +20,4 @@
|
|||||||
&.-slim {
|
&.-slim {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.-icon {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
gap: 1ch;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@ -17,25 +17,23 @@ export default class SessionList {
|
|||||||
m("span.ourpoints", "•".repeat(s.result.ourPoints)),
|
m("span.ourpoints", "•".repeat(s.result.ourPoints)),
|
||||||
m("div.actions",
|
m("div.actions",
|
||||||
m(
|
m(
|
||||||
"button.wb-button.-slim.-icon._positioned",
|
"button.wb-button.-slim._positioned",
|
||||||
{
|
{
|
||||||
onclick: () => {
|
onclick: () => {
|
||||||
if (window.confirm("Wiillst den Satz wirklich löschn?"))
|
if (window.confirm("Wiillst den Satz wirklich löschn?"))
|
||||||
onDelete(s.id, i);
|
onDelete(s.id, i);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m("span.material-symbols-outlined", "delete"),
|
|
||||||
"löschn"
|
"löschn"
|
||||||
),
|
),
|
||||||
m(
|
m(
|
||||||
m.route.Link,
|
m.route.Link,
|
||||||
{
|
{
|
||||||
href: "/",
|
href: "/",
|
||||||
selector: "button.wb-button.-slim.-icon._positioned",
|
selector: "button.wb-button.-slim._positioned",
|
||||||
params: { session: s.id },
|
params: { session: s.id },
|
||||||
onclick: () => onSelect(s),
|
onclick: () => onSelect(s),
|
||||||
},
|
},
|
||||||
m("span.material-symbols-outlined", "playing_cards"),
|
|
||||||
"spieln",
|
"spieln",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
/* This file has been modified specifically for the watterblock. */
|
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
font-family: 'Material Symbols Outlined';
|
font-family: 'Material Symbols Outlined';
|
||||||
@ -12,7 +10,7 @@
|
|||||||
font-family: 'Material Symbols Outlined';
|
font-family: 'Material Symbols Outlined';
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-size: 1em;
|
font-size: 24px;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
letter-spacing: normal;
|
letter-spacing: normal;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user