mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Fixed ellipses replacing overflowed content in disabled inputs.
Fixes #381.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<polymer-element name="loot-validated-input" attributes="error type required maxlength minlength pattern max min step value disabled">
|
||||
<template>
|
||||
<paper-input-decorator error="{{error}}" isInvalid="{{!$.input.validity.valid}}" disabled?="{{disabled != undefined}}">
|
||||
<input id="input" is="core-input" type="{{type}}" class="{{class}}" required?="{{required != undefined}}" maxlength?="{{maxlength}}" minlength?="{{minlength}}" pattern?="{{pattern}}" max?="{{max}}" min?="{{min}}" step?="{{step}}" value="{{value}}" disabled?="{{disabled != undefined}}">
|
||||
<input id="input" is="core-input" type="{{type}}" class="{{class}}" required?="{{required != undefined}}" maxlength?="{{maxlength}}" minlength?="{{minlength}}" pattern?="{{pattern}}" max?="{{max}}" min?="{{min}}" step?="{{step}}" value="{{value}}" readonly?="{{disabled != undefined}}">
|
||||
</paper-input-decorator>
|
||||
</template>
|
||||
<script>
|
||||
@@ -14,4 +14,4 @@
|
||||
type: 'text',
|
||||
});
|
||||
</script>
|
||||
</polymer-element>
|
||||
</polymer-element>
|
||||
|
||||
Reference in New Issue
Block a user