1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/elements/emby-textarea/emby-textarea.css

33 lines
781 B
CSS
Raw Normal View History

2018-10-23 01:13:23 +03:00
.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 */
2018-10-23 01:13:23 +03:00
font-size: inherit;
/* General select styles: change as needed */
2018-10-23 01:13:23 +03:00
font-family: inherit;
font-weight: inherit;
color: inherit;
padding: .35em .25em;
/* Prevent padding from causing width overflow */
2018-10-23 01:13:23 +03:00
box-sizing: border-box;
outline: none !important;
2020-01-09 19:35:19 +01:00
-webkit-tap-highlight-color: rgba(0,0,0,0);
width: 100%;
2018-10-23 01:13:23 +03:00
}
.emby-textarea::-moz-focus-inner {
border: 0;
}
2018-10-23 01:13:23 +03:00
.textareaLabel {
display: inline-block;
transition: all .2s ease-out;
margin-bottom: .25em;
2018-10-23 01:13:23 +03:00
}
.emby-textarea + .fieldDescription {
margin-top: .25em;
}