mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2025-01-30 23:09:44 +00:00
tweak css
This commit is contained in:
parent
1143552e16
commit
89d66360d6
@ -290,6 +290,9 @@ header .menu {
|
||||
max-height: 100px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.flow-detail hr {
|
||||
margin: 0 0 5px;
|
||||
}
|
||||
.view-selector {
|
||||
margin-top: 10px;
|
||||
}
|
||||
@ -309,6 +312,9 @@ header .menu {
|
||||
width: 50%;
|
||||
padding-right: 1em;
|
||||
}
|
||||
.header-table td {
|
||||
line-height: 1.3em;
|
||||
}
|
||||
.header-table .header-name {
|
||||
width: 33%;
|
||||
padding-right: 1em;
|
||||
|
@ -6,7 +6,6 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
|
||||
> div {
|
||||
background-color: #F2F2F2;
|
||||
padding: 0 5px;
|
||||
@ -23,7 +22,6 @@
|
||||
background-color: #fcfcfc;
|
||||
}
|
||||
|
||||
|
||||
.fa-close {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
|
@ -1,9 +1,8 @@
|
||||
//TODO: Move into some utils
|
||||
.monospace(){
|
||||
.monospace() {
|
||||
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
||||
}
|
||||
|
||||
|
||||
.flow-detail {
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
@ -27,6 +26,11 @@
|
||||
max-height: 100px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 0 0 5px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.view-selector {
|
||||
@ -40,7 +44,7 @@
|
||||
word-break: break-all;
|
||||
|
||||
tr {
|
||||
&:not(:first-child){
|
||||
&:not(:first-child) {
|
||||
border-top: 1px solid #f7f7f7;
|
||||
}
|
||||
}
|
||||
@ -62,6 +66,9 @@
|
||||
}
|
||||
|
||||
.header-table {
|
||||
td {
|
||||
line-height: 1.3em;
|
||||
}
|
||||
.header-name {
|
||||
width: 33%;
|
||||
padding-right: 1em;
|
||||
|
@ -7,12 +7,15 @@
|
||||
.resource-icon-css {
|
||||
background-image: url(images/chrome-devtools/resourceCSSIcon.png);
|
||||
}
|
||||
|
||||
.resource-icon-document {
|
||||
background-image: url(images/chrome-devtools/resourceDocumentIcon.png);
|
||||
}
|
||||
|
||||
.resource-icon-js {
|
||||
background-image: url(images/chrome-devtools/resourceJSIcon.png);
|
||||
}
|
||||
|
||||
.resource-icon-plain {
|
||||
background-image: url(images/chrome-devtools/resourcePlainIcon.png);
|
||||
}
|
||||
@ -21,18 +24,23 @@
|
||||
.resource-icon-executable {
|
||||
background-image: url(images/resourceExecutableIcon.png);
|
||||
}
|
||||
|
||||
.resource-icon-flash {
|
||||
background-image: url(images/resourceFlashIcon.png);
|
||||
}
|
||||
|
||||
.resource-icon-image {
|
||||
background-image: url(images/resourceImageIcon.png);
|
||||
}
|
||||
|
||||
.resource-icon-java {
|
||||
background-image: url(images/resourceJavaIcon.png);
|
||||
}
|
||||
|
||||
.resource-icon-not-modified {
|
||||
background-image: url(images/resourceNotModifiedIcon.png);
|
||||
}
|
||||
|
||||
.resource-icon-redirect {
|
||||
background-image: url(images/resourceRedirectIcon.png);
|
||||
}
|
@ -1,4 +1,3 @@
|
||||
|
||||
@navbar-height: 32px;
|
||||
@navbar-default-link-color: #303030;
|
||||
@navbar-default-color: #303030;
|
||||
|
@ -2,12 +2,10 @@
|
||||
@import "../../node_modules/bootstrap/less/variables.less";
|
||||
@import "vendor-bootstrap-variables.less";
|
||||
@import "../../node_modules/bootstrap/less/mixins.less";
|
||||
|
||||
// Reset and dependencies
|
||||
@import "../../node_modules/bootstrap/less/normalize.less";
|
||||
@import "../../node_modules/bootstrap/less/print.less";
|
||||
@import "../../node_modules/bootstrap/less/glyphicons.less";
|
||||
|
||||
// Core CSS
|
||||
@import "../../node_modules/bootstrap/less/scaffolding.less";
|
||||
@import "../../node_modules/bootstrap/less/type.less";
|
||||
@ -16,7 +14,6 @@
|
||||
@import "../../node_modules/bootstrap/less/tables.less";
|
||||
@import "../../node_modules/bootstrap/less/forms.less";
|
||||
@import "../../node_modules/bootstrap/less/buttons.less";
|
||||
|
||||
// Components
|
||||
@import "../../node_modules/bootstrap/less/component-animations.less";
|
||||
@import "../../node_modules/bootstrap/less/dropdowns.less";
|
||||
@ -39,13 +36,11 @@
|
||||
@import "../../node_modules/bootstrap/less/responsive-embed.less";
|
||||
@import "../../node_modules/bootstrap/less/wells.less";
|
||||
@import "../../node_modules/bootstrap/less/close.less";
|
||||
|
||||
// Components w/ JavaScript
|
||||
@import "../../node_modules/bootstrap/less/modals.less";
|
||||
@import "../../node_modules/bootstrap/less/tooltip.less";
|
||||
@import "../../node_modules/bootstrap/less/popovers.less";
|
||||
@import "../../node_modules/bootstrap/less/carousel.less";
|
||||
|
||||
// Utility classes
|
||||
@import "../../node_modules/bootstrap/less/utilities.less";
|
||||
@import "../../node_modules/bootstrap/less/responsive-utilities.less";
|
||||
|
Loading…
Reference in New Issue
Block a user