aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css/flowdetail.less
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-15 14:58:46 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-15 14:58:46 +0100
commit33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04 (patch)
tree31914a601302579ff817504019296fd7e9e46765 /web/src/css/flowdetail.less
parent36f34f701991b5d474c005ec45e3b66e20f326a8 (diff)
downloadmitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.tar.gz
mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.tar.bz2
mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.zip
move mitmproxy
Diffstat (limited to 'web/src/css/flowdetail.less')
-rw-r--r--web/src/css/flowdetail.less112
1 files changed, 0 insertions, 112 deletions
diff --git a/web/src/css/flowdetail.less b/web/src/css/flowdetail.less
deleted file mode 100644
index edf97566..00000000
--- a/web/src/css/flowdetail.less
+++ /dev/null
@@ -1,112 +0,0 @@
-//TODO: Move into some utils
-.monospace() {
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
-}
-
-.flow-detail {
- width: 100%;
- overflow-x: auto;
- overflow-y: scroll;
-
- nav {
- background-color: #F2F2F2;
- }
-
- section {
- padding: 5px 12px;
- }
-
- .first-line {
- .monospace();
- background-color: #428bca;
- color: white;
- margin: 0 -8px;
- padding: 4px 8px;
- border-radius: 5px;
- word-break: break-all;
- max-height: 100px;
- overflow-y: auto;
- }
- .request-line {
- margin-bottom: 2px;
- }
- /*.request .response-line,
- .response .request-line {
- opacity: 0.7;
- }*/
-
- hr {
- margin: 0 0 5px;
- }
-
-}
-
-.inline-input {
- margin: 0 -5px;
- padding: 0 5px;
-
- &[contenteditable] {
-
- background-color: rgba(255, 255, 255, 0.2);
-
- &.has-warning {
- color: rgb(255, 184, 184);
- }
- &.has-success {
- //color: green;
- }
- }
-}
-
-.view-options {
- margin-top: 10px;
-}
-
-.flow-detail table {
- .monospace();
- width: 100%;
- table-layout: fixed;
- word-break: break-all;
-
- tr {
- &:not(:first-child) {
- border-top: 1px solid #f7f7f7;
- }
- }
-
- td {
- vertical-align: top;
- //alt:
- //white-space: nowrap;
- //overflow: hidden;
- //text-overflow: ellipsis;
- }
-}
-
-.connection-table {
- td:first-child {
- width: 50%;
- padding-right: 1em;
- }
-}
-
-.header-table {
- td {
- line-height: 1.3em;
- }
- .header-name {
- width: 33%;
- padding-right: 1em;
- }
- .header-value {
-
- }
-}
-
-.connection-table, .timing-table {
- td {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
-} \ No newline at end of file