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-input/emby-input.scss

66 lines
1.2 KiB
SCSS
Raw Normal View History

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;
/* must the 16px or larger to prevent iOS page zoom on focus */
font-size: 110%;
2020-01-27 23:08:17 +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;
outline: none !important;
2020-01-22 21:40:45 +01:00
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
width: 100%;
2018-10-23 01:13:23 +03:00
}
2020-01-25 14:49:04 -08:00
.emby-input::-moz-focus-inner {
border: 0;
}
2018-10-23 01:13:23 +03:00
2020-02-01 18:56:19 +01:00
.emby-input:required {
box-shadow: none;
}
2018-10-23 01:13:23 +03:00
.inputContainer {
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;
}
.inlineForm .inputContainer:first-child,
.inlineForm .selectContainer:first-child {
margin-left: 0;
}
.inlineForm .inputContainer:last-child,
.inlineForm .selectContainer:last-child {
margin-right: 0;
}
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
}
.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;
align-self: flex-end;
}