mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 08:09:32 +08:00
Merge branch 'master' into feat-searchbar-options
This commit is contained in:
@ -16,6 +16,7 @@
|
||||
<ion-textarea value="value"></ion-textarea>
|
||||
<ion-textarea value="44"></ion-textarea>
|
||||
<ion-textarea placeholder="Custom" class="custom"></ion-textarea>
|
||||
<ion-textarea id="nowrap" rows="15"></ion-textarea>
|
||||
<ion-textarea placeholder="Auto Grow!" auto-grow="true"></ion-textarea>
|
||||
|
||||
<style>
|
||||
@ -23,6 +24,35 @@
|
||||
--background: papayawhip;
|
||||
--color: blue;
|
||||
}
|
||||
|
||||
#nowrap {
|
||||
font-size: 8px;
|
||||
font-family: monospace;
|
||||
font-weight: bold;
|
||||
|
||||
white-space: nowrap;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
var textarea = document.querySelector('#nowrap');
|
||||
|
||||
textarea.value =
|
||||
`@@@@@@@////////////////@@@(/#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@/////@@@@@@@@@@@@@@@///////@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@////@@@@@@@@@@@@@@@@@///////@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@(///@@@@@@@@@@@@@@@@@@@@/////@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@///@@@@@@@(/////////&@@@@@@@@//@@@@@@@@@@///#@@@@//////////@@@@/////////////@@@////@@@@//////////@
|
||||
///@@@@@@@/////////////@@@@@@@///@@@@@@@@@///#@@////@@@@@////(@@/////@@@@@////@@////@@(////@@@@,///
|
||||
///@@@@@@///////////////@@@@@@///@@@@@@@@@///#@////@@@@@@@@///@@////@@@@@@@///@@////@@///@@@@@@@@@@
|
||||
///@@@@@@///////////////@@@@@@///@@@@@@@@@///#@////@@@@@@@@///@@////@@@@@@@///@@////@#///@@@@@@@@@@
|
||||
///@@@@@@///////////////@@@@@@///@@@@@@@@@///#@////@@@@@@@@///@@////@@@@@@@///@@////@@///@@@@@@@@@@
|
||||
///@@@@@@@/////////////@@@@@@(///@@@@@@@@@///#@@/////@@@@////@@@////@@@@@@@///@@////@@@////@@@@////
|
||||
@///@@@@@@@@/////////@@@@@@@@///@@@@@@@@@@///#@@@@//////////@@@@////@@@@@@@///@@////@@@@//////////@
|
||||
@@///@@@@@@@@@@@@@@@@@@@@@@#///@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@////@@@@@@@@@@@@@@@@@@@////@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@/////@@@@@@@@@@@@@/////@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@///////////////////@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`;
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -42,6 +42,8 @@
|
||||
|
||||
font-family: $font-family-base;
|
||||
|
||||
white-space: pre-wrap;
|
||||
|
||||
z-index: $z-index-item-input;
|
||||
}
|
||||
|
||||
@ -89,8 +91,6 @@
|
||||
resize: none;
|
||||
appearance: none;
|
||||
|
||||
white-space: pre-wrap;
|
||||
|
||||
&::placeholder {
|
||||
color: var(--placeholder-color);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user