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

Unified Diff: ui/file_manager/gallery/css/gallery.css

Issue 363873002: Gallery.app: Add buttons to the cropping mode to specifying the aspect ratio. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed Created 6 years, 6 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: ui/file_manager/gallery/css/gallery.css
diff --git a/ui/file_manager/gallery/css/gallery.css b/ui/file_manager/gallery/css/gallery.css
index eba99fc8267c90dc1541488257f5aef8a73143cf..745fdce7dfa302bd5e9fd1a317ca1574d855524b 100644
--- a/ui/file_manager/gallery/css/gallery.css
+++ b/ui/file_manager/gallery/css/gallery.css
@@ -838,7 +838,6 @@ body {
background-color: rgba(0, 0, 0, 0.75);
color: white;
display: -webkit-box;
- padding-right: 5px;
pointer-events: auto;
}
@@ -867,6 +866,32 @@ body {
margin-left: 15px;
}
+.gallery .edit-modal button {
+ background: transparent;
+ border: 0 none;
+ border-image: none;
+ box-sizing: border-box;
+ color: #fff;
+ height: 100%;
+ min-width: 0;
+ padding: 8px 16px;
+}
+
+.gallery .edit-modal button * {
+ pointer-events: none;
+}
+
+.gallery .edit-modal button:hover {
+ background: #1f1f1f;
+ color: #fff;
+}
+
+.gallery .edit-modal button.selected,
+.gallery .edit-modal button:active {
+ background: #f0f0f0;
+ color: black;
+}
+
.gallery .edit-modal .range {
-webkit-appearance: none !important;
height: 3px;

Powered by Google App Engine
This is Rietveld 408576698