@appscode/design-system 1.0.43-alpha.85 → 1.0.43-alpha.89
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/base/utilities/_default.scss +4 -0
- package/components/_ac-card.scss +1 -1
- package/components/_ac-input.scss +4 -0
- package/components/_ac-options.scss +7 -4
- package/components/_buttons.scss +3 -0
- package/components/_left-sidebar-menu.scss +3 -1
- package/components/bbum/_card-team.scss +1 -1
- package/components/bbum/_user-profile.scss +0 -1
- package/package.json +1 -1
- package/vue-components/v2/sidebar/ClusterSwitcher.vue +1 -1
package/components/_ac-card.scss
CHANGED
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
&.is-right {
|
|
27
27
|
.option-dots {
|
|
28
28
|
align-items: flex-end;
|
|
29
|
+
padding: 0 10px;
|
|
30
|
+
margin-right: -10px;
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
.options-items {
|
|
@@ -41,17 +43,18 @@
|
|
|
41
43
|
border: none;
|
|
42
44
|
background-color: transparent;
|
|
43
45
|
transition: 0.3 ease-in-out;
|
|
46
|
+
|
|
44
47
|
|
|
45
48
|
&:hover {
|
|
46
49
|
color: $ac-primary;
|
|
47
50
|
}
|
|
48
51
|
|
|
49
52
|
span {
|
|
50
|
-
width:
|
|
51
|
-
height:
|
|
53
|
+
width: 4px;
|
|
54
|
+
height: 4px;
|
|
52
55
|
background-color: $ac-color-value;
|
|
53
56
|
border-radius: 50%;
|
|
54
|
-
margin-bottom:
|
|
57
|
+
margin-bottom: 1px;
|
|
55
58
|
}
|
|
56
59
|
}
|
|
57
60
|
|
|
@@ -94,7 +97,7 @@
|
|
|
94
97
|
|
|
95
98
|
a {
|
|
96
99
|
font-size: $font-size-small;
|
|
97
|
-
padding:
|
|
100
|
+
padding: 7px 15px;
|
|
98
101
|
display: block;
|
|
99
102
|
text-decoration: none !important;
|
|
100
103
|
color: $ac-color-text !important;
|
package/components/_buttons.scss
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
.ac-system-left-sidebar {
|
|
2
|
+
min-height: calc(100vh - 50px);
|
|
3
|
+
|
|
2
4
|
&.is-expanded {
|
|
3
5
|
.ac-left-sidebar-wrapper {
|
|
4
6
|
&.style-2 {
|
|
@@ -379,7 +381,7 @@
|
|
|
379
381
|
|
|
380
382
|
// commented out to set full width select box when right content is not present
|
|
381
383
|
// width: 234px;
|
|
382
|
-
|
|
384
|
+
|
|
383
385
|
left: 0px;
|
|
384
386
|
top: -5px;
|
|
385
387
|
|
package/package.json
CHANGED
|
@@ -99,7 +99,7 @@ export default {
|
|
|
99
99
|
},
|
|
100
100
|
},
|
|
101
101
|
selectedClusterName(n) {
|
|
102
|
-
if (n !== this.selectedCluster.name) {
|
|
102
|
+
if (this.selectedCluster && n !== this.selectedCluster.name) {
|
|
103
103
|
this.clusterOptions.forEach((item) => {
|
|
104
104
|
if (this.selectedClusterName === item.name) {
|
|
105
105
|
this.selectedCluster = item;
|