mirror of
https://github.com/wu736139669/ASHEBShop-h5.git
synced 2026-08-05 05:55:36 +00:00
108 lines
2.2 KiB
CSS
108 lines
2.2 KiB
CSS
/* Collection default theme */
|
|
|
|
.ReactVirtualized__Collection {
|
|
}
|
|
|
|
.ReactVirtualized__Collection__innerScrollContainer {
|
|
}
|
|
|
|
/* Grid default theme */
|
|
|
|
.ReactVirtualized__Grid {
|
|
}
|
|
|
|
.ReactVirtualized__Grid__innerScrollContainer {
|
|
}
|
|
|
|
/* Table default theme */
|
|
|
|
.ReactVirtualized__Table {
|
|
}
|
|
|
|
.ReactVirtualized__Table__Grid {
|
|
}
|
|
|
|
.ReactVirtualized__Table__headerRow {
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-direction: row;
|
|
-moz-box-orient: horizontal;
|
|
-moz-box-direction: normal;
|
|
-ms-flex-direction: row;
|
|
flex-direction: row;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
.ReactVirtualized__Table__row {
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-direction: row;
|
|
-moz-box-orient: horizontal;
|
|
-moz-box-direction: normal;
|
|
-ms-flex-direction: row;
|
|
flex-direction: row;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.ReactVirtualized__Table__headerTruncatedText {
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ReactVirtualized__Table__headerColumn,
|
|
.ReactVirtualized__Table__rowColumn {
|
|
margin-right: 10px;
|
|
min-width: 0px;
|
|
}
|
|
.ReactVirtualized__Table__rowColumn {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ReactVirtualized__Table__headerColumn:first-of-type,
|
|
.ReactVirtualized__Table__rowColumn:first-of-type {
|
|
margin-left: 10px;
|
|
}
|
|
.ReactVirtualized__Table__sortableHeaderColumn {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ReactVirtualized__Table__sortableHeaderIconContainer {
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
.ReactVirtualized__Table__sortableHeaderIcon {
|
|
-webkit-flex: 0 0 24px;
|
|
-moz-box-flex: 0;
|
|
-ms-flex: 0 0 24px;
|
|
flex: 0 0 24px;
|
|
height: 1em;
|
|
width: 1em;
|
|
fill: currentColor;
|
|
}
|
|
|
|
/* List default theme */
|
|
|
|
.ReactVirtualized__List {
|
|
}
|