fix(ui): red color changes, menu controls, performance crash
This commit is contained in:
parent
997a5421ae
commit
05c8bf4d59
7 changed files with 76 additions and 10 deletions
|
|
@ -25,7 +25,7 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 8px;
|
top: 8px;
|
||||||
left: 24px;
|
left: 24px;
|
||||||
background-color: red;
|
background-color: #CC0000;
|
||||||
color: white;
|
color: white;
|
||||||
font-size: 9px;
|
font-size: 9px;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
|
@ -36,4 +36,4 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 8px;
|
top: 8px;
|
||||||
left: 24px;
|
left: 24px;
|
||||||
background-color: red;
|
background-color: #CC0000;
|
||||||
color: white;
|
color: white;
|
||||||
font-size: 9px;
|
font-size: 9px;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@ const NODES_COUNT = "Nodes Сount";
|
||||||
|
|
||||||
|
|
||||||
const FPSTooltip = ({ active, payload }) => {
|
const FPSTooltip = ({ active, payload }) => {
|
||||||
if (!active || payload.length < 3) {
|
if (!active || !payload || payload.length < 3) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if (payload[0].value === null) {
|
if (payload[0].value === null) {
|
||||||
|
|
|
||||||
|
|
@ -11,16 +11,12 @@
|
||||||
border-right: 0px;
|
border-right: 0px;
|
||||||
min-width: 60px;
|
min-width: 60px;
|
||||||
position: relative;
|
position: relative;
|
||||||
&:hover {
|
|
||||||
background-color: $gray-lightest;
|
|
||||||
transition: all 0.2s;
|
|
||||||
}
|
|
||||||
|
|
||||||
& .errorSymbol {
|
& .errorSymbol {
|
||||||
width: 6px;
|
width: 6px;
|
||||||
height: 6px;
|
height: 6px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background-color: red;
|
background-color: #CC0000;
|
||||||
margin-right: 3px;
|
margin-right: 3px;
|
||||||
}
|
}
|
||||||
& .labels {
|
& .labels {
|
||||||
|
|
@ -29,6 +25,7 @@
|
||||||
right: -6px;
|
right: -6px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
height: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
& .countLabel {
|
& .countLabel {
|
||||||
|
|
@ -49,6 +46,11 @@
|
||||||
/* padding-top: 5px; */
|
/* padding-top: 5px; */
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $main!important;
|
||||||
|
transition: all 0.2s;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
|
|
|
||||||
59
frontend/app/components/shared/EventFilter/eventFilter.css
Normal file
59
frontend/app/components/shared/EventFilter/eventFilter.css
Normal file
|
|
@ -0,0 +1,59 @@
|
||||||
|
.searchField {
|
||||||
|
box-shadow: none !important;
|
||||||
|
& input {
|
||||||
|
box-shadow: none !important;
|
||||||
|
border-radius: 3 !important;
|
||||||
|
border: solid thin $gray-light !important;
|
||||||
|
height: 46px !important;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
box-shadow: none !important;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
& .clearStepsButton {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 10px;
|
||||||
|
right: 10x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.randomElement {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
z-index: 8;
|
||||||
|
padding: 15px;
|
||||||
|
padding-left: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdownMenu {
|
||||||
|
max-width: 100%;
|
||||||
|
border-top-left-radius: 0 !important;
|
||||||
|
border-top-right-radius: 0 !important;
|
||||||
|
|
||||||
|
&[data-hidden=true] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.header {
|
||||||
|
padding: 5px 10px;
|
||||||
|
letter-spacing: 1.5px;
|
||||||
|
background-color: $gray-lightest;
|
||||||
|
color: $gray-medium;
|
||||||
|
font-size: 12px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dateRange {
|
||||||
|
color: #CC0000;
|
||||||
|
z-index: 8;
|
||||||
|
position: absolute;
|
||||||
|
right: 9px;
|
||||||
|
top: 9px;
|
||||||
|
}
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
}
|
}
|
||||||
&.disabled {
|
&.disabled {
|
||||||
color: red !important;
|
color: #CC0000 !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
.wrapper {
|
||||||
|
& .values {
|
||||||
|
color: #CC0000;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue