aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/styles/custom.css
diff options
context:
space:
mode:
authorYasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>2026-09-23 09:27:49 +0900
committerYasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>2026-09-23 09:27:49 +0900
commit5a896115b417baebbeb8e32c6eac80b04c645668 (patch)
tree4be9780f3f5007033ffc622a5b2340bc2a97b09d /src/styles/custom.css
parenta04f936001a8778c494b4306fdb415a0a9791733 (diff)
sanpi.mdx ほか: 議案の賛否一覧を再表示し、令和7年12月の表を差し替え
サイドバーにリンクを戻し、ページを公開した。あわせて令和7年12月定例会の表を賛否一覧PDFから読み直して差し替えた。従来の表は議員ごとの値が実際と異なり、PDFに載っている賛成・反対の合計(例:第55号は19対7)と一致していなかった。議決結果は✓/✗のアイコンで表示するようにした(カーソルで内容が出る)。
Diffstat (limited to 'src/styles/custom.css')
-rw-r--r--src/styles/custom.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/styles/custom.css b/src/styles/custom.css
index 9ce60e9..1cda79f 100644
--- a/src/styles/custom.css
+++ b/src/styles/custom.css
@@ -1215,3 +1215,37 @@ h3:hover .heading-anchor {
opacity: 1;
color: var(--sl-color-green-high, #16a34a);
}
+
+/* 議案の賛否一覧: 議決結果のアイコン */
+.sanpi-kekka {
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ width: 1.5em;
+ height: 1.5em;
+ border-radius: 50%;
+ font-size: 0.8em;
+ font-weight: 700;
+ line-height: 1;
+ vertical-align: middle;
+}
+.sanpi-kekka.ok {
+ background: #e8f5e9;
+ color: #2e7d32;
+ border: 1.5px solid #66bb6a;
+}
+.sanpi-kekka.ng {
+ background: #ffebee;
+ color: #c62828;
+ border: 1.5px solid #ef5350;
+}
+:root[data-theme="dark"] .sanpi-kekka.ok {
+ background: #14301a;
+ color: #81c784;
+ border-color: #388e3c;
+}
+:root[data-theme="dark"] .sanpi-kekka.ng {
+ background: #3a1414;
+ color: #ef9a9a;
+ border-color: #c62828;
+}