File: tinyJsd.css

package info (click to toggle)
tinyjsd 1.2%2Bgit1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 316 kB
  • sloc: makefile: 21
file content (87 lines) | stat: -rw-r--r-- 2,082 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

@import url(chrome://global/skin/);

/*
 * we have to explicitly import this css, because we're overriding the binding
 * of the supremely awful <tab> tag.
 */
@import url(chrome://global/skin/tabbox.css);


#button-debug-continue {
  list-style-image: url("chrome://tinyjsd/skin/play.png");
}

#button-debug-continue[disabled="true"],
#button-debug-continue[disabled="true"]:hover,
#button-debug-continue[disabled="true"]:active
{
  list-style-image: url("chrome://tinyjsd/skin/play-disabled.png");
}

#button-debug-step-into {
  list-style-image: url("chrome://tinyjsd/skin/step-into.png");
}

#button-debug-step-into[disabled="true"],
#button-debug-step-into[disabled="true"]:hover,
#button-debug-step-into[disabled="true"]:active
{
  list-style-image: url("chrome://tinyjsd/skin/step-into-disabled.png");
}

#button-debug-step-over {
  list-style-image: url("chrome://tinyjsd/skin/jumpover.png");
}

#button-debug-step-over[disabled="true"],
#button-debug-step-over[disabled="true"]:hover,
#button-debug-step-over[disabled="true"]:active
{
  list-style-image: url("chrome://tinyjsd/skin/jumpover-disabled.png");
}

#button-debug-step-out {
  list-style-image: url("chrome://tinyjsd/skin/step-out.png");
}

#button-debug-step-out[disabled="true"],
#button-debug-step-out[disabled="true"]:hover,
#button-debug-step-out[disabled="true"]:active
{
  list-style-image: url("chrome://tinyjsd/skin/step-out-disabled.png");
}

tabbox {
  -moz-binding: none;
}

tabpanels {
    background: none;
    padding: 2px;
}


tab {
    -moz-binding: none;
    padding-right: 5px;
}

.tab-close-button {
    list-style-image: url("chrome://tinyjsd/skin/close-button.png");
    margin: 1px;
    margin-top: 2px;
}

.tab-close-button:hover {
    border: 1px silver outset;
    margin: 0px;
    margin-top: 1px;
}

treechildren::-moz-tree-cell-text(tinyjsdWlInternal) {
  font-style: italic;
}