Removed react-css-modules

This commit is contained in:
Scott E. Graves
2019-04-09 12:18:57 -05:00
parent 177fd97c4b
commit 35a38977b6
46 changed files with 201 additions and 1395 deletions

View File

@@ -6,7 +6,7 @@
padding: 0;
}
.Select {
.DropDownSelect {
width: 100%;
height: 100%;
display: block;
@@ -19,21 +19,21 @@
box-sizing: border-box;
}
.Option {
.DropDownOption {
background: rgba(10, 10, 15, 0.8);
border-color: rgba(10, 10, 20, 0.9);
color: var(--text_color);
}
.Select:hover:enabled {
.DropDownSelect:hover:enabled {
cursor: pointer;
}
.Select:hover:disabled {
.DropDownSelect:hover:disabled {
cursor: no-drop;
}
.Select:active,
.Select.active {
.DropDownSelect:active,
.DropDownSelect.active {
cursor: pointer;
}