forked from ReDEnergy/SessionSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfield-widget.css
More file actions
88 lines (73 loc) · 1.6 KB
/
Copy pathfield-widget.css
File metadata and controls
88 lines (73 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/**
* Edit Session Section
*/
#session-sync .field-edit-widget {
width: 100%;
padding: 10px;
background: #FFF;
border: 1px solid #CCC;
opacity: 0;
position: absolute;
box-sizing: border-box;
box-shadow: 0px 0px 5px 0px #CCC;
bottom: 0;
left: 0;
z-index: -1;
transition: 0.2s all ease-out;
}
#session-sync .field-edit-widget[data-active] {
opacity: 1;
z-index: 1000;
}
#session-sync .field-edit-widget .group {
width: 100%;
height: 2.4em;
margin: 3px 0;
line-height: 2.0em;
float: left;
display: flex;
}
#session-sync .field-edit-widget label {
width: 80px;
padding: 0 20px 0 0;
text-decoration: underline;
font-size: 1.2em;
text-align: right;
}
#session-sync .field-edit-widget input {
height: 100%;
padding: 0 1em 0.2em 1em !important;
color: #333;
box-sizing: border-box;
border: 1px solid #CCC;
border-radius: 1.2em !important;
flex: 1;
}
#session-sync .field-edit-widget input:focus {
border-color: #2D92EB !important;
box-shadow: 0 0 3px 0 rgba(0, 131, 255, 0.5) inset !important;
}
#session-sync .field-edit-widget .button {
height: 2em;
padding: 0 1.5em;
line-height: 1.8em;
margin: 3px 0 0 10px;
font-size: 14px;
text-align: center;
color: #FFF;
border: unset;
border-radius: 1em;
background: #999;
transition: all 0.2s;
float: right;
}
#session-sync .field-edit-widget .button:hover {
color: #FFF;
cursor: pointer;
}
#session-sync .field-edit-widget .button.save:hover {
background: #23A823;
}
#session-sync .field-edit-widget .button.cancel:hover {
background: #DC462C;
}