Skip to content

Commit 2b450ad

Browse files
bklaing2github-actions[bot]
authored andcommitted
2.0.0 (#18)
1 parent 5b37ed9 commit 2b450ad

File tree

11 files changed

+14314
-5597
lines changed

11 files changed

+14314
-5597
lines changed

dist/stylesheets/doi.css

+14,264-5,550
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/stylesheets/doi.css.map

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

dist/stylesheets/doi.min.css

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

dist/stylesheets/doi.min.css.map

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"repository": "https://github.com/datacite/maltipoo",
1111
"license": "MIT",
1212
"devDependencies": {
13-
"bootstrap": "4",
13+
"bootstrap": "^5.3.3",
1414
"bootstrap-sass": "^3.4.3",
1515
"cssnano": "^7.0.1",
1616
"postcss": "^8.4.38",

src/stylesheets/doi.scss

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
/*
2-
Datacite - Bootstrap 4 theme
2+
Datacite - Bootstrap 5 theme
33
---------------------------------------------*/
44

55
@import "variables.scss";
66

77
// Core variables and mixins
8-
@import "../../node_modules/bootstrap/scss/functions";
9-
@import "../../node_modules/bootstrap/scss/variables";
10-
@import "../../node_modules/bootstrap/scss/mixins";
8+
@import "../../node_modules/bootstrap/scss/bootstrap";
119

1210
// Reset and dependencies
1311
// @import "../../node_modules/bootstrap/scss/normalize";
14-
@import "../../node_modules/bootstrap/scss/print";
12+
// @import "../../node_modules/bootstrap/scss/print";
1513
// @import "bootstrap/glyphicons";
1614

1715
// Core CSS
1816
// @import "../../node_modules/bootstrap/scss/scaffolding";
1917
@import "../../node_modules/bootstrap/scss/type";
20-
@import "../../node_modules/bootstrap/scss/code";
18+
// @import "../../node_modules/bootstrap/scss/code";
2119
@import "../../node_modules/bootstrap/scss/grid";
2220
@import "../../node_modules/bootstrap/scss/tables";
2321
@import "../../node_modules/bootstrap/scss/forms";
@@ -27,19 +25,19 @@ Datacite - Bootstrap 4 theme
2725
// @import "../../node_modules/bootstrap/scss/component-animations";
2826
@import "../../node_modules/bootstrap/scss/dropdown";
2927
@import "../../node_modules/bootstrap/scss/button-group";
30-
@import "../../node_modules/bootstrap/scss/input-group";
28+
// @import "../../node_modules/bootstrap/scss/input-group";
3129
@import "../../node_modules/bootstrap/scss/nav";
3230
@import "../../node_modules/bootstrap/scss/navbar";
3331
@import "../../node_modules/bootstrap/scss/breadcrumb";
3432
@import "../../node_modules/bootstrap/scss/pagination";
3533
// @import "../../node_modules/bootstrap/scss/pager";
3634
// @import "../../node_modules/bootstrap/scss/labels";
3735
@import "../../node_modules/bootstrap/scss/badge";
38-
@import "../../node_modules/bootstrap/scss/jumbotron";
36+
// @import "../../node_modules/bootstrap/scss/jumbotron";
3937
// @import "../../node_modules/bootstrap/scss/thumbnails";
4038
@import "../../node_modules/bootstrap/scss/alert";
4139
@import "../../node_modules/bootstrap/scss/progress";
42-
@import "../../node_modules/bootstrap/scss/media";
40+
// @import "../../node_modules/bootstrap/scss/media";
4341
@import "../../node_modules/bootstrap/scss/list-group";
4442
// @import "../../node_modules/bootstrap/scss/panels";
4543
// @import "../../node_modules/bootstrap/scss/responsive-embed";

src/stylesheets/doi/components/_inputs.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ textarea.form-control {
424424
height: 45px;
425425
}
426426

427-
.close {
427+
.btn-close {
428428
z-index: 2;
429429
position: relative;
430430
color: $turquoise;

src/stylesheets/doi/components/_labels.scss

+15-15
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@ category: Components
2525
display: inline-block;
2626
margin-bottom: 3px;
2727
}
28-
.badge-primary {
29-
background-color: $primary-color;
30-
}
31-
.badge-info {
32-
background-color: $info-color;
33-
}
34-
.badge-success {
35-
background-color: $success-color;
36-
}
37-
.badge-warning {
38-
background-color: $warning-color;
39-
}
40-
.badge-danger {
41-
background-color: $danger-color;
42-
}
28+
// .badge-primary {
29+
// background-color: $primary-color;
30+
// }
31+
// .badge-info {
32+
// background-color: $info-color;
33+
// }
34+
// .badge-success {
35+
// background-color: $success-color;
36+
// }
37+
// .badge-warning {
38+
// background-color: $warning-color;
39+
// }
40+
// .badge-danger {
41+
// background-color: $danger-color;
42+
// }
4343
.badge-allocating {
4444
color: $darker-gray;
4545
background-color: $light-blue;

src/stylesheets/doi/components/_modal.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
h4 {
99
margin: 0;
1010
}
11-
.close {
11+
.btn-close {
1212
padding-left: 10px;
1313
font-size: 30px;
1414
}

src/stylesheets/doi/components/_tooltips-and-popovers.scss

+12-12
Original file line numberDiff line numberDiff line change
@@ -35,39 +35,39 @@
3535
border-right: 11px solid rgba(0, 0, 0, 0);
3636
top: -11px;
3737
}
38-
&.left{
38+
&.start {
3939
margin-left: -11px;
4040
padding: 0;
4141
}
42-
&.left .tooltip-inner:after {
42+
&.start .tooltip-inner:after {
4343
border-left: 11px solid $white-color;
4444
border-top: 11px solid rgba(0, 0, 0, 0);
4545
border-bottom: 11px solid rgba(0, 0, 0, 0);
4646
right: -10px;
4747
left: auto;
4848
margin-left: 0;
4949
}
50-
&.left .tooltip-inner:before {
50+
&.start .tooltip-inner:before {
5151
border-left: 11px solid rgba(0, 0, 0, 0.2);
5252
border-top: 11px solid rgba(0, 0, 0, 0);
5353
border-bottom: 11px solid rgba(0, 0, 0, 0);
5454
right: -11px;
5555
left: auto;
5656
margin-left: 0;
5757
}
58-
&.right{
58+
&.end {
5959
margin-left: 11px;
6060
padding: 0;
6161
}
62-
&.right .tooltip-inner:after {
62+
&.end .tooltip-inner:after {
6363
border-right: 11px solid $white-color;
6464
border-top: 11px solid rgba(0, 0, 0, 0);
6565
border-bottom: 11px solid rgba(0, 0, 0, 0);
6666
left: -10px;
6767
top: 10px;
6868
margin-left: 0;
6969
}
70-
&.right .tooltip-inner:before {
70+
&.end .tooltip-inner:before {
7171
border-right: 11px solid rgba(0, 0, 0, 0.2);
7272
border-top: 11px solid rgba(0, 0, 0, 0);
7373
border-bottom: 11px solid rgba(0, 0, 0, 0);
@@ -137,13 +137,13 @@
137137
color: $bg-danger;
138138
}
139139
}
140-
.popover .arrow{
140+
.popover .popover-arrow{
141141
border: 0;
142142
}
143-
.popover.top .arrow{
143+
.popover.top .popover-arrow{
144144
margin-left: 0;
145145
}
146-
.popover.bottom .arrow:after{
146+
.popover.bottom .popover-arrow:after{
147147
border-bottom-color: $darker-gray;
148148
}
149149
.popover-filter{
@@ -164,13 +164,13 @@
164164
@include opacity(0.2);
165165
transition-delay: 0s;
166166
}
167-
.popover.left > .arrow::after{
167+
.popover.start > .popover-arrow::after{
168168
border-left-color: $darker-gray;
169169
bottom: -20px;
170170
}
171-
.popover.top > .arrow::after{
171+
.popover.top > .popover-arrow::after{
172172
border-top-color: $darker-gray;
173173
}
174-
.popover.right > .arrow::after{
174+
.popover.end > .popover-arrow::after{
175175
border-right-color: $darker-gray;
176176
}

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ bootstrap-sass@^3.4.3:
100100
resolved "https://registry.yarnpkg.com/bootstrap-sass/-/bootstrap-sass-3.4.3.tgz#742cc8f4286303ae9fe8e4c95237321eae73766c"
101101
integrity sha512-vPgFnGMp1jWZZupOND65WS6mkR8rxhJxndT/AcMbqcq1hHMdkcH4sMPhznLzzoHOHkSCrd6J9F8pWBriPCKP2Q==
102102

103-
bootstrap@4:
104-
version "4.6.2"
105-
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.6.2.tgz#8e0cd61611728a5bf65a3a2b8d6ff6c77d5d7479"
106-
integrity sha512-51Bbp/Uxr9aTuy6ca/8FbFloBUJZLHwnhTcnjIeRn2suQWsWzcuJhGjKDB5eppVte/8oCdOL3VuwxvZDUggwGQ==
103+
bootstrap@^5.3.3:
104+
version "5.3.3"
105+
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.3.3.tgz#de35e1a765c897ac940021900fcbb831602bac38"
106+
integrity sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==
107107

108108
brace-expansion@^2.0.1:
109109
version "2.0.1"

0 commit comments

Comments
 (0)