1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/emby-input/emby-input.css

60 lines
1.4 KiB
CSS
Raw Normal View History

2016-08-03 00:30:22 -04:00
.emby-input {
2016-05-28 14:03:38 -04:00
display: block;
margin: 0;
margin-bottom: 0 !important;
background: none;
border: 1px solid rgb(221, 221, 221);
border-width: 0 0 1px 0;
/* Prefixed box-sizing rules necessary for older browsers */
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
/* 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 0 .3em 0;
cursor: pointer;
outline: none !important;
width: 100%;
background-color: transparent;
border-radius: 0;
}
.inputContainer {
2016-06-06 21:55:16 -04:00
margin-bottom: 2em;
2016-05-28 14:03:38 -04:00
}
.inputLabel {
2016-05-29 14:42:03 -04:00
display: inline-block;
2016-06-03 15:32:10 -04:00
transition: all .2s ease-out;
2016-05-28 14:03:38 -04:00
}
2016-08-03 00:30:22 -04:00
.inputLabel-float {
transform-origin: left top;
transform: scale(1.3,1.3) translateY(86%);
}
2016-05-29 14:42:03 -04:00
2016-08-03 00:30:22 -04:00
.inputLabelFocused {
2016-05-28 14:03:38 -04:00
color: #52B54B;
}
.emby-input-selectionbar {
height: 2px;
transform: scale(.01, 1);
transition: transform .25s ease-out;
position: relative;
top: -1px;
margin-bottom: .5em;
-webkit-transform-origin: center center;
transform-origin: center center;
}
2016-08-03 00:30:22 -04:00
.emby-input:focus + .emby-input-selectionbar {
2016-05-28 14:03:38 -04:00
background-color: #52B54B;
transform: none;
}