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

Side by Side Diff: runtime/observatory/lib/src/elements/css/shared.css

Issue 1266193003: Introduce two utility elements for the cpu profiler (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 | « runtime/observatory/lib/src/elements/cpu_profile.html ('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 /* Global styles */ 1 /* Global styles */
2 * { 2 * {
3 margin: 0; 3 margin: 0;
4 padding: 0; 4 padding: 0;
5 font: 400 14px 'Montserrat', sans-serif; 5 font: 400 14px 'Montserrat', sans-serif;
6 color: #333; 6 color: #333;
7 box-sizing: border-box; 7 box-sizing: border-box;
8 } 8 }
9 9
10 .content { 10 .content {
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 border-top-left-radius:4px; 104 border-top-left-radius:4px;
105 } 105 }
106 106
107 .list-group-item:last-child { 107 .list-group-item:last-child {
108 margin-bottom: 0; 108 margin-bottom: 0;
109 /* rounded bottom corners */ 109 /* rounded bottom corners */
110 border-bottom-right-radius: 4px; 110 border-bottom-right-radius: 4px;
111 border-bottom-left-radius:4px; 111 border-bottom-left-radius:4px;
112 } 112 }
113 113
114 .full {
115 height: 100%;
116 width: 100;
117 }
118
119 .flex-row {
120 display: flex;
121 flex-direction: row;
122 }
123
114 /* Flex row container */ 124 /* Flex row container */
115 .flex-row { 125 .flex-row {
116 display: flex; 126 display: flex;
117 flex-direction: row; 127 flex-direction: row;
118 } 128 }
119 129
120 .flex-row-wrap { 130 .flex-row-wrap {
121 display: flex; 131 display: flex;
122 flex-direction: row; 132 flex-direction: row;
123 flex-wrap: wrap; 133 flex-wrap: wrap;
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 -webkit-transform: translate3d(10px, 0, 0); 347 -webkit-transform: translate3d(10px, 0, 0);
338 -ms-transform: translate3d(10px, 0, 0); 348 -ms-transform: translate3d(10px, 0, 0);
339 transform: translate3d(10px, 0, 0); 349 transform: translate3d(10px, 0, 0);
340 } 350 }
341 } 351 }
342 352
343 .shake { 353 .shake {
344 animation: shake 0.5s; 354 animation: shake 0.5s;
345 -webkit-animation: shake 0.5s; 355 -webkit-animation: shake 0.5s;
346 } 356 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698