jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/emby-input/emby-input.css

61 lines
1.4 KiB
CSS
Raw Normal View History

2016-08-02 21:30:22 -07:00
.emby-input {
2016-05-28 11:03:38 -07:00
display: block;
margin: 0;
margin-bottom: 0 !important;
background: none;
2016-10-02 23:28:45 -07:00
border: 1px solid #383838;
2016-05-28 11:03:38 -07:00
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 */
2016-08-21 12:18:58 -07:00
font-size: 110%;
2016-05-28 11:03:38 -07:00
/* General select styles: change as needed */
font-family: inherit;
font-weight: inherit;
color: inherit;
padding: .35em 0 .3em 0;
outline: none !important;
width: 100%;
background-color: transparent;
border-radius: 0;
2016-09-13 10:49:13 -07:00
/* Ensure it is over the label so that it can be clicked */
position: relative;
2016-05-28 11:03:38 -07:00
}
.inputContainer {
2016-08-30 11:13:41 -07:00
margin-bottom: 1.8em;
2016-05-28 11:03:38 -07:00
}
.inputLabel {
2016-05-29 11:42:03 -07:00
display: inline-block;
2016-06-03 12:32:10 -07:00
transition: all .2s ease-out;
2016-05-28 11:03:38 -07:00
}
2016-08-02 21:30:22 -07:00
.inputLabel-float {
transform-origin: left top;
2016-08-21 12:18:58 -07:00
transform: scale(1.25,1.25) translateY(94%);
2016-08-02 21:30:22 -07:00
}
2016-05-29 11:42:03 -07:00
2016-08-02 21:30:22 -07:00
.inputLabelFocused {
2016-05-28 11:03:38 -07: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-02 21:30:22 -07:00
.emby-input:focus + .emby-input-selectionbar {
2016-05-28 11:03:38 -07:00
background-color: #52B54B;
transform: none;
}