Skip to content

Commit 0afc0b0

Browse files
authored
Merge pull request #338 from mrholek/v1.0.10
v1.0.10
2 parents abb1697 + b43b70e commit 0afc0b0

28 files changed

+80
-88
lines changed

AJAX_Full_Project_GULP/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/ajax",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"description": "Open Source Bootstrap Admin Template",
55
"main": "index.html",
66
"dependencies": {
@@ -14,7 +14,7 @@
1414
"simple-line-icons": "2.4.1"
1515
},
1616
"devDependencies": {
17-
"browser-sync": "2.23.5",
17+
"browser-sync": "2.23.6",
1818
"del": "3.0.0",
1919
"gulp": "3.9.1",
2020
"gulp-autoprefixer": "4.1.0",
@@ -49,6 +49,6 @@
4949
],
5050
"author": "Łukasz Holeczek",
5151
"homepage": "http://coreui.io",
52-
"copyright": "Copyright 2017 creativeLabs Łukasz Holeczek",
52+
"copyright": "Copyright 2018 creativeLabs Łukasz Holeczek",
5353
"license": "MIT"
5454
}

AJAX_Full_Project_GULP/src/css/style.css

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* CoreUI - Open Source Bootstrap Admin Template
3-
* @version v1.0.9
3+
* @version v1.0.10
44
* @link http://coreui.io
55
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
66
* @license MIT
@@ -9741,7 +9741,7 @@ button {
97419741
color: rgba(255, 255, 255, 0.6) !important; }
97429742

97439743
.card-header .icon-bg {
9744-
display: inline-body;
9744+
display: inline-block;
97459745
padding: 0.75rem 1.25rem !important;
97469746
margin-top: -0.75rem;
97479747
margin-right: 1.25rem;
@@ -9929,18 +9929,18 @@ button {
99299929
.card-header .card-actions a:hover, .card-header .card-actions button:hover {
99309930
text-decoration: none; }
99319931
.card-header .card-actions a [class^="icon-"], .card-header .card-actions a [class*=" icon-"], .card-header .card-actions button [class^="icon-"], .card-header .card-actions button [class*=" icon-"] {
9932-
display: inline-body;
9932+
display: inline-block;
99339933
vertical-align: middle; }
99349934
.card-header .card-actions a i, .card-header .card-actions button i {
9935-
display: inline-body;
9935+
display: inline-block;
99369936
transition: .4s; }
99379937
.card-header .card-actions a .r180, .card-header .card-actions button .r180 {
99389938
-webkit-transform: rotate(180deg);
99399939
transform: rotate(180deg); }
99409940
.card-header .card-actions .input-group {
99419941
width: 230px;
99429942
margin: 6px; }
9943-
.card-header .card-actions .input-group .input-group-addon {
9943+
.card-header .card-actions .input-group .input-group-prepend, .card-header .card-actions .input-group .input-group-append {
99449944
background: #fff; }
99459945
.card-header .card-actions .input-group input {
99469946
border-left: 0; }
@@ -10038,9 +10038,8 @@ base-chart.chart {
1003810038
.main .container-fluid {
1003910039
padding: 0 30px; }
1004010040

10041-
.input-group-addon,
10042-
.input-group-btn {
10043-
min-width: 40px;
10041+
.input-group-prepend,
10042+
.input-group-append {
1004410043
white-space: nowrap;
1004510044
vertical-align: middle; }
1004610045

AJAX_Full_Project_GULP/src/css/style.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AJAX_Full_Project_GULP/src/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
* CoreUI - Open Source Bootstrap Admin Template
3-
* @version v1.0.9
3+
* @version v1.0.10
44
* @link http://coreui.io
55
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
66
* @license MIT

AJAX_Full_Project_GULP/src/scss/core/_card.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
.card-header {
2121

2222
.icon-bg {
23-
display: inline-body;
23+
display: inline-block;
2424
padding: $card-spacer-y $card-spacer-x !important;
2525
margin-top: -$card-spacer-y;
2626
margin-right: $card-spacer-x;
@@ -135,12 +135,12 @@
135135
}
136136

137137
[class^="icon-"], [class*=" icon-"] {
138-
display: inline-body;
138+
display: inline-block;
139139
vertical-align: middle;
140140
}
141141

142142
i {
143-
display: inline-body;
143+
display: inline-block;
144144
transition: .4s;
145145
}
146146

@@ -153,7 +153,7 @@
153153
width: 230px;
154154
margin: 6px;
155155

156-
.input-group-addon {
156+
.input-group-prepend, .input-group-append {
157157
background: #fff;
158158
}
159159

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
.input-group-addon,
2-
.input-group-btn {
3-
min-width: 40px;
1+
.input-group-prepend,
2+
.input-group-append {
43
white-space: nowrap;
54
vertical-align: middle; // Match the inputs
65
}

AJAX_Full_Project_GULP/src/scss/style.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* CoreUI - Open Source Bootstrap Admin Template
3-
* @version v1.0.9
3+
* @version v1.0.10
44
* @link http://coreui.io
55
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
66
* @license MIT

AJAX_Starter_GULP/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/ajax",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"description": "Open Source Bootstrap Admin Template",
55
"main": "index.html",
66
"dependencies": {
@@ -14,7 +14,7 @@
1414
"simple-line-icons": "2.4.1"
1515
},
1616
"devDependencies": {
17-
"browser-sync": "2.23.5",
17+
"browser-sync": "2.23.6",
1818
"del": "3.0.0",
1919
"gulp": "3.9.1",
2020
"gulp-autoprefixer": "4.1.0",
@@ -49,6 +49,6 @@
4949
],
5050
"author": "Łukasz Holeczek",
5151
"homepage": "http://coreui.io",
52-
"copyright": "Copyright 2017 creativeLabs Łukasz Holeczek",
52+
"copyright": "Copyright 2018 creativeLabs Łukasz Holeczek",
5353
"license": "MIT"
5454
}

AJAX_Starter_GULP/src/css/style.css

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* CoreUI - Open Source Bootstrap Admin Template
3-
* @version v1.0.9
3+
* @version v1.0.10
44
* @link http://coreui.io
55
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
66
* @license MIT
@@ -9741,7 +9741,7 @@ button {
97419741
color: rgba(255, 255, 255, 0.6) !important; }
97429742

97439743
.card-header .icon-bg {
9744-
display: inline-body;
9744+
display: inline-block;
97459745
padding: 0.75rem 1.25rem !important;
97469746
margin-top: -0.75rem;
97479747
margin-right: 1.25rem;
@@ -9929,18 +9929,18 @@ button {
99299929
.card-header .card-actions a:hover, .card-header .card-actions button:hover {
99309930
text-decoration: none; }
99319931
.card-header .card-actions a [class^="icon-"], .card-header .card-actions a [class*=" icon-"], .card-header .card-actions button [class^="icon-"], .card-header .card-actions button [class*=" icon-"] {
9932-
display: inline-body;
9932+
display: inline-block;
99339933
vertical-align: middle; }
99349934
.card-header .card-actions a i, .card-header .card-actions button i {
9935-
display: inline-body;
9935+
display: inline-block;
99369936
transition: .4s; }
99379937
.card-header .card-actions a .r180, .card-header .card-actions button .r180 {
99389938
-webkit-transform: rotate(180deg);
99399939
transform: rotate(180deg); }
99409940
.card-header .card-actions .input-group {
99419941
width: 230px;
99429942
margin: 6px; }
9943-
.card-header .card-actions .input-group .input-group-addon {
9943+
.card-header .card-actions .input-group .input-group-prepend, .card-header .card-actions .input-group .input-group-append {
99449944
background: #fff; }
99459945
.card-header .card-actions .input-group input {
99469946
border-left: 0; }
@@ -10038,9 +10038,8 @@ base-chart.chart {
1003810038
.main .container-fluid {
1003910039
padding: 0 30px; }
1004010040

10041-
.input-group-addon,
10042-
.input-group-btn {
10043-
min-width: 40px;
10041+
.input-group-prepend,
10042+
.input-group-append {
1004410043
white-space: nowrap;
1004510044
vertical-align: middle; }
1004610045

AJAX_Starter_GULP/src/css/style.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AJAX_Starter_GULP/src/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
* CoreUI - Open Source Bootstrap Admin Template
3-
* @version v1.0.9
3+
* @version v1.0.10
44
* @link http://coreui.io
55
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
66
* @license MIT

AJAX_Starter_GULP/src/scss/core/_card.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
.card-header {
2121

2222
.icon-bg {
23-
display: inline-body;
23+
display: inline-block;
2424
padding: $card-spacer-y $card-spacer-x !important;
2525
margin-top: -$card-spacer-y;
2626
margin-right: $card-spacer-x;
@@ -135,12 +135,12 @@
135135
}
136136

137137
[class^="icon-"], [class*=" icon-"] {
138-
display: inline-body;
138+
display: inline-block;
139139
vertical-align: middle;
140140
}
141141

142142
i {
143-
display: inline-body;
143+
display: inline-block;
144144
transition: .4s;
145145
}
146146

@@ -153,7 +153,7 @@
153153
width: 230px;
154154
margin: 6px;
155155

156-
.input-group-addon {
156+
.input-group-prepend, .input-group-append {
157157
background: #fff;
158158
}
159159

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
.input-group-addon,
2-
.input-group-btn {
3-
min-width: 40px;
1+
.input-group-prepend,
2+
.input-group-append {
43
white-space: nowrap;
54
vertical-align: middle; // Match the inputs
65
}

AJAX_Starter_GULP/src/scss/style.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* CoreUI - Open Source Bootstrap Admin Template
3-
* @version v1.0.9
3+
* @version v1.0.10
44
* @link http://coreui.io
55
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
66
* @license MIT

Static_Full_Project_GULP/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/static",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"description": "Open Source Bootstrap Admin Template",
55
"main": "index.html",
66
"dependencies": {
@@ -14,7 +14,7 @@
1414
"simple-line-icons": "2.4.1"
1515
},
1616
"devDependencies": {
17-
"browser-sync": "2.23.5",
17+
"browser-sync": "2.23.6",
1818
"del": "3.0.0",
1919
"gulp": "3.9.1",
2020
"gulp-autoprefixer": "4.1.0",
@@ -49,6 +49,6 @@
4949
],
5050
"author": "Łukasz Holeczek",
5151
"homepage": "http://coreui.io",
52-
"copyright": "Copyright 2017 creativeLabs Łukasz Holeczek",
52+
"copyright": "Copyright 2018 creativeLabs Łukasz Holeczek",
5353
"license": "MIT"
5454
}

Static_Full_Project_GULP/src/css/style.css

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* CoreUI - Open Source Bootstrap Admin Template
3-
* @version v1.0.9
3+
* @version v1.0.10
44
* @link http://coreui.io
55
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
66
* @license MIT
@@ -9741,7 +9741,7 @@ button {
97419741
color: rgba(255, 255, 255, 0.6) !important; }
97429742

97439743
.card-header .icon-bg {
9744-
display: inline-body;
9744+
display: inline-block;
97459745
padding: 0.75rem 1.25rem !important;
97469746
margin-top: -0.75rem;
97479747
margin-right: 1.25rem;
@@ -9929,18 +9929,18 @@ button {
99299929
.card-header .card-actions a:hover, .card-header .card-actions button:hover {
99309930
text-decoration: none; }
99319931
.card-header .card-actions a [class^="icon-"], .card-header .card-actions a [class*=" icon-"], .card-header .card-actions button [class^="icon-"], .card-header .card-actions button [class*=" icon-"] {
9932-
display: inline-body;
9932+
display: inline-block;
99339933
vertical-align: middle; }
99349934
.card-header .card-actions a i, .card-header .card-actions button i {
9935-
display: inline-body;
9935+
display: inline-block;
99369936
transition: .4s; }
99379937
.card-header .card-actions a .r180, .card-header .card-actions button .r180 {
99389938
-webkit-transform: rotate(180deg);
99399939
transform: rotate(180deg); }
99409940
.card-header .card-actions .input-group {
99419941
width: 230px;
99429942
margin: 6px; }
9943-
.card-header .card-actions .input-group .input-group-addon {
9943+
.card-header .card-actions .input-group .input-group-prepend, .card-header .card-actions .input-group .input-group-append {
99449944
background: #fff; }
99459945
.card-header .card-actions .input-group input {
99469946
border-left: 0; }
@@ -10038,9 +10038,8 @@ base-chart.chart {
1003810038
.main .container-fluid {
1003910039
padding: 0 30px; }
1004010040

10041-
.input-group-addon,
10042-
.input-group-btn {
10043-
min-width: 40px;
10041+
.input-group-prepend,
10042+
.input-group-append {
1004410043
white-space: nowrap;
1004510044
vertical-align: middle; }
1004610045

Static_Full_Project_GULP/src/css/style.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Static_Full_Project_GULP/src/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
* CoreUI - Open Source Bootstrap Admin Template
3-
* @version v1.0.9
3+
* @version v1.0.10
44
* @link http://coreui.io
55
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
66
* @license MIT

Static_Full_Project_GULP/src/scss/core/_card.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
.card-header {
2121

2222
.icon-bg {
23-
display: inline-body;
23+
display: inline-block;
2424
padding: $card-spacer-y $card-spacer-x !important;
2525
margin-top: -$card-spacer-y;
2626
margin-right: $card-spacer-x;
@@ -135,12 +135,12 @@
135135
}
136136

137137
[class^="icon-"], [class*=" icon-"] {
138-
display: inline-body;
138+
display: inline-block;
139139
vertical-align: middle;
140140
}
141141

142142
i {
143-
display: inline-body;
143+
display: inline-block;
144144
transition: .4s;
145145
}
146146

@@ -153,7 +153,7 @@
153153
width: 230px;
154154
margin: 6px;
155155

156-
.input-group-addon {
156+
.input-group-prepend, .input-group-append {
157157
background: #fff;
158158
}
159159

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
.input-group-addon,
2-
.input-group-btn {
3-
min-width: 40px;
1+
.input-group-prepend,
2+
.input-group-append {
43
white-space: nowrap;
54
vertical-align: middle; // Match the inputs
65
}

0 commit comments

Comments
 (0)