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

Unified Diff: ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html

Issue 2889113002: web_dev_style: Fix errors in new directories and enable PRESUBMIT (Closed)
Patch Set: merge+fix Created 3 years, 7 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/webui/resources/cr_elements/cr_dialog/cr_dialog.html
diff --git a/ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html b/ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html
index 7c9b0aed31dfc3eee361c72895aa952bcb9d9d97..09a7d8b4f33b20270d4334408c8d94005e85e7fb 100644
--- a/ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html
+++ b/ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html
@@ -13,8 +13,8 @@
border: 0;
border-radius: 2px;
bottom: 0;
- box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.12),
- 0px 16px 16px rgba(0, 0, 0, 0.24);
+ box-shadow: 0 0 16px rgba(0, 0, 0, 0.12),
+ 0 16px 16px rgba(0, 0, 0, 0.24);
color: inherit;
padding: 0;
top: 0;
@@ -49,16 +49,16 @@
}
:host ::content .title {
+ flex: 1;
font-size: calc(15 / 13 * 100%);
line-height: 1;
padding: 16px 16px;
- flex: 1;
}
:host ::content .button-container {
- padding: 16px 16px;
display: flex;
justify-content: flex-end;
+ padding: 16px;
}
:host ::content .button-container .cancel-button {
@@ -78,15 +78,15 @@
}
.body-container {
+ /* Prevent layout moving when border does appear. */
+ border-bottom: 1px solid transparent;
+ border-top: 1px solid transparent;
+
display: flex;
flex-direction: column;
min-height: 60px; /* Minimum reasonably usable height. */
overflow: auto;
- /* Prevent layout moving when border does appear. */
- border-bottom: 1px solid transparent;
- border-top: 1px solid transparent;
-
@apply(--cr-dialog-body-container);
}

Powered by Google App Engine
This is Rietveld 408576698