Skip to content

Commit

Permalink
fixes #8901 - minor css fix and improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiehl committed Oct 3, 2015
1 parent 18870d2 commit c6846d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 14 deletions.
1 change: 0 additions & 1 deletion plugins/CoreHome/stylesheets/coreHome.less
Expand Up @@ -125,7 +125,6 @@ div .sparkline {
clear: both;
padding-bottom: 1px;
margin-top: 10px;
border-bottom: 1px solid white;
}

.sparkline img {
Expand Down
10 changes: 0 additions & 10 deletions plugins/CoreHome/stylesheets/sparklineColors.less
@@ -1,13 +1,3 @@
// sparkline styles
div.sparkline {
border-bottom: 1px solid white;
}

div.sparkline.linked:hover {
cursor: pointer;
border-bottom: 1px dashed #c3c3c3;
}

// sparkline colors
.sparkline-colors[data-name=backgroundColor] {
color: white;
Expand Down
9 changes: 6 additions & 3 deletions plugins/Morpheus/stylesheets/main.less
Expand Up @@ -559,11 +559,14 @@ table.dataTable .dataTableRowActions {

div.sparkline {
display: block;
width: 100%;
border-bottom: 0;
margin-bottom: 10px;
&:hover {
border-bottom: 0;
&.linked {
border-bottom: 1px solid transparent;
&:hover {
cursor: pointer;
border-bottom: 1px dashed #c3c3c3;
}
}
}

Expand Down

0 comments on commit c6846d0

Please sign in to comment.