remove fixed alpha from mark/pub unset icons, update checkbox styling
This commit is contained in:
parent
1c51dc736c
commit
d6b74cd40a
5 changed files with 28 additions and 0 deletions
|
@ -407,6 +407,17 @@ a.hlFeed:hover {
|
||||||
img.markedPic, img.pubPic {
|
img.markedPic, img.pubPic {
|
||||||
cursor : pointer;
|
cursor : pointer;
|
||||||
vertical-align : middle;
|
vertical-align : middle;
|
||||||
|
opacity : 0.5;
|
||||||
|
-webkit-transition : opacity 0.25s;
|
||||||
|
transition : opacity 0.25s;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.markedPic:hover, img.pubPic:hover {
|
||||||
|
opacity : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[src*='pub_set.png'], img[src*='mark_set.png'] {
|
||||||
|
opacity : 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.tagCloudContainer {
|
div.tagCloudContainer {
|
||||||
|
@ -1188,4 +1199,21 @@ div.enclosure_title {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.claro .dijitCheckBox {
|
||||||
|
background-image : url("../images/untick.png");
|
||||||
|
background-color : transparent;
|
||||||
|
width : 16px;
|
||||||
|
height : 16px;
|
||||||
|
background-position : center center;
|
||||||
|
opacity : 0.6;
|
||||||
|
-webkit-transition : opacity 0.5s;
|
||||||
|
transition : opacity 0.5s;
|
||||||
|
}
|
||||||
|
.claro .dijitCheckBox:hover {
|
||||||
|
opacity : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.claro .dijitCheckBox.dijitCheckBoxChecked {
|
||||||
|
background-image : url("../images/tick.png");
|
||||||
|
opacity : 1;
|
||||||
|
}
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 610 B After Width: | Height: | Size: 623 B |
Binary file not shown.
Before Width: | Height: | Size: 718 B After Width: | Height: | Size: 717 B |
BIN
images/tick.png
Normal file
BIN
images/tick.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 537 B |
BIN
images/untick.png
Normal file
BIN
images/untick.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 518 B |
Loading…
Reference in a new issue