diff --git a/web/src/pages/Edit/components/Count.vue b/web/src/pages/Edit/components/Count.vue index 359c1b6e..0c276aba 100644 --- a/web/src/pages/Edit/components/Count.vue +++ b/web/src/pages/Edit/components/Count.vue @@ -116,7 +116,7 @@ export default { } } -@media screen and (max-width: 635px) { +@media screen and (max-width: 740px) { .countContainer { display: none; } diff --git a/web/src/pages/Edit/components/NavigatorToolbar.vue b/web/src/pages/Edit/components/NavigatorToolbar.vue index 1ed9bdc3..c8a764bc 100644 --- a/web/src/pages/Edit/components/NavigatorToolbar.vue +++ b/web/src/pages/Edit/components/NavigatorToolbar.vue @@ -233,10 +233,12 @@ export default { } } -@media screen and (max-width: 502px) { +@media screen and (max-width: 590px) { .navigatorContainer { left: 20px; overflow-x: auto; + overflow-y: hidden; + height: 60px; } } diff --git a/web/src/pages/Edit/components/ShortcutKey.vue b/web/src/pages/Edit/components/ShortcutKey.vue index 7359af3f..61d3a6d0 100644 --- a/web/src/pages/Edit/components/ShortcutKey.vue +++ b/web/src/pages/Edit/components/ShortcutKey.vue @@ -10,8 +10,8 @@ class="icon iconfont" :class="[item2.icon]" > - {{ item2.name }} -
{{ item2.value }}
+ {{ item2.name }} +
{{ item2.value }}
@@ -67,16 +67,15 @@ export default { .list { .item { - .icon { - color: hsla(0,0%,100%,.6); + color: hsla(0, 0%, 100%, 0.6); } .name { - color: hsla(0,0%,100%,.6); + color: hsla(0, 0%, 100%, 0.6); } - + .value { - color: hsla(0,0%,100%,.3); + color: hsla(0, 0%, 100%, 0.3); } } } @@ -104,11 +103,17 @@ export default { .name { color: #333; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .value { color: #909090; margin-left: auto; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } } }