summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-01-28 01:02:09 +0400
committerAndrew Dolgov <[email protected]>2014-01-28 01:02:09 +0400
commitd6b74cd40a1986f9175af80d8f0f02fbff72947c (patch)
tree61bfb88056452fd2799f979d1d56a1b6ca0baf61
parent1c51dc736cb16455c3541a0d09a293fd0f1e08e3 (diff)
remove fixed alpha from mark/pub unset icons, update checkbox styling
-rw-r--r--css/tt-rss.css28
-rw-r--r--images/mark_unset.pngbin610 -> 623 bytes
-rw-r--r--images/pub_unset.pngbin718 -> 717 bytes
-rw-r--r--images/tick.pngbin0 -> 537 bytes
-rw-r--r--images/untick.pngbin0 -> 518 bytes
5 files changed, 28 insertions, 0 deletions
diff --git a/css/tt-rss.css b/css/tt-rss.css
index 65923ba7e..5befafd1f 100644
--- a/css/tt-rss.css
+++ b/css/tt-rss.css
@@ -407,6 +407,17 @@ a.hlFeed:hover {
img.markedPic, img.pubPic {
cursor : pointer;
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 {
@@ -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;
+}
diff --git a/images/mark_unset.png b/images/mark_unset.png
index 537e2f0c0..15894b6ca 100644
--- a/images/mark_unset.png
+++ b/images/mark_unset.png
Binary files differ
diff --git a/images/pub_unset.png b/images/pub_unset.png
index 3629d4cb8..56d0b7848 100644
--- a/images/pub_unset.png
+++ b/images/pub_unset.png
Binary files differ
diff --git a/images/tick.png b/images/tick.png
new file mode 100644
index 000000000..a9925a06a
--- /dev/null
+++ b/images/tick.png
Binary files differ
diff --git a/images/untick.png b/images/untick.png
new file mode 100644
index 000000000..be3afe401
--- /dev/null
+++ b/images/untick.png
Binary files differ