forked from bmauser/bvalidator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbvalidator.css
More file actions
65 lines (64 loc) · 1.46 KB
/
Copy pathbvalidator.css
File metadata and controls
65 lines (64 loc) · 1.46 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
/* invalid input */
.bvalidator_invalid {
background-color: #FFFFAE !important;
}
/* error message */
.bvalidator_errmsg {
background-color: #333;
font-size: 10px;
border: 1px solid #999;
color: #FFF;
display: none;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
-moz-border-radius-bottomleft: 0;
-moz-border-radius-topleft: 0;
-webkit-border-bottom-left-radius: 0;
-moz-border-radius-bottomleft: 0;
border-bottom-left-radius: 0;
-webkit-border-top-left-radius: 0;
-moz-border-radius-topleft: 0;
border-top-left-radius: 0;
-moz-box-shadow: 0 0 6px #ddd;
-webkit-box-shadow: 0 0 6px #ddd;
box-shadow: 0 0 6px #ddd;
white-space: nowrap;
padding-top: 2px;
padding-right: 10px;
padding-bottom: 2px;
padding-left: 5px;
font-family: Arial, Helvetica, sans-serif;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
filter: alpha(opacity=90);
opacity: 0.9;
filter: alpha(opacity=90)
}
/* close icon */
.bvalidator_errmsg .bvalidator_close_icon {
margin-left: 5px;
margin-top: -2px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #F96;
cursor: pointer
}
/* arrow */
.bvalidator_errmsg em {
display: block;
border-color: #333 transparent transparent;
border-style: solid;
border-width: 10px 10px 0;
height: 0;
width: 0;
position: absolute;
bottom: -9px;
left: 5px
}
/**
* Hack by ckihneman
* `z-index` required to show error messages over chosen selects.
*/
.bVErrMsgContainer {
z-index: 1;
}