diff --git a/README.md b/README.md index 31ed619c..40410f40 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ For n.eko room management software visit https://github.com/m1k1o/neko-rooms. - Added `m1k1o/neko:vlc` tag, use VLC to watch local files together (by @mbattista). - Added `m1k1o/neko:xfce` tag, as an non video related showcase (by @mbattista). - Added ARM-based images, for Raspberry Pi support (by @mbattista). +- Added simple language picker. ### Bugs - Fixed minor gst pipeline bug. diff --git a/client/src/components/menu.vue b/client/src/components/menu.vue index 1feca067..a3bab274 100644 --- a/client/src/components/menu.vue +++ b/client/src/components/menu.vue @@ -13,6 +13,13 @@ v-if="admin" /> +
  • + +
  • @@ -28,10 +35,33 @@ } } } + + select { + appearance: none; + background-color: $background-tertiary; + border: 1px solid $background-primary; + color: white; + cursor: pointer; + border-radius: 5px; + height: 24px; + vertical-align: text-bottom; + display: inline-block; + + option { + font-weight: normal; + color: $text-normal; + background-color: $background-tertiary; + } + + &:hover { + border: 1px solid $background-primary; + } + }