forked from plotly/dash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
attempt to fix plotly#103
- Loading branch information
Showing
5 changed files
with
149 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,11 +31,15 @@ | |
_css_dist = [ | ||
{ | ||
"relative_package_path": [ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]" | ||
"[email protected]/styles.css", | ||
"[email protected]/styles.css" | ||
], | ||
"external_url": [ | ||
"https://unpkg.com/[email protected]/dist/react-select.min.css", | ||
"https://unpkg.com/[email protected]/styles.css", | ||
"https://unpkg.com/[email protected]/styles.css", | ||
"https://unpkg.com/[email protected]/assets/index.css" | ||
], | ||
"namespace": "dash_core_components" | ||
|
22 changes: 22 additions & 0 deletions
22
packages/dash-core-components/dash_core_components/[email protected]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.VirtualSelectGrid { | ||
z-index: 1; | ||
} | ||
|
||
.VirtualizedSelectOption { | ||
display: -webkit-box; | ||
display: -ms-flexbox; | ||
display: flex; | ||
-webkit-box-align: center; | ||
-ms-flex-align: center; | ||
align-items: center; | ||
padding: 0 .5rem; | ||
} | ||
.VirtualizedSelectFocusedOption { | ||
background-color: rgba(0, 126, 255, 0.1); | ||
} | ||
.VirtualizedSelectDisabledOption { | ||
opacity: 0.5; | ||
} | ||
.VirtualizedSelectSelectedOption { | ||
font-weight: bold; | ||
} |
107 changes: 107 additions & 0 deletions
107
packages/dash-core-components/dash_core_components/[email protected]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
/* 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 { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters