summaryrefslogtreecommitdiffstats
path: root/devtools/client/themes/toolbars.css
blob: e80eec10a169264ae3ae47429eab992a397711d9 (plain)
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/* 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/. */

/* Toolbars */
.devtools-toolbar,
.devtools-sidebar-tabs tabs {
  appearance: none;
  padding: 0;
  border-width: 0;
  border-bottom-width: 1px;
  border-style: solid;
  /* Reserve 1px for the border */
  height: calc(var(--theme-toolbar-height) + 1px);
  /* Line-height based vertical centering technique used in panels
     which don't use Flexbox (mostly XUL panels). */
  line-height: var(--theme-toolbar-height);
  box-sizing: border-box;
}

.devtools-toolbar {
  padding: 0 3px;
}

/* <thead> nor <tr> support border, we have to style the <td> */
.devtools-toolbar td {
  border-bottom: 1px solid var(--theme-splitter-color);
}

.devtools-toolbar-bottom {
  border-top-width: 1px;
  border-bottom: none;
}

/* Input toolbars (toolbars that have a full height text input) */

.devtools-input-toolbar {
  display: flex;
  /* @TODO: Remove the !important in bug 1535956 */
  background-color: var(--theme-body-background) !important;
  color: inherit;
}

.devtools-input-toolbar > .devtools-searchbox:first-child {
  margin-inline-start: -3px; /* This needs to match .devtools-toolbar's padding */
}

.devtools-input-toolbar .devtools-button {
  /* adjust outline offset so it's not clipped */
  --theme-outline-offset: -2px;
}

/* Expected space around a separator:
 * -----------------------
 *            4
 * [button] 2 | 2 [button]
 *            4
 * -----------------------
 * We're using a 1px horizontal margin, since buttons already have their own
 * 1px horizontal margin, and margins don't collapse between flex items.
 * Some separators may be using a bigger, 6px horizontal margin.
 */
.devtools-separator {
  border-inline-start: 1px solid var(--theme-toolbar-separator);
  height: calc(100% - 8px);
  margin: 4px 1px;
}

/* In-tools sidebar */
.devtools-sidebar-tabs {
  appearance: none;
  margin: 0;
  height: 100%;
}

.devtools-sidebar-tabs > tabpanels {
  appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
}

.theme-light .devtools-sidebar-tabs > tabpanels {
  background: var(--theme-sidebar-background);
  color: var(--theme-body-color);
}

.devtools-sidebar-tabs tabs {
  position: static;
  font: inherit;
  margin-bottom: 0;
  overflow: hidden;
}

.devtools-sidebar-alltabs {
  appearance: none;
  height: 24px;
  line-height: 24px;
  padding: 0 4px;
  margin: 0;
  border-width: 0 0 1px 0;
  border-inline-start-width: 1px;
  border-style: solid;
}

.devtools-sidebar-alltabs .toolbarbutton-icon {
  display: none;
}

.devtools-sidebar-tabs tabs > .tabs-right,
.devtools-sidebar-tabs tabs > .tabs-left {
  display: none;
}

.devtools-sidebar-tabs tabs > tab {
  appearance: none;
  /* We want to match the height of a toolbar with a toolbarbutton
   * First, we need to replicated the padding of toolbar (4px),
   * then we need to take the border of the buttons into account (1px).
   */
  padding: 0 3px;
  margin: 0;
  min-width: 78px;
  text-align: center;
  background-color: transparent;
  color: inherit;
  flex: 1;
  border-width: 0;
  border-inline-start-width: 1px;
  border-style: solid;
  border-radius: 0;
  position: static;
  text-shadow: none;
}

.devtools-sidebar-tabs tabs > tab {
  border-image: linear-gradient(transparent 15%, var(--theme-splitter-color) 15%, var(--theme-splitter-color) 85%, transparent 85%) 1 1;
}

.devtools-sidebar-tabs tabs > tab[selected],
.devtools-sidebar-tabs tabs > tab[selected] + tab {
  border-image: linear-gradient(var(--theme-splitter-color), var(--theme-splitter-color)) 1 1;
}

.devtools-sidebar-tabs tabs > tab:first-child {
  border-inline-start-width: 0;
}

.devtools-sidebar-tabs tabs > tab:hover {
  background: rgba(0, 0, 0, 0.12);
}

.devtools-sidebar-tabs tabs > tab:hover:active {
  background: rgba(0, 0, 0, 0.2);
}

.devtools-sidebar-tabs tabs > tab[selected],
.devtools-sidebar-tabs tabs > tab[selected]:hover:active {
  color: var(--theme-selection-color);
  background: var(--theme-selection-background);
}

.devtools-invisible-splitter {
  border-color: transparent;
  background-color: transparent;
}

splitter.devtools-horizontal-splitter,
.devtools-side-splitter {
  background-color: var(--theme-splitter-color);
}

/* Dropdown Menu Button */
.devtools-dropdown-button {
  background-image: url("chrome://devtools/skin/images/select-arrow.svg") !important;
  background-position: right center !important;
  background-repeat: no-repeat !important;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-inline: 2px 10px !important;
  fill: var(--theme-icon-color);
  -moz-context-properties: fill;
}

.devtools-dropdown-button:dir(rtl) {
  background-position-x: left !important;
}

.devtools-dropdown-button:not(:hover) {
  background-color: transparent;
}

/* Style for title holder inside the dropdown menu button */
.devtools-dropdown-button .title {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding-top: 0.15em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}