summaryrefslogtreecommitdiff
path: root/src/chrome/os/linux
diff options
context:
space:
mode:
authorLootyhoof <lootyhoofer@gmail.com>2018-05-18 20:19:55 +0100
committerLootyhoof <lootyhoofer@gmail.com>2018-05-18 20:19:55 +0100
commit2dd7c191d4ffb2b4660898dd9de181f033d1c55d (patch)
tree66d44ec074dd7f2bca21d211a1240a8d69b6e8df /src/chrome/os/linux
parentb2f889f660b47bf88bea4010956ed2050f367811 (diff)
Remove redundant files
Diffstat (limited to 'src/chrome/os/linux')
-rw-r--r--src/chrome/os/linux/tabbox.css111
1 files changed, 0 insertions, 111 deletions
diff --git a/src/chrome/os/linux/tabbox.css b/src/chrome/os/linux/tabbox.css
deleted file mode 100644
index bc6c740..0000000
--- a/src/chrome/os/linux/tabbox.css
+++ /dev/null
@@ -1,111 +0,0 @@
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5/* ===== tabbox.css =================================================
6 == Styles used by XUL tab-related elements.
7 ======================================================================= */
8
9@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
10
11
12/* ::::: tabs ::::: */
13
14tabs {
15 position: relative;
16 z-index: 0;
17}
18
19/* ::::: tabpanels ::::: */
20
21tabpanels {
22 -moz-appearance: none;
23 border-right: 1px solid;
24 border-bottom: 1px solid;
25 border-left: 1px solid;
26 -moz-border-right-colors: rgb(75,75,75);
27 -moz-border-bottom-colors: rgb(75,75,75);
28 -moz-border-left-colors: rgb(75,75,75);
29 padding: 8px;
30 background-color: rgb(43,43,43);
31 color: #fff;
32}
33
34/* ::::: tab ::::: */
35
36tab {
37 position: relative;
38 -moz-appearance: tab;
39 margin-top: 2px;
40 border-top: 1px solid;
41 border-right: 1px solid;
42 border-left: 1px solid;
43 border-bottom: 1px solid rgb(75,75,75);
44 -moz-border-top-colors: rgb(75,75,75);
45 -moz-border-right-colors: rgb(75,75,75);
46 -moz-border-left-colors: rgb(75,75,75);
47 border-top-left-radius: 2px;
48 border-top-right-radius: 2px;
49 padding: 1px 4px 2px 4px;
50 background-color: rgb(23,23,23);
51 color: #fff;
52}
53
54tab[selected="true"] {
55 z-index: 1;
56 margin-top: 0;
57 background-color: rgb(43,43,43);
58 border-bottom-color: transparent;
59 padding: 1px 6px 4px 6px;
60}
61
62tab + tab {
63 -moz-margin-start: -2px;
64}
65
66.tab-text {
67 margin: 0 !important;
68}
69
70/* ::::: tab-bottom ::::::::::
71 :: Tabs that are attached to the bottom of a panel, but not necessarily
72 :: a tabpanels.
73 ::::: */
74
75.tab-bottom {
76 margin-top: 0;
77 margin-bottom: 2px;
78 border-top: 1px solid;
79 border-bottom: 1px solid;
80 -moz-border-top-colors: rgb(75,75,75);
81 -moz-border-bottom-colors: rgb(75,75,75);
82 border-top-left-radius: 0;
83 border-top-right-radius: 0;
84 border-bottom-right-radius: 2px;
85 border-bottom-left-radius: 2px;
86 padding: 2px 4px 1px 4px;
87}
88
89.tab-bottom[selected="true"] {
90 margin-bottom: 0;
91 -moz-border-top-colors: rgb(110,110,110);
92 padding: 4px 6px 1px 6px;
93}
94
95.tab-bottom[beforeselected="true"]:-moz-locale-dir(ltr),
96.tab-bottom[selected="true"]:-moz-locale-dir(rtl) + .tab-bottom {
97 border-bottom-right-radius: 0;
98}
99
100.tab-bottom[selected="true"]:-moz-locale-dir(ltr) + .tab-bottom,
101.tab-bottom[beforeselected="true"]:-moz-locale-dir(rtl) {
102 border-bottom-left-radius: 0;
103}
104
105/* ::::: tabs-bottom ::::: */
106
107.tabs-bottom > .tabs-left,
108.tabs-bottom > .tabs-right {
109 border-top: 1px solid rgb(75,75,75);
110 border-bottom: none;
111}