jellyfish-web/src/components/emby-input/emby-input.css

41 lines
882 B
CSS
Raw Normal View History

2018-10-23 01:13:23 +03:00
.emby-input {
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: 110%;
/* General select styles: change as needed */
2018-10-23 01:13:23 +03:00
font-family: inherit;
font-weight: inherit;
padding: .4em .25em;
/* Prevent padding from causing width overflow */
2018-10-23 01:13:23 +03:00
-webkit-box-sizing: border-box;
box-sizing: border-box;
outline: none !important;
-webkit-tap-highlight-color: rgba(0,0,0,0);
width: 100%;
2018-10-23 01:13:23 +03:00
}
.emby-input::-moz-focus-inner {
border: 0;
}
2018-10-23 01:13:23 +03:00
.inputContainer {
margin-bottom: 1.8em;
2018-10-23 01:13:23 +03:00
}
.inputLabel {
display: inline-block;
margin-bottom: .25em;
2018-10-23 01:13:23 +03:00
}
.emby-input + .fieldDescription {
margin-top: .25em;
2018-10-23 01:13:23 +03:00
}
.emby-input-iconbutton {
-webkit-align-self: flex-end;
align-self: flex-end;
}