-
Notifications
You must be signed in to change notification settings - Fork 0
/
ABTextBox.css
65 lines (51 loc) · 1.26 KB
/
ABTextBox.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
.ABTextBox {
display:inline-block;
}
.ABTextBox-frame {
overflow: hidden;
display: block;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing:border-box;
}
.ABTextBox .ABTextBox-toolbox {
padding:1px;
margin-bottom:1px;
}
.ABTextBox-skin-default {
border-radius:3px;
border: 1px solid silver;
padding:3px;
background:linear-gradient(0deg, #eeeeee, #ffffff , #eeeeee);
background-color:#eeeeee;
}
.ABTextBox-skin-default .ABTextBox-frame {
border: 1px solid silver;
background-color: white;
}
.ABTextBox-skin-default .ABTextBox-toolbox {
}
.ABTextBox-skin-default .ABTextBox-toolbox-btn {
border:1px solid silver;
border-radius:2px;
width:30px;
height:25px;
padding:1px;
margin:1px;
background:linear-gradient(0deg,#dddddd,#eaeaea,#dddddd);
}
.ABTextBox-skin-default .ABTextBox-toolbox-btn:hover {
background:linear-gradient(0deg,#eeeeee,#fbfbfb,#eeeeee);
}
.ABTextBox-skin-default .ABTextBox-toolbox-btn:active {
background:linear-gradient(0deg,#fbfbfb,#eeeeee,#fbfbfb);
}
.ABTextBox-skin-custom {
border-radius:3px;
border: 1px solid;
padding:3px;
}
.ABTextBox-skin-custom .ABTextBox-frame {
border: 1px solid;
background-color: white;
}