-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
90 lines (90 loc) · 2.1 KB
/
style.css
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
.content.tabs {
right: 0;
}
.content > #open-files-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 35px;
margin-bottom: 0;
}
.content > #open-files-container ul {
visibility: visible;
position: fixed !important;
top: 0 !important;
min-width: 100%;
z-index: 17;
background: #404040;
height: 31px;
padding-bottom: 0;
box-shadow: 0 -2px 1px #333 inset;
border-bottom: 5px solid #606060;
white-space: nowrap;
}
.content > #open-files-container li {
display: inline-block;
padding: 0;
background: transparent;
box-shadow: 0 -2px 1px #333 inset, 1px 0 1px #444 inset;
overflow: hidden;
height: 31px;
}
.content > #open-files-container li:after {
width: 10px;
left: 100%;
margin-left: -10px;
position: relative;
background: -webkit-linear-gradient(left, rgba(64,64,64,0), rgba(58,58,58,100));
top: -31px;
height: 30px;
display: block;
content: '';
}
.content > #open-files-container li:last-child:after {
background: -webkit-linear-gradient(left, rgba(64,64,64,0), rgba(64,64,64,100));
}
.content > #open-files-container li.selected {
background: #606060;
box-shadow: 0 -3px 1px 2px #333;
z-index: 2;
}
.content > #open-files-container li.selected:after {
background: -webkit-linear-gradient(left, rgba(96,96,96,0), rgba(96,96,96,100));
margin-left: -10px;
z-index: 30;
}
.content > #open-files-container li:active:after {
display: none;
}
.content > #open-files-container a {
line-height: 31px;
height: 31px;
margin: 0;
padding: 0 30px;
}
.content > #open-files-container .can-close,.content > #open-files-container .dirty {
margin-top: 8px;
margin-left: 8px;
}
.content > #open-files-container .sidebar-selection-triangle {
display: none !important;
}
.content.tabs + #main-toolbar {
visibility: hidden;
border-bottom: none;
margin-bottom: 0;
width: 0;
}
.content.tabs + #main-toolbar > .buttons {
visibility: visible;
position: fixed;
width: auto;
height: 35px;
right: 10px;
top: 0;
z-index: 99;
}
.buttons > a {
vertical-align: top;
}