bfg-common 1.3.89 → 1.3.90
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,6 +145,7 @@
|
|
|
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
|
|
|
@@ -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: #
|
|
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
|
-
|
|
@@ -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:
|
|
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
|
|
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-
|
|
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 {
|