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

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

Issue 7256002: Multi-Profiles: New Profile Setup UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review comments Created 9 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: chrome/browser/resources/new_profile.css
diff --git a/chrome/browser/resources/new_profile.css b/chrome/browser/resources/new_profile.css
new file mode 100644
index 0000000000000000000000000000000000000000..93033e4e48d3589c27098a38afbc4de9219ae99a
--- /dev/null
+++ b/chrome/browser/resources/new_profile.css
@@ -0,0 +1,92 @@
+html {
+ font-family: segoe ui, arial, helvetica, sans-serif;
James Hawkins 2011/06/30 23:02:58 Put the font family names in single quotes.
sail 2011/07/01 01:16:18 Done.
+ font-size: 13px;
+}
+
+#avatar-menu {
+ width: 337px;
James Hawkins 2011/06/30 23:02:58 Alphabetize properties.
sail 2011/07/01 01:16:18 Done.
+ height: 150px;
+ overflow: auto;
+ border: 1px solid rgba(0, 0, 0, 0.3);
+ background-color: rgba(255, 255, 255, 0.75);
+}
+
+.avatar-button {
+ width: 38px;
+ height: 38px;
+ padding: 4px;
+}
+
+#profile-name {
+ font-size: 125%;
+}
+
+div.page > h3 {
+ font-size: 105%;
+ font-weight: bold;
+ color: rgb(75, 75, 75);
James Hawkins 2011/06/30 23:02:58 Use #aabbcc instead.
sail 2011/07/01 01:16:18 Done.
+}
+
+div > p {
+ color: rgb(75, 75, 75);
+}
+
+.page * input[type="button"],
+.page * input[type="button"] {
+ min-height: 26px;
+ min-width: 87px;
+}
+
+.overlay {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ top: 0;
+ background: -webkit-linear-gradient(white, rgb(235, 235, 235));
+}
+
+.action-area {
+ -webkit-box-align: center;
+ -webkit-box-orient: horizontal;
+ -webkit-box-pack: end;
+ display: -webkit-box;
+}
+
+.button-strip {
+ -webkit-box-orient: horizontal;
+ display: -webkit-box;
+}
+
+html[toolkit=views] .button-strip {
+ -webkit-box-direction: reverse;
+}
+
+.button-strip > input {
+ -webkit-margin-start: 10px;
+ display: block;
+}
+
+#new-profile-overlay {
+ padding: 10px;
+ width: 500px;
+ margin-left: auto;
+ margin-right: auto;
+ margin-top: 66px;
+}
+
+#footer {
+ bottom: 0;
+ position: fixed;
+ width: 100%;
+}
+
+#footer-content {
+ display: -webkit-box;
+ height: 49px;
+ -webkit-box-align: center;
James Hawkins 2011/06/30 23:02:58 Move webkit property to the top of the block.
sail 2011/07/01 01:16:18 Done.
+}
+
+#footer-content > * {
+ margin: 0 9px;
+}

Powered by Google App Engine
This is Rietveld 408576698