-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Apply aria-label to field name icons. - Change title to alt for Discover 'Back to top' link. - Remove unnecessary title attributes from Discover No Results state. - Add aria-label to Discover sidebar's string field value. - Adjust aria-label of Discover Field Chooser 'Show field settings' button.
- Loading branch information
Showing
16 changed files
with
114 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
src/ui/public/directives/field_name_icons/boolean_field_name_icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<span | ||
aria-label="Boolean field" | ||
class="field-name-icon kuiIcon fa-adjust" | ||
></span> |
4 changes: 4 additions & 0 deletions
4
src/ui/public/directives/field_name_icons/conflict_field_name_icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<span | ||
aria-label="Conflicting field" | ||
class="field-name-icon kuiIcon fa-warning" | ||
></span> |
4 changes: 4 additions & 0 deletions
4
src/ui/public/directives/field_name_icons/date_field_name_icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<span | ||
aria-label="Date field" | ||
class="field-name-icon kuiIcon fa-clock-o" | ||
></span> |
4 changes: 4 additions & 0 deletions
4
src/ui/public/directives/field_name_icons/geo_point_field_name_icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<span | ||
aria-label="Geo-point field" | ||
class="field-name-icon kuiIcon fa-globe" | ||
></span> |
4 changes: 4 additions & 0 deletions
4
src/ui/public/directives/field_name_icons/ip_field_name_icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<span | ||
aria-label="IP address field" | ||
class="field-name-icon kuiIcon fa-laptop" | ||
></span> |
6 changes: 6 additions & 0 deletions
6
src/ui/public/directives/field_name_icons/murmur3_field_name_icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<span | ||
aria-label="Murmur3 field" | ||
class="field-name-icon" | ||
> | ||
<strong aria-hidden>h</strong> | ||
</span> |
6 changes: 6 additions & 0 deletions
6
src/ui/public/directives/field_name_icons/number_field_name_icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<span | ||
aria-label="Number field" | ||
class="field-name-icon" | ||
> | ||
<strong aria-hidden="true">#</strong> | ||
</span> |
4 changes: 4 additions & 0 deletions
4
src/ui/public/directives/field_name_icons/source_field_name_icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<span | ||
aria-label="Source field" | ||
class="field-name-icon kuiIcon fa-file-text-o" | ||
></span> |
6 changes: 6 additions & 0 deletions
6
src/ui/public/directives/field_name_icons/string_field_name_icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<span | ||
aria-label="String field" | ||
class="field-name-icon" | ||
> | ||
<strong aria-hidden="true">t</strong> | ||
</span> |
6 changes: 6 additions & 0 deletions
6
src/ui/public/directives/field_name_icons/unknown_field_name_icon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<span | ||
aria-label="Unknown field" | ||
class="field-name-icon" | ||
> | ||
<strong aria-hidden>?</strong> | ||
</span> |