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

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

Issue 3516010: Initial Print Preview UI. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: more renaming Created 10 years, 2 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/print_preview.css
===================================================================
--- chrome/browser/resources/print_preview.css (revision 0)
+++ chrome/browser/resources/print_preview.css (revision 0)
@@ -0,0 +1,105 @@
+/* TODO(thestig) make mainview float rather than fixed */
+body {
+ font-size: 100%;
+ -webkit-user-select: none;
+}
+
+#settings-title {
+ -webkit-padding-end: 24px;
+ padding-top: 1em;
+ padding-bottom: 1em;
+ text-align: end;
+ font-size: 125%;
+ font-weight: normal;
+ color: #53627d;
+ margin: 0;
+}
+
+#main-content {
+ background-color: #5d626c;
+ display: -webkit-box;
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+}
+
+#navbar-container {
+ background-color: #f8fafd;
+ position: relative;
+ width: 300px;
+ z-index: 2;
+}
+
+#destination-container {
+ background-color: #ffffff;
+ padding: 10px;
+}
+
+#options-container {
+ padding: 10px;
+}
+
+#mainview {
+ -webkit-box-align: stretch;
+ background: -webkit-gradient(linear,
+ left top,
+ right top,
+ from(#a4a4a4),
+ color-stop(0.02, #cccccc),
+ to(#cccccc));
+ margin: 0;
arv (Not doing code reviews) 2010/10/06 21:53:10 margin is 0 by default
+ position: relative;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
arv (Not doing code reviews) 2010/10/06 21:53:10 you can remove left, top, right and bottom here si
+ z-index: 1;
+}
+
+#mainview-content {
+ width: 480px;
+ padding: 10px 24px;
+}
+
+#thumbnails {
+ background: -webkit-gradient(linear,
+ left top,
+ right top,
+ from(#cccccc),
+ to(#5d626c));
+ margin: 0;
arv (Not doing code reviews) 2010/10/06 21:53:10 same here
+ position: relative;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 1;
+}
+
+#thumbnails-content {
+ width: 160px;
+ padding: 10px;
+}
+
+.hidden {
+ display: none;
+}
+
+select {
+ margin: 0px;
arv (Not doing code reviews) 2010/10/06 21:53:10 s/0px/0/
+}
+
+.link-button {
+ background-color: transparent;
+ border: none;
+ color: blue;
+ cursor: pointer;
+ text-decoration: underline;
arv (Not doing code reviews) 2010/10/06 21:53:10 also. padding: 0
+}
+
+.text-button {
+ background-color: transparent;
+ border-color: transparent;
+}
Property changes on: chrome/browser/resources/print_preview.css
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698