~ubuntu-branches/debian/stretch/firebug/stretch

« back to all changes in this revision

Viewing changes to skin/classic/callstack.css

  • Committer: Package Import Robot
  • Author(s): David Prévot
  • Date: 2013-09-10 17:46:52 UTC
  • mfrom: (0.5.4 experimental)
  • Revision ID: package-import@ubuntu.com-20130910174652-5lfrk4v10r8507yd
Tags: 1.12.1-2
* Team upload
* Upload this stable version to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* See license.txt for terms of usage */
2
 
 
3
 
.panelNode-callstack {
4
 
    overflow: auto;
5
 
}
6
 
 
7
 
/**
8
 
 * This objectLink-stackFrame should be consistent with panelStatusLabel so the
9
 
 * call stack looks the same in toolbar and panel.
10
 
 */
11
 
.objectLink-stackFrame {
12
 
    cursor: pointer;
13
 
    margin: 0;
14
 
    padding: 0 4px;
15
 
}
16
 
 
17
 
.objectBox-stackFrame {
18
 
    padding-left: 17px;
19
 
    cursor: default;
20
 
    position: relative;
21
 
    padding-bottom: 2px;
22
 
    border-top: 1px solid transparent;
23
 
    border-bottom: 1px solid transparent;
24
 
}
25
 
 
26
 
.objectBox-stackFrame,
27
 
.objectBox-stackFrame .objectLink,
28
 
.objectBox-stackFrame .objectBox {
29
 
    white-space: nowrap !important;
30
 
}
31
 
 
32
 
.objectBox-stackFrame[selected="true"] {
33
 
    border-top: 1px solid #D9D9B6;
34
 
    border-bottom: 1px solid #D9D9B6;
35
 
    background-color: lightgoldenrodyellow;
36
 
}
37
 
 
38
 
.objectLink-stackFrame:hover {
39
 
    color: blue;
40
 
}
41
 
 
42
 
.objectLink-stackFrame[selected="true"] {
43
 
    font-weight: bold;
44
 
}
45
 
 
46
 
/* The source links are always displayed at the end of the frame line. */
47
 
.panelNode-callstack .objectLink-sourceLink {
48
 
    position: relative;
49
 
    top: 0;
50
 
}
51
 
 
52
 
/*************************************************************************************************/
53
 
/* Expandable Argument List */
54
 
 
55
 
.objectBox-stackFrame .argList {
56
 
    display: none;
57
 
    margin-bottom: 5px;
58
 
}
59
 
 
60
 
.objectBox-stackFrame.opened .argList {
61
 
    display: block;
62
 
}
63
 
 
64
 
/**
65
 
 * The one-line list of arguments is hidden if the frame is exapanded. So, the source
66
 
 * link is nicely visible.
67
 
 */
68
 
.objectBox-stackFrame.opened .arguments {
69
 
    display: none;
70
 
}
71
 
 
 
1
/* See license.txt for terms of usage */
 
2
 
 
3
.panelNode-callstack {
 
4
    overflow: auto;
 
5
}
 
6
 
 
7
/**
 
8
 * This objectLink-stackFrame should be consistent with panelStatusLabel so the
 
9
 * call stack looks the same in toolbar and panel.
 
10
 */
 
11
.objectLink-stackFrame {
 
12
    cursor: pointer;
 
13
    margin: 0;
 
14
    padding: 0 4px;
 
15
}
 
16
 
 
17
.objectBox-stackFrame {
 
18
    padding-left: 17px;
 
19
    cursor: default;
 
20
    position: relative;
 
21
    padding-bottom: 2px;
 
22
    border-top: 1px solid transparent;
 
23
    border-bottom: 1px solid transparent;
 
24
}
 
25
 
 
26
.objectBox-stackFrame,
 
27
.objectBox-stackFrame .objectLink,
 
28
.objectBox-stackFrame .objectBox {
 
29
    white-space: nowrap !important;
 
30
}
 
31
 
 
32
.objectBox-stackFrame[selected="true"] {
 
33
    border-top: 1px solid #D9D9B6;
 
34
    border-bottom: 1px solid #D9D9B6;
 
35
    background-color: lightgoldenrodyellow;
 
36
}
 
37
 
 
38
.objectLink-stackFrame:hover {
 
39
    color: blue;
 
40
}
 
41
 
 
42
.objectLink-stackFrame[selected="true"] {
 
43
    font-weight: bold;
 
44
}
 
45
 
 
46
/* The source links are always displayed at the end of the frame line. */
 
47
.panelNode-callstack .objectLink-sourceLink {
 
48
    position: relative;
 
49
    top: 0;
 
50
}
 
51
 
 
52
/*************************************************************************************************/
 
53
/* Expandable Argument List */
 
54
 
 
55
.objectBox-stackFrame .argList {
 
56
    display: none;
 
57
    margin-bottom: 5px;
 
58
}
 
59
 
 
60
.objectBox-stackFrame.opened .argList {
 
61
    display: block;
 
62
}
 
63
 
 
64
/**
 
65
 * The one-line list of arguments is hidden if the frame is expanded. So, the source
 
66
 * link is nicely visible.
 
67
 * There is also an option that allows to hide the argument list by default
 
68
 * (see extensions.firebug.showStackFrameArguments).
 
69
 */
 
70
.objectBox-stackFrame.opened .arguments,
 
71
.panelNode-callstack.hideArguments .objectBox-stackFrame .arguments {
 
72
    display: none;
 
73
}
 
74
 
 
75
/*************************************************************************************************/
 
76
/* FunctionCall log */
 
77
 
 
78
.objectBox-functionCall {
 
79
    padding-left: 17px;
 
80
    cursor: default;
 
81
    position: relative;
 
82
}