2018-10-23 01:13:23 +03:00
|
|
|
.emby-input {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
font-family: inherit;
|
|
|
|
font-weight: inherit;
|
2020-01-22 21:40:45 +01:00
|
|
|
padding: 0.4em 0.25em;
|
|
|
|
|
2020-01-27 22:54:52 +09:00
|
|
|
/* must the 16px or larger to prevent iOS page zoom on focus */
|
|
|
|
font-size: 110%;
|
2020-01-27 23:08:17 +09:00
|
|
|
|
2020-01-27 22:54:52 +09:00
|
|
|
/* prevent padding from causing width overflow */
|
2020-01-09 19:35:19 +01:00
|
|
|
-webkit-box-sizing: border-box;
|
2018-10-23 01:13:23 +03:00
|
|
|
box-sizing: border-box;
|
2019-01-10 15:39:37 +03:00
|
|
|
outline: none !important;
|
2020-01-22 21:40:45 +01:00
|
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
2019-01-10 15:39:37 +03:00
|
|
|
width: 100%;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2022-04-06 17:20:52 +01:00
|
|
|
.emby-input[type=color] {
|
|
|
|
height: 2.5em;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-25 14:49:04 -08:00
|
|
|
.emby-input::-moz-focus-inner {
|
|
|
|
border: 0;
|
2020-01-26 13:46:54 -08:00
|
|
|
}
|
2018-10-23 01:13:23 +03:00
|
|
|
|
2020-02-01 18:56:19 +01:00
|
|
|
.emby-input:required {
|
|
|
|
box-shadow: none;
|
2020-01-24 13:20:06 -08:00
|
|
|
}
|
|
|
|
|
2018-10-23 01:13:23 +03:00
|
|
|
.inputContainer {
|
2019-01-10 15:39:37 +03:00
|
|
|
margin-bottom: 1.8em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-05-11 21:43:41 +02:00
|
|
|
.inlineForm {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inlineForm .inputContainer,
|
|
|
|
.inlineForm .selectContainer {
|
|
|
|
flex-basis: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
margin: 0 0.5em 1.8em;
|
|
|
|
}
|
|
|
|
|
2022-10-03 13:36:26 -04:00
|
|
|
[dir="rtl"] .inlineForm .inputContainer:last-child,
|
|
|
|
[dir="rtl"] .inlineForm .selectContainer:last-child,
|
|
|
|
[dir="ltr"] .inlineForm .inputContainer:first-child,
|
|
|
|
[dir="ltr"] .inlineForm .selectContainer:first-child {
|
|
|
|
margin-left: 0;
|
2020-05-11 21:43:41 +02:00
|
|
|
}
|
|
|
|
|
2022-10-03 13:36:26 -04:00
|
|
|
[dir="ltr"] .inlineForm .inputContainer:last-child,
|
|
|
|
[dir="ltr"] .inlineForm .selectContainer:last-child,
|
|
|
|
[dir="rtl"] .inlineForm .inputContainer:first-child,
|
|
|
|
[dir="rtl"] .inlineForm .selectContainer:first-child {
|
|
|
|
margin-right: 0;
|
2020-05-11 21:43:41 +02:00
|
|
|
}
|
|
|
|
|
2018-10-23 01:13:23 +03:00
|
|
|
.inputLabel {
|
|
|
|
display: inline-block;
|
2020-01-19 15:00:37 +01:00
|
|
|
margin-bottom: 0.25em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 15:39:37 +03:00
|
|
|
.emby-input + .fieldDescription {
|
2020-01-19 15:00:37 +01:00
|
|
|
margin-top: 0.25em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emby-input-iconbutton {
|
2020-01-09 19:35:19 +01:00
|
|
|
-webkit-align-self: flex-end;
|
2019-01-10 15:39:37 +03:00
|
|
|
align-self: flex-end;
|
|
|
|
}
|