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

Side by Side Diff: Source/devtools/front_end/documentationView.css

Issue 532223002: DevTools: [Documentation] Update empty page style (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@iliia-patch
Patch Set: Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « Source/devtools/front_end/documentation/DocumentationView.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .documentation-example-code { 1 .documentation-example-code {
2 border: 1px dotted black; 2 border: 1px dotted black;
3 border-radius: 6px; 3 border-radius: 6px;
4 padding: 1em; 4 padding: 1em;
5 margin-bottom: 1em; 5 margin-bottom: 1em;
6 } 6 }
7 7
8 .documentation-code { 8 .documentation-code {
9 border: 1px dotted black; border-radius: 6px; padding: 1em; margin-bottom: 1 em; 9 border: 1px dotted black; border-radius: 6px; padding: 1em; margin-bottom: 1 em;
10 } 10 }
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 a.documentation-example-link { 91 a.documentation-example-link {
92 float: right; 92 float: right;
93 padding: 0.7ex; 93 padding: 0.7ex;
94 background-color: rgb(241, 246, 251); 94 background-color: rgb(241, 246, 251);
95 text-decoration: none; 95 text-decoration: none;
96 margin-left: 1ex; 96 margin-left: 1ex;
97 margin-top: -0.5ex; 97 margin-top: -0.5ex;
98 border-radius: 5px; 98 border-radius: 5px;
99 } 99 }
100 100
101 .documentation-not-found {
102 position: absolute;
103 top: 0;
104 bottom: 25%;
105 left: 0;
106 right: 0;
107 font-size: 24px;
108 color: rgb(75%, 75%, 75%);
lushnikov 2014/09/03 15:06:39 lets use integers instead of percentage
109 margin-top: auto;
110 margin-bottom: auto;
111 height: 50px;
112 line-height: 26px;
113 text-align: center;
114 font-weight: bold;
115 padding: 10px;
116 white-space: pre-wrap;
lushnikov 2014/09/03 15:06:39 wait.. do we need all these styles?..
117 }
118
OLDNEW
« no previous file with comments | « Source/devtools/front_end/documentation/DocumentationView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698