Files
jellyfin-web/src/components/emby-textarea/emby-textarea.css
T
2019-12-30 12:09:48 +01:00

32 lines
733 B
CSS

.emby-textarea {
display: block;
margin: 0;
margin-bottom: 0 !important;
/* Remove select styling */
/* Font size must the 16px or larger to prevent iOS page zoom on focus */
font-size: inherit;
/* General select styles: change as needed */
font-family: inherit;
font-weight: inherit;
color: inherit;
padding: .35em .25em;
/* Prevent padding from causing width overflow */
box-sizing: border-box;
outline: none !important;
width: 100%;
}
.emby-textarea::-moz-focus-inner {
border: 0;
}
.textareaLabel {
display: inline-block;
transition: all .2s ease-out;
margin-bottom: .25em;
}
.emby-textarea + .fieldDescription {
margin-top: .25em;
}