soiz1 commited on
Commit
8827cdb
·
verified ·
1 Parent(s): b6a3ea0

Create userstyle.css

Browse files
src/addons/addons/multi-tab-code/userstyle.css ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .tab-scroller {
2
+ width: max-content;
3
+ display: flex;
4
+ position: absolute;
5
+ }
6
+ .tab-scrollbar {
7
+ position: absolute;
8
+ background-color: black;
9
+ height: 1px;
10
+ width: 20px;
11
+ bottom: 0;
12
+ }
13
+ .tab-scrollbar:hover { height: 3px; }
14
+ .tab-wrapper {
15
+ position: absolute;
16
+ right: 0;
17
+ height: 17px;
18
+ overflow-x: hidden;
19
+ overflow-y: visible;
20
+ scrollbar-width: thin;
21
+ }
22
+ .tab-wrapper.copying {
23
+ height: 29px;
24
+ }
25
+ .tab-adder-button {
26
+ width: 12px;
27
+ height: 12px;
28
+ margin: 1px;
29
+ margin-right: 11px;
30
+ border-radius: 3px;
31
+ border: none;
32
+ }
33
+ [theme=dark] .tab-adder-button {
34
+ filter: invert(1);
35
+ }
36
+ .tab-adder-button:hover {
37
+ background-color: rgba(0 0 0 / 15%);
38
+ }
39
+ .tab-bounds {
40
+ height: 14px;
41
+ display: inline-flex;
42
+ flex-direction: column;
43
+ align-items: flex-start;
44
+ width: max-content;
45
+ }
46
+ .tab-bounds.copying {
47
+ height: 28px;
48
+ }
49
+ .tab {
50
+ border-radius: 3px;
51
+ border-top-left-radius: 0;
52
+ border-top-right-radius: 0;
53
+ padding: 1px 4px;
54
+ min-width: 20px;
55
+ font-size: 10px;
56
+ text-align: center;
57
+ cursor: pointer;
58
+ overflow-y: hidden;
59
+ user-select: none;
60
+ background-color: var(--ui-primary, hsla(215, 100%, 95%, 1));
61
+ border: 1px solid var(--ui-black-transparent, hsla(0, 0%, 0%, 0.15));
62
+ color: var(--text-primary, hsla(225, 15%, 40%, 1));
63
+ border-top: none;
64
+ transition: height 100ms ease-in, color 100ms ease-in;
65
+ }
66
+ .tab.unselected {
67
+ height: 7px;
68
+ color: transparent;
69
+ }
70
+ .tab.hover {
71
+ height: 10px;
72
+ color: #333;
73
+ }
74
+ .tab.selected {
75
+ height: 14px;
76
+ color: var(--text-primary, hsla(225, 15%, 40%, 1));
77
+ }
78
+ .tab.copying {
79
+ height: 28px;
80
+ color: var(--text-primary, hsla(225, 15%, 40%, 1));
81
+ }