bfg-common 1.3.89 → 1.3.91

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.
@@ -26,6 +26,7 @@
26
26
  --block-view-bg-color5: #{$white};
27
27
  --block-view-bg-color6: #{$light-grey-150};
28
28
  --block-border-color: #{$--grey-850};
29
+ --block-border-color2: #{$--grey-850};
29
30
 
30
31
  --main-color-mode: #{$black};
31
32
 
@@ -144,10 +145,11 @@
144
145
  --block-view-bg-color5: #{$--blue-700};
145
146
  --block-view-bg-color6: #{$--blue-700};
146
147
  --block-border-color: #{$black};
148
+ --block-border-color2: #{$--blue-960};
147
149
 
148
150
  --main-color-mode: #{$light-white};
149
151
 
150
- --modal-bg-color: #29414e;
152
+ --modal-bg-color: #{$--blue-800};
151
153
  --modal-other-bg-color: #22343c;
152
154
 
153
155
  --close-icon: #{$light-grey};
@@ -14,7 +14,6 @@ $light-grey-150: #e7ebef;
14
14
  $light-blue: #d8e3e9;
15
15
  $light-blue-100: #adbbc4;
16
16
 
17
-
18
17
  $--grey-100: #565656;
19
18
  $--grey-150: #575757;
20
19
  $--grey-200: #666666;
@@ -25,7 +24,7 @@ $--grey-900: #ededed;
25
24
 
26
25
  $--blue-100: #0079b8;
27
26
  $--blue-150: #0072a3;
28
- $--blue-200: #49AFD9;
27
+ $--blue-200: #49afd9;
29
28
  $--blue-250: #4aaed9;
30
29
  $--blue-700: #1b2a32;
31
30
  $--blue-750: #21333b;
@@ -34,7 +33,8 @@ $--blue-850: #28404d;
34
33
  $--blue-900: #31454e;
35
34
  $--blue-950: #324f61;
36
35
 
37
-
36
+ $--blue-960: #485764;
37
+ $--blue-970: #566471;
38
38
 
39
39
  $--red-50: #a32100;
40
40
  $--red-100: #c72100;
@@ -42,5 +42,3 @@ $--red-150: #c92100;
42
42
  $--red-200: #e12200;
43
43
  $--red-300: #f55047;
44
44
  $--red-400: #ff6961;
45
-
46
-
@@ -94,9 +94,9 @@ onUnmounted(() => {
94
94
  }
95
95
  .move-separator {
96
96
  position: absolute;
97
- height: 400px;
98
- background-color: white;
99
97
  width: 3px;
98
+ height: 400px;
99
+ background-color: var(--modal-bg-color);
100
100
  cursor: e-resize;
101
101
  }
102
102
  </style>
@@ -38,25 +38,24 @@ const blockTitleWidth = computed(() => ({ width: `${props.width - 2}px` }))
38
38
  border-style: solid;
39
39
  border-image: initial;
40
40
  background: var(--block-view-bg-color5);
41
- border-color: rgb(204, 204, 204);
41
+ border-color: var(--block-border-color2);
42
42
  }
43
43
  &__title {
44
44
  display: inline-block;
45
45
  flex: 0 0 auto;
46
- color: var(--global-font-color9);
47
46
  background-color: var(--block-view-bg-color6);
48
- border-bottom: 1px solid rgb(204, 204, 204);
47
+ border-bottom: 1px solid var(--block-border-color2);
49
48
  padding: 8px;
50
49
  white-space: nowrap;
51
50
  overflow: hidden !important;
52
51
  text-overflow: ellipsis;
53
52
 
54
53
  b {
55
- font-weight: bolder;
54
+ font-family: Metropolis, Avenir Next, Helvetica Neue, Arial, sans-serif;
56
55
  font-size: 13px;
56
+ color: var(--global-font-color9);
57
+ font-weight: bolder;
57
58
  letter-spacing: normal;
58
- font-family: Metropolis, Avenir Next, Helvetica Neue, Arial, sans-serif;
59
- color: #666;
60
59
  }
61
60
  }
62
61
  &__body {
@@ -8,8 +8,8 @@
8
8
  ]"
9
9
  @click="onSelectFile(file)"
10
10
  >
11
- <span :class="file.iconClassName"></span>
12
- <span>{{ file.name }}</span>
11
+ <span class="file-view__icon" :class="file.iconClassName"></span>
12
+ <span class="file-view__text">{{ file.name }}</span>
13
13
  </li>
14
14
  </template>
15
15
  </ul>
@@ -64,5 +64,8 @@ const onSelectFile = (file: any) => {
64
64
  }
65
65
  }
66
66
  }
67
+ &__text {
68
+ color: var(--global-font-color9);
69
+ }
67
70
  }
68
71
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.89",
4
+ "version": "1.3.91",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",