Skip to content

Commit edafc57

Browse files
authored
Merge pull request #2511 from MPOS/library-update
Library update
2 parents 00bdcdf + 1df2ad9 commit edafc57

26 files changed

+1262
-14905
lines changed

public/site_assets/bootstrap/css/bootstrap.css

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

public/site_assets/bootstrap/css/bootstrap.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/site_assets/bootstrap/css/bootstrap.min.css

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

public/site_assets/bootstrap/css/bootstrap.min.css.map

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

public/site_assets/bootstrap/css/plugins/dataTables/dataTables.bootstrap.css

Lines changed: 1 addition & 235 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
/*
2+
* metismenu - v2.5.2
3+
* A jQuery menu plugin
4+
* https://github.com/onokumus/metisMenu#readme
5+
*
6+
* Made by Osman Nuri Okumuş <onokumus@gmail.com> (https://github.com/onokumus)
7+
* Under MIT License
8+
*/
9+
10+
.metismenu .arrow {
11+
float: right;
12+
line-height: 1.42857;
13+
}
14+
*[dir="rtl"] .metismenu .arrow {
15+
float: left;
16+
}
17+
18+
/*
19+
* Require Bootstrap
20+
* https://github.com/twbs/bootstrap
21+
*/
22+
23+
.metismenu .glyphicon.arrow:before {
24+
content: "\e079";
25+
}
26+
.metismenu .active > a > .glyphicon.arrow:before {
27+
content: "\e114";
28+
}
29+
30+
/*
31+
* Require Font-Awesome
32+
* http://fortawesome.github.io/Font-Awesome/
33+
*/
34+
35+
.metismenu .fa.arrow:before {
36+
content: "\f104";
37+
}
38+
.metismenu .active > a > .fa.arrow:before {
39+
content: "\f107";
40+
}
41+
42+
/*
43+
* Require Ionicons
44+
* http://ionicons.com/
45+
*/
46+
47+
.metismenu .ion.arrow:before {
48+
content: "\f3d2"
49+
}
50+
.metismenu .active > a > .ion.arrow:before {
51+
content: "\f3d0";
52+
}
53+
.metismenu .plus-times {
54+
float: right;
55+
}
56+
*[dir="rtl"] .metismenu .plus-times {
57+
float: left;
58+
}
59+
.metismenu .fa.plus-times:before {
60+
content: "\f067";
61+
}
62+
.metismenu .active > a > .fa.plus-times {
63+
-webkit-transform: rotate(45deg);
64+
-ms-transform: rotate(45deg);
65+
-o-transform: rotate(45deg);
66+
transform: rotate(45deg);
67+
}
68+
.metismenu .plus-minus {
69+
float: right;
70+
}
71+
*[dir="rtl"] .metismenu .plus-minus {
72+
float: left;
73+
}
74+
.metismenu .fa.plus-minus:before {
75+
content: "\f067";
76+
}
77+
.metismenu .active > a > .fa.plus-minus:before {
78+
content: "\f068";
79+
}
80+
.metismenu .collapse {
81+
display: none;
82+
}
83+
.metismenu .collapse.in {
84+
display: block;
85+
}
86+
.metismenu .collapsing {
87+
position: relative;
88+
height: 0;
89+
overflow: hidden;
90+
-webkit-transition-timing-function: ease;
91+
-o-transition-timing-function: ease;
92+
transition-timing-function: ease;
93+
-webkit-transition-duration: .35s;
94+
-o-transition-duration: .35s;
95+
transition-duration: .35s;
96+
-webkit-transition-property: height, visibility;
97+
-o-transition-property: height, visibility;
98+
transition-property: height, visibility;
99+
}

0 commit comments

Comments
 (0)