-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobalStyle.css
71 lines (62 loc) · 1.6 KB
/
globalStyle.css
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
div.container{
width: 100%;
}
div.container input#inputField{
width: 100%;
float:none;
outline: none !important;
line-height: 2.5rem;
height: 2.5rem;
border: 1px solid transparent;
padding: 0 0.5rem;
font-size: 1rem;
font-weight: 600;
color: rgb(0, 0, 0);
box-sizing: border-box;
text-overflow: ellipsis;
}
div.container input#inputField:hover,
div.container input#inputField:focus,
div.container input#inputField.highlight{
border-color:rgb(102, 102, 102);
font-weight:normal;
}
div.container.readOnly input#inputField:hover{
border: 1px solid transparent;
background-color:#e2e2e2;
font-weight:600;
cursor:default;
}
div.container.readOnly input#inputField:focus,
div.container.readOnly input#inputField.highlight{
border: 1px solid transparent;
font-weight:600;
cursor:default;
}
div.container input#inputField.incorrect{
color: red;
font-weight: bold;
border: 2px solid red;
}
div.container div.Error{
background-color: rgba(191, 9, 0, 0.075);
padding: 0.5rem;
display: inline-flex;
word-break: normal;
white-space: normal;
font-family: 'SegoeUI-Semibold', 'Segoe UI Semibold', 'Segoe UI Regular', 'Segoe UI';
display:none;
}
div.container div.Error.inputError{
display: inline-flex;
}
div.container div.Error label{
line-height: 2rem;
color: rgb(191, 9, 0);
font-weight: 600;
font-size: 1rem;
}
div.container div.Error label.icon{
font-family: "Dyn CRM Symbol", "Segoe MDL2 Assets";
margin-right: 10px;
}