Skip to content

Commit

Permalink
Merge pull request #382 from chrismayer/cls-module-btn
Browse files Browse the repository at this point in the history
Add CSS class 'wgu-toggle-btn'
  • Loading branch information
chrismayer authored Apr 23, 2024
2 parents b47a5cd + 18e1c1c commit 0c17a54
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions app-starter/components/AppHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<template v-slot:activator="{on}">

<v-btn icon v-on="on"
class="wgu-menu-button"
color="onprimary"
:title="$t('wgu-toolbar-menu.title')">
<v-icon medium>menu</v-icon>
Expand Down
1 change: 1 addition & 0 deletions src/components/geolocator/Geolocator.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<template>
<span>
<v-btn @click="geolocateUserAndShowMarkerOnMap" icon
class="wgu-action-button"
color="onprimary"
:title="$t('wgu-geolocator.title')">
<v-icon v-if='this.isSearchingForGeolocation'>update</v-icon>
Expand Down
2 changes: 1 addition & 1 deletion src/components/localeswitcher/LocaleSwitcher.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
color="onprimary"
background-color="transparent"
:title="$t('wgu-localeswitcher.title')"
class="ma-2"
class="ma-2 wgu-menu-button"
icon
v-on="on"
v-bind="attrs"
Expand Down
2 changes: 1 addition & 1 deletion src/components/maxextentbutton/ZoomToMaxExtentButton.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-btn icon color="onprimary" @click="onClick"
<v-btn icon color="onprimary" @click="onClick" class="wgu-action-button"
:title="$t('wgu-zoomtomaxextent.title')">
<v-icon medium>{{icon}}</v-icon>
</v-btn>
Expand Down
1 change: 1 addition & 0 deletions src/components/modulecore/ToggleButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
dense
color="onprimary"
background-color="transparent"
class="wgu-toggle-button"
:title="$t(moduleName + '.title')"
v-model="show">
<v-btn icon :value="true" color="onprimary" @click="toggleUi">
Expand Down

0 comments on commit 0c17a54

Please sign in to comment.