[Plot] Legend item selection style

Some better styling for selected legend items.
Renamed inspector/_inspector.scss to
inspector/_plot.scss to better reflect content
of the file.
This commit is contained in:
slhale 2015-08-27 16:08:56 -07:00
parent cd4bc6c3b4
commit 30cd3d0074
3 changed files with 13 additions and 3 deletions

View File

@ -5373,9 +5373,12 @@ input[type="text"] {
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/* line 26, ../sass/inspector/_inspector.scss */
/* line 26, ../sass/inspector/_plot.scss */
.plot-legend-item {
cursor: pointer; }
/* line 29, ../sass/inspector/_inspector.scss */
/* line 29, ../sass/inspector/_plot.scss */
.plot-legend-item.inspected {
background-color: #005177; }
/* line 32, ../sass/inspector/_plot.scss */
.plot-legend-item.inspected.s-limit-upr-yellow:before, .plot-legend-item.inspected.s-limit-upr-red:before, .plot-legend-item.inspected.s-limit-lwr-yellow:before, .plot-legend-item.inspected.s-limit-lwr-red:before {
color: #0096dd; }

View File

@ -75,4 +75,4 @@
@import "hide-non-functional";
@import "views";
@import "tree/pane";
@import "inspector/inspector";
@import "inspector/plot";

View File

@ -28,5 +28,12 @@
&.inspected {
background-color: $colorKeySelectedBg;
&.s-limit-upr-yellow:before,
&.s-limit-upr-red:before,
&.s-limit-lwr-yellow:before,
&.s-limit-lwr-red:before {
color: lighten($colorKeySelectedBg, 20%);
}
}
}