-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathState.css
More file actions
111 lines (91 loc) · 1.58 KB
/
Copy pathState.css
File metadata and controls
111 lines (91 loc) · 1.58 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.State {
/* padding-bottom: 150px; */
}
.State-Editor {
position: relative;
padding-left: 10px;
padding-top: 10px;
border: 1px solid #aaa;
border-radius: 5px;
}
.state-buttons {
position: absolute;
padding: 0;
list-style: none;
top: 0;
right: 10px;
}
.state-buttons li {
display:inline-block;
padding: 0 3px;
}
.state-buttons li a {
cursor: pointer;
}
.Transition {
position: relative;
padding-left: 10px;
padding-top: 10px;
border: 1px solid #aaa;
border-radius: 5px;
width: 100%
}
textarea {
height: 200px;
width: 100%;
}
.editable-text {
font-style: italic;
text-decoration: underline !important;
cursor: text;
color: #336699 !important;
padding-left: .2em;
padding-right: .2em;
}
.remarks-text {
font-style: italic;
text-decoration: underline !important;
cursor: text;
color: #336699 !important;
padding-left: .2em;
padding-right: .2em;
}
.editable-error {
color: #ff3300 !important;
}
span.editable-text:empty {
color: #ff3300 !important;
}
span.remarks-text:empty:after {
content: 'Add Remarks';
}
span.remarks-text > :empty:after {
content: 'Add Remarks';
}
span.editable-text:empty:after {
content: 'Enter Value';
}
span.editable-text > :empty:after {
content: 'Enter Value';
}
.section {
position: relative;
padding-left: 10px;
padding-top: 10px;
padding-right: 10px;
margin-bottom: 10px;
border: 1px solid #aaa;
border-radius: 5px;
margin-right: 10px;
}
.add-button {
color: inherit;
cursor:pointer;
}
.delete-button {
color: inherit;
cursor:pointer;
}
.warning {
color: #ff3300;
}