Skip to content

Commit 189b118

Browse files
authored
Merge pull request #360 from seatable/opt-field-setting-style2
Opt field setting style2
2 parents 06493f7 + 702b854 commit 189b118

File tree

5 files changed

+3
-14
lines changed

5 files changed

+3
-14
lines changed

public/media/seatable-ui.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/CollapsibleSettingLayout/index.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@
1010

1111
.collapsible-setting-layout-header .dtable-font {
1212
font-size: 10px;
13-
color: #999;
14-
}
15-
16-
.collapsible-setting-layout-header .dtable-font:hover {
17-
color: #555;
1813
}
1914

2015
.collapsible-setting-layout-header .dtable-font.dtable-icon-spin {

src/CollapsibleSettingLayout/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const CollapsibleSettingLayout = (props) => {
1111
return (
1212
<div className={classnames('collapsible-setting-layout', className)}>
1313
<div
14-
className="collapsible-setting-layout-header w-100 d-flex align-items-center"
14+
className="collapsible-setting-layout-header seatable-collapse-header w-100 d-flex align-items-center"
1515
onClick={() => setIsShowSettings(!isShowSettings)}
1616
>
1717
<span className="collapsible-setting-layout-title">{title}</span>

src/FieldDisplaySetting/index.css

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
}
55

66
.field-setting .field-setting-header .expand-button {
7-
color: #999;
87
font-size: 10px;
98
cursor: pointer;
109
transition: transform .3s cubic-bezier(.645,.045,.355,1);
@@ -14,11 +13,6 @@
1413
transform: rotate(90deg);
1514
}
1615

17-
.field-setting .field-setting-header .expand-button:hover {
18-
color: #555;
19-
cursor: pointer;
20-
}
21-
2216
.field-setting .field-setting-banner .show-all-button {
2317
color: #ed7109;
2418
cursor: pointer;

src/FieldDisplaySetting/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function FieldDisplaySetting({ fields, textProperties, fieldAllShown, onClickFie
4040

4141
return (
4242
<div className="field-setting">
43-
<div className="field-setting-header d-flex align-items-center justify-content-between" onClick={expandAllFields} >
43+
<div className="field-setting-header seatable-collapse-header d-flex align-items-center justify-content-between" onClick={expandAllFields} >
4444
<Label className="mb-0">{textProperties.titleValue}</Label>
4545
<span className={`dtable-font dtable-icon-right expand-button ${isCollapsed ? '' : 'revolving'}`} />
4646
</div>

0 commit comments

Comments
 (0)