-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery.stickyPlaceholder.css
More file actions
41 lines (39 loc) · 1.18 KB
/
Copy pathjquery.stickyPlaceholder.css
File metadata and controls
41 lines (39 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.sticky-placeholder-wrapper {
position: relative;
display: inline-block;
width: 100%;
z-index: 0;
}
.sticky-placeholder-wrapper > input, .sticky-placeholder-wrapper > textarea {
position: relative;
margin: 0;
z-index: 2;
}
.sticky-placeholder-wrapper > label {
z-index: 1;
position: absolute;
top: 0;
overflow: hidden;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-bottom: 0;
text-transform: none;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
cursor: text;
-moz-transition: opacity .2s ease-out;
-ms-transition: opacity .2s ease-out;
-o-transition: opacity .2s ease-out;
-webkit-transition: opacity .2s ease-out;
transition: opacity .2s ease-out;
font-family: 'Roboto',Tahoma, sans-serif !important;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
max-width: 100%;
}