@concretecms/bedrock 1.3.4 → 1.3.5

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.
@@ -100,3 +100,4 @@
100
100
  @import './utilities';
101
101
  @import './popover';
102
102
  @import './nav';
103
+ @import './nav-sidebar';
@@ -0,0 +1,43 @@
1
+ div.ccm-ui {
2
+ .nav {
3
+ &.nav-sidebar {
4
+ @include border-radius($list-group-border-radius);
5
+
6
+ .nav-item {
7
+ border: $list-group-border-width solid $list-group-border-color;
8
+
9
+ &:first-child {
10
+ @include border-top-radius(inherit);
11
+ }
12
+
13
+ &:last-child {
14
+ @include border-bottom-radius(inherit);
15
+ }
16
+
17
+ + .nav-item {
18
+ border-top-width: 0;
19
+ }
20
+
21
+ a {
22
+ &:hover {
23
+ background-color: $gray-100;
24
+ }
25
+
26
+ &.active {
27
+ position: relative;
28
+
29
+ &::before {
30
+ background-color: $blue;
31
+ bottom: 0;
32
+ content: '';
33
+ left: 0;
34
+ position: absolute;
35
+ top: 0;
36
+ width: 2px;
37
+ }
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@concretecms/bedrock",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "The asset framework and dependencies for Concrete CMS.",
5
5
  "scripts": {
6
6
  "lint": "standardx \"**/*.{js,vue}\" && stylelint assets/**/*.{scss,vue}",