mirror of
https://github.com/nasa/openmct.git
synced 2025-04-16 07:26:53 +00:00
VISTA Fixes 4 (#2499)
- Fixed is-selected styling so that if overrides table row EVR, limit styling; - Fix Summary Widget grippys #2494; - Fix indent in Global filters UI: #2488; - Fix Summary Widget overflow problem: #2495; - Added new c-input-number--no-spinners class for https://github.jpl.nasa.gov/MissionControl/vista/issues/673
This commit is contained in:
parent
fcf3c76aa1
commit
ee690545fb
@ -53,6 +53,7 @@
|
||||
&__filter-indicator {
|
||||
color: $colorFilter;
|
||||
width: 1.2em; // Set width explicitly for layout reasons: will either have class icon-filter, or none.
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -131,4 +132,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
@ -261,7 +261,12 @@
|
||||
height: 18px; // Needed when a row has empty values in its cells
|
||||
|
||||
&.is-selected {
|
||||
background-color: $colorSelectedBg;
|
||||
background-color: $colorSelectedBg !important;
|
||||
color: $colorSelectedFg !important;
|
||||
td {
|
||||
background: none !important;
|
||||
color: inherit !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -271,6 +271,15 @@ input[type=number]::-webkit-outer-spin-button {
|
||||
}
|
||||
}
|
||||
|
||||
input[type=number].c-input-number--no-spinners {
|
||||
&::-webkit-inner-spin-button,
|
||||
&::-webkit-outer-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
|
||||
.c-labeled-input {
|
||||
// An input used in the Toolbar
|
||||
// Assumes label is before the input
|
||||
|
@ -483,6 +483,7 @@ body.mobile.phone {
|
||||
.widget-edit-holder {
|
||||
display: flex; // Overrides `display: none` during Browse mode
|
||||
flex: 1 1 auto;
|
||||
overflow: hidden;
|
||||
|
||||
.flex-accordion-holder {
|
||||
// Needed because otherwise accordion elements "creep" when contents expand and contract
|
||||
@ -630,6 +631,8 @@ body.mobile.phone {
|
||||
.c-sw-rule {
|
||||
&__grippy-wrapper {
|
||||
$d: 8px;
|
||||
flex: 0 0 auto;
|
||||
cursor: move;
|
||||
width: $d; height: $d;
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user