mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
32 lines
781 B
CSS
32 lines
781 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;
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
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;
|
|
}
|