-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20_myPlugins.css
More file actions
80 lines (78 loc) · 1.54 KB
/
20_myPlugins.css
File metadata and controls
80 lines (78 loc) · 1.54 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
/*dropdown组件所需的样式类*/
.dropdown-menu{
width:100px;
list-style:none;
border:1px solid #eee;
overflow:hidden;
}
.dropdown-menu>li{ padding:6px 12px; }
.dropdown-menu>li:hover{
font-weight:bold; background:#aaf;
}
.fade{
opacity:0; height:0; transition:all .3s linear;
}
.in{ opacity:1; height:100px;}
/*tabs插件的样式*/
.tabs ul {
list-style:none;
margin: 0;
padding: 0;
}
.tabs ul li {
display: inline-block;
padding: 8px 15px;
border-bottom: 1px solid #aaa;
}
.tabs ul li.active {
border: 1px solid #aaa;
border-bottom: none;
}
.tabs ul li a {
text-decoration: none;
color: #000;
}
.tabs > div {
display: none;
padding: 10px 0;
}
.tabs > div.active {
display: block;
}
.accordion > h4 {
cursor: pointer;
background: #efefef;
}
.accordion > h4,
.accordion > p {
border: 1px solid #aaa;
margin: 0;
}
.accordion > p {
display: none;
}
.accordion > p.active {
display: block;
}
.btnGroup > button {
float: left;
background: #fff;
border: 1px solid #aaa;
padding: 8px 16px;
outline: none;
}
.btnGroup > button:first-child {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.btnGroup > button:last-child {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.btnGroup > button:not(:first-child) {
border-left: none;
}
.btnGroup > button.active {
background: #ccc;
color: #fff;
}