Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

[repeater, tree] Selected color change to different hue of blue #63

Merged
merged 1 commit into from
Nov 17, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion less/fuelux/datepicker.less
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@

&.selected {
button, button:hover {
background: #85c6e4;
background: @blue-light;
border: none;
-webkit-box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.1) inset;
box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.1) inset;
Expand Down
17 changes: 16 additions & 1 deletion less/fuelux/repeater-list.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.repeater[data-currentview="list"] {
.repeater[data-currentview^="list"] {
.repeater-list {
.table {
border: none;
Expand Down Expand Up @@ -96,5 +96,20 @@
&-check {
float: left;
}

&-items {
tr {
&.selected {
background:@blue-light;
color:@brand-info-dark;
&:hover {
background:@brand-primary-medium-light;
}
&:focus {
outline: 1px dotted #66afe9;
}
}
}
}
}
}
17 changes: 15 additions & 2 deletions less/fuelux/repeater-thumbnail.less
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
.repeater-thumbnail {

.repeater[data-currentview^="thumbnail"] {
.repeater-thumbnail-cont {
.thumbnail {
&.selected {
background:@blue-light;
color:@brand-info-dark;
&:hover {
background:@brand-primary-medium-light;
}
&:focus {
outline: 1px dotted #66afe9;
}
}
}
}
}
2 changes: 1 addition & 1 deletion less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
@brand-danger-medium: #EE6767;
@brand-danger-light: #FCECED;

@blue-light: #b9dff1;
@blue-light: #d9eaf5;

//== Scaffolding
//
Expand Down