You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by mi...@apache.org on 2019/02/12 08:46:46 UTC

[incubator-dubbo-ops] branch develop updated: change popup font size #295

This is an automated email from the ASF dual-hosted git repository.

min pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git


The following commit(s) were added to refs/heads/develop by this push:
     new 851f0c7  change popup font size #295
851f0c7 is described below

commit 851f0c758b3f348eae39e4ece0bbd9d64f9dd548
Author: nzomkxia <z8...@gmail.com>
AuthorDate: Tue Feb 12 16:46:36 2019 +0800

    change popup font size #295
---
 dubbo-admin-ui/src/components/ServiceSearch.vue | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/dubbo-admin-ui/src/components/ServiceSearch.vue b/dubbo-admin-ui/src/components/ServiceSearch.vue
index dded4cd..9d8f313 100644
--- a/dubbo-admin-ui/src/components/ServiceSearch.vue
+++ b/dubbo-admin-ui/src/components/ServiceSearch.vue
@@ -47,7 +47,7 @@
                       v-for="(item, i) in items"
                       :key="i"
                       @click="selected = i">
-                      <v-list-tile-title>{{ $t(item.title) }}</v-list-tile-title>
+                      <v-list-tile-title >{{ $t(item.title) }}</v-list-tile-title>
                     </v-list-tile>
                   </v-list>
                 </v-menu>
@@ -112,7 +112,7 @@
                         :key="i"
                         :href='governanceHref(item.value, props.item.service, props.item.group, props.item.version)'
                       >
-                        <v-list-tile-title>{{ $t(item.title) }}</v-list-tile-title>
+                        <v-list-tile-title class="small-list">{{ $t(item.title) }}</v-list-tile-title>
                       </v-list-tile>
                     </v-list>
                   </v-menu>
@@ -342,5 +342,9 @@
     font-size: 18px;
   }
 
+  .small-list {
+    font-size: 10px;
+  }
+
 </style>