@appscode/design-system 1.1.0-beta.15 → 1.1.0-beta.18

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.
@@ -121,7 +121,7 @@
121
121
  transition: 0.3s ease-in-out;
122
122
  position: relative;
123
123
  z-index: 1;
124
- max-width: 250px;
124
+ width: 250px;
125
125
 
126
126
  &.is-active-require-field {
127
127
  &:after {
@@ -198,6 +198,7 @@
198
198
  }
199
199
 
200
200
  .is-collapsed {
201
+
201
202
  &.ac-nested-elements::before,
202
203
  &.ac-nested-elements::after {
203
204
  display: none;
@@ -206,9 +207,9 @@
206
207
 
207
208
  // details with checkradio
208
209
  .details-with-checkradio-wrapper {
209
- display: grid;
210
- grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
211
- grid-gap: 15px;
210
+ display: flex;
211
+ flex-wrap: wrap;
212
+ gap: 15px;
212
213
  }
213
214
 
214
215
  // dark theme start
@@ -248,21 +249,16 @@
248
249
  Responsive Classes
249
250
  *****************************************/
250
251
  // Extra small devices (portrait phones, less than 576px)
251
- @media (max-width: 575.98px) {
252
- }
252
+ @media (max-width: 575.98px) {}
253
253
 
254
254
  // Small devices (landscape phones, 576px and up)
255
- @media (min-width: 576px) and (max-width: 767.98px) {
256
- }
255
+ @media (min-width: 576px) and (max-width: 767.98px) {}
257
256
 
258
257
  // Medium devices (tablets, 768px and up)
259
- @media (min-width: 768px) and (max-width: 991.98px) {
260
- }
258
+ @media (min-width: 768px) and (max-width: 991.98px) {}
261
259
 
262
260
  // Large devices (desktops, 992px and up)
263
- @media (min-width: 992px) and (max-width: 1199.98px) {
264
- }
261
+ @media (min-width: 992px) and (max-width: 1199.98px) {}
265
262
 
266
263
  // Extra large devices (large desktops, 1200px and up)
267
- @media (min-width: 1200px) {
268
- }
264
+ @media (min-width: 1200px) {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.1.0-beta.15",
3
+ "version": "1.1.0-beta.18",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -34,7 +34,7 @@ withDefaults(defineProps<Props>(), {
34
34
  flex-direction: column;
35
35
  justify-content: space-between;
36
36
  background-color: $primary-97;
37
- min-width: 220px;
37
+ min-width: 215px;
38
38
  padding: 30px 20px 20px;
39
39
  cursor: pointer;
40
40
 
@@ -288,6 +288,10 @@ watch(
288
288
 
289
289
  .ac-files {
290
290
  ul {
291
+ margin: 0;
292
+ padding: 0;
293
+ list-style: none;
294
+
291
295
  li {
292
296
  &.is-active {
293
297
  a {
@@ -1,8 +1,8 @@
1
1
  <script setup lang="ts">
2
2
  import { defineAsyncComponent, ref, watch, computed, nextTick } from "vue";
3
- import type { User, Organization } from "../../types/user";
3
+ import type { User } from "../../types/user";
4
4
 
5
- interface FormatedOrgs extends Organization {
5
+ interface FormatedOrgs extends User {
6
6
  isPersonalAccount?: boolean;
7
7
  }
8
8
 
@@ -93,13 +93,13 @@ watch(dropDownStatus, (n) => {
93
93
  <navbar-item :modifierClasses="'ac-profile-button'">
94
94
  <template #navbar-item>
95
95
  <div class="ac-user-profile mr-8">
96
- <img :src="(user.avatar_url as string)" alt="User Photo" />
96
+ <img :src="user.avatar_url" alt="User Photo" />
97
97
  </div>
98
98
  {{ user.full_name || user.username }}
99
99
  <i class="fa fa-angle-down" aria-hidden="true"></i>
100
100
  </template>
101
101
  <!-- <button class="button ac-nav-button ac-profile-button">
102
-
102
+
103
103
  </button> -->
104
104
 
105
105
  <template #navbar-content>
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- import { ref, computed, watch } from "vue";
2
+ import { computed, ref, watch } from "vue";
3
3
 
4
4
  interface Props {
5
5
  hideRowsPerPageSelection?: boolean;
@@ -224,6 +224,7 @@ watch(selectedItemCountPerPage, () => {
224
224
  &:active,
225
225
  &:focus-visible {
226
226
  border: 1px solid $primary;
227
+ outline: none;
227
228
  }
228
229
  }
229
230
  }
@@ -245,6 +245,9 @@ watch(
245
245
  &.multiselect__option--highlight {
246
246
  background-color: $white-100;
247
247
  color: $primary;
248
+ &:hover {
249
+ background-color: $primary-97;
250
+ }
248
251
 
249
252
  &:after {
250
253
  background-color: hsla(