Skip to content

Commit d160833

Browse files
authored
Update to version 1.3.17-STABLE
1 parent 06e7220 commit d160833

22 files changed

Lines changed: 3845 additions & 0 deletions

css/css/bootstrap/bootstrap-datetimepicker.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/css/bootstrap/bootstrap-editable.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/css/bootstrap/bootstrap-table.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
.bootstrap-tagsinput {
2+
background-color: #fff;
3+
border: 1px solid #ccc;
4+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
5+
display: inline-block;
6+
padding: 4px 6px;
7+
color: #555;
8+
vertical-align: middle;
9+
border-radius: 4px;
10+
max-width: 100%;
11+
line-height: 22px;
12+
cursor: text;
13+
width: 100%;
14+
}
15+
.bootstrap-tagsinput .label
16+
{
17+
font-weight: normal;
18+
}
19+
.bootstrap-tagsinput input {
20+
border: none;
21+
box-shadow: none;
22+
outline: none;
23+
background-color: transparent;
24+
padding: 0 6px;
25+
margin: 0;
26+
width: auto;
27+
max-width: inherit;
28+
}
29+
.bootstrap-tagsinput.form-control input::-moz-placeholder {
30+
color: #777;
31+
opacity: 1;
32+
}
33+
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
34+
color: #777;
35+
}
36+
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
37+
color: #777;
38+
}
39+
.bootstrap-tagsinput input:focus {
40+
border: none;
41+
box-shadow: none;
42+
}
43+
.bootstrap-tagsinput .tag {
44+
margin-right: 2px;
45+
color: white;
46+
}
47+
.bootstrap-tagsinput .tag [data-role="remove"] {
48+
margin-left: 8px;
49+
cursor: pointer;
50+
}
51+
.bootstrap-tagsinput .tag [data-role="remove"]:after {
52+
content: "x";
53+
padding: 0px 2px;
54+
}
55+
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
56+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
57+
}
58+
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
59+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
60+
}
61+
62+
.tt-menu {
63+
position: absolute;
64+
top: 100%;
65+
left: 0;
66+
z-index: 1000;
67+
display: none;
68+
float: left;
69+
min-width: 160px;
70+
padding: 5px 0;
71+
margin: 2px 0 0;
72+
list-style: none;
73+
font-size: 14px;
74+
background-color: #ffffff;
75+
border: 1px solid #cccccc;
76+
border: 1px solid rgba(0, 0, 0, 0.15);
77+
border-radius: 4px;
78+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
79+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
80+
background-clip: padding-box;
81+
cursor: pointer;
82+
}
83+
84+
.tt-suggestion {
85+
display: block;
86+
padding: 3px 20px;
87+
clear: both;
88+
font-weight: normal;
89+
line-height: 1.428571429;
90+
color: #333333;
91+
white-space: nowrap;
92+
}
93+
94+
.tt-suggestion:hover,
95+
.tt-suggestion:focus {
96+
color: #ffffff;
97+
text-decoration: none;
98+
outline: 0;
99+
background-color: #428bca;
100+
}
101+
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
/*! ========================================================================
2+
* Bootstrap Toggle: bootstrap-toggle.css v2.2.0
3+
* http://www.bootstraptoggle.com
4+
* ========================================================================
5+
* Copyright 2014 Min Hur, The New York Times Company
6+
* Licensed under MIT
7+
* ======================================================================== */
8+
9+
10+
.checkbox label .toggle,
11+
.checkbox-inline .toggle {
12+
margin-left: -20px;
13+
margin-right: 5px;
14+
}
15+
16+
.toggle {
17+
position: relative;
18+
overflow: hidden;
19+
}
20+
.toggle input[type="checkbox"] {
21+
display: none;
22+
}
23+
.toggle-group {
24+
position: absolute;
25+
width: 200%;
26+
top: 0;
27+
bottom: 0;
28+
left: 0;
29+
transition: left 0.35s;
30+
-webkit-transition: left 0.35s;
31+
-moz-user-select: none;
32+
-webkit-user-select: none;
33+
}
34+
.toggle.off .toggle-group {
35+
left: -100%;
36+
}
37+
.toggle-on {
38+
position: absolute;
39+
top: 0;
40+
bottom: 0;
41+
left: 0;
42+
right: 50%;
43+
margin: 0;
44+
border: 0;
45+
border-radius: 0;
46+
}
47+
.toggle-off {
48+
position: absolute;
49+
top: 0;
50+
bottom: 0;
51+
left: 50%;
52+
right: 0;
53+
margin: 0;
54+
border: 0;
55+
border-radius: 0;
56+
}
57+
.toggle-handle {
58+
position: relative;
59+
margin: 0 auto;
60+
padding-top: 0px;
61+
padding-bottom: 0px;
62+
height: 100%;
63+
width: 0px;
64+
border-width: 0 1px;
65+
}
66+
67+
.toggle.btn { min-width: 59px; min-height: 34px; }
68+
.toggle-on.btn { padding-right: 24px; }
69+
.toggle-off.btn { padding-left: 24px; }
70+
71+
.toggle.btn-lg { min-width: 79px; min-height: 45px; }
72+
.toggle-on.btn-lg { padding-right: 31px; }
73+
.toggle-off.btn-lg { padding-left: 31px; }
74+
.toggle-handle.btn-lg { width: 40px; }
75+
76+
.toggle.btn-sm { min-width: 50px; min-height: 30px;}
77+
.toggle-on.btn-sm { padding-right: 20px; }
78+
.toggle-off.btn-sm { padding-left: 20px; }
79+
80+
.toggle.btn-xs { min-width: 35px; min-height: 22px;}
81+
.toggle-on.btn-xs { padding-right: 12px; }
82+
.toggle-off.btn-xs { padding-left: 12px; }
83+
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/* =========================================================
2+
* bootstrap-treeview.css v1.2.0
3+
* =========================================================
4+
* Copyright 2013 Jonathan Miles
5+
* Project URL : http://www.jondmiles.com/bootstrap-treeview
6+
*
7+
* Licensed under the Apache License, Version 2.0 (the "License");
8+
* you may not use this file except in compliance with the License.
9+
* You may obtain a copy of the License at
10+
*
11+
* http://www.apache.org/licenses/LICENSE-2.0
12+
*
13+
* Unless required by applicable law or agreed to in writing, software
14+
* distributed under the License is distributed on an "AS IS" BASIS,
15+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
* See the License for the specific language governing permissions and
17+
* limitations under the License.
18+
* ========================================================= */
19+
20+
.treeview .list-group-item {
21+
cursor: pointer;
22+
}
23+
24+
.treeview span.indent {
25+
margin-left: 10px;
26+
margin-right: 10px;
27+
}
28+
29+
.treeview span.icon {
30+
width: 12px;
31+
margin-right: 5px;
32+
}
33+
34+
.treeview .node-disabled {
35+
color: silver;
36+
cursor: not-allowed;
37+
}

0 commit comments

Comments
 (0)