Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2146)

Unified Diff: chrome/browser/resources/history/history.css

Issue 12218058: History: Use images instead of unicode characters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor improvements Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/history/history.css
diff --git a/chrome/browser/resources/history/history.css b/chrome/browser/resources/history/history.css
index 9f7ec102e54d2d20206739b5d82bee428ba79c6f..4f01c0a8d90068afe319613cb0579a6f0ac438ba 100644
--- a/chrome/browser/resources/history/history.css
+++ b/chrome/browser/resources/history/history.css
@@ -56,6 +56,11 @@ html[dir=rtl] #range-next {
float: left;
}
+#range-next:disabled img,
+#range-previous:disabled img {
+ opacity: 0.4;
+}
+
#display-filter-controls {
float: right;
}
@@ -197,7 +202,6 @@ html[dir='rtl'] .number-visits {
.number-visits {
color: rgb(151, 156, 160);
- margin-left: 0.3em;
}
.drop-down {
@@ -266,6 +270,10 @@ html[dir='rtl'] .site-domain {
}
</if>
+#range-previous img {
+ -webkit-transform: rotate(180deg);
Patrick Dubroy 2013/02/18 10:19:36 BTW you can also do scaleX(-1) to mirror it. That
Sergiu 2013/02/19 08:58:25 Done.
+}
+
.entry-box {
background-color: none;
}
@@ -295,11 +303,18 @@ html[dir='rtl'] .site-domain {
background-size: 16px;
}
+.site-domain button {
+ color: rgb(48, 57, 66);
+}
+
.site-domain-arrow {
-webkit-transition: -webkit-transform 300ms linear;
- color: rgb(143, 143, 143);
+ background: url('../disclosure_triangle_small.png') no-repeat;
+ background-position: 5px 5px;
+ color: #8F8F8F;
Patrick Dubroy 2013/02/18 10:19:36 This should be specified in RGB.
Sergiu 2013/02/19 08:58:25 Done.
height: 21px;
margin-right: 2px;
+ opacity: 0.58;
text-align: center;
width: 21px;
}

Powered by Google App Engine
This is Rietveld 408576698