@oruga-ui/theme-oruga 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/oruga-full.css +9 -6
- package/dist/oruga-full.min.css +1 -1
- package/dist/oruga.css +9 -6
- package/dist/oruga.min.css +1 -1
- package/dist/scss/components/_sidebar.scss +4 -2
- package/dist/scss/components/_steps.scss +5 -0
- package/dist/scss/components/_taginput.scss +0 -5
- package/dist/scss/utils/_root.scss +6 -2
- package/dist/theme.js +2 -1
- package/package.json +28 -30
- package/src/assets/scss/components/_sidebar.scss +4 -2
- package/src/assets/scss/components/_steps.scss +5 -0
- package/src/assets/scss/components/_taginput.scss +0 -5
- package/src/assets/scss/utils/_root.scss +6 -2
- package/src/App.vue +0 -105
- package/src/components/Autocomplete.vue +0 -606
- package/src/components/Button.vue +0 -80
- package/src/components/Carousel.vue +0 -295
- package/src/components/Checkbox.vue +0 -135
- package/src/components/Collapse.vue +0 -134
- package/src/components/Datepicker.vue +0 -282
- package/src/components/Datetimepicker.vue +0 -127
- package/src/components/Dropdown.vue +0 -329
- package/src/components/Field.vue +0 -235
- package/src/components/Icon.vue +0 -66
- package/src/components/Input.vue +0 -129
- package/src/components/Loading.vue +0 -70
- package/src/components/Menu.vue +0 -42
- package/src/components/Modal.vue +0 -230
- package/src/components/Notification.vue +0 -136
- package/src/components/Pagination.vue +0 -96
- package/src/components/Radio.vue +0 -111
- package/src/components/Select.vue +0 -155
- package/src/components/Sidebar.vue +0 -73
- package/src/components/Skeleton.vue +0 -75
- package/src/components/Slider.vue +0 -226
- package/src/components/Steps.vue +0 -233
- package/src/components/Switch.vue +0 -137
- package/src/components/Table.vue +0 -278
- package/src/components/Tabs.vue +0 -209
- package/src/components/Taginput.vue +0 -507
- package/src/components/Timepicker.vue +0 -122
- package/src/components/Tooltip.vue +0 -187
- package/src/components/Upload.vue +0 -66
- package/src/main.ts +0 -29
- package/src/plugins/theme.ts +0 -1
- package/src/router/index.ts +0 -39
- package/src/views/Home.vue +0 -24
- package/types/index.d.ts +0 -1
package/dist/oruga-full.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! Oruga v0.2.
|
|
1
|
+
/*! Oruga v0.2.2 | MIT License | github.com/oruga-ui/oruga */
|
|
2
2
|
|
|
3
3
|
/************************************
|
|
4
4
|
* Oruga Default Theme Full Style
|
|
@@ -2183,7 +2183,6 @@ body {
|
|
|
2183
2183
|
height: 100%;
|
|
2184
2184
|
width: 100%;
|
|
2185
2185
|
display: none;
|
|
2186
|
-
z-index: var(--oruga-sidebar-zindex, 100);
|
|
2187
2186
|
}
|
|
2188
2187
|
.o-side__content {
|
|
2189
2188
|
position: absolute;
|
|
@@ -2278,6 +2277,9 @@ body {
|
|
|
2278
2277
|
.o-side--inline .o-side__content {
|
|
2279
2278
|
position: relative;
|
|
2280
2279
|
}
|
|
2280
|
+
.o-side:not(.o-side--inline) {
|
|
2281
|
+
z-index: var(--oruga-sidebar-zindex, 100);
|
|
2282
|
+
}
|
|
2281
2283
|
|
|
2282
2284
|
/* @docs */
|
|
2283
2285
|
/* @docs */
|
|
@@ -2579,6 +2581,9 @@ body {
|
|
|
2579
2581
|
right: calc((var(--oruga-size-large, 1.5rem) - var(--oruga-steps-divider-height, 0.2em)) * 0.5);
|
|
2580
2582
|
}
|
|
2581
2583
|
.o-steps__nav-item {
|
|
2584
|
+
display: flex;
|
|
2585
|
+
justify-content: center;
|
|
2586
|
+
list-style: none;
|
|
2582
2587
|
margin: 0;
|
|
2583
2588
|
padding: 0;
|
|
2584
2589
|
line-height: var(--oruga-steps-item-line-height, 1.5);
|
|
@@ -2720,6 +2725,8 @@ body {
|
|
|
2720
2725
|
align-items: center;
|
|
2721
2726
|
justify-content: center;
|
|
2722
2727
|
flex-direction: column;
|
|
2728
|
+
background: transparent;
|
|
2729
|
+
border: transparent;
|
|
2723
2730
|
color: var(--oruga-steps-link-color, hsl(0, 0%, 29%));
|
|
2724
2731
|
cursor: pointer;
|
|
2725
2732
|
text-decoration: none;
|
|
@@ -3486,10 +3493,6 @@ body {
|
|
|
3486
3493
|
.o-taginput__container--large {
|
|
3487
3494
|
font-size: var(--oruga-taginput-font-size-large, 1.5rem);
|
|
3488
3495
|
}
|
|
3489
|
-
.o-taginput__autocomplete {
|
|
3490
|
-
position: static;
|
|
3491
|
-
flex: 1;
|
|
3492
|
-
}
|
|
3493
3496
|
.o-taginput__input {
|
|
3494
3497
|
border: none;
|
|
3495
3498
|
box-shadow: none;
|