summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-18 00:10:33 +0000
committeryoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-18 00:10:33 +0000
commit0b76e2498cb66a514322d7b18904bf4388076711 (patch)
treeb9e69b9ba0c55a787c3811636dad0baa91b07cb3
parenta93fbd1834a993d49827007efde25be46333d2dd (diff)
downloadchromium_src-0b76e2498cb66a514322d7b18904bf4388076711.zip
chromium_src-0b76e2498cb66a514322d7b18904bf4388076711.tar.gz
chromium_src-0b76e2498cb66a514322d7b18904bf4388076711.tar.bz2
[Files.app] Remove 1px stroke of the triangle in the treeview
This patch changes the color of the stroke to transparent. As I tested, it looks better than changing the stroke color into the same color as background. BUG=252882 TEST=manually tested Review URL: https://codereview.chromium.org/26497006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229266 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/resources/file_manager/js/tree.css.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/file_manager/js/tree.css.js b/chrome/browser/resources/file_manager/js/tree.css.js
index d641d4c..6b89acb 100644
--- a/chrome/browser/resources/file_manager/js/tree.css.js
+++ b/chrome/browser/resources/file_manager/js/tree.css.js
@@ -54,6 +54,6 @@
}
prepareTriangle(
- 'tree-triangle', 'rgba(122, 122, 122, 0.6)', 'rgba(0, 0, 0, 0.6)');
+ 'tree-triangle', 'rgba(122, 122, 122, 0.6)', 'rgba(0, 0, 0, 0)');
prepareTriangle('tree-triangle-inverted', '#ffffff', '#ffffff');
})();