Skip to content

Commit 3d8d175

Browse files
committed
docs: update theme
1 parent a10eebe commit 3d8d175

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

packages/docs/.vuepress/theme-coreui/src/client/components/global/CodeGroupItem.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export default defineComponent({
2121
},
2222
active: {
2323
type: Boolean,
24-
required: false,
2524
default: false,
2625
},
2726
},

packages/docs/.vuepress/theme-coreui/src/client/components/global/_Badge.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,14 @@ export default defineComponent({
1919
props: {
2020
type: {
2121
type: String,
22-
required: false,
2322
default: 'tip',
2423
},
2524
text: {
2625
type: String,
27-
required: false,
2826
default: '',
2927
},
3028
vertical: {
3129
type: String,
32-
required: false,
3330
default: undefined,
3431
},
3532
},

packages/docs/.vuepress/theme-coreui/src/client/styles/_demo.scss

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,33 @@
1313
margin-top: 0;
1414
}
1515
}
16+
17+
.rtl .input-group > :not(:last-child),
18+
.rtl .input-group > .dropdown-toggle:nth-last-child(n+3) {
19+
border-right: 0 !important;
20+
@include border-end-radius($input-border-radius !important);
21+
}
22+
23+
.rtl .input-group > :not(:first-child) {
24+
@include border-start-radius($input-border-radius !important);
25+
@include border-end-radius(0 !important);
26+
}
27+
28+
.rtl .picker .input-group .form-control:first-child {
29+
border-right : $input-border-width solid var(--#{$variable-prefix}input-border-color, $input-border-color) !important;
30+
}
31+
32+
.rtl .picker .input-group > * + *:not(:last-child) {
33+
@include border-start-radius(0 !important);
34+
}
1635
}
1736

1837
.docs-example-offcanvas .offcanvas {
1938
position: static;
2039
display: block;
2140
height: 200px;
2241
visibility: visible;
23-
transform: translate(0);
42+
transform: translate(0) !important;
2443
}
2544

2645
//

0 commit comments

Comments
 (0)