40 lines
704 B
Plaintext
40 lines
704 B
Plaintext
/**
|
|
* 文件职责:经营报表页面布局与工具栏样式。
|
|
*/
|
|
.frp-toolbar {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
padding: 16px 20px;
|
|
background: #fff;
|
|
border: 1px solid #f0f0f0;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 8px rgb(15 23 42 / 6%);
|
|
|
|
.frp-period-segment {
|
|
--ant-segmented-item-selected-bg: #fff;
|
|
--ant-segmented-item-selected-color: #1677ff;
|
|
}
|
|
|
|
.frp-store-select {
|
|
width: 200px;
|
|
min-width: 200px;
|
|
}
|
|
|
|
.frp-toolbar-right {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.frp-batch-export-btn {
|
|
display: inline-flex;
|
|
gap: 4px;
|
|
align-items: center;
|
|
height: 32px;
|
|
}
|
|
|
|
.ant-select-selector {
|
|
height: 32px;
|
|
font-size: 13px;
|
|
}
|
|
}
|