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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/css/shared.css

Issue 271153002: Add pause/resume for isolates in vmservice/observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 1
2 /* Global styles */ 2 /* Global styles */
3 * { 3 * {
4 margin: 0; 4 margin: 0;
5 padding: 0; 5 padding: 0;
6 font: 400 14px 'Montserrat', sans-serif; 6 font: 400 14px 'Montserrat', sans-serif;
7 color: #333; 7 color: #333;
8 box-sizing: border-box; 8 box-sizing: border-box;
9 } 9 }
10 10
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 flex-shrink: 0; 135 flex-shrink: 0;
136 flex-basis: 16.6%; 136 flex-basis: 16.6%;
137 } 137 }
138 138
139 .flex-item-fixed-4-12 { 139 .flex-item-fixed-4-12 {
140 flex-grow: 0; 140 flex-grow: 0;
141 flex-shrink: 0; 141 flex-shrink: 0;
142 flex-basis: 33.3333%; 142 flex-basis: 33.3333%;
143 } 143 }
144 144
145 .flex-item-fixed-6-12 { 145 .flex-item-fixed-6-12, .flex-item-50-percent {
146 flex-grow: 0; 146 flex-grow: 0;
147 flex-shrink: 0; 147 flex-shrink: 0;
148 flex-basis: 50%; 148 flex-basis: 50%;
149 } 149 }
150 150
151 .flex-item-fixed-8-12 { 151 .flex-item-fixed-8-12 {
152 flex-grow: 0; 152 flex-grow: 0;
153 flex-shrink: 0; 153 flex-shrink: 0;
154 flex-basis: 66.6666%; 154 flex-basis: 66.6666%;
155 } 155 }
156 156
157 .flex-item-fixed-9-12 { 157 .flex-item-fixed-9-12 {
158 flex-grow: 0; 158 flex-grow: 0;
159 flex-shrink: 0; 159 flex-shrink: 0;
160 flex-basis: 75%; 160 flex-basis: 75%;
161 } 161 }
162 162
163 163
164 .flex-item-fixed-12-12 { 164 .flex-item-fixed-12-12 {
165 flex-grow: 0; 165 flex-grow: 0;
166 flex-shrink: 0; 166 flex-shrink: 0;
167 flex-basis: 100%; 167 flex-basis: 100%;
168 } 168 }
169 169
170 .flex-item-10-percent {
171 flex-grow: 0;
172 flex-shrink: 0;
173 flex-basis: 10%;
174 }
175
176 .flex-item-15-percent {
177 flex-grow: 0;
178 flex-shrink: 0;
179 flex-basis: 15%;
180 }
181
182 .flex-item-20-percent {
183 flex-grow: 0;
184 flex-shrink: 0;
185 flex-basis: 20%;
186 }
187
188 .flex-item-30-percent {
189 flex-grow: 0;
190 flex-shrink: 0;
191 flex-basis: 30%;
192 }
193
194 .flex-item-40-percent {
195 flex-grow: 0;
196 flex-shrink: 0;
197 flex-basis: 40%;
198 }
199
200 .flex-item-60-percent {
201 flex-grow: 0;
202 flex-shrink: 0;
203 flex-basis: 60%;
204 }
205
206 .flex-item-70-percent {
207 flex-grow: 0;
208 flex-shrink: 0;
209 flex-basis: 70%;
210 }
211
212 .flex-item-80-percent {
213 flex-grow: 0;
214 flex-shrink: 0;
215 flex-basis: 80%;
216 }
217
170 .well { 218 .well {
171 min-height: 20px; 219 min-height: 20px;
172 padding: 19px; 220 padding: 19px;
173 margin-bottom: 20px; 221 margin-bottom: 20px;
174 background-color: #f5f5f5; 222 background-color: #f5f5f5;
175 border: 1px solid #e3e3e3; 223 border: 1px solid #e3e3e3;
176 border-radius: 4px; 224 border-radius: 4px;
177 box-shadow: inset 0 1px 1px rgba(0,0,0,0.05); 225 box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
178 } 226 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698