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

Unified Diff: runtime/observatory/lib/src/elements/css/shared.css

Issue 839543002: Revert "Build Observatory with runtime" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/lib/src/elements/css/shared.css
diff --git a/runtime/observatory/lib/src/elements/css/shared.css b/runtime/observatory/lib/src/elements/css/shared.css
deleted file mode 100644
index 7c0dc894ab3c806c01eb00b832026a4e80c5bbd0..0000000000000000000000000000000000000000
--- a/runtime/observatory/lib/src/elements/css/shared.css
+++ /dev/null
@@ -1,253 +0,0 @@
-/* Global styles */
-* {
- margin: 0;
- padding: 0;
- font: 400 14px 'Montserrat', sans-serif;
- color: #333;
- box-sizing: border-box;
-}
-
-.content {
- padding-left: 10%;
- font: 400 14px 'Montserrat', sans-serif;
-}
-
-.content-centered {
- padding-left: 10%;
- padding-right: 10%;
- font: 400 14px 'Montserrat', sans-serif;
-}
-
-.content-centered-big {
- padding-left: 5%;
- padding-right: 5%;
- font: 400 14px 'Montserrat', sans-serif;
-}
-
-h1 {
- font: 400 18px 'Montserrat', sans-serif;
-}
-
-.memberList {
- display: table;
-}
-
-.memberItem {
- display: table-row;
-}
-
-.memberName, .memberValue {
- display: table-cell;
- vertical-align: top;
- padding: 3px 0 3px 1em;
- font: 400 14px 'Montserrat', sans-serif;
-}
-
-.memberSmall {
- display: table-cell;
- vertical-align: top;
- padding: 3px 0 3px 1em;
- font: 400 12px 'Montserrat', sans-serif;
-}
-
-.monospace {
- font-family: consolas, courier, monospace;
- font-size: 1em;
- line-height: 1.2em;
- white-space: nowrap;
-}
-
-a {
- color: #0489c3;
- text-decoration: none;
-}
-
-a:hover {
- text-decoration: underline;
-}
-
-em {
- color: inherit;
- font-style: italic;
-}
-
-b {
- color: inherit;
- font-weight: bold;
-}
-
-hr {
- margin-top: 20px;
- margin-bottom: 20px;
- border: 0;
- border-top: 1px solid #eee;
- height: 0;
- box-sizing: content-box;
-}
-
-.list-group {
- padding-left: 0;
- margin-bottom: 20px;
-}
-
-.list-group-item {
- position: relative;
- display: block;
- padding: 10px 15px;
- margin-bottom: -1px;
- background-color: #fff;
-}
-
-.list-group-item:first-child {
- /* rounded top corners */
- border-top-right-radius:4px;
- border-top-left-radius:4px;
-}
-
-.list-group-item:last-child {
- margin-bottom: 0;
- /* rounded bottom corners */
- border-bottom-right-radius: 4px;
- border-bottom-left-radius:4px;
-}
-
-/* Flex row container */
-.flex-row {
- display: flex;
- flex-direction: row;
-}
-
-/* Flex column container */
-.flex-column {
- display: flex;
- flex-direction: column;
-}
-
-.flex-item-fit {
- flex-grow: 1;
- flex-shrink: 1;
- flex-basis: auto;
-}
-
-.flex-item-no-shrink {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: auto;
-}
-
-.flex-item-fill {
- flex-grow: 0;
- flex-shrink: 1; /* shrink when pressured */
- flex-basis: 100%; /* try and take 100% */
-}
-
-.flex-item-fixed-1-12 {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 8.3%;
-}
-
-.flex-item-fixed-2-12 {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 16.6%;
-}
-
-.flex-item-fixed-4-12 {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 33.3333%;
-}
-
-.flex-item-fixed-6-12, .flex-item-50-percent {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 50%;
-}
-
-.flex-item-fixed-8-12 {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 66.6666%;
-}
-
-.flex-item-fixed-9-12 {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 75%;
-}
-
-
-.flex-item-fixed-12-12 {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 100%;
-}
-
-.flex-item-10-percent {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 10%;
-}
-
-.flex-item-15-percent {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 15%;
-}
-
-.flex-item-20-percent {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 20%;
-}
-
-.flex-item-30-percent {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 30%;
-}
-
-.flex-item-40-percent {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 40%;
-}
-
-.flex-item-50-percent {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 50%;
-}
-
-.flex-item-60-percent {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 60%;
-}
-
-.flex-item-70-percent {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 70%;
-}
-
-.flex-item-80-percent {
- flex-grow: 0;
- flex-shrink: 0;
- flex-basis: 80%;
-}
-
-.well {
- min-height: 20px;
- padding: 19px;
- margin-bottom: 20px;
- background-color: #f5f5f5;
- border: 1px solid #e3e3e3;
- border-radius: 4px;
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
-}
-
-.break-wrap {
- word-wrap: break-word;
-}
« no previous file with comments | « runtime/observatory/lib/src/elements/context_view.html ('k') | runtime/observatory/lib/src/elements/curly_block.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698