-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmore_phosphor.css
More file actions
86 lines (70 loc) · 1.57 KB
/
more_phosphor.css
File metadata and controls
86 lines (70 loc) · 1.57 KB
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
/*
Extra CSS that is not in Phosphor's own base.css but that we need for
things to work, or tweaks to the standard Phosphor styling.
*/
/* dockpanel */
.p-DockPanel-overlay {
background: rgba(255, 255, 255, 0.6);
border: 2px solid rgba(0, 0, 0, 0.6);;
transition-property: top, left, right, bottom;
transition-duration: 100ms;
transition-timing-function: ease;
}
/* tabbar */
.p-TabBar {
min-height: 24px;
max-height: 24px;
}
.p-TabBar-content {
min-width: 0;
min-height: 0;
align-items: flex-end;
border-bottom: 1px solid #C0C0C0;
}
.p-TabBar-tab {
padding: 0px 10px;
background: #E5E5E5;
border: 1px solid #C0C0C0;
border-bottom: none;
font: 12px Helvetica, Arial, sans-serif;
flex: 0 1 125px;
min-height: 20px;
max-height: 20px;
min-width: 35px;
margin-left: -1px;
line-height: 20px;
}
.p-TabBar-tab.p-mod-current {
background: white;
}
.p-TabBar-tab:hover:not(.p-mod-current) {
background: #F0F0F0;
}
.p-TabBar-tab:first-child {
margin-left: 0;
}
.p-TabBar-tab.p-mod-current {
min-height: 23px;
max-height: 23px;
transform: translateY(1px);
}
.p-TabBar-tabIcon,
.p-TabBar-tabLabel,
.p-TabBar-tabCloseIcon {
display: inline-block;
}
.p-TabBar-tab.p-mod-closable > .p-TabBar-tabCloseIcon {
margin-left: 4px;
}
.p-TabBar-tab.p-mod-closable > .p-TabBar-tabCloseIcon:before {
content: '\f00d';
font-family: FontAwesome;
}
.p-TabBar-tab.p-mod-drag-image {
min-height: 23px;
max-height: 23px;
min-width: 125px;
border: none;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
transform: translateX(-40%) translateY(-58%);
}