blob: 895ad7fd03340a45ef937f254528e2fd7acc420e (
plain)
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
|
#error-list-div{
overflow:scroll;
color:brown;
width:480px;
height:300px;
}
#node-validate-result a{
text-decoration: underline;
color:blue;
cursor:pointer;
}
table#errTable tr td:first-child {
border-left: 0px solid #e5e5e5;
text-align: center;
}
table#errTable tr td:last-child {
border-right: 0px solid #e5e5e5;
}
table#errTable tr:nth-of-type(odd) {
background-color: #FFF0F0;
}
table#errTable tr td {
border-width: 0px 0px 0px 0px;
border-style: solid;
border-color: #fff;
text-align: center;
font-size: 1.0em;
}
#sli-values-div{
overflow:auto;
color:blue;
width:850px;
height:600px;
}
#sli-values-div input[type="text"] {
padding: 1px;
border: solid 1px grey;
/*border: solid 1px #dcdcdc;*/
width:800px;
transition: box-shadow 0.3s, border 0.3s;
box-shadow: 0 0 5px 1px #969696;
cursor:pointer;
}
.valueBoxDiv {
border-width: 1px 2px 1px 1px;
border-style: solid;
/*border-color: #9999FF;*/
border-color: grey;
/*border-color: #fff;*/
font-size: 1.0em;
border-left: 1px solid #fff;
border-right: 1px solid #fff;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
padding-bottom: 5px;
/*background-color:#FFE6E6;*/
background-color:#fff;
}
/*#sli-values-div input[type="text"]:focus,
#sli-values-div input[type="text"].focus {
border: solid 1px #707070;
box-shadow: 0 0 5px 1px #969696;
}
*/
/*
#getFixed {
color: #c00;
font: bold 15px arial;
padding: 10px;
margin: 10px;
border: 1px solid #c00;
width: 200px;
}
*/
|