2014-09-14 00:44:13 +00:00
|
|
|
html {
|
2014-09-18 21:22:02 +00:00
|
|
|
box-sizing: border-box;
|
2014-09-14 00:44:13 +00:00
|
|
|
}
|
|
|
|
*,
|
|
|
|
*:before,
|
|
|
|
*:after {
|
2014-09-18 21:22:02 +00:00
|
|
|
box-sizing: inherit;
|
2014-09-14 00:44:13 +00:00
|
|
|
}
|
2014-09-17 19:14:55 +00:00
|
|
|
.resource-icon {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
.resource-icon-css {
|
2014-09-17 21:59:39 +00:00
|
|
|
background-image: url(../images/chrome-devtools/resourceCSSIcon.png);
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
|
|
|
.resource-icon-document {
|
2014-09-17 21:59:39 +00:00
|
|
|
background-image: url(../images/chrome-devtools/resourceDocumentIcon.png);
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
|
|
|
.resource-icon-js {
|
2014-09-17 21:59:39 +00:00
|
|
|
background-image: url(../images/chrome-devtools/resourceJSIcon.png);
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
|
|
|
.resource-icon-plain {
|
2014-09-17 21:59:39 +00:00
|
|
|
background-image: url(../images/chrome-devtools/resourcePlainIcon.png);
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
|
|
|
.resource-icon-executable {
|
2014-09-17 21:59:39 +00:00
|
|
|
background-image: url(../images/resourceExecutableIcon.png);
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
|
|
|
.resource-icon-flash {
|
2014-09-17 21:59:39 +00:00
|
|
|
background-image: url(../images/resourceFlashIcon.png);
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
|
|
|
.resource-icon-image {
|
2014-09-17 21:59:39 +00:00
|
|
|
background-image: url(../images/resourceImageIcon.png);
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
|
|
|
.resource-icon-java {
|
2014-09-17 21:59:39 +00:00
|
|
|
background-image: url(../images/resourceJavaIcon.png);
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
|
|
|
.resource-icon-not-modified {
|
2014-09-17 21:59:39 +00:00
|
|
|
background-image: url(../images/resourceNotModifiedIcon.png);
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
|
|
|
.resource-icon-redirect {
|
2014-09-17 21:59:39 +00:00
|
|
|
background-image: url(../images/resourceRedirectIcon.png);
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
2014-09-14 00:44:13 +00:00
|
|
|
html,
|
|
|
|
body,
|
|
|
|
#container {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#container {
|
2014-09-15 16:08:26 +00:00
|
|
|
display: flex;
|
2014-09-18 21:22:02 +00:00
|
|
|
flex-direction: column;
|
2014-09-14 00:44:13 +00:00
|
|
|
}
|
2014-09-15 16:08:26 +00:00
|
|
|
#container > header,
|
|
|
|
#container > footer,
|
|
|
|
#container > .eventlog {
|
2014-09-18 21:22:02 +00:00
|
|
|
flex: 0 0 auto;
|
2014-09-18 19:13:50 +00:00
|
|
|
}
|
|
|
|
.main-view {
|
2014-09-18 21:22:02 +00:00
|
|
|
flex: 1 1 auto;
|
2014-09-18 19:13:50 +00:00
|
|
|
display: flex;
|
2014-09-18 21:22:02 +00:00
|
|
|
flex-direction: row;
|
2014-09-18 19:13:50 +00:00
|
|
|
}
|
|
|
|
.main-view.vertical {
|
2014-09-18 21:22:02 +00:00
|
|
|
flex-direction: column;
|
2014-09-18 19:13:50 +00:00
|
|
|
}
|
|
|
|
.main-view .flow-detail,
|
|
|
|
.main-view .flow-table {
|
2014-09-18 21:22:02 +00:00
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
.splitter {
|
|
|
|
flex: 0 0 4px;
|
|
|
|
background-color: #ccc;
|
|
|
|
content: "X";
|
|
|
|
}
|
|
|
|
.splitter-x {
|
|
|
|
cursor: col-resize;
|
|
|
|
}
|
|
|
|
.splitter-y {
|
|
|
|
cursor: row-resize;
|
2014-09-18 19:13:50 +00:00
|
|
|
}
|
|
|
|
.nav-tabs {
|
2014-09-14 00:44:13 +00:00
|
|
|
border-bottom: solid #a6a6a6 1px;
|
|
|
|
}
|
2014-09-18 19:13:50 +00:00
|
|
|
.nav-tabs a {
|
2014-09-14 00:44:13 +00:00
|
|
|
display: inline-block;
|
|
|
|
border: solid transparent 1px;
|
2014-09-18 19:13:50 +00:00
|
|
|
text-decoration: none;
|
2014-09-14 00:44:13 +00:00
|
|
|
}
|
2014-09-18 19:13:50 +00:00
|
|
|
.nav-tabs a.active {
|
|
|
|
background-color: white;
|
2014-09-14 00:44:13 +00:00
|
|
|
border-color: #a6a6a6;
|
|
|
|
border-bottom-color: white;
|
|
|
|
}
|
2014-09-18 19:13:50 +00:00
|
|
|
.nav-tabs a.special {
|
2014-09-14 00:44:13 +00:00
|
|
|
color: white;
|
|
|
|
background-color: #396cad;
|
|
|
|
border-bottom-color: #396cad;
|
|
|
|
}
|
2014-09-18 19:13:50 +00:00
|
|
|
.nav-tabs a.special:hover {
|
2014-09-14 00:44:13 +00:00
|
|
|
background-color: #5386c6;
|
|
|
|
}
|
2014-09-18 19:13:50 +00:00
|
|
|
.nav-tabs-lg a {
|
|
|
|
padding: 3px 14px;
|
|
|
|
margin: 0 2px -1px;
|
|
|
|
}
|
|
|
|
.nav-tabs-sm a {
|
|
|
|
padding: 0px 7px;
|
|
|
|
margin: 2px 2px -1px;
|
|
|
|
}
|
|
|
|
header {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
header .title-bar {
|
|
|
|
line-height: 25px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2014-09-14 00:44:13 +00:00
|
|
|
header .menu {
|
2014-09-15 16:39:25 +00:00
|
|
|
padding: 10px;
|
2014-09-14 00:44:13 +00:00
|
|
|
border-bottom: solid #a6a6a6 1px;
|
|
|
|
}
|
2014-09-17 15:30:19 +00:00
|
|
|
.flow-table {
|
2014-09-18 19:13:50 +00:00
|
|
|
width: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
.flow-table table {
|
2014-09-17 15:30:19 +00:00
|
|
|
width: 100%;
|
2014-09-17 19:14:55 +00:00
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
.flow-table thead {
|
2014-09-18 19:13:50 +00:00
|
|
|
background-color: #F2F2F2;
|
|
|
|
line-height: 23px;
|
|
|
|
}
|
|
|
|
.flow-table th {
|
|
|
|
font-weight: normal;
|
|
|
|
box-shadow: 0 1px 0 #a6a6a6;
|
|
|
|
}
|
|
|
|
.flow-table tbody {
|
|
|
|
outline: 0;
|
2014-09-17 19:14:55 +00:00
|
|
|
}
|
2014-09-17 21:59:39 +00:00
|
|
|
.flow-table tr {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2014-09-18 00:22:10 +00:00
|
|
|
.flow-table tr.selected {
|
|
|
|
background-color: rgba(193, 215, 235, 0.5) !important;
|
|
|
|
}
|
2014-09-17 19:14:55 +00:00
|
|
|
.flow-table td {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2014-09-17 21:59:39 +00:00
|
|
|
.flow-table tr:nth-child(even) {
|
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
2014-09-18 00:22:10 +00:00
|
|
|
.flow-table .col-tls {
|
2014-09-17 19:14:55 +00:00
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
.flow-table .col-tls-https {
|
|
|
|
background-color: rgba(0, 185, 0, 0.5);
|
|
|
|
}
|
|
|
|
.flow-table .col-icon {
|
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
.flow-table .col-method {
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
.flow-table .col-status {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
.flow-table .col-time {
|
2014-09-18 19:13:50 +00:00
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
.flow-table td.col-time {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.flow-detail {
|
2014-09-18 21:22:02 +00:00
|
|
|
width: 100%;
|
2014-09-18 19:13:50 +00:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
.flow-detail nav {
|
|
|
|
background-color: #F2F2F2;
|
2014-09-17 15:30:19 +00:00
|
|
|
}
|
2014-09-15 16:08:26 +00:00
|
|
|
.eventlog {
|
2014-09-18 21:22:02 +00:00
|
|
|
flex: 0 0 auto;
|
2014-09-15 16:08:26 +00:00
|
|
|
margin: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
height: 200px;
|
|
|
|
overflow: auto;
|
2014-09-17 13:22:42 +00:00
|
|
|
overflow-y: scroll;
|
2014-09-15 16:39:25 +00:00
|
|
|
}
|
2014-09-14 00:44:13 +00:00
|
|
|
footer {
|
2014-09-15 16:08:26 +00:00
|
|
|
box-shadow: 0 -1px 3px #d3d3d3;
|
|
|
|
padding: 0px 10px 3px;
|
2014-09-18 21:22:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*# sourceMappingURL=../css/app.css.map */
|