@fishawack/lab-velocity 0.3.4 → 0.3.6
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/components/_breadcrumbs.scss +31 -29
- package/components/_header.scss +2 -2
- package/components/{_navigation.scss → _menu.scss} +1 -1
- package/components/_pageTitle.scss +1 -1
- package/components/_sidebar.scss +2 -2
- package/form/Select.vue +0 -3
- package/form/wysiwyg.vue +4 -0
- package/general.scss +1 -1
- package/layout/Footer.vue +1 -1
- package/layout/Header.vue +2 -2
- package/layout/pageTitle.vue +1 -1
- package/layout/sideBar.vue +2 -2
- package/navigation/Breadcrumbs.vue +1 -1
- package/navigation/Menu.vue +1 -0
- package/package.json +1 -1
|
@@ -1,37 +1,39 @@
|
|
|
1
1
|
@import "element-plus/theme-chalk/el-breadcrumb";
|
|
2
2
|
@import "element-plus/theme-chalk/el-breadcrumb-item";
|
|
3
|
+
.vel-breadcrumb {
|
|
3
4
|
|
|
4
|
-
.el-breadcrumb__separator {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.el-breadcrumb__separator,
|
|
10
|
-
.el-breadcrumb__inner {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.el-breadcrumb__inner {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
5
|
+
.el-breadcrumb__separator {
|
|
6
|
+
display: none;
|
|
7
|
+
margin:0px $spacing;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.el-breadcrumb__separator,
|
|
11
|
+
.el-breadcrumb__inner {
|
|
12
|
+
font-size: get-ratio(16px);
|
|
13
|
+
line-height: get-ratio(24px);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.el-breadcrumb__inner {
|
|
17
|
+
&.is-link {
|
|
18
|
+
text-decoration: underline;
|
|
19
|
+
font-weight: 500;
|
|
20
|
+
color: $color2;
|
|
21
|
+
text-transform: capitalize;
|
|
22
|
+
|
|
23
|
+
&:hover {
|
|
24
|
+
color:$color12;
|
|
25
|
+
}
|
|
24
26
|
}
|
|
25
27
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
28
|
+
|
|
29
|
+
.el-breadcrumb__item {
|
|
30
|
+
&:last-child {
|
|
31
|
+
.el-breadcrumb__inner {
|
|
32
|
+
&.is-link {
|
|
33
|
+
color: $color2;
|
|
34
|
+
font-weight: 400;
|
|
35
|
+
text-decoration: none;
|
|
36
|
+
}
|
|
35
37
|
}
|
|
36
38
|
}
|
|
37
39
|
}
|
package/components/_header.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
header {
|
|
1
|
+
.vel-header {
|
|
2
2
|
border-bottom: solid get-ratio(1px) $color4;
|
|
3
3
|
background-color: $color0;
|
|
4
4
|
width: 100%;
|
|
@@ -13,7 +13,7 @@ header {
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.
|
|
16
|
+
.vel-header__list {
|
|
17
17
|
> div {
|
|
18
18
|
align-items: center;
|
|
19
19
|
&:not(:last-child) {
|
package/components/_sidebar.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.side-bar {
|
|
1
|
+
.vel-side-bar {
|
|
2
2
|
flex-basis: $spacing * 7.5;
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
.side-bar__button {
|
|
33
|
+
.vel-side-bar__button {
|
|
34
34
|
outline: none;
|
|
35
35
|
background-color: transparent;
|
|
36
36
|
border: none;
|
package/form/Select.vue
CHANGED
package/form/wysiwyg.vue
CHANGED
package/general.scss
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
@import "./components/_sidebar.scss";
|
|
19
19
|
@import "./components/_typography.scss";
|
|
20
20
|
@import "./components/_footer.scss";
|
|
21
|
-
@import "./components/
|
|
21
|
+
@import "./components/_menu.scss";
|
|
22
22
|
@import "./components/_header.scss";
|
|
23
23
|
@import "./components/_pageTitle.scss";
|
|
24
24
|
@import "./components/_form.scss";
|
package/layout/Footer.vue
CHANGED
package/layout/Header.vue
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<header class="header grid justify-between items-center justify-end-dive grid--1/2 p-1.5">
|
|
2
|
+
<header class="vel-header grid justify-between items-center justify-end-dive grid--1/2 p-1.5">
|
|
3
3
|
<slot/>
|
|
4
4
|
|
|
5
|
-
<div class="grid pr-1.5 grid--gutters-x-1.5
|
|
5
|
+
<div class="grid pr-1.5 grid--gutters-x-1.5 vel-header__list">
|
|
6
6
|
<slot name="links"/>
|
|
7
7
|
</div>
|
|
8
8
|
</header>
|
package/layout/pageTitle.vue
CHANGED
package/layout/sideBar.vue
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="side-bar" :class="{ active: active }">
|
|
2
|
+
<div class="vel-side-bar" :class="{ active: active }">
|
|
3
3
|
<div>
|
|
4
4
|
<slot name="navigation" />
|
|
5
5
|
</div>
|
|
6
6
|
|
|
7
7
|
<div class="flex justify-end border-t-color-1 border-t-solid py px-1.5">
|
|
8
|
-
<button class="side-bar__button pointer" @click="active = !active">
|
|
8
|
+
<button class="vel-side-bar__button pointer" @click="active = !active">
|
|
9
9
|
<slot name="expand">
|
|
10
10
|
>
|
|
11
11
|
</slot>
|
package/navigation/Menu.vue
CHANGED