@appscode/design-system 2.0.82 → 2.0.84

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "2.0.82",
3
+ "version": "2.0.84",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -1,4 +1,8 @@
1
1
  // terminal scss start
2
+ :root {
3
+ --terminal-bg: rgb(28, 28, 28);
4
+ }
5
+
2
6
  .ac-terminal {
3
7
  width: 100%;
4
8
  border-top: 1px solid $color-border-dark;
@@ -6,7 +10,7 @@
6
10
  position: fixed;
7
11
  width: calc(100% - 250px);
8
12
  bottom: 0;
9
- background-color: rgb(28, 28, 28);
13
+ background-color: var(--terminal-bg);
10
14
  color: $white-100;
11
15
  font-size: 13px;
12
16
  height: 360px;
@@ -368,8 +372,6 @@
368
372
  .right-content {
369
373
  .multi-select-wrapper {
370
374
  min-width: 250px;
371
- transform: scale(0.9);
372
- margin-left: -10px;
373
375
  margin-right: 0px;
374
376
  label.show-label {
375
377
  display: none;
@@ -377,17 +379,24 @@
377
379
 
378
380
  .multiselect {
379
381
  .multiselect__tags {
380
- background-color: $primary-97;
382
+ background-color: $secondary-30;
381
383
  border: none;
382
384
  .multiselect__input {
383
385
  color: $ac-primary;
384
- background-color: $primary-97;
386
+ background-color: $secondary-30;
385
387
  }
386
388
 
387
389
  .multiselect__single {
388
390
  top: 0;
389
- color: $primary-10;
390
- background-color: $primary-97;
391
+ color: $white-100;
392
+ background-color: $secondary-30;
393
+ }
394
+ .multiselect__element {
395
+ display: block;
396
+ .multiselect__option {
397
+ display: block;
398
+ align-items: center;
399
+ }
391
400
  }
392
401
  }
393
402
  }