-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
92 lines (87 loc) · 1.19 KB
/
Copy pathindex.css
File metadata and controls
92 lines (87 loc) · 1.19 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
textarea {
background: inherit;
border: none;
}
input {
background: inherit;
border: none;
}
body {
margin: 0;
padding: 0;
}
.hide {
display: none;
}
.show {
display: ;
}
.encode-area {
background: #BAEEBA;
border-left: 1px #aaa solid;
}
.decode-area {
background: #cfc;
}
.code-block {
padding-top: 6px;
padding-left: 6px;
overflow: hidden;
}
.block-content {
float: left;
}
.name-tag {
float: left;
padding-right: 10px;
background: #f5f5dc;
}
.name-tag input {
width: 100px;
}
.name-tag .name {
max-width: 50px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.edit-area {
width: 190px;
overflow-y:visible
}
.edit-area:focus {
width: 300px;
}
.btn {
padding: 0 10px;
cursor: pointer;
}
.btn.decode {
background: #5f9ea0;
}
.btn.encode {
background: #cd5c5c;
}
.btn.del {
background: #000;
color: #fff;
}
.btn.add {
background: #f0f8ff;
}
.btn.sort {
background: #bc8f8f;
}
.btn.confirm {
background: #008080;
}
.btn.cancel {
background: #b22222;
}
.add-node-contol input {
width: 100px;
}
.message {
background: #ff0;
color: #f00;
}