Skip to content

Commit 32be305

Browse files
authored
Rename white to D80 (#5472)
1 parent df04184 commit 32be305

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-8
lines changed

src/ColorPicker/ColorPicker.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
@import '../common.scss';
2+
13
.root {
24
width: 240px;
3-
background: #fff;
5+
background: $D80;
46
border-radius: 8px;
57
}
68

src/ColorPicker/ColorPickerHsb.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
margin-left: -6px;
4545
position: absolute;
4646
border: solid 1px $D10;
47-
background: #fff;
47+
background: $D80;
4848
opacity: .7;
4949
cursor: pointer;
5050
}

src/DragAndDrop/docs/SortableList/MultiAreaListWithSortableColumns/MultiAreaListWithSortableColumns.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@import '../../../../common.scss';
2+
13
.root {
24
display: flex;
35
justify-content: space-between;
@@ -18,7 +20,7 @@
1820
}
1921

2022
.columnPlaceholder {
21-
background-color: #fff;
23+
background-color: $D80;
2224
div div {
2325
visibility: hidden;
2426
}

src/DragAndDrop/docs/SortableList/MultiAreaListWithSortableColumnsWithAnimations/MultiAreaListWithSortableColumnsWithAnimations.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@import '../../../../common.scss';
2+
13
.root {
24
display: flex;
35
justify-content: space-between;
@@ -18,7 +20,7 @@
1820
}
1921

2022
.columnPlaceholder {
21-
background-color: #fff;
23+
background-color: $D80;
2224
div div {
2325
visibility: hidden;
2426
}

src/MessageBox/MarketerialLayout/MessageBoxMarketerialLayout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
.root {
55
box-shadow: $Shadow40;
6-
background-color: #fff;
6+
background-color: $D80;
77
border-radius: 8px;
88
}
99

src/Page/docs/ExamplePageContainer.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* These styles try to imitate the current BusinessManager's styles.
22
Created by running the business-manager-test-app and copying the relevant DOM structure and styles.
33
*/
4+
@import '../../common.scss';
45

56
$headerHeight: 48px;
67
$sideBarWidth: 220px;
@@ -18,7 +19,7 @@ $sideBarWidth: 220px;
1819
height: $headerHeight;
1920
justify-content: space-between;
2021
position: relative;
21-
background-color: #fff;
22+
background-color: $D80;
2223
z-index: 2000
2324
}
2425

src/Page/test/examples/BMPageContainer.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* These styles try to imitate the current BusinessManager's styles.
22
Created by running the business-manager-test-app and copying the relevant DOM structure and styles.
33
*/
4+
@import '../../../common.scss';
45

56
$sideBarWidth: 220px;
67

@@ -16,7 +17,7 @@ $sideBarWidth: 220px;
1617
display: flex;
1718
justify-content: space-between;
1819
position: relative;
19-
background-color: #fff;
20+
background-color: $D80;
2021
z-index: 2000
2122
}
2223

src/mixins.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@mixin default-scroll-bar() {
44
&::-webkit-scrollbar {
55
width: 18px;
6-
background-color: #fff;
6+
background-color: $D80;
77
}
88
&::-webkit-scrollbar-button {
99
display: none;

0 commit comments

Comments
 (0)