♿ Improving accessibility
This commit is contained in:
@@ -590,6 +590,7 @@ pre {
|
|||||||
|
|
||||||
input {
|
input {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
min-width: 128px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.trigger {
|
.trigger {
|
||||||
@@ -690,8 +691,12 @@ ul li,
|
|||||||
ol li {
|
ol li {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-flow: column nowrap;
|
flex-flow: column nowrap;
|
||||||
flex-grow: 1;
|
flex: 1;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
|
&.shrink {
|
||||||
|
flex-grow: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex-wrap {
|
.flex-wrap {
|
||||||
@@ -714,7 +719,7 @@ ol li {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.show-on-large-screen {
|
.show-on-large-screen {
|
||||||
display: inline-flex;
|
display: flex;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -791,7 +796,7 @@ ol li {
|
|||||||
z-index: 10001;
|
z-index: 10001;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
box-shadow: 0 4px 24px rgba(black, 0.2);
|
box-shadow: 0 4px 24px rgba(black, 0.2);
|
||||||
transition: all .2s ease-in-out;
|
transition: all 0.2s ease-in-out;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,20 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<pw-section class="green" icon="history" :label="$t('history')" ref="history">
|
<pw-section class="green" icon="history" :label="$t('history')" ref="history">
|
||||||
<ul>
|
|
||||||
<div class="show-on-large-screen">
|
<div class="show-on-large-screen">
|
||||||
<li id="filter-history">
|
<input aria-label="Search" type="search" :placeholder="$t('search')" v-model="filterText" />
|
||||||
<input
|
|
||||||
aria-label="Search"
|
|
||||||
type="search"
|
|
||||||
:placeholder="$t('search')"
|
|
||||||
v-model="filterText"
|
|
||||||
/>
|
|
||||||
</li>
|
|
||||||
<button class="icon">
|
<button class="icon">
|
||||||
<i class="material-icons">search</i>
|
<i class="material-icons">search</i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</ul>
|
|
||||||
<virtual-list
|
<virtual-list
|
||||||
class="virtual-list"
|
class="virtual-list"
|
||||||
:class="{ filled: filteredHistory.length }"
|
:class="{ filled: filteredHistory.length }"
|
||||||
@@ -354,9 +345,9 @@ export default {
|
|||||||
fb.currentUser !== null
|
fb.currentUser !== null
|
||||||
? fb.currentHistory
|
? fb.currentHistory
|
||||||
: JSON.parse(window.localStorage.getItem("history")) || []
|
: JSON.parse(window.localStorage.getItem("history")) || []
|
||||||
return this.history.filter(entry => {
|
return this.history.filter((entry) => {
|
||||||
const filterText = this.filterText.toLowerCase()
|
const filterText = this.filterText.toLowerCase()
|
||||||
return Object.keys(entry).some(key => {
|
return Object.keys(entry).some((key) => {
|
||||||
let value = entry[key]
|
let value = entry[key]
|
||||||
value = typeof value !== "string" ? value.toString() : value
|
value = typeof value !== "string" ? value.toString() : value
|
||||||
return value.toLowerCase().includes(filterText)
|
return value.toLowerCase().includes(filterText)
|
||||||
|
|||||||
@@ -37,8 +37,7 @@
|
|||||||
|
|
||||||
<pw-section class="blue" :label="$t('request')" ref="request">
|
<pw-section class="blue" :label="$t('request')" ref="request">
|
||||||
<ul>
|
<ul>
|
||||||
<div>
|
<li class="shrink">
|
||||||
<li>
|
|
||||||
<label for="method">{{ $t("method") }}</label>
|
<label for="method">{{ $t("method") }}</label>
|
||||||
<span class="select-wrapper">
|
<span class="select-wrapper">
|
||||||
<v-popover>
|
<v-popover>
|
||||||
@@ -175,7 +174,6 @@
|
|||||||
</v-popover>
|
</v-popover>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
</div>
|
|
||||||
<li>
|
<li>
|
||||||
<label for="url">{{ $t("url") }}</label>
|
<label for="url">{{ $t("url") }}</label>
|
||||||
<input
|
<input
|
||||||
@@ -189,8 +187,7 @@
|
|||||||
@input="pathInputHandler"
|
@input="pathInputHandler"
|
||||||
/>
|
/>
|
||||||
</li>
|
</li>
|
||||||
<div>
|
<li class="shrink">
|
||||||
<li>
|
|
||||||
<label class="hide-on-small-screen" for="send"> </label>
|
<label class="hide-on-small-screen" for="send"> </label>
|
||||||
<button :disabled="!isValidURL" @click="sendRequest" id="send" ref="sendButton">
|
<button :disabled="!isValidURL" @click="sendRequest" id="send" ref="sendButton">
|
||||||
{{ $t("send") }}
|
{{ $t("send") }}
|
||||||
@@ -199,7 +196,6 @@
|
|||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
</div>
|
|
||||||
</ul>
|
</ul>
|
||||||
<div class="blue">
|
<div class="blue">
|
||||||
<label for="label">{{ $t("label") }}</label>
|
<label for="label">{{ $t("label") }}</label>
|
||||||
|
|||||||
Reference in New Issue
Block a user