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

Unified Diff: chrome/browser/resources/net_internals/logs_view.css

Issue 7474013: Extract the CSS for the net_internals EventsView and LogsView to separate files. Also rename thes... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 5 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: chrome/browser/resources/net_internals/logs_view.css
===================================================================
--- chrome/browser/resources/net_internals/logs_view.css (revision 94612)
+++ chrome/browser/resources/net_internals/logs_view.css (working copy)
@@ -4,150 +4,34 @@
found in the LICENSE file.
*/
-* {
- box-sizing: border-box;
- -moz-box-sizing: border-box;
-}
-body {
- font-family: sans-serif;
-}
-
-#filterBox {
- background: #efefef;
- padding: 5px;
- border-bottom: 1px solid gray;
- overflow: hidden;
-}
-
-#filterBox * {
- white-space: nowrap;
- font-family: sans-serif;
- font-size: 12px;
-}
-
-#filterBox input {
- width: 100%;
-}
-
-#actionBox {
- background: #efefef;
- white-space: nowrap;
- border-top: 1px solid gray;
- overflow: hidden;
-}
-
-#eventsBox {
- overflow-x: hidden;
- overflow-y: auto
-}
-
-#detailsBox {
- overflow: auto;
-}
-
-.splitterBox {
- background: #bfbfbf;
- border-left: 1px inset black;
- border-right: 1px solid black;
- position:absolute;
- width: 8px;
- cursor: col-resize;
- user-select: none;
-}
-
-#eventsListTable {
- cursor: pointer;
-}
-
-#eventsListTable thead td {
- text-align: left;
- font-weight: bold;
- background: rgb(229, 236, 249);
-}
-
-#eventsListTable td {
- padding: 3px;
- border-left: 1px solid #afafaf;
- border-bottom: 1px solid #afafaf;
- text-overflow: ellipsis;
- font-size: 12px;
- white-space: nowrap;
-}
-
-#eventsListTableBody .mouseover {
- background: rgb(244,244,255);
-}
-
-#eventsListTableBody .selected {
- background: #C3D9FF;
-}
-
-#eventsListTableBody .error {
- background: #FFF5F5;
-}
-
-#eventsListTableBody .inactive {
- background: #F5FFF5;
-}
-
-#eventsListTableBody .source_CONNECT_JOB {
- color: blue;
-}
-
-#eventsListTableBody .source_HOST_RESOLVER_IMPL_JOB,
-#eventsListTableBody .source_HOST_RESOLVER_IMPL_REQUEST {
- color: #206060;
-}
-
-#eventsListTableBody .source_DISK_CACHE_ENTRY,
-#eventsListTableBody .source_MEMORY_CACHE_ENTRY {
- color: #707070;
-}
-
-#eventsListTableBody .source_SOCKET {
- color: purple;
-}
-
-#eventsListTableBody .source_INIT_PROXY_RESOLVER {
- color: green;
-}
-
-#eventsListTableBody .source_NONE {
- color: red;
-}
-
-.logCellEmpty {
- background-color: gray;
-}
-
-.logCellText, .logCellLog {
+.logs-view-log-cell-text, .logs-view-log-cell-log {
background-color: white;
}
-.logRowCollapsed .logCellLog {
+.logs-view-log-row-collapsed .logs-view-log-cell-log {
display: none;
}
-.logRowExpanded .logCellLog {
+.logs-view-log-row-expanded .logs-view-log-cell-log {
display: table-cell;
}
-.logTableButtonColumn {
+.logs-view-log-table-button-column {
text-align: center;
}
-.logButton {
+.logs-view-log-button {
width: 85px;
}
-.logsGlobalButton {
+.logs-view-global-button {
width: 135px;
float: left;
margin: 5px;
margin-top: 0;
}
-#logTable td {
+#logs-view-log-table td {
padding: 0 5px;
padding-top: 3px;
vertical-align: top;
@@ -157,137 +41,10 @@
font-size: 12px;
}
-#logTableHeaderRow th {
+#logs-view-log-table-header-row th {
text-align: left;
}
-#logsTabContent {
+#logs-view-tab-content {
padding: 5px;
}
-
-.tabSwitcher {
- margin-top: 10px;
- margin-left: 10px;
-}
-
-.tabSwitcher th {
- background: rgb(229,236,249);
- cursor: pointer;
- background-clip: border-box;
- border-top-left-radius: 5px 5px;
- border-top-right-radius: 5px 5px;
- padding-left: 4px;
- padding-top: 4px;
- padding-right: 4px;
- font-size: 12px;
- margin-left: 30px;
-}
-
-.tabSwitcher th.selected, .tabSwitcherLine {
- background: rgb(195,217,255);
-}
-
-.tabSwitcherLine {
- height: 10px;
-}
-
-#detailsTabHandles {
- border: 1px solid white;
-}
-
-.logSourceEntry {
- margin: 5px;
-}
-
-.logSourceEntry * p {
- font-weight: bold;
- font-size: 12px;
-}
-
-.logSourceEntry * td {
- font-size: 10px;
-}
-
-#detailsLogBox,
-#detailsTimelineBox,
-#httpCacheTabContent,
-#proxyTabContent,
-#dataTabContent,
-#dnsTabContent,
-#socketsTabContent,
-#spdyTabContent,
-#serviceProvidersTabContent,
-#testTabContent,
-#hstsTabContent,
-#httpThrottlingTabContent,
-#prerenderTabContent,
-#logsTabContent {
- overflow: auto;
- padding: 10px;
-}
-
-#proxyTabContent td,
-#proxyTabContent th {
- font-size: 12px;
-}
-
-/*
- * Styles for TABLE that uses a thin collapsed border.
- */
-table.styledTable {
- border-collapse:collapse;
-}
-
-table.styledTable,
-.styledTable th,
-.styledTable td {
- border: 1px solid #777;
- padding-right: 4px;
- padding-left: 4px;
-}
-
-.styledTable th {
- background: rgb(224,236,255);
-}
-
-.styledTable th.title {
- background: rgb(255,217,217);
-}
-
-/*
- * This is the box in the top right of the Data tab which shows how many
- * events have been captured so far.
- */
-.capturingBox {
- border: 1px dashed black;
- display: inline-block;
- text-align: left;
- padding: 5px;
-}
-
-/**
- * Styling for an emphasized button.
- */
-.bigButton {
- font-size: 100%;
- font-weight: bold;
-}
-
-/**
- * Styling for text indicating a potential problem or error state.
- */
-.warningText {
- color: red;
-}
-
-#statusViewForCapture {
- background: red;
- color: #eee;
- padding: 4px;
-}
-
-#statusViewForFile {
- background: #88c;
- color: #eee;
- padding: 4px;
-}
« no previous file with comments | « chrome/browser/resources/net_internals/index.html ('k') | chrome/browser/resources/net_internals/logs_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698