-
Notifications
You must be signed in to change notification settings - Fork 28
/
b.page.bootstrap3.css
138 lines (129 loc) · 2.8 KB
/
b.page.bootstrap3.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
@CHARSET "UTF-8";
div.bPage {
margin: 0px;
margin-bottom: 10px;
display: block;
}
div.bPage li.bPageList {
}
div.bPage li.bPageList a {
line-height: 20px;
height: 20px;
}
div.bPage li.bPageList select{
margin: 0px;
width: auto !important;
vertical-align: middle;
height: 22px;
line-height: 22px;
font-size: 12px;
padding: 0px;
margin-top: -2px;
display: inline-block;
border: 1px solid #CCCCCC;
}
div.bPage.bPageRight{
text-align: right;
}
/**
* 分页条样式(基于Bootstrap2的样式进行调整)
*/
/*
div.bPage {
margin: 0px;
padding: 0px;
height: 24px;
line-height: 24px;
width: 100%;
border-top: 1px solid #DDDDDD;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
display: block;
}
*/
div.bPage ul {
display: inline-block;
margin-bottom: 0;
margin-left: 0;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
box-shadow: 0 1px 2px rgba(0,0,0,0.05);
padding: 0px;
}
div.bPage li{
text-align: center;
display: inline;
box-sizing: border-box;
}
div.bPage > ul > li > a {
margin: 0px;
border: 1px solid #dddddd;
border-radius: 0px;
padding: 6px 12px;
line-height: 20px;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
background-color: white;
float: left;
text-decoration: none;
border-left-width: 0;
box-sizing: content-box;
}
div.bPage li.csFirstPage a,
div.bPage li.csPreviousPage a,
div.bPage li.csNextPage a,
div.bPage li.csLastPage a {
width: 30px;
}
div.bPage li.csFirstPage a{
border-left: 0px;
}
div.bPage li.csLastPage a{
border-right: 0px;
}
div.bPage>ul>li.disabled>a{
color: #999999;
cursor: default;
}
div.bPage>ul>li.disabled>a:hover {
color: #999999;background-color: white;
}
div.bPage>ul>li>a:hover {
color: #999999; background-color: #F5F5F5;
}
div.bPage>ul>li.pageInfoBox>a {
width: 176px;
text-align: center;
/* padding-left: 4px;
padding-right: 4px; */
}
div.bPage ul > li:first-child > a,
div.bPage ul > li:first-child > span {
border-left-width: 1px;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-webkit-border-top-left-radius: 4px;
border-top-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
-moz-border-radius-topleft: 4px;
}
div.bPage ul > li:last-child > a,
div.bPage ul > li:last-child > span {
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
-moz-border-radius-topright: 4px;
}
div.bPage ul > .active > a,
div.bPage ul > .active > span {
color: #999999;
cursor: default;
background-color: #F5F5F5;
}