bfg-common 1.4.573 → 1.4.575
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.
|
@@ -94,9 +94,12 @@
|
|
|
94
94
|
--nav-link-hover-color: #666666;
|
|
95
95
|
--nav-panel-border-color: #ccc;
|
|
96
96
|
|
|
97
|
-
|
|
98
|
-
--gutter-
|
|
99
|
-
|
|
97
|
+
//--gutter-bg-color: #eee; // for old
|
|
98
|
+
--gutter-bg-color: #e9ebed; // for new
|
|
99
|
+
//--gutter-hover-bg-color: #0079b8; // for old
|
|
100
|
+
--gutter-hover-bg-color: #008fb6; // for new
|
|
101
|
+
//--gutter-active-bg-color: #a6d8e7; // for old
|
|
102
|
+
--gutter-active-bg-color: #66bce6; // for new
|
|
100
103
|
--gutter-before-bg: #9da6ad;
|
|
101
104
|
|
|
102
105
|
/* Items Row Variables light mode */
|
|
@@ -162,7 +162,8 @@ onUnmounted(() => {
|
|
|
162
162
|
|
|
163
163
|
.gutter-vertical {
|
|
164
164
|
position: relative;
|
|
165
|
-
min-height: 3px;
|
|
165
|
+
//min-height: 3px; // for old
|
|
166
|
+
min-height: 4px; // for new
|
|
166
167
|
background-color: var(--gutter-bg-color);
|
|
167
168
|
transition-delay: 0.25s;
|
|
168
169
|
transition-duration: 0.25s;
|
|
@@ -187,8 +188,12 @@ onUnmounted(() => {
|
|
|
187
188
|
cursor: row-resize;
|
|
188
189
|
|
|
189
190
|
&:before {
|
|
190
|
-
|
|
191
|
-
|
|
191
|
+
// for old
|
|
192
|
+
//background-color: hsla(0, 0%, 100%, 0.5);
|
|
193
|
+
//box-shadow: inset 0 0 0 1px rgb(0 0 0 / 10%);
|
|
194
|
+
|
|
195
|
+
// for new
|
|
196
|
+
background-color: rgba(255, 255, 255, 0.8)
|
|
192
197
|
}
|
|
193
198
|
}
|
|
194
199
|
|
|
@@ -196,18 +201,23 @@ onUnmounted(() => {
|
|
|
196
201
|
content: '';
|
|
197
202
|
position: relative;
|
|
198
203
|
display: block;
|
|
199
|
-
background: rgba(0, 0, 0, 0.1);
|
|
204
|
+
//background: rgba(0, 0, 0, 0.1); // for old
|
|
205
|
+
background: #9da6ad;
|
|
200
206
|
transition-delay: 0.25s;
|
|
201
207
|
transition-duration: 0.25s;
|
|
202
|
-
width:
|
|
208
|
+
width: 24px;
|
|
203
209
|
height: 100%;
|
|
204
|
-
left: calc(50% -
|
|
210
|
+
left: calc(50% - 12px);
|
|
205
211
|
}
|
|
206
212
|
}
|
|
207
213
|
.secondPanel {
|
|
208
214
|
height: auto;
|
|
209
215
|
overflow: hidden;
|
|
210
216
|
flex: 1;
|
|
217
|
+
|
|
218
|
+
// for new
|
|
219
|
+
box-shadow: 0 4px 20px 0 #0000001F;
|
|
220
|
+
z-index: 1;
|
|
211
221
|
}
|
|
212
222
|
}
|
|
213
223
|
</style>
|