Skip to content

Commit 8bd5d94

Browse files
authored
fix: chatlog component missing pinia + agenda switch to text dark mode colors (ietf-tools#6653)
1 parent 62775bc commit 8bd5d94

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

client/embedded.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
import { createApp } from 'vue'
2+
import { createPinia } from 'pinia'
3+
import piniaPersist from 'pinia-plugin-persist'
24
import Embedded from './Embedded.vue'
35

6+
// Initialize store (Pinia)
7+
8+
const pinia = createPinia()
9+
pinia.use(piniaPersist)
10+
411
// Mount App
512

613
const mountEls = document.querySelectorAll('div.vue-embed')
@@ -9,5 +16,6 @@ for (const mnt of mountEls) {
916
componentName: mnt.dataset.component,
1017
componentId: mnt.dataset.componentId
1118
})
19+
app.use(pinia)
1220
app.mount(mnt)
1321
}

ietf/templates/meeting/agenda.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@
8989
right: 0;
9090
z-index: 1000000000;
9191
}
92+
93+
.theme-dark #app-loading-footer .btn-light {
94+
background-color: rgba(255,255,255,.1) !important;
95+
border-color: rgba(255,255,255,.05) !important;
96+
color: #FFF !important;
97+
}
9298
{% endblock %}
9399
{% block content %}
94100
{% origin %}

0 commit comments

Comments
 (0)