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

Side by Side Diff: chrome/common/extensions/docs/static/sass/_html.scss

Issue 869193006: Fix note styling so they will wrap around page contents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « chrome/common/extensions/docs/static/css/out/site.css ('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 //----------------------------------------------------------------------- 1 //-----------------------------------------------------------------------
2 // General Elements 2 // General Elements
3 //----------------------------------------------------------------------- 3 //-----------------------------------------------------------------------
4 4
5 figure { 5 figure {
6 margin: $default-padding 0; 6 margin: $default-padding 0;
7 img { 7 img {
8 border: $default-border; 8 border: $default-border;
9 } 9 }
10 } 10 }
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 } 217 }
218 218
219 p, div, aside { 219 p, div, aside {
220 &.note, 220 &.note,
221 &.caution, 221 &.caution,
222 &.warning { 222 &.warning {
223 background-color: $gray-light; 223 background-color: $gray-light;
224 border-bottom: 1px solid; 224 border-bottom: 1px solid;
225 border-top: 1px solid; 225 border-top: 1px solid;
226 overflow: hidden; 226 overflow: hidden;
227 width: 85%; 227 max-width: 85%;
228 padding: 1em; 228 padding: 1em;
229 //border: none; 229 //border: none;
230 //box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15); 230 //box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
231 231
232 } 232 }
233 &.note { 233 &.note {
234 border-color: #36C; 234 border-color: #36C;
235 } 235 }
236 &.caution { 236 &.caution {
237 border-color: #FC3; 237 border-color: #FC3;
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 620
621 .capitalize:first-letter { 621 .capitalize:first-letter {
622 text-transform: uppercase; 622 text-transform: uppercase;
623 } 623 }
624 } 624 }
625 625
626 .optional { 626 .optional {
627 color: #7D7D7D; 627 color: #7D7D7D;
628 } 628 }
629 */ 629 */
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/static/css/out/site.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698