[Frontend] Cleanups to Timeline tabular label elements

open #208
Colors normalized for theming;
This commit is contained in:
Charles Hacskaylo 2015-11-20 16:27:26 -08:00
parent 50134bbc7f
commit 5a7349117a
3 changed files with 16 additions and 14 deletions

View File

@ -279,12 +279,13 @@
.edit-mode .s-swimlane {
cursor: pointer; }
/* line 145, ../sass/_timeline-thematic.scss */
.edit-mode .s-swimlane .s-label {
.edit-mode .s-swimlane .t-object-label {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
cursor: move;
padding: 2px 5px; }
/* line 148, ../sass/_timeline-thematic.scss */
.edit-mode .s-swimlane .s-label:hover {
background: rgba(255, 255, 255, 0.1);
color: #fff; }
/* line 149, ../sass/_timeline-thematic.scss */
.edit-mode .s-swimlane .t-object-label:hover {
background: rgba(153, 153, 153, 0.3);
color: #cccccc; }

View File

@ -279,12 +279,13 @@
.edit-mode .s-swimlane {
cursor: pointer; }
/* line 145, ../sass/_timeline-thematic.scss */
.edit-mode .s-swimlane .s-label {
.edit-mode .s-swimlane .t-object-label {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
cursor: move;
padding: 2px 5px; }
/* line 148, ../sass/_timeline-thematic.scss */
.edit-mode .s-swimlane .s-label:hover {
background: rgba(255, 255, 255, 0.1);
color: #fff; }
/* line 149, ../sass/_timeline-thematic.scss */
.edit-mode .s-swimlane .t-object-label:hover {
background: rgba(102, 102, 102, 0.3);
color: #333333; }

View File

@ -142,13 +142,13 @@
.edit-mode .s-swimlane {
cursor: pointer;
.s-label {
.t-object-label {
@include border-radius($controlCr);
cursor: move;
padding: 2px 5px;
&:hover {
// TO-DO: Convert to theming!
background: rgba(#fff, 0.1);
color: #fff;
background: rgba($colorBodyFg, 0.3);
color: pullForward($colorBodyFg, 20%);
}
}
}